/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    padding-left: 0;
    padding-right: 0;
  }
}

/* =========================
   BODY
========================= */
body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text-secondary);
  background-color: var(--color-body);
}

/* =========================
   HEADINGS
========================= */
h1,
.h1 {
  font-family: var(--font-primary);
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-tight);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
}

h2,
.h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-tight);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
}

/* =========================
   TEXT
========================= */
p {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
}

a{
  text-decoration: none;
}
/* Cursor follower */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #ED3248;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}

#cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(237, 50, 72, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
}

.gsap-fade-up,
.gsap-fade-left,
.gsap-fade-right,
.gsap-scale-in,
.gsap-clip-in,
.gsap-char-split {
  visibility: visible;
}

.spacer-40 {
  height: 40px;
}
.spacer-52{
   height: 52px;
}
section .section__title {
  margin-bottom: 16px;
}

@media screen and (max-width: 1399px) {

  h1,
  .h1 {
    font-size: 60px;
    line-height: 65px;
  }

  h2,
  .h2 {
    font-size: 46px;
    line-height: 52px;
  }
}

@media screen and (max-width: 1199px) {

  h1,
  .h1 {
    font-size: 50px;
    line-height: 60px;
  }

  h2,
  .h2 {
    font-size: 44px;
    line-height: 1.1;
  }
  section .section__title {
    margin-bottom: 10px;
}
 .spacer-40 {
    height: 30px;
}
 .spacer-52{
    height: 36px;
  }
}

@media screen and (max-width: 991px) {

  h1,
  .h1 {
    font-size: 50px;
    line-height: 60px;
  }

  h2,
  .h2 {
    font-size: var(--fs-h2-tb);
    line-height: var(--lh-h2-tb);
  }
 
}

@media screen and (max-width: 767px) {

  h1,
  .h1 {
    font-size: 38px;
    line-height: 45px;
  }

  h2,
  .h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media screen and (max-width: 575px) {

  h1,
  .h1 {
    font-size: var(--fs-h1-mb);
    line-height: var(--lh-h1-mb);
  }

  h2,
  .h2 {
    font-size: var(--fs-h2-mb);
    line-height: var(--lh-h2-mb);
  }

  p {
    font-size: var(--fs-body-mb);
    line-height: var(--lh-body-mb);
  }

  html, body {
    width: 100%;
  }

  .spacer-40 {
    height: 25px;
  }
.spacer-52{
    height: 28px;
  }
  section .section__title {
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 430px) {
	h2,
  .h2 {
    font-size: var(--fs-h2-sm);
  }
}