:root {
  /* =========================================
       COLOR SYSTEM
       ========================================= */

  /* Brand Color 2 */
  --color-brand-red: #942f2c;
  --color-black: #000000;
  --color-white: #ffffff;

  /* Primary Brand Colors */
  --color-primary-red: #a02426;
  --color-onyx: #111111;
  --color-alabaster: #d9d9d9;
  --color-gray: #373737;
  --color-gray-2: #e5e5e5;

  /* Secondary Colors */
  --color-blue-1: #1b32b2;
  --color-blue-2: #4e64ad;
  --color-green-1: #239286;
  --color-green-2: #78b189;
  --color-yellow-1: #f0a839;
  --color-yellow-2: #f6ca65;
  --color-pink-1: #c0007d;
  --color-pink-2: #dc77a4;
  --color-brown-1: #753436;
  --color-brown-2: #9b6061;

  /* Semantic Mappings */
  --bg-color: var(--color-onyx);
  /* Using Onyx for slightly softer dark theme */
  --bg-color-alt: var(--color-black);

  --text-color: var(--color-gray);
  --text-color-muted: #a0a0a0;
  /* Kept manual or could map to a tint */
  --text-color-inverse: var(--color-white);

  --primary-color: var(--color-primary-red);
  --accent-color: var(--color-blue-1);
  /* Using Blue 1 as accent */
  --error-color: var(--color-brand-red);
  --success-color: var(--color-green-1);

  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

  /* =========================================
       TYPOGRAPHY SYSTEM
       Ref: Inter (Body/Headings)
       ========================================= */

  /* Font Families */
  --font-primary: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Inter", sans-serif;

  /* Font Weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Line Heights */
  --lh-tight: 1.1;
  --lh-heading: 1.2;
  --lh-body: 1.6;

  /* Font Sizes (Base 16px) */
  /* Display: 72px */
  --fs-display: 4.5rem;
  /* Heading 1: 56px */
  --fs-h1: 3.5rem;
  /* Heading 2: 40px */
  --fs-h2: 2.5rem;
  /* Subheading 1: 32px */
  --fs-sub1: 2rem;
  /* Subheading 2: 24px */
  --fs-sub2: 1.5rem;
  /* Subheading 3: 20px */
  --fs-sub3: 1.25rem;
  /* Subheading 4: 16px */
  --fs-sub4: 1rem;

  /* Body Sizes */
  /* Large: 20px */
  --fs-body-lg: 1.25rem;
  /* Medium: 18px */
  --fs-body-md: 1.125rem;
  /* Regular: 16px */
  --fs-body-reg: 1rem;
  /* Small: 14px */
  --fs-body-sm: 0.875rem;
  /* Caption: 12px */
  --fs-caption: 0.75rem;

  /* =========================================
       SPACING & LAYOUT
       ========================================= */
  --container-width: 1344px;
  --header-height: 80px;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* =========================================
       BORDERS & RADIUS
       ========================================= */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-white);
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: var(--fs-body-reg);
  line-height: var(--lh-body);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  line-height: var(--lh-heading);
}

h1,
.h1 {
  font-size: var(--fs-h1);
}

h2,
.h2 {
  font-size: var(--fs-h2);
  color: var(--color-onyx);
}

h3,
.h3 {
  font-size: var(--fs-sub1);
}

h4,
.h4 {
  font-size: var(--fs-sub2);
}

h5,
.h5 {
  font-size: var(--fs-sub3);
}

h6,
.h6 {
  font-size: var(--fs-sub4);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: var(--accent-color);
}

/* Components: Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-primary);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-medium);
  text-align: center;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-full);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.btn-overlay {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translateX(-50%);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 100px;
  z-index: 0;
}
.btn-1 .btn-overlay {
  background: var(--color-black);
}
.btn-text {
  z-index: 2;
  position: relative;
}

.btn-1 {
  background-color: var(--color-brand-red);
  color: var(--color-white);
}

.btn:hover .btn-overlay {
  transform: scale3d(14, 14, 1);
}

.btn-1:hover {
  color: var(--color-white);
}

.btn-2 {
  background-color: var(--color-onyx);
  color: var(--color-white);
}

.btn-2:hover {
  color: var(--color-black);
}
.btn-2 .btn-overlay {
  background-color: var(--color-white);
}

.btn-3 {
  background-color: var(--color-white);
  color: var(--color-black);
}
.btn-3 .btn-overlay {
  background-color: var(--color-brand-red);
}

.btn-3:hover {
  color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  /* max-width: var(--container-width);
  margin: 0 auto; */
  padding: 0 64px;
  width: 100%;
}

.header-wrap {
  padding: 12px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: transparent;
  width: 100%;
  position: fixed;
  top: 12px;
}

.header-wrap .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--color-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  color: var(--color-brand-red);
  font-weight: 900;
  letter-spacing: -2px;
}
.custom-logo-link img,
.header-logo .logo {
  max-width: 195px;
}
.btn-meet-us {
  background-color: var(--color-brand-red);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 0.9rem;
  transition: all 0.3s ease-in-out;
}

.btn-meet-us:hover {
  background-color: var(--color-brand-red);
  border-radius: 8px;
}

.header-floating-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}

.header-floating-nav {
  border-radius: var(--radius-full);
  padding: 8px;
  display: inline-flex;
  background: linear-gradient(
    90deg,
    rgba(55, 55, 55, 0.5) 0%,
    rgba(17, 17, 17, 0.5) 100%
  );
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 100%;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  margin: 0;
}

.main-navigation a {
  display: block;
  color: var(--color-alabaster);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease-in-out;
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_parent > a {
  background: #00000066;
  color: var(--color-white);
  padding: 12px 68px;
}
.main-navigation a:hover {
  color: var(--color-white);
}

.header-toggle.menu-overlay {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  content: "";
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 123;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.featured-banner {
  background: #6d000099;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 8px;
  width: 100%;
  color: white;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 525px;
}

.featured-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-thumb {
  width: 62px;
  height: 32px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 5px;
  background: #ccc;
}

.featured-badge {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.featured-text {
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-text a {
  color: var(--color-white);
}

.site-branding .site-title a {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: white;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  border: 2px solid var(--color-brand-red);
  color: var(--color-brand-red);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.slider-nav-btn:hover {
  border-color: var(--color-black);
  color: var(--color-black);
  width: 60px;
}

.slider-nav-btn svg {
  transition: all 0.3s ease-in-out;
}

.slider-nav-btn:hover svg {
  fill: var(--color-black);
}

.slider-nav-btn.prev svg {
  transform: rotate(180deg);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--color-black);
  padding: 0;
  list-style: none;
  margin: 40px 0;
}

.filter-tab {
  padding: 15px 30px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: var(--fs-body-reg);
  text-transform: capitalize;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.filter-tab:hover,
.filter-tab.active {
  background-color: var(--color-brand-red);
  color: var(--color-white);
}

.slider-pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.main-navigation ul {
  list-style: none;
  display: flex;
}

.site-footer {
  padding: 120px 16px;
  background-color: var(--color-onyx);
  color: var(--color-white);
}

.site-footer .container {
  max-width: 1312px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  font-size: var(--fs-body-sm);
}

#floating-menu.is-stopped {
  position: absolute;
  bottom: auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
  align-items: center;
}

.footer-left {
  width: 50%;
  padding: 0 16px;
}

.footer-right {
  width: 50%;
  padding: 0 16px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.footer-nav ul li a {
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: var(--fs-body-sm);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.footer-nav ul li a:hover {
  color: var(--color-brand-red);
}

.home-row {
  display: flex;
  flex-wrap: wrap;
}

.home-left {
  width: 50%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  box-sizing: border-box;
}

.home-right {
  width: 50%;
  box-sizing: border-box;
}

.hero-image-slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-title {
  color: var(--color-onyx);
}

.hero-image-slider {
  width: 100%;
  height: 100%;
}

.hero-image-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-image-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-image-slider .swiper-slide {
  position: relative;
}

.slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--color-white);
  margin: 0 32px 86px;
  z-index: 1;
}
.hero-image-slider .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    204.91deg,
    rgba(0, 0, 0, 0.4) 0.88%,
    rgba(0, 0, 0, 0) 54.72%,
    rgba(0, 0, 0, 0.4) 85.17%
  );
}

.hero-bullets {
  position: absolute;
  bottom: 54px !important;
  left: 32px !important;
  display: flex;
  gap: 8px;
  z-index: 99;
}

.hero-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-white);
  opacity: 0.35;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.hero-bullets .swiper-pagination-bullet-active {
  background-color: var(--color-white);
  opacity: 1;
}

.hero-content {
  height: 100vh;
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-we-do {
  height: 100vh;
  padding: 32px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}

.what-we-do-content-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.what-we-do-content-list .what-we-do-content-item {
  display: flex;
  gap: 1rem;
  padding: 24px 0;
  border-top: 2px solid var(--color-gray);
  width: 100%;
  background-color: var(--color-white);
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.what-we-do-content-item-title {
  width: 47%;
}

.what-we-do-content-item-content {
  width: 53%;
}

.what-we-do-content-item-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: var(--fs-body-reg);
}

.what-we-do-content-item-content ul li a {
  color: var(--color-gray);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.what-we-do-content-item-content ul li a:hover {
  color: var(--color-brand-red);
}

.upcoming-event-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 2px solid var(--color-gray);
}

.upcoming-event-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.upcoming-event-item-content-description {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upcoming-event-item-content-description .btn-wrap {
  margin-top: auto;
}

.upcoming-event-item-content-date ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.upcoming-event-item-content-date ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.upcoming-event-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.upcoming-event-item-content-title {
  padding-bottom: 12px;
  color: var(--color-onyx);
}

.upcoming-event-icon {
  display: flex;
}

.upcoming-event-content-wrap .btn-wrap {
  margin-top: auto;
}

.featured-list-wrap .featured-list {
  display: flex;
  flex-direction: column;
}

.featured-list-wrap .featured-item a {
  display: flex;
  padding: 24px 0;
  border-top: 2px solid var(--color-gray);
  color: var(--color-onyx);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: var(--fw-semibold);
  font-size: 20px;
}

.featured-list-wrap .featured-item a:hover {
  background-color: var(--color-brand-red);
  color: var(--color-gray-2);
  padding-left: 16px;
  padding-right: 16px;
}

.cursor-readmore {
  position: fixed;
  transform: translate(12px, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
  pointer-events: none;
  padding: 12px 24px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  z-index: 9999;
  width: 100%;
  max-width: 131px;
}

.featured-list:hover ~ .cursor-readmore {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.what-client-say-content {
  font-size: var(--fs-sub1);
}

.what-client-say-wrap {
  border-top: 2px solid var(--color-gray);
  padding: 24px 0;
  position: relative;
}

.client-project-info {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-top: 40px;
}

.client-project-info-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.client-project-info-title {
  font-size: var(--fs-body-reg);
  font-weight: var(--fw-semibold);
  color: var(--color-onyx);
}

.client-project-info-description {
  font-size: var(--fs-body-reg);
}

.client-project-info-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.client-slider-nav {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 24px;
  left: 0;
  z-index: 99;
  color: var(--color-brand-red);
}

.lets-connetc-section {
  height: 100vh;
  padding: 32px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  background-color: var(--color-brand-red);
  color: var(--color-white);
}

.lets-connect-title .h4 {
  color: var(--color-white);
}

.lets-connect-description h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5%;
  color: var(--color-white);
  border-top: 2px solid var(--color-white);
  padding-top: 24px;
}

.header-actions {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-actions.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.about-left-content {
  padding: 32px 64px;
  background-color: var(--color-onyx);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  height: 100%;
}

.about-left-content h1 {
  color: var(--color-white);
}

.about-hero-description {
  font-size: var(--fs-sub2);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  color: var(--color-onyx);
}
.text-white {
  color: var(--color-white);
}

.co-founder-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.co-founder-list {
  display: flex;
  flex-direction: column;
}

.co-founder-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 2px solid var(--color-gray);
  padding: 24px 0;
}

.co-founder-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.co-founder-name {
  font-size: var(--fs-body-reg);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
}

.co-founder-position {
  font-size: var(--fs-body-reg);
}

.co-founder-wrap {
  padding: 120px 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.co-founder-list-wrap {
  display: flex;
  gap: 24px;
  align-items: center;
}

.co-founder-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--radius-md);
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
}
.founder-image {
  transition: all 0.3s ease-in-out;
}
.founder-image:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.co-founder-list-wrap .co-founder-list {
  width: 50%;
}

.founder-info-popup.f-html {
  padding: 0;
  background: transparent;
  margin: 0;
  border: none;
  height: 100%;
  width: 100%;
}

.founder-info-popup-row {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.founder-info-popup-left {
  width: 50%;
}

.founder-info-popup-right {
  width: 50%;
  background-color: var(--color-white);
}

.founder-info-popup-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  background-color: var(--color-onyx);
  color: var(--color-white);
  height: 100%;
  padding: 32px 64px;
}

.founder-info-popup-left-content-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.founder-info-popup-left-content-title .h2,
.founder-info-popup-left-content-title .h4 {
  color: var(--color-white);
}

.fancybox__slide.has-close-btn,
.fancybox__slide.has-html {
  padding: 0 !important;
}

.founder-right-content {
  padding: 32px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  height: 100%;
}

.founder-right-img {
  padding: 24px 0;
  border-top: 2px solid var(--color-gray);
  background-color: var(--color-white);
}

.founder-right-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--radius-md);
  /* max-width: 600px;
    margin: 0 auto; */
}

.founder-info-popup .f-button {
  position: relative !important;
  display: none;
}

.founder-info-popup-wrap {
  height: 100%;
}

.collaboration-organisations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 2px solid var(--color-gray);
  padding-top: 24px;
}

.collaboration-organisations-item {
  flex: 1 1 calc(33.333% - 24px);
  background-color: var(--color-white);
}
.collaboration-organisations-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact-sub-title {
  font-size: var(--fs-sub1);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  color: var(--color-gray-2);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info-item a {
  color: var(--color-white);
  font-size: var(--fs-body-reg);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.contact-info-item a:hover {
  color: var(--color-brand-red);
}
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-icon,
.social-link {
  display: flex;
  align-items: center;
}

.social-link {
  gap: 8px;
}

.social-link + .social-link {
  border-left: 1px solid var(--color-white);
  padding-left: 8px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.form-col-6 {
  width: 50%;
  padding: 0 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-group label {
  font-size: var(--fs-body-reg);
  color: var(--color-onyx);
}
.form-control {
  padding: 12px;
  border: 1px solid var(--color-alabaster);
  border-radius: var(--radius-md);
  font-size: var(--fs-body-reg);
  line-height: var(--lh-body);
  transition: all 0.3s ease-in-out;
}
.form-control:focus-visible,
.form-control:focus {
  outline: 0;
}
.wpcf7-form-control-wrap {
  display: contents;
}

.wpcf7-not-valid-tip {
  color: var(--error-color);
  font-size: var(--fs-body-sm);
}

.btn-submit {
  background-color: var(--color-brand-red);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--fs-body-lg);
  transition: all 0.3s ease-in-out;
}
.btn-submit:hover {
  padding: 12px 24px;
}
.btn-form-wrap {
  display: flex;
  gap: 16px;
  align-items: center;
}

.form-btn {
  position: relative;
}

.wpcf7-spinner {
  position: absolute;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
  margin: 0;
  animation: spin 1s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.submitting .btn-submit {
  opacity: 0.6;
  pointer-events: none;
}

.city-name {
  font-size: var(--fs-sub2);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
}

.map-link .btn-link {
  border-bottom: 1px solid var(--color-brand-red);
  transition: all 0.3s ease-in-out;
}

.map-link .btn-link:hover {
  color: var(--color-brand-red);
  letter-spacing: 0.5px;
}

.contact-locations {
  align-items: flex-start;
}

.contact-person-list {
  display: flex;
  flex-direction: column;
}
.contact-person-item {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 16px;
  padding: 24px 0;
  justify-content: space-between;
  border-top: 2px solid var(--color-gray);
}

.contact-person-name {
  font-size: var(--fs-sub3);
  font-weight: var(--fw-semibold);
  color: var(--color-onyx);
  letter-spacing: -0.5px;
  width: 100%;
}

.contact-person-connect {
  display: flex;
  gap: 4px;
  font-size: var(--fs-body-reg);
  color: var(--color-gray-2);
  line-height: var(--lh-body);
  letter-spacing: -0.5px;
  flex-direction: column;
  color: var(--color-gray);
  width: 200px;
  flex-shrink: 0;
}

.contact-person-connect a {
  color: var(--color-gray);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.contact-person-connect a:hover {
  color: var(--color-brand-red);
}
.blurck-work-titles {
  display: flex;
  flex-direction: column;
}
.blurck-work-preview img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.switch {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 20px;
  border-radius: 20px;
  background: var(--color-onyx);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
  cursor: pointer;
}
.switch::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--color-white);
  border-radius: 50%;
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.switch:active::before {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
}
input:checked + .switch {
  background: var(--color-brand-red);
}
input:checked + .switch::before {
  left: 21px;
  background: var(--color-white);
}
input:checked + .switch:active::before {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
}

.blurck-work-list-wrap {
  padding: 120px 64px;
}

.blurck-work-item {
  padding: 24px;
  transition: all 0.3s ease-in-out;
}
.work-category-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  /* margin-top: 12px; */
}

.blurck-work-item + .blurck-work-item {
  border-top: 1px solid var(--color-alabaster);
}

.work-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-extrabold);
  color: var(--color-alabaster);
  line-height: var(--lh-heading);
  letter-spacing: -0.5px;
  transition: all 0.3s ease-in-out;
}
.work-category {
  padding: 4px 8px;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  display: none;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  margin-top: 12px;
}

.work-detail .work-category-name,
.forum-category {
  padding: 4px 8px;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.blurck-work-item[data-bg="#C8CEEE"] .work-category,
.work-detail[data-bg="#C8CEEE"] .work-category-name,
.blog-item[data-bg="#C8CEEE"] .forum-category {
  color: #1d2760;
  border: 1px solid #1d2760;
}
.blurck-work-item[data-bg="#C8EEEA"] .work-category,
.work-detail[data-bg="#C8EEEA"] .work-category-name,
.blog-item[data-bg="#C8EEEA"] .forum-category {
  color: #1d605a;
  border: 1px solid #1d605a;
}
.blurck-work-item[data-bg="#EEDFC8"] .work-category,
.work-detail[data-bg="#EEDFC8"] .work-category-name,
.blog-item[data-bg="#EEDFC8"] .forum-category {
  color: #60461d;
  border: 1px solid #60461d;
}
.blurck-work-item[data-bg="#EEC8DC"] .work-category,
.work-detail[data-bg="#EEC8DC"] .work-category-name,
.blog-item[data-bg="#EEC8DC"] .forum-category {
  color: #601d46;
  border: 1px solid #601d46;
}
.blurck-work-item[data-bg="#D3C8EE"] .work-category,
.work-detail[data-bg="#D3C8EE"] .work-category-name,
.blog-item[data-bg="#D3C8EE"] .forum-category {
  color: #301d60;
  border: 1px solid #301d60;
}
.blurck-work-item[data-bg="#DEEEC8"] .work-category,
.work-detail[data-bg="#DEEEC8"] .work-category-name,
.blog-item[data-bg="#DEEEC8"] .forum-category {
  color: #43601d;
  border: 1px solid #43601d;
}
.blurck-work-item[data-bg="#C8CEEE"]:hover {
  background-color: #c8ceee;
}
.blurck-work-item[data-bg="#C8EEEA"]:hover {
  background-color: #c8eeea;
}
.blurck-work-item[data-bg="#EEDFC8"]:hover {
  background-color: #eedfc8;
}
.blurck-work-item[data-bg="#EEC8DC"]:hover {
  background-color: #eec8dc;
}
.blurck-work-item[data-bg="#D3C8EE"]:hover {
  background-color: #d3c8ee;
}
.blurck-work-item[data-bg="#DEEEC8"]:hover {
  background-color: #deeec8;
}
.blurck-work-item:hover .work-category {
  opacity: 1;
  visibility: visible;
  display: inline-block;
}
.blurck-work-item:hover .work-title {
  color: var(--color-onyx);
}

.work-title a {
  color: inherit;
  text-decoration: none;
}

.toggle-grid-list-wrap {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 24px 0;
  justify-content: flex-end;
}

.grid-active .home-left {
  display: none;
}
.grid-active .home-right {
  width: 100%;
}
.list-layout .list-featured-image {
  display: none;
}
.grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 48px;
  -moz-column-gap: 12px;
  column-gap: 12px;
}
.grid-layout .list-featured-image {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: block;
}
.grid-layout .list-featured-image img {
  aspect-ratio: 4 / 3;
  transition: all 0.3s ease-in-out;
  object-fit: cover;
}
.grid-layout .blurck-work-item {
  padding: 0;
}
.grid-layout .list-featured-image:hover img {
  transform: scale(1.1);
}
.grid-layout .work-title {
  font-size: var(--fs-sub2);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.grid-layout .work-category {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  display: inline-block;
  opacity: 1;
  visibility: visible;
}
.grid-layout .work-category-wrap {
  padding-top: 8px;
}
.grid-layout .blurck-work-item[data-bg="#C8CEEE"] .work-category {
  border-color: #c8ceee;
}
.grid-layout .blurck-work-item[data-bg="#C8EEEA"] .work-category {
  border-color: #c8eeea;
}
.grid-layout .blurck-work-item[data-bg="#EEDFC8"] .work-category {
  border-color: #eedfc8;
}
.grid-layout .blurck-work-item[data-bg="#EEC8DC"] .work-category {
  border-color: #eec8dc;
}
.grid-layout .blurck-work-item[data-bg="#D3C8EE"] .work-category {
  border-color: #d3c8ee;
}
.grid-layout .blurck-work-item[data-bg="#DEEEC8"] .work-category {
  border-color: #deeec8;
}

.grid-layout .blurck-work-item[data-bg]:hover {
  background-color: transparent;
}
.grid-layout .blurck-work-item + .blurck-work-item {
  border-top: 0;
}
.work-filter-wrap.grid-layout {
  display: flex;
  justify-content: flex-start;
}
.work-filter-wrap.grid-layout .work-filter-list {
  justify-content: flex-start;
}

.work-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 20px 0 48px;
  justify-content: flex-end;
}
.work-filter-list li {
  background-color: var(--color-onyx);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: var(--fs-body-reg);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  line-height: 1.2;
  letter-spacing: 0.3px;
  font-weight: var(--fw-medium);
}
.work-filter-list li.active {
  background-color: var(--color-brand-red);
  color: var(--color-white);
  border-radius: 100px;
}
.work-container {
  /* max-width: 1344px;
  margin: 0 auto; */
  padding: 0 64px;
  width: 100%;
}

.work-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.work-detail {
  padding-top: 200px;
  padding-bottom: 80px;
}
.work-title-wrap {
  width: 52%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.detail-work-title {
  max-width: 640px;
}
.work-detail-meta {
  width: 48%;
  padding: 0 16px;
}
.work-meta {
  display: flex;
  flex-direction: column;
  margin: 0;
  list-style: none;
  padding: 0;
}

.work-meta li {
  display: flex;
  gap: 16px;
  font-size: var(--fs-body-reg);
  color: var(--color-onyx);
  padding: 12px 0 40px;
  border-top: 2px solid var(--color-black);
  justify-content: space-between;
  font-weight: var(--fw-medium);
}
.work-meta li:last-child {
  padding-bottom: 12px;
}
.work-meta strong {
  letter-spacing: 0.3px;
}

.detail-work-title {
  font-size: var(--fs-display);
  font-weight: var(--fw-extrabold);
  color: var(--color-black);
  line-height: var(--lh-heading);
  letter-spacing: -0.5px;
}
.work-meta strong {
  font-weight: var(--fw-semibold);
  color: var(--color-onyx);
  text-transform: uppercase;
}

.work-featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 810px;
}

.work-detail-content {
  padding: 120px 0 40px;
}

.work-content-wrap {
  display: flex;
  margin: 0 -16px;
  flex-wrap: wrap;
}

.work-content-wrap-left {
  width: 51%;
  padding: 0 16px;
}
.work-content-wrap-right {
  width: 49%;
  padding: 0 16px;
}

.work-content-wrap-left .work-content-box {
  max-width: 590px;
}
.work-content-wrap-right .work-img-box {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.work-content-wrap-left .work-detail-meta {
  width: 100%;
  padding: 0;
}

.work-content-box .space {
  height: 146px;
}
.full-width-img .img-info {
  width: 49%;
  padding: 0 16px;
  margin-left: auto;
}
.work-img-box p,
.full-width-img .img-info p {
  font-size: var(--fs-body-sm);
  color: var(--color-gray);
  line-height: var(--lh-body);
  letter-spacing: -0.5px;
  margin: 0;
  max-width: 320px;
  font-style: italic;
}

.img-with-info {
  padding: 40px 0 40px;
}
.full-width-img {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.full-width-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 656px;
}
.img-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.nex-project {
  color: var(--color-black);
}
.next-project-row .home-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.work-detail-content-section {
  padding: 40px 0;
}
.work-detail-cta {
  height: 100%;
  padding: 120px 64px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 48px;
  -moz-column-gap: 32px;
  column-gap: 32px;
}
.feature-post-box {
  padding: 160px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.featured-post {
  display: flex;
  gap: 24px;
  flex-direction: column;
  padding-top: 24px;
  border-top: 2px solid var(--color-gray);
}
.forum-info-sodium_crypto_box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.forum-info-sodium_crypto_box a {
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: all 0.3s ease-in-out;
}
.forum-info-sodium_crypto_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
#blogPostContainer .forum-info-sodium_crypto_box img {
  aspect-ratio: 4/3;
}
.forum-info-sodium_crypto_box a:hover img {
  transform: scale(1.1);
}
.forum-title {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-heading);
  color: var(--color-black);
  font-weight: var(--fw-semibold);
  transition: all 0.3s ease-in-out;
}
.forum-title:hover {
  color: var(--color-brand-red);
}
.forum-readmore {
  text-align: right;
}
.forum-list-section {
  padding: 120px 0;
}

.forum-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.forum-list-section .work-filter-list {
  justify-content: flex-start;
}
.forum-detail-page {
  padding: 200px 0 64px;
}
.forum-detail-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.forum-detail-item {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.forum-meta-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: var(--fs-body-sm);
  color: var(--color-gray);
  justify-content: space-between;
}
.forum-detail-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-extrabold);
  color: var(--color-black);
  line-height: var(--lh-heading);
  letter-spacing: -0.5px;
}
.forum-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.forum-author-name {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-onyx);
  text-transform: capitalize;
}
.forum-author-avtar img {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  -o-object-fit: cover;
  object-fit: cover;
}
.forum-date-read {
  display: flex;
  gap: 16px;
  color: var(--color-gray);
  align-items: center;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

.forum-share {
  display: flex;
  gap: 8px;
}
.forum-share a {
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background-color: var(--color-white);
  align-items: center;
  justify-content: center;
}

.main-image {
  padding-top: 64px;
}
.forum-detail-content {
  padding: 80px 0 64px;
}
.forum-detail-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 400px;
}
.forum-detail-content h2,
.forum-detail-content h1 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
  color: var(--color-onyx);
  line-height: var(--lh-heading);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  margin-top: 16px;
}
.forum-detail-content h3 {
  font-size: var(--fs-sub1);
  font-weight: var(--fw-semibold);
  color: var(--color-onyx);
  line-height: var(--lh-heading);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  margin-top: 16px;
}
.forum-detail-content h4 {
  font-size: var(--fs-sub2);
  font-weight: var(--fw-semibold);
  color: var(--color-onyx);
  line-height: var(--lh-heading);
  letter-spacing: -0.5px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.forum-detail-content h5 {
  font-size: var(--fs-sub3);
  font-weight: var(--fw-semibold);
  color: var(--color-onyx);
  line-height: var(--lh-heading);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  margin-top: 16px;
}
.forum-detail-content h6 {
  font-size: var(--fs-sub4);
  font-weight: var(--fw-semibold);
  color: var(--color-onyx);
  line-height: var(--lh-heading);
  letter-spacing: -0.5px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.forum-detail-content figure.wp-block-image {
  margin: 64px 0;
}
.forum-detail-content .wp-block-image :where(figcaption),
.forum-detail-content blockquote {
  margin-top: 8px;
  font-size: var(--fs-body-reg);
  color: var(--color-onyx);
  line-height: var(--lh-body);
  letter-spacing: -0.5px;
  font-style: italic;
  padding-left: 16px;
  border-left: 2px solid var(--color-brand-red);
  margin-bottom: 0;
}

.forum-detail-content p + p {
  margin-top: 24px;
}
.forum-detail-content p {
  font-size: var(--fs-body-lg);
  color: var(--color-gray);
  line-height: var(--lh-body);
  letter-spacing: -0.5px;
}
.cta-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 656px;
}
.forum-detail-content .wp-block-list {
  margin: 24px 0 24px 32px;
}

.client-project-info-image {
  max-width: 200px;
  position: relative;
  padding-bottom: 58.6%;
  width: 100%;
}
.site-info a {
  color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.site-info a:hover {
  color: var(--color-brand-red);
}
.what-we-do-content-list {
  gap: 0;
}
.what-we-do-content-list .what-we-do-content-item {
  min-height: 252px;
}

.founder-image iframe {
  border-radius: var(--radius-sm);
}
/* .only-names {
  counter-reset: my-counter;
}

.only-names .collaboration-organisations-item {
  flex: 1 1 calc(50% - 24px);
  counter-increment: my-counter;
  position: relative;
  padding-left: 48px;
  font-size: var(--fs-body-md);
  line-height: var(--lh-body);
  font-weight: var(--fw-semibold);
}
.only-names .collaboration-organisations-item:before {
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: var(--color-brand-red);
  color: var(--color-white);
  text-align: center;
  line-height: 24px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 12px;
} */

.org-marquee {
  overflow: hidden;
  width: 100%;
}

.org-marquee-track {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 20px 80px;

  width: max-content;

  animation: marqueeX 30s linear infinite;
}

.org-item {
  white-space: nowrap;
  font-size: var(--fs-body-md);
  line-height: var(--lh-body);
  font-weight: var(--fw-semibold);
}
.org-marquee:hover .org-marquee-track {
  animation-play-state: paused;
}

/* key part */
@keyframes marqueeX {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.collaborating-consultants .co-founder-item img {
  aspect-ratio: 1/1.1;
}

.collaborating-consultants .co-founder-item .founder-image:hover img {
  filter: grayscale(1);
}
.clients-logo .collaboration-organisations-item {
  aspect-ratio: 16 / 9;
}
.clients-logo .collaboration-organisations-item img {
  object-fit: contain;
}
.logo-white {
  display: none;
}

.dark-header .logo-black {
  display: none;
}

.dark-header .logo-white {
  display: block;
}

.work-content-wrap-right .work-img-box img,
.work-content-wrap-right .img-info-wrap img {
  /* max-height: 640px; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .img-info-wrap.half-img {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.img-info-wrap.half-img .img-info {
  width: 220px;
  flex-shrink: 0;
}

.img-info-wrap.half-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
} */
