/**
* Template Name: Anyar
* Updated: Mar 09 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/anyar-free-multipurpose-one-page-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Theme — 4C ProTrade official palette
- Primary (#606C5A): brand green — surfaces, headings, neutral UI
- Secondary (#603C1D): deep brown — contrast / earth tone accents
- Tertiary (#DD6201): accent — borders, icons, links, CTAs, highlights
Use `rgba(var(--color-*-rgb), a)` for transparent mixes. Helpers:
`--color-surface-muted` (section tints), `--color-primary-strong` (dark
primary surfaces). New styles should use these tokens, not stray hex.
-----------------------------------------------------------------------------*/
:root {
  --color-primary: #606C5A;
  --color-secondary: #603C1D;
  --color-tertiary: #DD6201;
  --color-tertiary-dark: #c45601;
  --color-primary-rgb: 96, 108, 90;
  --color-secondary-rgb: 96, 60, 29;
  --color-tertiary-rgb: 221, 98, 1;
  --color-surface-muted: #f8faf8;
  --color-primary-strong: color-mix(in srgb, var(--color-primary) 78%, #0c0f0c);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: var(--color-tertiary);
}

a:hover {
  color: var(--color-tertiary-dark);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  box-sizing: border-box;
  background: transparent;
  border: 2px solid var(--color-tertiary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.back-to-top i {
  font-size: 28px;
  color: var(--color-tertiary);
  line-height: 0;
  transition: color 0.35s ease;
}

.back-to-top:hover {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
}

.back-to-top:hover i {
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-tertiary);
  border-top-color: rgba(var(--color-tertiary-rgb), 0.15);
  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;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 30px;
  padding: 0;
  font-size: 12px;
  transition: all 0.5s;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  z-index: 996;
  background: var(--color-secondary);
}

#topbar.topbar-scrolled {
  top: 0;
}

#topbar .contact-info a {
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  color: #fff;
  line-height: 1;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links {
  gap: 12px;
}

#topbar .social-links a {
  color: #fff;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease;
}

#topbar .social-links a:hover {
  color: #fff;
  opacity: 0.75;
}

#topbar .cta {
  background: transparent;
}

#topbar .cta a {
  color: #fff;
  background: transparent;
  border: 1px solid var(--color-tertiary);
  box-sizing: border-box;
  padding: 1px 18px;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  line-height: 26px;
}

#topbar .cta a:hover {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(45, 53, 46, 0.95);
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  top: 30px;
}

#header.header-scrolled {
  background: rgba(30, 36, 31, 0.98);
  top: 30px;
}

#header .logo {
  font-size: clamp(1.15rem, 1.35vw + 0.7rem, 2.35rem);
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

#header .logo a {
  color: #fff;
  font-weight: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  line-height: 1;
}

#header .logo img {
  height: 48px;
  max-height: 48px;
  width: auto;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  #header .logo {
    font-size: clamp(0.98rem, 2.2vw + 0.4rem, 1.45rem);
  }

  #header .logo img {
    height: 42px;
    max-height: 42px;
  }
}

.header-inner-pages {
  background: rgba(30, 36, 31, 0.98) !important;
}

.topbar-inner-pages {
  background: rgba(30, 36, 31, 0.98) !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--color-tertiary);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 8px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #1a1a1a;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--color-tertiary);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--color-tertiary);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(var(--color-primary-rgb), 0.95);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--color-primary);
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-tertiary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-tertiary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
  background-color: var(--color-primary);
  background-position: top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
  z-index: 99;
  transition: 0.3s;
}

#hero:before {
  content: "";
  background: rgba(var(--color-primary-rgb), 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero #heroCarousel,
#hero .carousel-inner,
#hero .carousel-item {
  width: 100%;
  height: 100%;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: clamp(2.4rem, 3.3vw + 1rem, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
  background: none;
  border: none;
  opacity: 0.9;
}

#hero .carousel-control-prev:hover,
#hero .carousel-control-next:hover {
  opacity: 1;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid var(--color-tertiary);
  background: transparent;
  box-sizing: border-box;
}

#hero .btn-get-started:hover {
  background: var(--color-tertiary);
  color: #fff;
  text-decoration: none;
  border-color: var(--color-tertiary);
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px),
(max-height: 700px) {
  #hero {
    height: 120vh;
    padding: 70px 0;
  }

  #hero h2 {
    font-size: clamp(1.95rem, 6.2vw, 2.7rem);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

/* Soft horizontal rule between main sections: visible in the centre, fades out toward the sides */
main#main > section {
  position: relative;
}

/* Use ::after so section ::before stays free for e.g. .about light scrim over a photo */
#hero + main > section:first-of-type::after,
main#main > section + section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    90deg,
    rgba(var(--color-primary-rgb), 0) 0%,
    rgba(var(--color-primary-rgb), 0) 6%,
    rgba(var(--color-primary-rgb), 0.07) 22%,
    rgba(var(--color-primary-rgb), 0.16) 50%,
    rgba(var(--color-primary-rgb), 0.07) 78%,
    rgba(var(--color-primary-rgb), 0) 94%,
    rgba(var(--color-primary-rgb), 0) 100%
  );
}

main#main > section > .container,
main#main > section > .row:first-of-type {
  position: relative;
  z-index: 2;
}

.section-bg {
  background-color: var(--color-surface-muted);
}

.section-title {
  text-align: center;
  padding-bottom: 2.75rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.55rem, 1.35vw + 1.1rem, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 0.35rem 0;
  padding: 0 0.5rem;
  color: var(--color-primary);
  line-height: 1.18;
  position: relative;
}

.section-title h2::after {
  content: "";
  display: block;
  width: min(4.5rem, 22vw);
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-tertiary));
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.section-title p {
  margin: 1.35rem auto 0;
  max-width: 40rem;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(0.95rem, 0.35vw + 0.88rem, 1.0625rem);
  letter-spacing: 0.02em;
  line-height: 1.65;
  color: rgba(var(--color-secondary-rgb), 0.94);
}

/*--------------------------------------------------------------
# Icon Boxes
--------------------------------------------------------------*/
.icon-boxes {
  padding-top: 0;
  position: relative;
  z-index: 100;
}

.icon-boxes .icon-box {
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.icon-boxes .icon-box i {
  display: block;
  color: var(--color-tertiary);
  font-size: 48px;
  line-height: 1;
  margin: 0 auto 20px auto;
}

.icon-boxes .icon-box h4 {
  margin: 0 0 15px 0;
  font-weight: 700;
  font-size: 18px;
  width: 100%;
}

.icon-boxes .icon-box h4 a {
  color: var(--color-primary);
  transition: 0.3s;
}

.icon-boxes .icon-box h4 a:hover {
  color: var(--color-tertiary);
}

.icon-boxes .icon-box p {
  margin: 0;
  line-height: 24px;
  font-size: 14px;
  color: #777777;
  width: 100%;
  text-align: center;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  padding: 140px 0;
  background-color: var(--color-surface-muted);
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}

.about:before {
  content: "";
  background: rgba(255, 255, 255, 0.88);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--color-tertiary);
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  line-height: 1;
  color: var(--color-tertiary);
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid var(--color-tertiary);
  background: transparent;
  box-sizing: border-box;
}

.about .content .btn-learn-more:hover {
  background: var(--color-tertiary);
  color: #fff;
  text-decoration: none;
  border-color: var(--color-tertiary);
}

/* About – Vision, Mission, Values */
.about .about-pillars {
  row-gap: 1.5rem;
}

.about .about-pillar {
  height: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(var(--color-primary-rgb), 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about .about-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-tertiary), var(--color-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about .about-pillar:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.about .about-pillar:hover::before {
  opacity: 1;
}

.about .about-pillar__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--color-tertiary-rgb), 0.12), rgba(var(--color-primary-rgb), 0.12));
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.about .about-pillar__icon i {
  font-size: 1.75rem;
  color: var(--color-tertiary);
}

.about .about-pillar__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.02em;
}

.about .about-pillar__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0;
}

.about .about-pillar__text strong {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 992px) {
  .about {
    padding: 60px 0;
  }

  .about .about-pillar {
    padding: 1.75rem 1.5rem;
  }
}

/*--------------------------------------------------------------
# Clients (Our Customers & Partners)
--------------------------------------------------------------*/
.clients {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, var(--color-surface-muted) 50%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.clients .section-title {
  margin-bottom: 3rem;
}

.clients .section-title p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.clients-card {
  position: relative;
}

.clients-card__inner {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(var(--color-primary-rgb), 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients-card__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-tertiary), var(--color-primary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.clients-card:hover .clients-card__inner {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(var(--color-tertiary-rgb), 0.2);
}

.clients-card:hover .clients-card__inner::before {
  transform: scaleX(1);
}

.clients-card:hover .clients-card__img {
  filter: none;
  transform: scale(1.05);
}

.clients-card__img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.4);
  opacity: 0.85;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.clients-card__country {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(var(--color-tertiary-rgb), 0.92), rgba(var(--color-secondary-rgb), 0.9));
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.42rem 0.65rem;
  border-radius: 0;
  transform: translateY(130%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}

.clients-card:hover .clients-card__country {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .clients-card__inner {
    min-height: 120px;
    padding: 1.5rem 1.25rem;
  }

  .clients-card__img {
    max-height: 60px;
  }
}

@media (max-width: 768px) {
  .clients {
    padding: 60px 0;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .clients-card__inner {
    min-height: 110px;
    padding: 1.25rem 1rem;
  }

  .clients-card__img {
    max-height: 50px;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  background: var(--color-surface-muted);
  padding: 0;
}

.why-us .content {
  padding: 60px 0 0 0;
}

.why-us .content h3 {
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.02em;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .row {
  margin-left: 0;
  margin-right: 0;
}

.why-us .why-us__image {
  background-color: rgba(var(--color-primary-rgb), 0.14);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .why-us__content {
  padding: 60px 15px 60px 2.5rem;
}

@media (min-width: 992px) {
  .why-us .why-us__content {
    padding-left: 3rem;
    padding-right: 2rem;
  }
}

.why-us .accordion-list {
  padding: 0 0 60px 0;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: var(--color-tertiary);
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: var(--color-tertiary);
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  display: none;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(var(--color-primary-rgb), 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid var(--color-tertiary);
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .why-us__content {
    padding: 30px 15px 30px 15px;
  }

  .why-us .content {
    padding-top: 0;
  }

  .why-us .accordion-list {
    padding-bottom: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 50px 40px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(30, 36, 31, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-tertiary-rgb), 0.2) 0%, rgba(var(--color-tertiary-rgb), 0) 72%);
  pointer-events: none;
  z-index: 0;
}

.services .icon-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58px;
  background-image: radial-gradient(rgba(var(--color-primary-rgb), 0.12) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.services .icon-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(30, 36, 31, 0.14);
  border-color: rgba(var(--color-tertiary-rgb), 0.3);
}

.services .icon-box i {
  float: left;
  color: var(--color-tertiary);
  font-size: 30px;
  line-height: 1;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(var(--color-tertiary-rgb), 0.14), rgba(var(--color-primary-rgb), 0.1));
  border: 1px solid rgba(var(--color-tertiary-rgb), 0.2);
  box-shadow: 0 8px 22px rgba(var(--color-primary-rgb), 0.12);
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.services .icon-box:hover i {
  transform: translateY(-2px);
  background: linear-gradient(140deg, rgba(var(--color-tertiary-rgb), 0.2), rgba(var(--color-primary-rgb), 0.14));
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.services .icon-box h4 a {
  color: var(--color-primary);
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  color: var(--color-tertiary);
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.services .icon-box .service-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 70px;
  margin-top: 14px;
  padding: 6px 15px;
  border-radius: 999px;
  box-sizing: border-box;
  border: 2px solid var(--color-tertiary);
  background: transparent;
  color: var(--color-tertiary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  position: relative;
  z-index: 1;
}

.services .icon-box:hover .service-details-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.services .icon-box .service-details-btn:hover {
  background: var(--color-tertiary);
  color: #fff;
  border-color: var(--color-tertiary);
}

/*--------------------------------------------------------------
# Commodity Details Page
--------------------------------------------------------------*/
.commodity-page {
  padding-top: 100px;
}

.commodity-content {
  padding: 60px 0 80px;
  background: var(--color-surface-muted);
  overflow: visible;
}

.commodity-content .row {
  align-items: stretch;
}

.commodity-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: sticky;
  top: 108px;
  width: 100%;
}

.commodity-sidebar__title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  width: 100%;
  padding: 0.52rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(var(--color-tertiary-rgb), 0.38);
  background: rgba(var(--color-tertiary-rgb), 0.06);
  color: var(--color-secondary);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.commodity-sidebar__title i {
  color: var(--color-tertiary);
  font-size: 1.05rem;
  line-height: 1;
}

@media (min-width: 992px) {
  .commodity-sidebar {
    position: sticky !important;
    top: 108px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 0.25rem;
  }
}

.commodity-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.52rem 0;
  color: var(--color-primary);
  background: none;
  border: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.commodity-nav-icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--color-tertiary);
  line-height: 1;
}

.commodity-nav-link:hover {
  color: var(--color-tertiary);
}

.commodity-nav-link.active {
  color: var(--color-tertiary);
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 2px;
}

.commodity-nav-link.active .commodity-nav-icon {
  color: var(--color-tertiary);
}

.commodity-panel {
  background: #fff;
  border: 1px solid rgba(var(--color-primary-rgb), 0.14);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 10px 40px rgba(47, 58, 47, 0.08);
}

.commodity-pane {
  display: none;
}

.commodity-pane.active {
  display: block;
}

.commodity-pane-header {
  position: relative;
  min-height: 200px;
  background-color: var(--color-primary-strong);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.commodity-pane-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    rgba(35, 44, 35, 0.88) 0%,
    rgba(var(--color-primary-rgb), 0.55) 42%,
    rgba(var(--color-tertiary-rgb), 0.38) 100%
  );
  pointer-events: none;
}

.commodity-pane-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.commodity-pane-header__inner {
  position: relative;
  z-index: 1;
  padding: 2.1rem 1.85rem 1.85rem;
  max-width: 520px;
}

.commodity-pane-header h3 {
  margin: 0 0 0.35rem 0;
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.commodity-pane-header__lead {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.commodity-pane-header__media-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(15, 20, 16, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.commodity-pane-body {
  padding: 1.5rem 1.75rem 1.45rem;
}

.commodity-pane-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-primary);
  line-height: 1.65;
}

.commodity-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
  gap: 1.35rem;
  margin-top: 1rem;
}

.commodity-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.commodity-block {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(var(--color-primary-rgb), 0.04) 100%);
}

.commodity-block h4 {
  margin: 0 0 0.55rem 0;
  font-size: 0.98rem;
  color: var(--color-secondary);
  font-weight: 700;
}

.commodity-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.36rem;
}

.commodity-list li {
  color: rgba(var(--color-primary-rgb), 0.95);
  font-size: 0.91rem;
  line-height: 1.52;
}

.commodity-kpis {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.commodity-kpi {
  border: 1px solid rgba(var(--color-tertiary-rgb), 0.28);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  background: rgba(var(--color-tertiary-rgb), 0.06);
}

.commodity-kpi strong {
  display: block;
  color: var(--color-secondary);
  font-size: 0.73rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.commodity-kpi span {
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 600;
}

.commodity-media-stack {
  display: grid;
  gap: 0.78rem;
}

.commodity-media {
  min-height: 128px;
  border-radius: 12px;
  border: 1px dashed rgba(var(--color-primary-rgb), 0.35);
  background: linear-gradient(130deg, rgba(var(--color-primary-rgb), 0.16), rgba(var(--color-tertiary-rgb), 0.16));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  display: flex;
  align-items: flex-end;
  padding: 0.72rem 0.8rem;
  position: relative;
  overflow: hidden;
}

.commodity-media--tall {
  min-height: 176px;
}

.commodity-media--photo {
  border: 1px solid rgba(var(--color-primary-rgb), 0.2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.commodity-media--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 16, 13, 0.02) 35%, rgba(12, 16, 13, 0.46) 100%);
  pointer-events: none;
}

.commodity-media__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  background: rgba(30, 36, 31, 0.55);
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 1;
}

.commodity-note {
  margin-top: 0.95rem;
  border-left: 3px solid var(--color-tertiary);
  padding: 0.55rem 0 0.55rem 0.85rem;
  color: rgba(var(--color-primary-rgb), 0.9);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .commodity-page {
    padding-top: 100px;
  }

  .commodity-sidebar {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .commodity-pane-header {
    min-height: 160px;
  }

  .commodity-pane-header__inner {
    padding: 1.5rem 1.25rem 1.35rem;
  }

  .commodity-pane-header h3 {
    font-size: 1.45rem;
  }

  .commodity-content-grid {
    grid-template-columns: 1fr;
  }

  .commodity-kpis {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background-color: var(--color-primary);
  background-image: linear-gradient(rgba(var(--color-primary-rgb), 0.55), rgba(var(--color-primary-rgb), 0.7));
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 50px;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  margin: 10px;
  border: 2px solid var(--color-tertiary);
  color: #fff;
  background: transparent;
  box-sizing: border-box;
}

.cta .cta-btn:hover {
  background: var(--color-tertiary);
  color: #fff;
  border-color: var(--color-tertiary);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfoio
--------------------------------------------------------------*/
.portfoio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfoio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 18px 10px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  border: 1px solid rgba(68, 68, 68, 0.22);
  background: transparent;
}

.portfoio #portfolio-flters li:hover {
  color: #fff;
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
}

.portfoio #portfolio-flters li.filter-active {
  color: #fff;
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  font-weight: 600;
}

.portfoio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfoio .portfolio-container.portfoio-portfolio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .portfoio .portfolio-container.portfoio-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .portfoio .portfolio-container.portfoio-portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .portfoio .portfolio-container.portfoio-portfolio-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.portfoio .portfolio-item {
  position: relative;
  margin-bottom: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-surface-muted);
  /* Uniform visible frame: same aspect for every card; image fills and crops */
  aspect-ratio: 4 / 3;
  width: 100%;
}

.portfoio .portfolio-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfoio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: var(--color-tertiary);
  padding: 15px 20px;
}

.portfoio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.portfoio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.portfoio .portfolio-item .portfolio-info .preview-link,
.portfoio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

.portfoio .portfolio-item .portfolio-info .preview-link:hover,
.portfoio .portfolio-item .portfolio-info .details-link:hover {
  color: #fff;
}

.portfoio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfoio .portfolio-item:hover img {
  transform: scale(1.05);
}

.portfoio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .team-cards {
  row-gap: 1.75rem;
}

@media (min-width: 1200px) {
  .team .team-cards > [class*="col-"] {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.team .team-card {
  perspective: 1200px;
  height: 100%;
  aspect-ratio: 5 / 3.5;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.team .team-card__inner {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.team .team-card.is-flipped .team-card__inner {
  transform: rotateY(180deg);
}

.team .team-card__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(var(--color-primary-rgb), 0.1);
}

.team .team-card__face--front {
  display: grid;
  grid-template-columns: 6fr 4fr;
}

.team .team-card__face--back {
  transform: rotateY(180deg);
  padding: 1.15rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, rgba(var(--color-tertiary-rgb), 0.06) 100%);
  overflow-y: auto;
}

.team .team-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: 100%;
  overflow: hidden;
  background: rgba(var(--color-primary-rgb), 0.08);
  border-radius: 12px 0 0 12px;
}

.team .team-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.3s ease;
}


.team .team-card__body {
  padding: 0.7rem 0.75rem;
  text-align: center;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.team .team-card__meta {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto 0;
}

.team .team-card__name {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--color-primary);
  margin: 0 0 0.1rem 0;
  line-height: 1.35;
  text-align: center;
}

.team .team-card__title {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-tertiary);
  letter-spacing: 0.02em;
  margin: 0;
  text-align: center;
}

.team .team-card__bio {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #4f4f4f;
  text-align: left;
}

.team .team-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: 34px;
  flex-shrink: 0;
}

.team .team-card__links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  flex: 0 1 auto;
  min-width: 0;
}

.team .team-card__more-btn {
  flex-shrink: 0;
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--color-tertiary);
  background: transparent;
  color: var(--color-secondary);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.team .team-card__more-btn:hover {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #fff;
}

.team .team-card__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid rgba(var(--color-primary-rgb), 0.4);
  background: transparent;
  color: var(--color-primary);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.team .team-card__links a i {
  font-size: 0.82rem;
  line-height: 1;
}

.team .team-card__links a:hover {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #fff;
}

@media (max-width: 1199px) {
  .team .team-card {
    aspect-ratio: 5 / 3.5;
  }
}

@media (max-width: 767px) {
  .team .team-card {
    aspect-ratio: auto;
  }

  .team .team-card__face--front {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .team .team-card__face--front .team-card__image {
    aspect-ratio: 1 / 1;
    border-radius: 12px 12px 0 0;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: var(--color-tertiary);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: var(--color-tertiary);
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 7px 33px 9px 33px;
  border-radius: 50px;
  box-sizing: border-box;
  border: 2px solid var(--color-tertiary);
  background: transparent;
  color: var(--color-tertiary);
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pricing .btn-buy:hover {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #fff;
}

.pricing .featured h3 {
  color: #fff;
  background: var(--color-tertiary);
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--color-tertiary);
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--color-tertiary);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: var(--color-tertiary);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background-color: rgba(var(--color-primary-rgb), 0.1);
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .container {
  position: relative;
}

.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  box-sizing: border-box;
  border: 2px solid var(--color-tertiary);
  background: transparent;
  color: var(--color-tertiary);
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.contact .info .address:hover > i,
.contact .info .email:hover > i,
.contact .info .phone:hover > i {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #fff;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-primary);
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #444444;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  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: #18d26e;
  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 #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  padding: 10px 32px;
  color: var(--color-tertiary);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  border-radius: 50px;
  border: 2px solid var(--color-tertiary);
  background: transparent;
  box-sizing: border-box;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color-tertiary);
  color: #fff;
  border-color: var(--color-tertiary);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-primary-rgb), 0.08);
  margin-top: 100px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-tertiary);
  content: "/";
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: var(--color-primary);
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: var(--color-tertiary);
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: var(--color-tertiary-dark);
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  box-sizing: border-box;
  border: 2px solid var(--color-tertiary);
  background: transparent;
  color: var(--color-tertiary);
  padding: 5px 18px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #fff;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-tertiary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: var(--color-tertiary);
  display: inline;
}

.blog .entry .entry-footer a {
  color: var(--color-tertiary);
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: var(--color-tertiary-dark);
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-tertiary);
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(var(--color-primary-rgb), 0.6);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: var(--color-tertiary);
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-tertiary);
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: var(--color-tertiary-dark);
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: var(--color-tertiary);
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: var(--color-tertiary);
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 9px 18px;
  box-sizing: border-box;
  border: 2px solid var(--color-tertiary);
  background-color: transparent;
  color: var(--color-tertiary);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #fff;
}

.blog .blog-pagination {
  color: var(--color-tertiary);
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: background 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(var(--color-tertiary-rgb), 0.45);
  border-radius: 4px;
  background: transparent;
}

.blog .blog-pagination li a {
  color: var(--color-tertiary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: var(--color-primary);
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  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 button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  border-left: 2px solid var(--color-tertiary);
  background: transparent;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  color: var(--color-tertiary);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  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: var(--color-tertiary);
  border-left-color: var(--color-tertiary);
  color: #fff;
}

.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-primary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-tertiary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-primary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-tertiary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.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: var(--color-tertiary);
  font-size: 14px;
  padding: 5px 13px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--color-tertiary-rgb), 0.5);
  background: transparent;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border-color: var(--color-tertiary);
  background: var(--color-tertiary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: white;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--color-primary);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: var(--color-primary);
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 16px;
  padding: 0 18px;
  margin: 3px;
  box-sizing: border-box;
  border: 2px solid var(--color-tertiary);
  background: transparent;
  color: var(--color-tertiary);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #fff;
}

#footer .footer-top {
  background: var(--color-primary-strong);
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

#footer .footer-top .social-links a:hover {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--color-tertiary);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer > .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-top: 22px;
  padding-bottom: 22px;
}

#footer .copyright {
  flex: 0 1 auto;
  text-align: left;
  padding-top: 0;
  margin: 0;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
  min-width: 0;
}

#footer .credits {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  padding-top: 0;
  margin: 0;
  text-align: right;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
}

#footer .credits a {
  color: var(--color-tertiary);
}

#footer .credits .staff-email-link {
  display: inline-block;
  padding: 3px 11px;
  font-size: 12px;
  box-sizing: border-box;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

#footer .credits .staff-email-link:hover {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #fff;
}

@media (max-width: 576px) {
  #footer > .container {
    gap: 0.45rem 0.85rem;
    padding-left: 12px;
    padding-right: 12px;
  }

  #footer .copyright,
  #footer .credits {
    font-size: 11px;
  }

  #footer .credits .staff-email-link {
    padding: 3px 8px;
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  #footer .copyright,
  #footer .credits {
    font-size: 10px;
  }

  #footer .credits .staff-email-link {
    padding: 2px 6px;
    font-size: 9px;
  }
}