@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");
/* line 5, ../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../Ruby27-x64/lib/ruby/gems/2.7.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

@use 'variables' as *;
/* ---------- CSS Custom Properties ---------- */
/* line 6, ../sass/_common.scss */
:root {
  --primary-color: #095750;
  --secondary-color: #a9e09c;
  --charcoal: #1a1a1a;
  --dark: #212529;
  --dark2: #1e1e1e;
  --dark3: #252525;
  --mid: #524946;
  --black: #000;
  --text-body: #979797;
  --white: #ffffff;
  --off-white: #fafaf7;
  --border: #e0e0e0;
  --font-display: "Inter Tight", sans-serif;
  --font-body: "Manrope", sans-serif;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-red: 0 8px 32px rgba(193, 18, 31, 0.3);
  --bg: #0d0d0d;
  --surface: #161616;
  --border: rgba(255, 255, 255, 0.07);
  --off: #a0a0a0;
  --drop-bg: #f0f0ee;
  --drop-txt: #111;
  --drop-sub: #666;
  --drop-bdr: #d8d8d4;
  --bg: #f4f4f0;
  --teal: #1d5f6e;
  --teal-light: #e8f2f4;
  --gold: #d4a847;
  --gold-lt: #fdf3d9;
  --text-muted: #6b7280;
  --border: #e5e5e0;
  --card-bg: #ffffff;
  --radius: 16px;
}

/* ---------- Reset ---------- */
/* line 62, ../sass/_common.scss */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* line 70, ../sass/_common.scss */
html {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

/* line 78, ../sass/_common.scss */
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-body);
  overflow-x: hidden;
  font-size: 1rem;
  position: relative;
}
/* line 86, ../sass/_common.scss */
body::-webkit-scrollbar {
  width: 6px;
}
/* line 90, ../sass/_common.scss */
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
/* line 95, ../sass/_common.scss */
body::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

/* line 103, ../sass/_common.scss */
img {
  max-width: 100%;
  width: 100%;
}

/* line 108, ../sass/_common.scss */
a {
  text-decoration: none;
  color: inherit;
  outline: none;
  display: flex;
}

/* line 115, ../sass/_common.scss */
section {
  width: 100%;
  position: relative;
}

/* ---------- Typography ---------- */
/* line 121, ../sass/_common.scss */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
}

/* line 130, ../sass/_common.scss */
p {
  margin: 0 0 1rem;
  padding: 0;
  color: var(--text-body);
  font-size: 1rem;
  font-family: var(font-body);
  font-weight: 400;
  line-height: 1.4;
}

/* line 140, ../sass/_common.scss */
a,
p,
ul,
li,
span,
b,
strong,
figcaption {
  line-height: 1.4;
}

/* line 151, ../sass/_common.scss */
b,
strong {
  font-weight: 700;
}

/* line 156, ../sass/_common.scss */
figcaption {
  line-height: 1.5;
}

/* line 160, ../sass/_common.scss */
ul,
ol,
li {
  color: var(--text-body);
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  font-family: var(--font-body);
}

/* ---------- Selection ---------- */
/* line 172, ../sass/_common.scss */
::selection {
  background: #1a1a1a;
  color: #fff;
}

/* line 177, ../sass/_common.scss */
::-moz-selection {
  background: #1a1a1a;
  color: #fff;
}

/* ---------- Utility: image filters ---------- */
/* line 185, ../sass/_common.scss */
.filter-red, .topbar span img, .slide-floting-menu ul.menu li:hover img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(92%) saturate(2930%) hue-rotate(346deg) brightness(85%) contrast(92%);
}

/* line 190, ../sass/_common.scss */
.filter-white, .slide-floting-menu ul.menu li img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(2%) hue-rotate(138deg) brightness(105%) contrast(101%);
}

/* line 195, ../sass/_common.scss */
.filter-mid {
  filter: brightness(0) saturate(100%) invert(28%) sepia(2%) saturate(2172%) hue-rotate(329deg) brightness(97%) contrast(90%);
}

/* line 200, ../sass/_common.scss */
.filter-black {
  filter: brightness(0) saturate(100%) invert(0%) sepia(10%) saturate(7481%) hue-rotate(203deg) brightness(98%) contrast(100%);
}

/* ---------- Layout helpers ---------- */
/* line 212, ../sass/_common.scss */
.container-custom {
  width: 94%;
  display: block;
  margin: auto;
  position: relative;
  max-width: 94%;
}

/* line 220, ../sass/_common.scss */
.container {
  width: 90%;
  display: block;
  margin: auto;
  position: relative;
  max-width: 90%;
}

/* line 229, ../sass/_common.scss */
.inner-section-title {
  font-family: var(--font-body);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--charcoal);
  font-style: normal;
  text-transform: capitalize;
}

/* ---------- Scroll progress bar ---------- */
/* line 241, ../sass/_common.scss */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--primary-color);
  width: 0%;
  z-index: 99999;
  transition: width 0.1s linear;
}

/* ---------- Pace preloader ---------- */
/* line 253, ../sass/_common.scss */
.pace {
  pointer-events: none;
  user-select: none;
}

/* line 258, ../sass/_common.scss */
.pace .pace-progress {
  background: var(--secondary-color);
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

/* line 268, ../sass/_common.scss */
.pace-inactive {
  display: none;
}

/* ---------- WhatsApp float ---------- */
/* line 273, ../sass/_common.scss */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: floatPulse 3s ease infinite;
}
/* line 291, ../sass/_common.scss */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: white;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/* ---------- Back to top ---------- */
/* line 304, ../sass/_common.scss */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 0;
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 1;
  transform: translateY(20px);
  transition: all 0.4s ease;
  font-size: 0.9rem;
}
/* line 324, ../sass/_common.scss */
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
/* line 329, ../sass/_common.scss */
.back-to-top:hover {
  background: var(--black);
  box-shadow: var(--shadow-red);
}

/* line 339, ../sass/_common.scss */
.mooving-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  background: var(--white);
  border-radius: 5rem;
}
/* line 352, ../sass/_common.scss */
.mooving-arrow span {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .6s ease;
}
/* line 364, ../sass/_common.scss */
.mooving-arrow span img {
  width: 18px;
  max-width: 100%;
  object-fit: contain;
}
/* line 366, ../sass/_common.scss */
.mooving-arrow .back {
  left: -8px;
}
/* line 368, ../sass/_common.scss */
.mooving-arrow .back img {
  transform: translate3d(-4vw, 4vw, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: transform .6s ease;
}
/* line 373, ../sass/_common.scss */
.mooving-arrow .front {
  left: 8px;
}
/* line 375, ../sass/_common.scss */
.mooving-arrow .front img {
  transform: translate3d(0vw, 0vw, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: transform .6s ease;
}
/* line 378, ../sass/_common.scss */
.mooving-arrow.solo {
  border: .0625rem solid #0003;
  height: 48px;
  width: 48px;
}
/* line 383, ../sass/_common.scss */
.mooving-arrow.solo .back {
  left: -16px;
}
/* line 388, ../sass/_common.scss */
.mooving-arrow.solo .front {
  left: 0;
}

/* line 395, ../sass/_common.scss */
.custom-btn-animation {
  pointer-events: auto;
  cursor: pointer;
  background: #ffd786;
  border: none;
  margin: 0;
  position: relative;
  font-weight: 600;
  border-radius: 3rem;
  overflow: hidden;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: .6rem .6rem .6rem 1.5rem;
  gap: 2rem;
  width: fit-content;
  font-size: 1.0625rem;
}
/* line 416, ../sass/_common.scss */
.custom-btn-animation::before, .custom-btn-animation::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 431, ../sass/_common.scss */
.custom-btn-animation:hover .mooving-arrow .front img {
  transform: translate3d(-4vw, 4vw, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
/* line 435, ../sass/_common.scss */
.custom-btn-animation:hover .mooving-arrow .back img {
  transform: translate3d(0vw, 0vw, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
/* line 448, ../sass/_common.scss */
.custom-btn-animation.pan {
  overflow: hidden;
}
/* line 450, ../sass/_common.scss */
.custom-btn-animation.pan span {
  position: relative;
}
/* line 455, ../sass/_common.scss */
.custom-btn-animation.pan::before {
  content: '';
  background: var(--secondary-color);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
/* line 461, ../sass/_common.scss */
.custom-btn-animation.pan:hover::before {
  transform: translate3d(0, -100%, 0);
}

@use 'variables' as *;
@use 'base';
/* line 7, ../sass/_main.scss */
.header {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  transition: all 0.4s ease;
  position: fixed;
  z-index: 1050;
  /* Logo */
  /* Links */
  /* Chevron */
  /* CTA */
  /* ─── MEGA DROPDOWN ─── */
  /* columns */
  /* Service items */
  /* Blog sidebar */
  /* Staggered item animation */
  /* ─── MOBILE HAMBURGER ─── */
  /* ─── MOBILE DRAWER ─── */
}
/* line 16, ../sass/_main.scss */
.header.scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}
/* line 21, ../sass/_main.scss */
.header.scrolled .navbar {
  padding: 8px 0;
  transition: all 0.4s ease;
}
/* line 28, ../sass/_main.scss */
.header.scrolled .topbar {
  display: none;
  transition: all 0.4s ease;
}
/* line 33, ../sass/_main.scss */
.header.scrolled .logo-box img {
  height: 70px;
  transition: all 0.4s ease;
}
/* line 38, ../sass/_main.scss */
.header.scrolled .right-wrap {
  row-gap: 0;
  transition: all 0.4s ease;
}
/* line 46, ../sass/_main.scss */
.header .navbar {
  position: relative;
  z-index: 200;
}
/* line 50, ../sass/_main.scss */
.header .nav-inner {
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 3%;
  height: 68px;
  gap: 2rem;
  width: 100%;
  justify-content: space-between;
}
/* line 61, ../sass/_main.scss */
.header .nav-logo {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: -.02em;
  flex-shrink: 0;
  text-decoration: none;
}
/* line 68, ../sass/_main.scss */
.header .nav-links {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  list-style: none;
  margin-left: auto;
  gap: 0;
  height: 100%;
  width: fit-content;
}
/* line 80, ../sass/_main.scss */
.header .nav-links > li {
  display: flex;
  align-items: center;
  position: relative;
}
/* line 85, ../sass/_main.scss */
.header .nav-links > li > a,
.header .nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 1.1rem;
  height: 100%;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
/* line 103, ../sass/_main.scss */
.header .nav-links > li > a:hover,
.header .nav-links > li > button:hover {
  color: var(--white);
}
/* line 109, ../sass/_main.scss */
.header .nav-links > li.active-item > button {
  color: var(--white);
}
/* line 113, ../sass/_main.scss */
.header .nav-links > li.active-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 2px 2px 0 0;
  display: none;
}
/* line 127, ../sass/_main.scss */
.header .nav-links > li.open .chevron {
  transform: rotate(180deg);
}
/* line 135, ../sass/_main.scss */
.header .chevron {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
/* line 141, ../sass/_main.scss */
.header .nav-cta {
  flex-shrink: 0;
  margin-left: 1.5rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: .55rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
/* line 150, ../sass/_main.scss */
.header .nav-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
/* line 153, ../sass/_main.scss */
.header .mega-wrap {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 300;
  /* clip for slide animation */
  overflow: hidden;
  pointer-events: none;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
/* line 162, ../sass/_main.scss */
.header .mega-wrap.open {
  max-height: 600px;
  pointer-events: auto;
}
/* line 167, ../sass/_main.scss */
.header .mega-panel {
  background: var(--drop-bg);
  display: flex;
  border-top: 2px solid var(--secondary-color);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
/* line 179, ../sass/_main.scss */
.header .mega-wrap.open .mega-panel {
  opacity: 1;
  transform: translateY(0);
}
/* line 185, ../sass/_main.scss */
.header .mega-col {
  width: 100%;
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  border-right: 1px solid var(--drop-bdr);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: stretch;
}
/* line 194, ../sass/_main.scss */
.header .mega-col:last-child {
  border-right: none;
}
/* line 196, ../sass/_main.scss */
.header .mega-col-title {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.5rem;
}
/* line 203, ../sass/_main.scss */
.header .mega-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .7rem .8rem;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  color: var(--drop-txt);
  transition: background .18s, transform .18s;
  margin-bottom: .15rem;
}
/* line 210, ../sass/_main.scss */
.header .mega-item:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateX(4px);
}
/* line 211, ../sass/_main.scss */
.header .mega-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .95rem;
  transition: background .18s;
}
/* line 218, ../sass/_main.scss */
.header .mega-item:hover .mega-item-icon {
  background: #1a1a1a;
}
/* line 220, ../sass/_main.scss */
.header .mega-item-body strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--drop-txt);
  line-height: 1.3;
}
/* line 224, ../sass/_main.scss */
.header .mega-item-body span {
  font-size: .77rem;
  color: var(--drop-sub);
  margin-top: .15rem;
  display: block;
}
/* line 229, ../sass/_main.scss */
.header .mega-blog {
  background: #e8e8e5;
  padding: 2.5rem 2rem;
}
/* line 230, ../sass/_main.scss */
.header .blog-article {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .75rem;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  color: var(--drop-txt);
  transition: background .18s;
  margin-bottom: .4rem;
}
/* line 237, ../sass/_main.scss */
.header .blog-article:hover {
  background: rgba(0, 0, 0, 0.05);
}
/* line 238, ../sass/_main.scss */
.header .blog-thumb {
  width: 72px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ccc;
}
/* line 242, ../sass/_main.scss */
.header .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* line 243, ../sass/_main.scss */
.header .blog-info strong {
  font-size: .85rem;
  font-weight: 600;
  display: block;
  line-height: 1.3;
}
/* line 244, ../sass/_main.scss */
.header .blog-info span {
  font-size: .75rem;
  color: var(--drop-sub);
  display: block;
  margin-top: .15rem;
}
/* line 245, ../sass/_main.scss */
.header .blog-read {
  font-size: .75rem;
  font-weight: 700;
  color: var(--drop-txt);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .3rem;
  transition: gap .2s;
}
/* line 251, ../sass/_main.scss */
.header .blog-read:hover {
  gap: .6rem;
}
/* line 252, ../sass/_main.scss */
.header .blog-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--drop-txt);
  margin-top: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: gap .2s;
}
/* line 258, ../sass/_main.scss */
.header .blog-more:hover {
  gap: .7rem;
}
/* line 261, ../sass/_main.scss */
.header .mega-item, .header .blog-article {
  opacity: 0;
  transform: translateY(8px);
  transition: background .18s, transform .22s, opacity .22s;
}
/* line 265, ../sass/_main.scss */
.header .mega-wrap.open .mega-item,
.header .mega-wrap.open .blog-article {
  opacity: 1;
  transform: translateY(0);
}
/* line 269, ../sass/_main.scss */
.header .mega-wrap.open .mega-item:nth-child(1) {
  transition-delay: .08s;
}
/* line 270, ../sass/_main.scss */
.header .mega-wrap.open .mega-item:nth-child(2) {
  transition-delay: .12s;
}
/* line 271, ../sass/_main.scss */
.header .mega-wrap.open .mega-item:nth-child(3) {
  transition-delay: .16s;
}
/* line 272, ../sass/_main.scss */
.header .mega-wrap.open .mega-item:nth-child(4) {
  transition-delay: .20s;
}
/* line 273, ../sass/_main.scss */
.header .mega-wrap.open .mega-item:nth-child(5) {
  transition-delay: .24s;
}
/* line 274, ../sass/_main.scss */
.header .mega-wrap.open .blog-article:nth-child(1) {
  transition-delay: .12s;
}
/* line 275, ../sass/_main.scss */
.header .mega-wrap.open .blog-article:nth-child(2) {
  transition-delay: .18s;
}
/* line 278, ../sass/_main.scss */
.header .nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
/* line 282, ../sass/_main.scss */
.header .nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
/* line 287, ../sass/_main.scss */
.header .nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
/* line 288, ../sass/_main.scss */
.header .nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
/* line 289, ../sass/_main.scss */
.header .nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* line 292, ../sass/_main.scss */
.header .mobile-drawer {
  display: none;
  flex-direction: column;
  background: #111;
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* line 298, ../sass/_main.scss */
.header .mobile-drawer.open {
  max-height: 100vh;
  overflow-y: auto;
}
/* line 300, ../sass/_main.scss */
.header .mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  font-size: .95rem;
  font-weight: 500;
  color: var(--off-white);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  font-family: var(--font-body);
  transition: color .2s, background .2s;
}
/* line 308, ../sass/_main.scss */
.header .mob-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}
/* line 310, ../sass/_main.scss */
.header .mob-sub {
  background: #0a0a0a;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
/* line 314, ../sass/_main.scss */
.header .mob-sub.open {
  max-height: 600px;
}
/* line 315, ../sass/_main.scss */
.header .mob-sub-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .9rem 5% .9rem 7%;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--off-white);
  transition: color .2s;
}
/* line 322, ../sass/_main.scss */
.header .mob-sub-item:hover {
  color: var(--white);
}
/* line 323, ../sass/_main.scss */
.header .mob-sub-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(232, 255, 71, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
/* line 329, ../sass/_main.scss */
.header .mob-sub-body strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
}
/* line 330, ../sass/_main.scss */
.header .mob-sub-body span {
  font-size: .75rem;
  color: var(--off-white);
  margin-top: .1rem;
  display: block;
}
/* line 331, ../sass/_main.scss */
.header .mob-cta-row {
  padding: 1.25rem 5%;
}
/* line 332, ../sass/_main.scss */
.header .mob-cta {
  display: block;
  text-align: center;
  width: 100%;
  background: var(--secondary-color);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .9rem;
  padding: .85rem;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity .2s;
}
/* line 339, ../sass/_main.scss */
.header .mob-cta:hover {
  opacity: .85;
}

/* line 343, ../sass/_main.scss */
.row-wrap {
  display: flex;
}

/* line 348, ../sass/_main.scss */
.topbar {
  color: var(--text-body);
  font-size: 0.84rem;
  font-family: var(--font-body);
  padding: 6px 0;
  position: relative;
  z-index: 1100;
  letter-spacing: 0.3px;
}
/* line 357, ../sass/_main.scss */
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
/* line 362, ../sass/_main.scss */
.topbar span i {
  color: var(--primary-color);
}
/* line 363, ../sass/_main.scss */
.topbar span b {
  color: var(--mid);
}
/* line 365, ../sass/_main.scss */
.topbar span img {
  width: 16px;
  height: auto;
}

/* line 374, ../sass/_main.scss */
.topbar-right a {
  color: var(--text-body);
  transition: var(--transition);
  font-size: 0.84rem;
}
/* line 380, ../sass/_main.scss */
.topbar-right a:hover {
  color: var(--primary-color);
}

/* line 389, ../sass/_main.scss */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
  padding-top: 7rem;
}
/* line 397, ../sass/_main.scss */
.hero .slider {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  z-index: 99;
  margin: 7rem 3%;
}
/* line 406, ../sass/_main.scss */
.hero .slide {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  opacity: 0;
  flex-direction: column;
  flex-wrap: nowrap;
  transform: translateY(100%);
  animation: slideText 15s infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-name: slideText, gradientMove;
  animation-duration: 15s,4s;
  animation-iteration-count: infinite,infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1), linear;
}
/* line 430, ../sass/_main.scss */
.hero .slide h3 {
  font-size: 3rem;
  width: 100%;
  max-width: 500px;
}
/* line 435, ../sass/_main.scss */
.hero .slide p {
  font-size: 1.2rem;
  width: 100%;
  max-width: 500px;
}
/* line 442, ../sass/_main.scss */
.hero .slide:nth-child(1) {
  animation-delay: 0s,0s;
}
/* line 445, ../sass/_main.scss */
.hero .slide:nth-child(2) {
  animation-delay: 3s,0s;
}
/* line 448, ../sass/_main.scss */
.hero .slide:nth-child(3) {
  animation-delay: 6s,0s;
}
/* line 451, ../sass/_main.scss */
.hero .slide:nth-child(4) {
  animation-delay: 9s,0s;
}
/* line 454, ../sass/_main.scss */
.hero .slide:nth-child(5) {
  animation-delay: 12s, 0s;
}
@keyframes slideText {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  8% {
    transform: translateY(10%);
    opacity: 1;
  }
  30% {
    transform: translateY(0);
    opacity: 1;
  }
  30% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes gradientMove {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 200% center;
  }
}
/* line 507, ../sass/_main.scss */
.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

/* line 514, ../sass/_main.scss */
.hero-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

/* line 525, ../sass/_main.scss */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17, 17, 17, 0.88) 0%, rgba(193, 18, 31, 0.35) 60%, rgba(17, 17, 17, 0.6) 100%);
}

/* line 537, ../sass/_main.scss */
.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 100px;
  max-width: 90%;
}

/* line 544, ../sass/_main.scss */
.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  border-left: 3px solid var(--white);
  padding-left: 12px;
  margin-bottom: 16px;
}

/* line 556, ../sass/_main.scss */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
}

/* line 566, ../sass/_main.scss */
.hero-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  line-height: 1.7;
}

/* line 575, ../sass/_main.scss */
.btn-hero-outline {
  border: 2px solid var(--white);
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
/* line 590, ../sass/_main.scss */
.btn-hero-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: -1;
}
/* line 600, ../sass/_main.scss */
.btn-hero-outline:hover {
  color: var(--charcoal);
  border-color: white;
}
/* line 604, ../sass/_main.scss */
.btn-hero-outline:hover::before {
  transform: translateX(0);
}

/* line 608, ../sass/_main.scss */
.btn-hero-red {
  background: var(--primary-color);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s;
}
/* line 621, ../sass/_main.scss */
.btn-hero-red:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* line 630, ../sass/_main.scss */
.btn-hero-ghost {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.3s;
}
/* line 642, ../sass/_main.scss */
.btn-hero-ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(193, 18, 31, 0.1);
}

/* line 650, ../sass/_main.scss */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  transition: var(--transition);
}
/* line 663, ../sass/_main.scss */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
/* line 668, ../sass/_main.scss */
.carousel-control-prev i,
.carousel-control-next i {
  color: white;
  font-size: 1rem;
}

/* line 674, ../sass/_main.scss */
.carousel-control-prev {
  left: 24px;
}

/* line 675, ../sass/_main.scss */
.carousel-control-next {
  right: 24px;
}

/* line 677, ../sass/_main.scss */
.carousel-indicators {
  bottom: 30px;
}
/* line 680, ../sass/_main.scss */
.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}
/* line 688, ../sass/_main.scss */
.carousel-indicators button.active {
  background: var(--primary-color);
  width: 24px;
  border-radius: 4px;
}

/* line 697, ../sass/_main.scss */
.since-badge {
  position: absolute;
  top: 120px;
  right: 60px;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateBadge 20s linear infinite;
  z-index: 10;
  font-family: var(font-body);
}
/* line 710, ../sass/_main.scss */
.since-badge svg {
  position: absolute;
  width: 160px;
  height: 160px;
}

/* line 717, ../sass/_main.scss */
.since-year {
  font-family: var(font-body);
  font-weight: 900;
  font-size: 1.6rem;
  color: white;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1px;
  animation: rotateBadge 20s linear infinite reverse;
  background: rgba(0, 0, 0, 0.53);
  border-radius: 100%;
  border: 3px solid #ffffff;
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes rotateBadge {
  to {
    transform: rotate(360deg);
  }
}
/* line 741, ../sass/_main.scss */
.hero-float-contact {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  rotate: 180deg;
  padding: 14px 10px;
  z-index: 10;
}
/* line 753, ../sass/_main.scss */
.hero-float-contact a {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* line 763, ../sass/_main.scss */
.hero-float-contact i {
  rotate: 90deg;
}

/* line 767, ../sass/_main.scss */
.scroll-down-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 3px;
}

/* line 782, ../sass/_main.scss */
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}
/* line 795, ../sass/_main.scss */
.hero-shape1 {
  z-index: 7;
  border-radius: 100%;
  background-color: var(--primary-color);
  mix-blend-mode: hard-light;
  width: 55.375rem;
  height: 55.375rem;
  display: block;
  position: absolute;
  inset: auto -19rem -23.8125rem auto;
}

/* line 807, ../sass/_main.scss */
.hero-shape-2 {
  z-index: 9;
  border: 3.625rem solid var(--secondary-color);
  border-radius: 100%;
  width: 25rem;
  height: 25rem;
  position: absolute;
  inset: auto 13.1rem -7.5rem auto;
}

/* line 818, ../sass/_main.scss */
.hero-video-wrap {
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 3;
}
/* line 824, ../sass/_main.scss */
.hero-video-wrap::after, .hero-video-wrap::before {
  content: '';
  width: 100%;
  left: 0;
  display: block;
  position: absolute;
}
/* line 833, ../sass/_main.scss */
.hero-video-wrap::after {
  height: 200px;
  background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0.8), transparent);
  z-index: 2;
  bottom: 0;
}
/* line 840, ../sass/_main.scss */
.hero-video-wrap::before {
  height: 100%;
  z-index: 1;
  background-color: #020208;
  background-image: radial-gradient(circle at 20% 30%, rgba(142, 68, 173, 0.3) 0%, rgba(0, 0, 0, 0) 50%), radial-gradient(circle at 80% 20%, rgba(41, 128, 185, 0.25) 0%, rgba(0, 0, 0, 0) 45%), radial-gradient(circle at 50% 80%, rgba(211, 84, 0, 0.15) 0%, rgba(0, 0, 0, 0) 50%), radial-gradient(circle at 75% 75%, rgba(155, 89, 182, 0.2) 0%, rgba(0, 0, 0, 0) 40%);
  background-blend-mode: screen;
  opacity: 0.55;
}
/* line 853, ../sass/_main.scss */
.hero-video-wrap .video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #000;
}
/* line 859, ../sass/_main.scss */
.hero-video-wrap .video-container iframe,
.hero-video-wrap .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: auto;
}
/* line 872, ../sass/_main.scss */
.hero-video-wrap .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
}

/* line 884, ../sass/_main.scss */
.slide-animate {
  opacity: 0;
}

/* line 887, ../sass/_main.scss */
.carousel-item.active .slide-animate {
  animation-fill-mode: both;
}
/* line 889, ../sass/_main.scss */
.carousel-item.active [data-animation='fade-down'] {
  animation: fadeDown   0.8s ease 0.10s forwards;
}
/* line 890, ../sass/_main.scss */
.carousel-item.active [data-animation='slide-right'] {
  animation: slideRight 0.9s ease 0.30s forwards;
}
/* line 891, ../sass/_main.scss */
.carousel-item.active [data-animation='fade-up'] {
  animation: fadeUp     0.8s ease 0.50s forwards;
}
/* line 892, ../sass/_main.scss */
.carousel-item.active [data-animation='zoom-in'] {
  animation: zoomIn     0.6s ease 0.70s forwards;
}
/* line 893, ../sass/_main.scss */
.carousel-item.active [data-animation='slide-up'] {
  animation: slideUp    0.6s ease 0.85s forwards;
}
/* line 894, ../sass/_main.scss */
.carousel-item.active [data-animation='rotate-in'] {
  animation: rotateIn   0.6s ease 1.00s forwards;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-15deg) scale(0.8);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}
/* line 910, ../sass/_main.scss */
.section-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.9rem;
}
/* line 920, ../sass/_main.scss */
.section-label.big {
  font-size: 1.3rem;
  text-transform: capitalize;
}
/* line 921, ../sass/_main.scss */
.section-label.white {
  color: rgba(255, 255, 255, 0.5);
}

/* line 924, ../sass/_main.scss */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}
/* line 933, ../sass/_main.scss */
.section-title.white {
  color: white;
}

/* line 936, ../sass/_main.scss */
.red-text {
  color: var(--primary-color);
}

/* line 939, ../sass/_main.scss */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
/* line 944, ../sass/_main.scss */
.reveal.in {
  opacity: 1;
  transform: none;
}

/* line 951, ../sass/_main.scss */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--gold-lt);
  color: var(--charcoal);
  border: 1.5px solid var(--gold);
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
/* line 966, ../sass/_main.scss */
.btn-gold:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
/* line 970, ../sass/_main.scss */
.btn-gold:hover .arrow {
  background: var(--charcoal);
  color: var(--white);
}
/* line 976, ../sass/_main.scss */
.btn-gold .arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: background 0.2s;
}

/* line 990, ../sass/_main.scss */
.about {
  padding: 7rem 5%;
}
/* line 993, ../sass/_main.scss */
.about .section-label {
  margin-bottom: 3rem;
}
/* line 996, ../sass/_main.scss */
.about .about-inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  column-gap: 4rem;
}
/* line 1006, ../sass/_main.scss */
.about .about-img-wrap {
  position: relative;
  flex: 1;
  align-self: stretch;
  border-radius: 16px;
  overflow: hidden;
}
/* line 1014, ../sass/_main.scss */
.about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* line 1021, ../sass/_main.scss */
.about .about-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #c8dde0;
}
/* line 1030, ../sass/_main.scss */
.about .about-img::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 55%;
  height: 55%;
  background: #b4d8d8;
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
  z-index: -1;
}
/* line 1043, ../sass/_main.scss */
.about .about-content {
  padding-top: 0.5rem;
}
/* line 1046, ../sass/_main.scss */
.about .about-content .inner-section-title {
  margin-bottom: 5rem;
}
/* line 1051, ../sass/_main.scss */
.about .about-feature {
  margin-bottom: 2.5rem;
  border-bottom: .0625rem solid #0003;
}
/* line 1055, ../sass/_main.scss */
.about .about-feature:last-of-type {
  border-bottom: none;
}
/* line 1059, ../sass/_main.scss */
.about .about-feature h4 {
  font-weight: 500;
  color: var(--black);
  font-size: 1.25rem;
  margin: 0;
}
/* line 1067, ../sass/_main.scss */
.about .about-feature p {
  color: var(--light);
  max-width: 300px;
  margin: 1.1rem 0;
}
/* line 1074, ../sass/_main.scss */
.about .counter-wrap {
  margin-top: 2rem;
  text-align: right;
}
/* line 1078, ../sass/_main.scss */
.about .counter-wrap .counter {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}
/* line 1088, ../sass/_main.scss */
.about .counter-wrap .counter::after {
  content: "+";
  position: absolute;
  font-size: 2rem;
  color: var(--primary-color);
  display: block;
}
/* line 1097, ../sass/_main.scss */
.about .counter-wrap .plus {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 0.4rem;
  font-weight: 700;
}
/* line 1104, ../sass/_main.scss */
.about .counter-wrap .label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  display: block;
  margin-top: 0.2rem;
}

/* line 1117, ../sass/_main.scss */
.counter {
  position: relative;
  width: fit-content;
}
/* line 1121, ../sass/_main.scss */
.counter::after {
  content: "+";
  position: absolute;
  font-size: 3rem;
  color: var(--primary-color);
  display: block;
  top: 0;
  right: -30px;
}

/* line 1135, ../sass/_main.scss */
.medication {
  padding: 0 5% 7rem;
}
/* line 1139, ../sass/_main.scss */
.medication-inner {
  margin: 0 auto;
}
/* line 1144, ../sass/_main.scss */
.medication .inner-section-title {
  margin-bottom: 3rem;
  text-align: center;
}
/* line 1146, ../sass/_main.scss */
.medication .med-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all .6s ease;
}
/* line 1159, ../sass/_main.scss */
.medication .med-row .child {
  align-self: stretch;
  flex: 1;
  display: inline-flex;
  align-items: center;
}
/* line 1167, ../sass/_main.scss */
.medication .med-row:hover, .medication .med-row.active {
  background: #c6e7bf;
}
/* line 1172, ../sass/_main.scss */
.medication .med-row:hover .med-arrow, .medication .med-row.active .med-arrow {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}
/* line 1178, ../sass/_main.scss */
.medication .med-row:hover .med-thumb, .medication .med-row.active .med-thumb {
  padding: 6px;
  transition: all .6s ease;
}
/* line 1182, ../sass/_main.scss */
.medication .med-row:hover .med-thumb img, .medication .med-row.active .med-thumb img {
  transform: scale(1);
}
/* line 1188, ../sass/_main.scss */
.medication .med-row:hover .med-content-wrap .med-desc, .medication .med-row.active .med-content-wrap .med-desc {
  color: var(--white);
}
/* line 1191, ../sass/_main.scss */
.medication .med-row:hover .med-content-wrap::before, .medication .med-row.active .med-content-wrap::before {
  transform: translate3d(0vw, 0vw, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: transform .6s ease;
}
/* line 1199, ../sass/_main.scss */
.medication .med-row .med-thumb {
  width: 270px;
  height: 170px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 16px;
  max-width: 270px;
}
/* line 1207, ../sass/_main.scss */
.medication .med-row .med-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transform: scale(1.05);
  transition: all .6s ease;
}
/* line 1218, ../sass/_main.scss */
.medication .med-row .med-name {
  padding: 1.1rem 1.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--charcoal);
}
/* line 1226, ../sass/_main.scss */
.medication .med-row .med-content-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  position: relative;
  overflow: hidden;
  transition: all .6s ease;
  column-gap: 2rem;
}
/* line 1238, ../sass/_main.scss */
.medication .med-row .med-content-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: translate3d(100vw, 0vw, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: transform .3s ease;
  border-radius: 16px;
  z-index: 5;
}
/* line 1254, ../sass/_main.scss */
.medication .med-row .med-content-wrap .med-desc {
  color: var(--light);
  line-height: 1.55;
  z-index: 10;
  transition: color .3s ease;
}
/* line 1261, ../sass/_main.scss */
.medication .med-row .med-content-wrap .mooving-arrow {
  z-index: 10;
  border: .0625rem solid #0003;
  height: 46px;
  width: 46px;
}
/* line 1266, ../sass/_main.scss */
.medication .med-row .med-content-wrap .mooving-arrow .back {
  left: -8px;
}
/* line 1268, ../sass/_main.scss */
.medication .med-row .med-content-wrap .mooving-arrow .back img {
  transform: translate3d(-4vw, 4vw, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: transform .6s ease;
}
/* line 1273, ../sass/_main.scss */
.medication .med-row .med-content-wrap .mooving-arrow .front {
  left: 0px;
}
/* line 1275, ../sass/_main.scss */
.medication .med-row .med-content-wrap .mooving-arrow .front img {
  transform: translate3d(0vw, 0vw, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: transform .6s ease;
}

/* Trust badge */
/* line 1286, ../sass/_main.scss */
.trust-row {
  background-color: #0000000d;
  border-radius: 3.125rem;
  justify-content: center;
  max-width: 40.5rem;
  padding: .3rem 2rem .3rem .3rem;
  display: flex;
  width: fit-content;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  margin: auto;
}
/* line 1300, ../sass/_main.scss */
.trust-row .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  margin-right: 0.75rem;
}
/* line 1312, ../sass/_main.scss */
.trust-row .trust-badge .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary-color);
}

/* line 1331, ../sass/_main.scss */
.testimonial-wrap {
  padding: 0 5% 7rem;
}
/* line 1336, ../sass/_main.scss */
.testimonial-inner {
  max-width: 90%;
  margin: 0 auto;
}

/* line 1342, ../sass/_main.scss */
.v-line {
  background-color: #0003;
  align-self: stretch;
  width: 0.0625rem;
  margin-top: .625rem;
}

/* line 1350, ../sass/_main.scss */
.testi-top {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  border-bottom: .0625rem solid #0003;
  justify-content: space-between;
  align-items: stretch;
}
/* line 1365, ../sass/_main.scss */
.testi-left {
  padding-bottom: 5rem;
}
/* line 1368, ../sass/_main.scss */
.testi-left .inner-section-title {
  margin-bottom: 0.9rem;
}
/* line 1372, ../sass/_main.scss */
.testi-left p {
  margin-bottom: 1.5rem;
}
/* line 1377, ../sass/_main.scss */
.testi-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* line 1386, ../sass/_main.scss */
.founder-tag {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  display: block;
  font-size: .875rem;
  font-weight: 600;
}
/* line 1397, ../sass/_main.scss */
.founder-quote {
  margin-bottom: 2rem;
}

/* line 1403, ../sass/_main.scss */
.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  border-radius: 20px;
}
/* line 1412, ../sass/_main.scss */
.mini-card {
  border-radius: 20px;
  padding: 1.2rem  0.85rem;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
  padding: 2.6875rem .9375rem 2.1875rem;
}
/* line 1422, ../sass/_main.scss */
.mini-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(31, 107, 107, 0.1);
}
/* line 1427, ../sass/_main.scss */
.mini-card span {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--charcoal);
}
/* line 1435, ../sass/_main.scss */
.mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  color: var(--primary-color);
}

/* line 1450, ../sass/_main.scss */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
/* line 1456, ../sass/_main.scss */
.service-card {
  padding: 5.625rem .9375rem 5.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid var(--teal-lt);
}
/* line 1465, ../sass/_main.scss */
.service-card.with-border {
  border: .0625rem solid #0003;
  border-top: none;
  border-bottom: none;
}
/* line 1471, ../sass/_main.scss */
.service-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}
/* line 1476, ../sass/_main.scss */
.service-card h4 {
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
  line-height: 1.35;
  color: var(--black);
}
/* line 1483, ../sass/_main.scss */
.service-card p {
  color: var(--light);
}

/* line 1491, ../sass/_main.scss */
.serv-icon {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  color: var(--primary-color);
  background-color: #2c69141a;
  border-radius: .8125rem;
  justify-content: center;
  align-items: center;
}
/* line 1506, ../sass/_main.scss */
.serv-icon img {
  max-width: 44px;
}

/* line 1512, ../sass/_main.scss */
.video-section {
  margin: 0 5% 5rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}
/* line 1522, ../sass/_main.scss */
.video-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* line 1530, ../sass/_main.scss */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.45));
}

/* line 1536, ../sass/_main.scss */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
  padding-left: 4px;
}
/* line 1556, ../sass/_main.scss */
.play-btn:hover {
  background: #d6aa15;
  transform: translate(-50%, -50%) scale(1.1);
}

/* line 1562, ../sass/_main.scss */
.play-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #28d45a66;
  animation: pulsate 2s ease infinite;
}
/* line 1570, ../sass/_main.scss */
.play-pulse.delay {
  animation-delay: 1s;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
/* line 1590, ../sass/_main.scss */
.stick-service-wrap .card-section {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Each card sits on top of the previous */
  z-index: var(--z);
}
/* line 1601, ../sass/_main.scss */
.stick-service-wrap .card-section:nth-child(1) {
  --z: 1;
  --bg: #1a1a2e;
  --accent: #7c6af7;
}
/* line 1602, ../sass/_main.scss */
.stick-service-wrap .card-section:nth-child(2) {
  --z: 2;
  --bg: #0f3460;
  --accent: #4fa3e0;
}
/* line 1603, ../sass/_main.scss */
.stick-service-wrap .card-section:nth-child(3) {
  --z: 3;
  --bg: #e94560;
  --accent: #ffb347;
}
/* line 1607, ../sass/_main.scss */
.stick-service-wrap .card {
  position: relative;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  /* Subtle lift shadow */
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  /* Scale-down on scroll — driven by JS */
  transform-origin: top center;
  will-change: transform;
  transition: transform 0.1s linear;
}
/* line 1629, ../sass/_main.scss */
.stick-service-wrap .card .data-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 24.125rem;
  padding: 7rem 0 8rem 0;
  align-items: flex-start;
}
/* line 1638, ../sass/_main.scss */
.stick-service-wrap .card .img-wrap {
  max-width: 40.3125rem;
  position: relative;
  flex: 1;
}
/* line 1642, ../sass/_main.scss */
.stick-service-wrap .card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline-block;
  max-width: 100%;
}

/* line 1666, ../sass/_main.scss */
.hero-ranger {
  position: relative;
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  /* line 1666, ../sass/_main.scss */
  .hero-ranger {
    padding: 3.5rem 0 3rem;
  }
}
/* line 1676, ../sass/_main.scss */
.hero-ranger-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}
/* line 1683, ../sass/_main.scss */
.hero-ranger-bg-blob--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f0e6c8, rgba(0, 0, 0, 0));
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}
/* line 1692, ../sass/_main.scss */
.hero-ranger-bg-blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #9de7d9, rgba(0, 0, 0, 0));
  bottom: -60px;
  right: 5%;
}
/* line 1701, ../sass/_main.scss */
.hero-ranger-inner {
  position: relative;
  z-index: 2;
}
/* line 1706, ../sass/_main.scss */
.hero-ranger-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.25;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  letter-spacing: -.075rem;
  color: var(--charcoal);
}
/* line 1718, ../sass/_main.scss */
.hero-ranger-avatars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
/* line 1725, ../sass/_main.scss */
.hero-ranger-avatar {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 3px solid #fff;
  animation: float 6s ease-in-out infinite;
}
/* line 1733, ../sass/_main.scss */
.hero-ranger-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* line 1739, ../sass/_main.scss */
.hero-ranger-avatar--1 {
  width: 64px;
  height: 64px;
  top: 8%;
  left: 8%;
  animation-delay: 0s;
  background: #c0d4c5;
}
/* line 1745, ../sass/_main.scss */
.hero-ranger-avatar--2 {
  width: 76px;
  height: 76px;
  top: 38%;
  left: 6%;
  animation-delay: 1.5s;
  background: #f2c5c0;
}
/* line 1751, ../sass/_main.scss */
.hero-ranger-avatar--3 {
  width: 58px;
  height: 58px;
  top: 72%;
  left: 4%;
  animation-delay: 3s;
  background: #c5c0f2;
}
/* line 1757, ../sass/_main.scss */
.hero-ranger-avatar--4 {
  width: 72px;
  height: 72px;
  top: 6%;
  right: 12%;
  animation-delay: 0.8s;
  background: #f2c5c0;
}
/* line 1763, ../sass/_main.scss */
.hero-ranger-avatar--5 {
  width: 80px;
  height: 80px;
  top: 68%;
  right: 5%;
  animation-delay: 2.2s;
  background: #c0d4c5;
}
@media (max-width: 768px) {
  /* line 1771, ../sass/_main.scss */
  .hero-ranger-avatar--1 {
    width: 44px;
    height: 44px;
    left: 2%;
  }
  /* line 1772, ../sass/_main.scss */
  .hero-ranger-avatar--2 {
    width: 52px;
    height: 52px;
    left: 1%;
  }
  /* line 1773, ../sass/_main.scss */
  .hero-ranger-avatar--3 {
    display: none;
  }
  /* line 1774, ../sass/_main.scss */
  .hero-ranger-avatar--4 {
    width: 48px;
    height: 48px;
    right: 3%;
  }
  /* line 1775, ../sass/_main.scss */
  .hero-ranger-avatar--5 {
    width: 52px;
    height: 52px;
    right: 2%;
  }
}
/* line 1780, ../sass/_main.scss */
.hero-ranger-avatar-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1em;
  color: var(--charcoal), 10%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(-5px) rotate(-1deg);
  }
}
/* line 1801, ../sass/_main.scss */
.fundraise {
  padding: 1rem 0 4rem;
  text-align: center;
}
/* line 1805, ../sass/_main.scss */
.fundraise-amount {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.275rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
/* line 1816, ../sass/_main.scss */
.fundraise-progress-wrap {
  max-width: 640px;
  margin: 0 auto 0.75rem;
  position: relative;
}
/* line 1822, ../sass/_main.scss */
.fundraise-progress-bar {
  height: 20px;
  background: #f0e6c8;
  border-radius: 300px;
  overflow: visible;
  position: relative;
}
/* line 1830, ../sass/_main.scss */
.fundraise-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #e8d9b5 0%, #d9c186 100%);
  border-radius: 300px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
/* line 1839, ../sass/_main.scss */
.fundraise-progress-badge {
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translate(50%, -50%);
  background: #1a6b5c;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 300px;
  white-space: nowrap;
}
/* line 1854, ../sass/_main.scss */
.fundraise-meta {
  display: flex;
  justify-content: space-between;
  max-width: 640px;
  margin: 0.6rem auto 0;
  font-size: 0.82rem;
  color: #6b6b6b;
  font-family: var(--font-body);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* line 1871, ../sass/_main.scss */
.stats {
  padding: 2rem 0 5rem;
}
/* line 1874, ../sass/_main.scss */
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media (max-width: 600px) {
  /* line 1874, ../sass/_main.scss */
  .stats-grid {
    gap: 3rem;
  }
}
/* line 1884, ../sass/_main.scss */
.stats-item {
  text-align: center;
  animation: fadeUp 0.8s ease both;
}
/* line 1888, ../sass/_main.scss */
.stats-item:nth-child(2) {
  animation-delay: 0.15s;
}
/* line 1891, ../sass/_main.scss */
.stats-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 3.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.15rem;
  color: var(--charcoal);
}
/* line 1900, ../sass/_main.scss */
.stats-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-top: 0.5rem;
}

/* line 1911, ../sass/_main.scss */
.services {
  padding: 4rem 0 5rem;
}
/* line 1915, ../sass/_main.scss */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  /* line 1915, ../sass/_main.scss */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* line 1928, ../sass/_main.scss */
.services-copy {
  max-width: 380px;
}
@media (max-width: 768px) {
  /* line 1928, ../sass/_main.scss */
  .services-copy {
    max-width: 100%;
  }
}
/* line 1936, ../sass/_main.scss */
.services-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.075rem;
  margin-bottom: 2.5rem;
  color: var(--charcoal);
}
/* line 1946, ../sass/_main.scss */
.services-team {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* line 1952, ../sass/_main.scss */
.services-team-avatars {
  display: flex;
}
/* line 1955, ../sass/_main.scss */
.services-team-avatars span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  overflow: hidden;
}
/* line 1969, ../sass/_main.scss */
.services-team-avatars span:not(:first-child) {
  margin-left: -12px;
}
/* line 1970, ../sass/_main.scss */
.services-team-avatars span:nth-child(1) {
  background: #c0d4c5;
}
/* line 1971, ../sass/_main.scss */
.services-team-avatars span:nth-child(2) {
  background: #f2c5c0;
}
/* line 1972, ../sass/_main.scss */
.services-team-avatars span:nth-child(3) {
  background: #c5c0f2;
}
/* line 1976, ../sass/_main.scss */
.services-team-text {
  font-size: 0.82rem;
  color: #6b6b6b;
  line-height: 1.4;
}
/* line 1981, ../sass/_main.scss */
.services-team-text strong {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
}
/* line 1989, ../sass/_main.scss */
.services-accordion {
  list-style: none;
  flex-direction: column;
  flex-wrap: nowrap;
}

/* line 1997, ../sass/_main.scss */
.accordion-item {
  border-bottom: 1px solid #acacac;
  display: block;
}
/* line 2001, ../sass/_main.scss */
.accordion-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}
/* line 2011, ../sass/_main.scss */
.accordion-item-header:hover {
  color: #1a6b5c;
}
/* line 2014, ../sass/_main.scss */
.accordion-item-header:hover .accordion-item-icon {
  border-color: #1a6b5c;
  color: #1a6b5c;
}
/* line 2018, ../sass/_main.scss */
.accordion-item-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: inherit;
  transition: color 0.2s;
  color: var(--black);
}
/* line 2027, ../sass/_main.scss */
.accordion-item-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid #d4d4d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--charcoal);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
/* line 2042, ../sass/_main.scss */
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.7;
}
/* line 2050, ../sass/_main.scss */
.accordion-item-body p {
  padding-bottom: 1.25rem;
}
/* line 2054, ../sass/_main.scss */
.accordion-item.open .accordion-item-icon {
  background: #1a6b5c;
  border-color: #1a6b5c;
  color: #fff;
  transform: rotate(45deg);
}
/* line 2061, ../sass/_main.scss */
.accordion-item.open .accordion-item-body {
  max-height: 200px;
}

/* line 2074, ../sass/_main.scss */
.brands-section {
  padding: 4rem 0;
  background: var(--white);
  overflow: hidden;
}

/* line 2080, ../sass/_main.scss */
.brands-label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--charcoal);
}

/* line 2088, ../sass/_main.scss */
.brands-marquee-wrapper {
  overflow: hidden;
  position: relative;
}
/* line 2092, ../sass/_main.scss */
.brands-marquee-wrapper::before, .brands-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 2;
  pointer-events: none;
}
/* line 2103, ../sass/_main.scss */
.brands-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
/* line 2108, ../sass/_main.scss */
.brands-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

/* line 2114, ../sass/_main.scss */
.brands-marquee {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}
/* line 2120, ../sass/_main.scss */
.brands-marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  to {
    transform: translateX(-50%);
  }
}
/* line 2127, ../sass/_main.scss */
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  border-right: 1px solid var(--light-gray);
  transition: var(--transition);
  filter: grayscale(80%);
  opacity: 0.5;
  min-width: 100px;
}
/* line 2139, ../sass/_main.scss */
.brand-item img {
  height: 130px;
  width: auto;
}
/* line 2141, ../sass/_main.scss */
.brand-item:hover {
  filter: grayscale(0);
  opacity: 1;
}
/* line 2146, ../sass/_main.scss */
.brand-item small {
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: var(--text-body);
  text-transform: uppercase;
  display: block;
}

/* line 2155, ../sass/_main.scss */
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  display: block;
  text-align: center;
}
/* line 2162, ../sass/_main.scss */
.brand-name.unbrako {
  color: #1a3a8c;
  font-size: 1.5rem;
}
/* line 2163, ../sass/_main.scss */
.brand-name.cooper {
  color: #333;
  font-size: 1rem;
}
/* line 2164, ../sass/_main.scss */
.brand-name.fried {
  color: var(--charcoal);
  letter-spacing: 2px;
}
/* line 2165, ../sass/_main.scss */
.brand-name.unified {
  color: #444;
}
/* line 2167, ../sass/_main.scss */
.brand-name.nord {
  width: 36px;
  height: 36px;
  background: #003087;
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* line 2187, ../sass/_main.scss */
.countries-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  background: var(--bg);
  padding: 80px 60px;
  align-items: center;
  font-family: var(--font-body);
}
/* line 2197, ../sass/_main.scss */
.countries-section .map-side {
  position: relative;
  height: 420px;
}
/* line 2202, ../sass/_main.scss */
.countries-section .map-dots {
  position: absolute;
  inset: 0;
  background: url(../images/map-world.svg);
  background-size: 100%;
}
/* line 2215, ../sass/_main.scss */
.countries-section .map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
/* line 2223, ../sass/_main.scss */
.countries-section .pin-bubble {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border-radius: 50px;
  padding: 5px 12px 5px 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
/* line 2237, ../sass/_main.scss */
.countries-section .pin-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
/* line 2245, ../sass/_main.scss */
.countries-section .pin-num.teal {
  background: var(--primary-color);
  color: white;
}
/* line 2246, ../sass/_main.scss */
.countries-section .pin-num.gold {
  background: var(--gold);
  color: white;
}
/* line 2248, ../sass/_main.scss */
.countries-section .pin-us {
  top: 28%;
  left: 8%;
}
/* line 2249, ../sass/_main.scss */
.countries-section .pin-de {
  top: 18%;
  left: 52%;
}
/* line 2250, ../sass/_main.scss */
.countries-section .pin-ca {
  top: 42%;
  left: 4%;
}
/* line 2251, ../sass/_main.scss */
.countries-section .pin-it {
  top: 52%;
  left: 46%;
}
/* line 2253, ../sass/_main.scss */
.countries-section .scroll-pill {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  rotate: 180deg;
}
/* line 2270, ../sass/_main.scss */
.countries-section .text-side {
  padding-left: 60px;
}
/* line 2272, ../sass/_main.scss */
.countries-section .text-side h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
/* line 2280, ../sass/_main.scss */
.countries-section .text-side p {
  font-size: 0.95rem;
  color: var(--text-body);
  max-width: 420px;
  margin-bottom: 32px;
}
/* line 2287, ../sass/_main.scss */
.countries-section .btn-assist {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-lt);
  border: 1.5px solid var(--gold);
  color: var(--charcoal);
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
/* line 2302, ../sass/_main.scss */
.countries-section .btn-assist:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
/* line 2304, ../sass/_main.scss */
.countries-section .btn-assist:hover .arrow-circle {
  background: var(--charcoal);
  color: white;
}
/* line 2306, ../sass/_main.scss */
.countries-section .btn-assist .arrow-circle {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background 0.2s;
}

/* line 2321, ../sass/_main.scss */
.location-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
/* line 2327, ../sass/_main.scss */
.location-cards .service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.875rem 1.875rem 2.0625rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
/* line 2335, ../sass/_main.scss */
.location-cards .service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
/* line 2338, ../sass/_main.scss */
.location-cards .service-card:hover .card-arrow {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
/* line 2341, ../sass/_main.scss */
.location-cards .service-card:hover .mooving-arrow.solo .back {
  left: 0px;
}
/* line 2345, ../sass/_main.scss */
.location-cards .service-card:hover .mooving-arrow.solo .front {
  left: 16px;
}
/* line 2351, ../sass/_main.scss */
.location-cards .service-card .card-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--charcoal);
  transition: background 0.2s, color 0.2s;
}
/* line 2361, ../sass/_main.scss */
.location-cards .service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: .9375rem;
  color: var(--charcoal);
  text-align: left;
  width: 100%;
}
/* line 2369, ../sass/_main.scss */
.location-cards .service-card p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.5;
  text-align: left;
  width: 100%;
  margin: 0;
}
/* line 2378, ../sass/_main.scss */
.location-cards .service-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  width: 100%;
}
/* line 2386, ../sass/_main.scss */
.location-cards .service-card .card-num {
  font-weight: 600;
  color: var(--black);
  letter-spacing: 1px;
}

/* line 2408, ../sass/_main.scss */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 60px;
}

/* ════════════════════════════
   SECTION 2 – Testimonials Slider
════════════════════════════ */
/* line 2413, ../sass/_main.scss */
.testimonials-section {
  padding: 80px 60px 60px;
  background: var(--bg);
  /* Track */
  /* Progress bar */
  /* Footer controls */
}
/* line 2418, ../sass/_main.scss */
.testimonials-section .ts-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  max-width: 500px;
  margin-bottom: 44px;
  color: var(--charcoal);
}
/* line 2428, ../sass/_main.scss */
.testimonials-section .ts-track-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
/* line 2434, ../sass/_main.scss */
.testimonials-section .ts-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
/* line 2440, ../sass/_main.scss */
.testimonials-section .ts-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 42% 32% 26%;
  overflow: hidden;
  min-height: 320px;
  gap: 1.5rem;
}
/* line 2449, ../sass/_main.scss */
.testimonials-section .ts-body {
  padding: 3.25rem 1.875rem 0 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--white);
  border-radius: 1.25rem;
}
/* line 2458, ../sass/_main.scss */
.testimonials-section .ts-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
/* line 2467, ../sass/_main.scss */
.testimonials-section .ts-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  color: var(--charcoal);
  font-style: normal;
}
/* line 2475, ../sass/_main.scss */
.testimonials-section .ts-img-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 1.25rem;
}
/* line 2484, ../sass/_main.scss */
.testimonials-section .ts-img-wrap svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
/* line 2491, ../sass/_main.scss */
.testimonials-section .ts-author {
  text-align: left;
  z-index: 2;
}
/* line 2496, ../sass/_main.scss */
.testimonials-section .ts-author-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--black);
  line-height: 1.41;
  letter-spacing: -.03rem;
  font-weight: 500;
}
/* line 2505, ../sass/_main.scss */
.testimonials-section .ts-author-role {
  color: var(--charcoal);
}
/* line 2510, ../sass/_main.scss */
.testimonials-section .ts-progress {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
}
/* line 2518, ../sass/_main.scss */
.testimonials-section .ts-bar {
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
/* line 2527, ../sass/_main.scss */
.testimonials-section .ts-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
/* line 2536, ../sass/_main.scss */
.testimonials-section .ts-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* line 2542, ../sass/_main.scss */
.testimonials-section .ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
  flex-shrink: 0;
}
/* line 2552, ../sass/_main.scss */
.testimonials-section .ts-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--teal);
}
/* line 2558, ../sass/_main.scss */
.testimonials-section .ts-counter {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
}
/* line 2565, ../sass/_main.scss */
.testimonials-section .ts-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* line 2571, ../sass/_main.scss */
.testimonials-section .ts-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--charcoal);
  transition: all 0.25s;
  flex-shrink: 0;
}
/* line 2583, ../sass/_main.scss */
.testimonials-section .ts-btn:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}
/* line 2584, ../sass/_main.scss */
.testimonials-section .ts-btn.next {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
/* line 2585, ../sass/_main.scss */
.testimonials-section .ts-btn.next:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
/* line 2587, ../sass/_main.scss */
.testimonials-section .ts-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.25s;
}
/* line 2598, ../sass/_main.scss */
.testimonials-section .ts-play:hover {
  color: var(--teal);
  border-color: var(--teal);
}

/* ════════════════════════════
   Brand Footer
════════════════════════════ */
/* line 2607, ../sass/_main.scss */
.main-footer-wrap {
  max-width: 120.313rem;
  padding-right: .9375rem;
  padding-left: .9375rem;
}
/* line 2612, ../sass/_main.scss */
.main-footer-wrap .inner-wrapper {
  padding-top: 7rem;
  background-color: var(--white);
  border-radius: 2.5rem;
  margin-bottom: 1.25rem;
  padding-right: .9375rem;
  padding-left: .9375rem;
}
/* line 2621, ../sass/_main.scss */
.main-footer-wrap .brand-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  border-bottom: .0625rem solid #0003;
  max-width: 94.9375rem;
  padding: 0 0 3.5rem;
}
/* line 2630, ../sass/_main.scss */
.main-footer-wrap .brand-footer .brand-name {
  font-family: var(--font-display);
  color: var(--charcoal);
  letter-spacing: clamp(-0.1125rem, -10vw, -0.375rem);
  font-size: clamp(3.75rem, 10vw, 12.5rem);
  font-weight: 500;
  line-height: .76;
}
/* line 2639, ../sass/_main.scss */
.main-footer-wrap .brand-footer .follow-block {
  text-align: left;
  gap: 2rem;
  padding-top: .5rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
/* line 2648, ../sass/_main.scss */
.main-footer-wrap .brand-footer .follow-label {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}
/* line 2658, ../sass/_main.scss */
.main-footer-wrap .brand-footer .follow-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 30px;
  background: var(--border);
}
/* line 2671, ../sass/_main.scss */
.main-footer-wrap .social-icons {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
/* line 2675, ../sass/_main.scss */
.main-footer-wrap .social-icons .social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--charcoal);
  text-decoration: none;
  background: var(--white);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
/* line 2686, ../sass/_main.scss */
.main-footer-wrap .social-icons .social-icon:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
/* line 2693, ../sass/_main.scss */
.main-footer-wrap .footer-nav {
  display: flex;
  grid-column-gap: 3.75rem;
  grid-row-gap: 3.75rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 4.375rem;
  padding-bottom: 7.1875rem;
}
/* line 2705, ../sass/_main.scss */
.main-footer-wrap .newsletter-col {
  grid-column-gap: 5.625rem;
  grid-row-gap: 5.625rem;
  flex: 1;
  max-width: 39.375rem;
  margin-top: -.1875rem;
}
/* line 2712, ../sass/_main.scss */
.main-footer-wrap .newsletter-col h3 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1.33;
  margin-bottom: 5rem;
  max-width: 11.34rem;
  color: var(--black);
}
/* line 2721, ../sass/_main.scss */
.main-footer-wrap .newsletter-col .input-row {
  position: relative;
  margin-bottom: 16px;
}
/* line 2724, ../sass/_main.scss */
.main-footer-wrap .newsletter-col .input-row input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  border-bottom: .0625rem solid #0003;
  width: 100%;
  height: 3.125rem;
  margin-bottom: 0;
  padding: 0 0 1.5625rem;
}
/* line 2739, ../sass/_main.scss */
.main-footer-wrap .newsletter-col .input-row input::placeholder {
  color: var(--text-body);
}
/* line 2740, ../sass/_main.scss */
.main-footer-wrap .newsletter-col .input-row input:focus {
  border-color: var(--primary-color);
}
/* line 2745, ../sass/_main.scss */
.main-footer-wrap .newsletter-col .input-submit {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s, transform 0.2s;
}
/* line 2759, ../sass/_main.scss */
.main-footer-wrap .newsletter-col .input-submit::hover {
  background: var(--charcoal);
  transform: scale(1.1);
}
/* line 2763, ../sass/_main.scss */
.main-footer-wrap .footer-col {
  gap: 2.5rem;
  flex: 1;
  max-width: 8.6875rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
/* line 2771, ../sass/_main.scss */
.main-footer-wrap .footer-col h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.5px;
}
/* line 2779, ../sass/_main.scss */
.main-footer-wrap .footer-col ul {
  list-style: none;
  flex-direction: column;
  flex-wrap: nowrap;
  grid-row-gap: 1.5625rem;
}
/* line 2787, ../sass/_main.scss */
.main-footer-wrap .footer-col ul li a {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}
/* line 2792, ../sass/_main.scss */
.main-footer-wrap .footer-col ul li a:hover {
  color: var(--primary-color);
}
/* line 2801, ../sass/_main.scss */
.main-footer-wrap .address-col p {
  line-height: 1.6;
  margin-bottom: 2rem;
}
/* line 2806, ../sass/_main.scss */
.main-footer-wrap .contact-label {
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
/* line 2812, ../sass/_main.scss */
.main-footer-wrap .footer-bottom {
  border-top: 1px solid var(--border);
  color: var(--text-body);
  text-align: left;
  gap: 1.875rem;
  border-top: .0625rem solid #0003;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.8125rem;
  padding-bottom: 2.8125rem;
}
/* line 2824, ../sass/_main.scss */
.main-footer-wrap .footer-bottom span {
  font-weight: 500;
  color: var(--black);
}

/* line 2838, ../sass/_main.scss */
.slide-floting-menu {
  position: fixed;
  bottom: calc(20% - 70px);
  right: 0;
  display: block;
  z-index: 999;
}
/* line 2845, ../sass/_main.scss */
.slide-floting-menu ul.menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
/* line 2850, ../sass/_main.scss */
.slide-floting-menu ul.menu li {
  background: var(--primary-color);
  width: auto;
  height: 44px;
  display: inline-flex;
  padding: 0.6rem 0.6rem 0.6rem 15px;
  position: relative;
  margin-right: 0;
  transition: transform 500ms, background-color 500ms, color 500ms;
  align-items: center;
  margin-bottom: 2px;
  border-radius: 30px 0 0 30px;
}
/* line 2863, ../sass/_main.scss */
.slide-floting-menu ul.menu li i {
  font-size: 1.5rem;
  margin-right: 10px;
}
/* line 2864, ../sass/_main.scss */
.slide-floting-menu ul.menu li fig {
  display: inline-block;
}
/* line 2866, ../sass/_main.scss */
.slide-floting-menu ul.menu li img {
  width: 22px;
  height: 100%;
  display: block;
  margin: auto;
  position: relative;
}
/* line 2875, ../sass/_main.scss */
.slide-floting-menu ul.menu li a {
  color: #fff;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
/* line 2884, ../sass/_main.scss */
.slide-floting-menu ul.menu li span {
  display: none;
}
/* line 2886, ../sass/_main.scss */
.slide-floting-menu ul.menu li:hover {
  background: var(--white);
  margin-right: -100px;
  transform: translateX(-100px);
}
/* line 2891, ../sass/_main.scss */
.slide-floting-menu ul.menu li:hover a {
  color: #000;
}
/* line 2892, ../sass/_main.scss */
.slide-floting-menu ul.menu li:hover span {
  display: inline;
  padding-left: 10px;
}

/* ----------------------------------- */
/*  Break-Points Min-1200px - Desktop 
/* ----------------------------------- */
/* ----------------------------------- */
/*  Break-Points Min-1200px - Desktop 
/* ----------------------------------- */
/* ----------------------------------- */
/*  Break-Points MAx-1600px -  
/* ----------------------------------- */
/* ----------------------------------- */
/*  Break-Points MAx-1400px -  
/* ----------------------------------- */
/* ----------------------------------- */
/*  Break-Points Max-1199px - Laptop 
/* ----------------------------------- */
@media screen and (max-width: 1199px) {
  /* line 39, ../sass/_media-query.scss */
  .industries-left-image {
    width: 30%;
  }

  /* line 40, ../sass/_media-query.scss */
  .industries-right {
    padding: 60px 40px;
  }
}
/* ----------------------------------- */
/*  Break-Points Max-1050px - Min-desktop
/* ----------------------------------- */
@media (max-width: 1050px) {
  /* line 51, ../sass/_media-query.scss */
  .navbar-toggler {
    background: #1a1a1a;
    padding: 8px;
    gap: 6px;
  }

  /* line 56, ../sass/_media-query.scss */
  .navbar-collapse {
    background: rgba(17, 17, 17, 0.98);
    padding: 20px;
    border-radius: 0 0 12px 12px;
    margin-top: 10px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 84px;
    height: 100vh;
  }
  /* line 68, ../sass/_media-query.scss */
  .navbar-collapse.show .navbar-nav {
    row-gap: 1.5rem !important;
  }
  /* line 73, ../sass/_media-query.scss */
  .navbar-collapse .navbar-nav {
    row-gap: 1.5rem !important;
  }
  /* line 75, ../sass/_media-query.scss */
  .navbar-collapse .navbar-nav .dropdown-menu {
    position: absolute;
    width: 100%;
  }

  /* line 82, ../sass/_media-query.scss */
  .countries-section, .testimonials-section {
    padding: 60px 40px;
  }

  /* line 83, ../sass/_media-query.scss */
  .text-side {
    padding-left: 40px;
  }

  /* line 84, ../sass/_media-query.scss */
  .brand-footer, .footer-nav, .footer-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }

  /* line 85, ../sass/_media-query.scss */
  .divider {
    margin: 0 40px;
  }

  /* line 86, ../sass/_media-query.scss */
  .ts-slide {
    grid-template-columns: 1fr 220px;
  }
}
/* ----------------------------------- */
/*  Break-Points Max-992px - Laptop 
/* ----------------------------------- */
@media screen and (max-width: 992px) {
  /* line 97, ../sass/_media-query.scss */
  .since-badge {
    display: none;
  }

  /* line 98, ../sass/_media-query.scss */
  .hero-float-contact {
    display: none;
  }

  /* line 99, ../sass/_media-query.scss */
  .nav-actions {
    margin-top: 16px;
  }

  /* line 100, ../sass/_media-query.scss */
  .industries-section {
    flex-direction: column;
    min-height: unset;
  }

  /* line 101, ../sass/_media-query.scss */
  .industries-image {
    flex: 0 0 240px;
    width: 100%;
  }

  /* line 105, ../sass/_media-query.scss */
  .industries-image::after {
    display: none;
  }

  /* line 106, ../sass/_media-query.scss */
  .industries-right {
    padding: 36px 20px 32px;
  }

  /* line 107, ../sass/_media-query.scss */
  .industry-card {
    flex: 0 0 240px;
    min-height: 240px;
  }

  /* line 108, ../sass/_media-query.scss */
  .carousel-sec-wrap {
    padding: 36px 24px 28px;
  }
  /* line 108, ../sass/_media-query.scss */
  .carousel-sec-wrap .card {
    flex: 0 0 calc(100% - 8px);
  }

  /* line 110, ../sass/_media-query.scss */
  .nav-links, .nav-cta {
    display: none;
  }

  /* line 111, ../sass/_media-query.scss */
  .nav-hamburger {
    display: flex;
  }

  /* line 112, ../sass/_media-query.scss */
  .mobile-drawer {
    display: flex;
  }

  /* line 113, ../sass/_media-query.scss */
  .mega-backdrop {
    top: 56px;
  }

  /* line 114, ../sass/_media-query.scss */
  .nav-inner {
    height: 56px;
  }
}
/* ----------------------------------- */
/*  Break-Points Max-768px - Tab 
/* ----------------------------------- */
@media screen and (max-width: 768px) {
  /* line 122, ../sass/_media-query.scss */
  .hero-title {
    font-size: 2.2rem;
  }

  /* line 123, ../sass/_media-query.scss */
  .topbar {
    display: none;
  }

  /* line 124, ../sass/_media-query.scss */
  .contact-form-wrap {
    padding: 24px;
  }

  /* line 125, ../sass/_media-query.scss */
  .why-img {
    height: 300px;
  }

  /* line 127, ../sass/_media-query.scss */
  .about-inner {
    grid-template-columns: 1fr;
  }

  /* line 128, ../sass/_media-query.scss */
  .about-img {
    aspect-ratio: 4/3;
  }

  /* line 129, ../sass/_media-query.scss */
  .about-stat {
    text-align: left;
  }

  /* line 131, ../sass/_media-query.scss */
  .med-row {
    grid-template-columns: 100px 1fr;
  }

  /* line 132, ../sass/_media-query.scss */
  .med-desc {
    display: none;
  }

  /* line 133, ../sass/_media-query.scss */
  .med-row.active .med-desc {
    display: block;
    grid-column: 1/-1;
  }

  /* line 135, ../sass/_media-query.scss */
  .testi-top {
    grid-template-columns: 1fr;
  }

  /* line 136, ../sass/_media-query.scss */
  .service-cards {
    grid-template-columns: 1fr;
  }

  /* line 137, ../sass/_media-query.scss */
  .mini-cards {
    grid-template-columns: 1fr;
  }

  /* line 139, ../sass/_media-query.scss */
  .video-section {
    height: 280px;
    margin: 0 0 4rem;
    border-radius: 0;
  }

  /* line 141, ../sass/_media-query.scss */
  .countries-section {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 40px;
  }

  /* line 142, ../sass/_media-query.scss */
  .text-side {
    padding-left: 0;
  }

  /* line 143, ../sass/_media-query.scss */
  .map-side {
    height: 280px;
  }

  /* line 144, ../sass/_media-query.scss */
  .scroll-pill {
    display: none;
  }

  /* line 145, ../sass/_media-query.scss */
  .divider {
    margin: 0 24px;
  }

  /* line 146, ../sass/_media-query.scss */
  .location-cards {
    grid-template-columns: 1fr;
  }

  /* line 148, ../sass/_media-query.scss */
  .testimonials-section {
    padding: 48px 24px 44px;
  }

  /* line 149, ../sass/_media-query.scss */
  .ts-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
  }

  /* line 150, ../sass/_media-query.scss */
  .ts-img-wrap {
    order: -1;
    min-height: 220px;
  }

  /* line 151, ../sass/_media-query.scss */
  .ts-body {
    padding: 32px 28px;
  }

  /* line 152, ../sass/_media-query.scss */
  .ts-author {
    top: 16px;
    right: 16px;
  }

  /* line 154, ../sass/_media-query.scss */
  .brand-footer {
    padding: 40px 24px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  /* line 155, ../sass/_media-query.scss */
  .follow-block {
    text-align: left;
  }

  /* line 156, ../sass/_media-query.scss */
  .follow-label {
    justify-content: flex-start;
  }

  /* line 157, ../sass/_media-query.scss */
  .social-icons {
    justify-content: flex-start;
  }

  /* line 159, ../sass/_media-query.scss */
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px;
    gap: 32px;
  }

  /* line 160, ../sass/_media-query.scss */
  .newsletter-col {
    grid-column: 1 / -1;
  }

  /* line 161, ../sass/_media-query.scss */
  .footer-bottom {
    padding: 16px 24px;
  }
}
/* ----------------------------------- */
/*  Break-Points Max-680px - Tab 
/* ----------------------------------- */
@media screen and (max-width: 680px) {
  /* line 170, ../sass/_media-query.scss */
  .mega-panel {
    grid-template-columns: 1fr;
  }

  /* line 171, ../sass/_media-query.scss */
  .mega-col {
    border-right: none;
    border-bottom: 1px solid var(--drop-bdr);
    padding: 1.5rem;
  }
}
/* ----------------------------------- */
/*  Break-Points Max-600px - Mobile 
/* ----------------------------------- */
@media screen and (max-width: 600px) {
  /* line 182, ../sass/_media-query.scss */
  .hero-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* line 183, ../sass/_media-query.scss */
  .hero-buttons {
    flex-direction: column;
  }

  /* line 184, ../sass/_media-query.scss */
  .hero-buttons .btn {
    text-align: center;
  }

  /* line 185, ../sass/_media-query.scss */
  .industry-card {
    flex: 0 0 220px;
    min-height: 230px;
    padding: 22px 18px 18px;
  }

  /* line 186, ../sass/_media-query.scss */
  .carousel-arrows {
    display: none;
  }

  /* line 187, ../sass/_media-query.scss */
  .carousel-sec-wrap {
    padding: 28px 16px 24px;
  }
  /* line 189, ../sass/_media-query.scss */
  .carousel-sec-wrap .nav-btn--prev {
    left: -12px;
  }
  /* line 190, ../sass/_media-query.scss */
  .carousel-sec-wrap .nav-btn--next {
    right: -12px;
  }

  /* line 193, ../sass/_media-query.scss */
  .med-row {
    grid-template-columns: 80px 1fr;
  }

  /* line 194, ../sass/_media-query.scss */
  .med-thumb {
    width: 80px;
    height: 80px;
  }

  /* line 195, ../sass/_media-query.scss */
  .med-name {
    font-size: .85rem;
    padding: .85rem 1rem;
  }

  /* line 196, ../sass/_media-query.scss */
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* line 197, ../sass/_media-query.scss */
  .about-content h2 {
    font-size: 1.25rem;
  }

  /* line 199, ../sass/_media-query.scss */
  .fundraise__amount {
    margin-bottom: 1.5rem;
  }

  /* line 200, ../sass/_media-query.scss */
  .stats__grid {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  /* line 202, ../sass/_media-query.scss */
  .footer-nav {
    grid-template-columns: 1fr;
  }

  /* line 203, ../sass/_media-query.scss */
  .ts-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  /* line 206, ../sass/_media-query.scss */
  .stick-service-wrap .nav-dots {
    right: 12px;
  }
  /* line 207, ../sass/_media-query.scss */
  .stick-service-wrap .card {
    border-radius: 18px;
  }
  /* line 208, ../sass/_media-query.scss */
  .stick-service-wrap .config-panel {
    gap: 4px;
    padding: 5px 8px;
  }
}
/* ----------------------------------- */
/*  Break-Points Max-400px - Mobile 
/* ----------------------------------- */
@media screen and (max-width: 400px) {
  /* line 221, ../sass/_media-query.scss */
  .service-cards {
    grid-template-columns: 1fr;
  }
}
