:root {
  --font-family-inter: "Inter", sans-serif;
  --text-black: rgba(0, 0, 0, 0.85);
  --text-gray: rgba(0, 0, 0, 0.6);
  --text-white: rgba(255, 255, 255, 1);
  --primary-color: #C22D39;
  --primary-rgb: 194, 45, 57;
  --primary-hover: rgba(174, 38, 49, 1);

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;

  --line-height-tight: 1.2;
  --line-height-normal: 1.45;
  --line-height-relaxed: 1.6;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: -0.005em;

  --mobile-font-size-base: 14px;
  --mobile-font-size-lg: 16px;
  --mobile-font-size-xl: 20px;
  --mobile-font-size-2xl: 24px;

  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 40px;

  --navbar-height: 88px;

  --bs-border-radius: 20px;

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --anim-fast: 360ms;
  --anim-med: 560ms;
  --anim-slow: 840ms;
}

body {
  font-family: var(--font-family-inter);
  line-height: var(--line-height-relaxed);
  color: var(--text-black);
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

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

.row {
  margin-left: 0;
  margin-right: 0;
}

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

html,
* {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html,
  * {
    scroll-behavior: auto;
  }
}
.h3,
.h1,
h1,
.h2,
h2,
.h3,
h3 {
  font-family: var(--font-family-inter);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-3xl);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
  color: var(--text-black);
  text-align: left;
  margin-bottom: 8px;
}

.lead,
p,
.text-muted {
  font-family: var(--font-family-inter);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-lg);
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-relaxed);
  color: var(--text-gray);
  text-align: left;
}

.text-dark,
.text-black,
body .text-dark,
body .text-black {
  color: var(--text-black);
}

.text-muted,
.text-gray,
body .text-muted,
body .text-gray {
  color: var(--text-gray);
}

.text-white,
body .text-white {
  color: var(--text-white);
}

.text-brand,
body .text-brand {
  color: var(--primary-color);
}
   ============================ */
.hero-content h1,
.hero-content .h1,
.hero-content h2,
.hero-content .h2,
.hero-content h3,
.hero-content .h3,
.section-content h2,
.section-content .h2,
.section-content h3,
.section-content .h3,
.why-globit-content h2,
.why-globit-content .h2,
.why-globit-content h3,
.why-globit-content .h3,
.approach-content h2,
.approach-content .h2,
.approach-content h3,
.approach-content .h3 {
  margin-bottom: var(--spacing-lg) !important;
}

.hero-content p,
.section-content p,
.why-globit-content p,
.approach-content p,
.hero-content .lead,
.section-content .lead,
.why-globit-content .lead,
.approach-content .lead {
  margin-bottom: var(--spacing-lg) !important;
}

.hero-content p:last-child,
.section-content p:last-child,
.why-globit-content p:last-child,
.approach-content p:last-child {
  margin-bottom: 0 !important;
}

.hero-section .container-fluid > .mb-5 {
  margin-bottom: var(--spacing-2xl) !important;
}

.partnership-section .d-lg-none.mb-4,
.why-globit-section .d-lg-none.mb-4 {
  margin-bottom: var(--spacing-xl) !important;
}

.btn {
  --bs-btn-padding-y: 14px;
  --bs-btn-padding-x: 24px;
  --bs-btn-font-size: var(--font-size-base);
  --bs-btn-line-height: var(--line-height-normal);
  --bs-btn-border-radius: 10px;
  --bs-btn-font-weight: var(--font-weight-medium);

  font-family: var(--font-family-inter);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-normal);
  border-radius: 10px;
  padding: 14px 24px;
  margin-top: var(--spacing-lg);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--anim-med) var(--ease-smooth), border-color var(--anim-med) var(--ease-smooth),
    color var(--anim-med) var(--ease-smooth), box-shadow var(--anim-med) var(--ease-smooth),
    transform var(--anim-fast) var(--ease-smooth);
}

.btn-lg {
  --bs-btn-padding-y: 16px;
  --bs-btn-padding-x: 32px;
  --bs-btn-font-size: var(--font-size-xl);
  --bs-btn-border-radius: 10px;

  font-size: var(--font-size-xl);
  padding: 16px 32px;
}

.btn-primary,
.btn-outline-primary {
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-color: var(--text-white);
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-hover-color: var(--primary-color);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--primary-hover);
  --bs-btn-active-color: var(--primary-hover);

  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.btn-primary:active,
.btn-outline-primary:active {
  background-color: transparent;
  border-color: var(--primary-hover);
  color: var(--primary-hover);
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.btn:disabled,
.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn * {
    transition-duration: calc(var(--anim-fast));
  }
}

.hero-section {
  min-height: 80vh;
  padding: 60px 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 100%;
  text-align: left;
}

.hero-section .img-fluid {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.hero-section.hero-section--homepage {
  position: relative;
  margin-top: calc(-1 * var(--navbar-height, 88px));
  padding: 0;
  padding-top: var(--navbar-height, 88px);
  background: transparent;
  display: block;
  overflow: hidden;
}

.hero-section--homepage .hero-visual {
  position: relative;
  min-height: clamp(520px, 82vh, 760px);
  padding-block: clamp(72px, 14vh, 128px);
  background-image:
    url('../images/hero.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section--homepage .hero-visual__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.hero-section--homepage .hero-highlight {
  padding: clamp(32px, 7vw, 52px);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 0;
  box-shadow: 0 28px 80px rgba(4, 10, 28, 0.42);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-highlight__title {
  letter-spacing: 0.01em;
  margin-bottom: 0;
  color: #ffffff;
}

.hero-highlight__line {
  display: block;
}

.hero-section--homepage .hero-highlight__cta-wrapper {
  display: flex;
  justify-content: flex-start;
}

.hero-section--homepage .hero-highlight__cta {
  padding: 12px 30px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.01em;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: background-color var(--anim-med) var(--ease-smooth);
}

.hero-section--homepage .hero-highlight__cta,
.hero-section--homepage .hero-highlight__cta:hover,
.hero-section--homepage .hero-highlight__cta:focus,
.hero-section--homepage .hero-highlight__cta:active {
  color: var(--text-white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: none;
}

.hero-section--homepage .hero-highlight__cta:hover,
.hero-section--homepage .hero-highlight__cta:focus,
.hero-section--homepage .hero-highlight__cta:active {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.hero-section--homepage .hero-copy {
  padding: clamp(32px, 6vw, 56px) 56px;
}

.hero-section--homepage .hero-copy .lead {
  font-size: var(--font-size-lg);
}

@media (min-width: 992px) {
  .hero-section--homepage .hero-highlight__cta-wrapper {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .hero-section.hero-section--homepage {
    margin-top: 0;
    padding-top: 0;
  }

  .hero-section--homepage .hero-visual {
    min-height: clamp(500px, 95vh, 720px);
    padding-block: clamp(80px, 22vh, 136px);
  }

  .hero-section--homepage .hero-highlight {
    align-items: center;
    text-align: center;
  }

  .hero-section--homepage .hero-highlight__cta-wrapper {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-section--homepage .hero-highlight {
    padding: 28px 20px;
    gap: 20px;
  }

  .hero-section--homepage .hero-highlight__cta {
    width: 100%;
  }
}


.py-5,
section.py-5 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.partnership-section:not(.collaboration-section) {
  min-height: auto;
  display: flex;
  align-items: center;
}

.why-globit-section {
  min-height: auto;
  display: flex;
  align-items: center;
}

.partnership-section .row,
.why-globit-section .row {
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .partnership-section .row,
  .why-globit-section .row {
    margin-left: -20px;
    margin-right: -20px;
  }

  .partnership-section .col-lg-6,
  .why-globit-section .col-lg-6 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .partnership-section .row.align-items-stretch,
  .why-globit-section .row.align-items-stretch {
    align-items: stretch;
  }

  .partnership-section .col-lg-6.d-flex,
  .why-globit-section .col-lg-6.d-flex {
    display: flex;
    flex-direction: column;
  }

  .partnership-section .section-content.d-flex,
  .why-globit-section .why-globit-content.d-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .partnership-section .img-fluid,
  .why-globit-section .img-fluid {
    height: auto;
    min-height: unset;
    max-height: unset;
  }

  .partnership-section .img-fluid.h-100,
  .why-globit-section .img-fluid.h-100 {
    height: 100% !important;
  }
}

.img-fluid {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}

.partnership-section .img-fluid {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.why-globit-section .img-fluid {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.collaboration-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(48px, 9vw, 112px);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.collaboration-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 45%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.1), transparent 40%);
  pointer-events: none;
}

.collaboration-section .container-fluid {
  position: relative;
  z-index: 1;
}

.collaboration-card {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4.5vw, 48px);
  max-width: min(100%, 1144px);
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(4, 10, 28, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.collaboration-card__content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

.collaboration-card__title {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 0;
}

.collaboration-card__text {
  margin-bottom: 0;
  color: var(--text-gray);
}

.collaboration-card__cta {
  align-self: center;
  margin-top: var(--spacing-md);
}

.collaboration-card__media {
  flex: 0 1 clamp(320px, 36%, 420px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin: 0;
}

.collaboration-card__image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(12, 18, 46, 0.25);
}

.contact-card {
  max-width: min(100%, 880px);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
}

.contact-card__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: clamp(16px, 3vw, 32px);
}

.contact-card__logo-image {
  width: clamp(160px, 22vw, 220px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(12, 18, 46, 0.15));
}

.contact-card__content {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

.contact-card__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card__title {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.25;
  color: var(--primary-color);
  margin-bottom: 0;
}

.contact-card__subtitle {
  margin-bottom: 0;
  font-size: var(--font-size-base);
  color: var(--text-gray);
}

.contact-card__info {
  display: flex;
  flex-direction: column;
  margin-top: var(--spacing-sm);
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-size-base);
  color: var(--text-gray);
}

.contact-card .contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--primary-color);
}

.contact-card .contact-icon svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 992px) {
  .collaboration-card {
    padding: clamp(24px, 6vw, 36px);
  }

  .collaboration-card__image {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .collaboration-card {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    text-align: left;
  }

  .collaboration-card__content {
    align-items: stretch;
  }

  .collaboration-card__cta {
    width: auto;
    text-align: center;
  }

  .collaboration-card__media {
    order: -1;
    width: 100%;
    flex: 1 1 auto;
  }

  .collaboration-card__image {
    max-width: 100%;
    height: auto;
  }

  .contact-card__content {
    align-items: flex-start;
    text-align: left;
  }

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

  .contact-info__item {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .collaboration-section {
    padding-block: clamp(40px, 14vw, 72px);
  }

  .collaboration-card {
    gap: 24px;
  }

  .contact-card__logo-image {
    width: clamp(140px, 40vw, 200px);
  }
}

.card {
  border-radius: 16px;
  border: none;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

.card-body {
  padding: 40px;
}

.object-fit-cover {
  object-fit: cover;
}

.contact-info .d-flex {
  margin-bottom: 12px;
}

.contact-info .d-flex:last-child {
  margin-bottom: 0;
}

.contact-info a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-lg);
  transition: opacity var(--anim-med) var(--ease-smooth);
}

.contact-info a:hover {
  opacity: 0.7;
  color: var(--text-gray);
}

.container-fluid {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 64px;
  padding-right: 64px;
  width: 100%;
  box-sizing: border-box;
}

.bg-light,
body .bg-light {
  background-color: #ffffff;
}

.bg-white,
body .bg-white {
  background-color: #ffffff;
}

@media (min-width: 1400px) {
  .hero-section {
    min-height: 70vh;
    padding: 80px 0;
  }

  .partnership-section:not(.collaboration-section) {
    min-height: auto;
    padding: 80px 0;
  }

  .why-globit-section {
    min-height: auto;
    padding: 80px 0;
  }
}

@media (max-width: 1200px) {
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 992px) {
  .py-5,
  section.py-5 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }

  .partnership-section:not(.collaboration-section),
  .why-globit-section {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-content {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hero-content h1,
  .hero-content .h1,
  .hero-content h2,
  .hero-content .h2,
  .hero-content h3,
  .hero-content .h3,
  .section-content h2,
  .section-content .h2,
  .section-content h3,
  .section-content .h3,
  .why-globit-content h2,
  .why-globit-content .h2,
  .why-globit-content h3,
  .why-globit-content .h3,
  .approach-content h2,
  .approach-content .h2,
  .approach-content h3,
  .approach-content .h3 {
    margin-bottom: var(--spacing-md) !important;
  }

  .hero-content p,
  .section-content p,
  .why-globit-content p,
  .approach-content p,
  .hero-content .lead,
  .section-content .lead,
  .why-globit-content .lead,
  .approach-content .lead {
    margin-bottom: var(--spacing-md) !important;
  }

  .hero-section .container-fluid > .mb-5 {
    margin-bottom: var(--spacing-xl) !important;
  }
  .container-fluid {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
  }

  .py-5,
  section.py-5 {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
  }

  .hero-content {
    text-align: left;
  }

  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .why-globit-section .row {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .why-globit-section .col-lg-6 {
    width: 100%;
    margin-bottom: 2rem;
    padding-left: 0;
    padding-right: 0;
    flex: none;
  }

  .why-globit-section .col-lg-6:first-child {
    order: 2;
  }

  .why-globit-section .col-lg-6:last-child {
    order: 1;
    margin-bottom: 0;
  }

  .partnership-section:not(.collaboration-section) img,
  .why-globit-section img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
  }

  .h1,
  h1,
  .hero-title,
  section .h1,
  section h1,
  .container-fluid .h1,
  .container-fluid h1 {
    font-size: var(--mobile-font-size-2xl);
    line-height: 1.3;
    text-align: left;
  }

  .h2,
  h2,
  section .h2,
  section h2,
  .container-fluid .h2,
  .container-fluid h2 {
    font-size: 22px;
    line-height: 1.3;
    text-align: left;
  }

  .h3,
  h3,
  .section-title,
  .heading,
  section .h3,
  section h3,
  .container-fluid .h3,
  .container-fluid h3,
  .platform-section .h3,
  .platform-section h3,
  .challenges-section .h3,
  .challenges-section h3 {
    font-size: var(--mobile-font-size-2xl);
    line-height: 1.3;
  }

  .card-header .h3,
  .card-header h3,
  .platform-section .card-header .h3,
  .platform-section .card-header h3 {
    font-size: var(--mobile-font-size-2xl);
    line-height: 1.3;
    text-align: center;
    color: white;
  }

  .container-fluid .lead,
  .container-fluid p,
  .section .lead,
  .section p,
  .text-muted,
  p.lead,
  p {
    font-size: var(--mobile-font-size-lg) !important;
    line-height: 1.6 !important;
    text-align: left;
  }

  .container-fluid .btn-primary,
  .container-fluid .btn-outline-primary,
  .container-fluid .btn-lg,
  .section .btn-primary,
  .section .btn-outline-primary,
  .section .btn-lg,
  .btn.btn-primary,
  .btn.btn-outline-primary,
  .btn.btn-lg {
    font-size: var(--mobile-font-size-lg) !important;
    padding: 16px var(--spacing-lg) !important;
    margin-top: var(--spacing-lg);
    white-space: normal;
    line-height: 1.4;
    width: 100%;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
  }

  .section-content .text-center,
  .why-globit-content .text-center,
  .hero-content .text-center {
    margin-top: var(--spacing-lg);
  }

  .section-content,
  .why-globit-content {
    padding: 0;
  }

  .card-body {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .img-fluid {
    border-radius: 12px;
  }

  .card {
    border-radius: 12px;
    box-shadow:
      0 6px 24px rgba(0, 0, 0, 0.08),
      0 2px 12px rgba(0, 0, 0, 0.04);
  }

  .contact-info {
    font-size: var(--mobile-font-size-base);
  }

  .contact-info a {
    font-size: var(--mobile-font-size-lg);
  }

  .contact-info .fs-5 {
    font-size: 14px;
  }
}

.btn:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.hero-content .text-center {
  margin-top: var(--spacing-md);
}

.sticky-top,
nav.sticky-top {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 992px) {
  .hero-section .row,
  .partnership-section .row,
  .why-globit-section .row {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .d-lg-none.mb-4,
  .d-lg-none.mb-3,
  .d-lg-none.mb-2,
  .d-lg-none.mb-1 {
    margin-bottom: var(--spacing-xl);
  }

  .section-content h2.mb-4,
  .section-content .h3.mb-4,
  .section-content h3.mb-4 {
    margin-bottom: var(--spacing-xl);
  }

  .section-content p.mb-4:last-of-type {
    margin-bottom: var(--spacing-xl);
  }

  .partnership-section .d-lg-none + .d-lg-none {
    margin-top: var(--spacing-xl);
  }

  .py-5 + .py-5 {
    margin-top: var(--spacing-md);
  }

  .mobile-partnership-img,
  .d-lg-none img {
    margin-bottom: var(--spacing-xl);
  }

  .section-content {
    padding-top: var(--spacing-lg);
  }
}

@media (max-width: 991px) {
  .why-globit-section .row {
    display: flex;
    flex-direction: column;
  }

  .why-globit-section .col-lg-6:first-child {
    order: 1;
    margin-bottom: 2rem;
  }

  .why-globit-section .col-lg-6:last-child {
    order: 2;
  }

  .why-globit-section .col-lg-6.mb-4.mb-lg-0 {
    margin-bottom: 2rem;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: -135px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 5;
  animation: bounce2 2s ease infinite;
  margin-left: -24px;
}

@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}


.hero-scroll-indicator::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23C22D39' d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .hero-scroll-indicator {
    width: 40px;
    height: 40px;
  }

  .hero-scroll-indicator::before {
    width: 14px;
    height: 14px;
  }
}

.navbar.navbar--hero-active {
  background: rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 28px 80px rgba(4, 10, 28, 0.42);
}
