/* ========================= */
/* Typography Styles */
/* ========================= */



/* Global Variables */
:root {
  
  /* Fonts */
  --font-header: 'PT Sans', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Font Sizes */

  --font-size-header-1: calc((60 / 16) * 1rem);
  --font-size-header-2: calc((48 / 16) * 1rem);
  --font-size-header-3: calc((34 / 16) * 1rem);
  --font-size-body-1: calc((24 / 16) * 1rem);
  --font-size-body-2: calc((20 / 16) * 1rem);
  --font-size-body-3: calc((18 / 16) * 1rem);
  --font-size-body-4: calc((16 / 16) * 1rem);
  --font-size-body-5: calc((14 / 16) * 1rem);
  --font-size-body-6: calc((12 / 16) * 1rem);

}


/* Mobile-first approach */
@media (max-width: 768px) {
  :root {
    --font-size-header-1: calc((50 / 16) * 1rem); /* Smaller header size */
    --font-size-header-2: calc((42 / 16) * 1rem);
    --font-size-header-3: calc((30 / 16) * 1rem);
    --font-size-body-1: calc((22 / 16) * 1rem);
    --font-size-body-2: calc((18 / 16) * 1rem);
    --font-size-body-3: calc((16 / 16) * 1rem);
    --font-size-body-4: calc((14 / 16) * 1rem);
    --font-size-body-5: calc((12 / 16) * 1rem);
    --font-size-body-6: calc((10 / 16) * 1rem);
  }
}

/* Tablet and larger screens */
@media (min-width: 768px) and (max-width: 1024px) {
  :root {
    --font-size-header-1: calc((55 / 16) * 1rem);
    --font-size-header-2: calc((46 / 16) * 1rem);
    --font-size-header-3: calc((32 / 16) * 1rem);
    --font-size-body-1: calc((23 / 16) * 1rem);
    --font-size-body-2: calc((19 / 16) * 1rem);
    --font-size-body-3: calc((17 / 16) * 1rem);
    --font-size-body-4: calc((15 / 16) * 1rem);
    --font-size-body-5: calc((13 / 16) * 1rem);
    --font-size-body-6: calc((11 / 16) * 1rem);
  }
}
















body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}



/* Headings (PT Sans) */
h1 {
    font-family: "PT Sans", sans-serif;
    font-size: var(--font-size-header-1);
    line-height: 53px;
    font-weight: 700; /* Use 700 if needed */
}

@media (max-width: 768px) {
	h1 {line-height: 36px;}
}

h2 {
    font-family: "PT Sans", sans-serif;
    font-size: var(--font-size-header-3);
    line-height: 48px;
    font-weight: 400;
}

h3 {
    font-family: "Poppins", sans-serif;
    font-size: var(--font-size-body-1);
    line-height: 34px;
    font-weight: 400;
}

h4 {
    font-family: "Poppins", sans-serif;
    font-size: var(--font-size-body-2);
    line-height: 30px;
    font-weight: 400;
}

p {
  margin-bottom: 10px;
  padding-top: 10px;
}

/* Body Text (Poppins) */
.body-xl {
    font-family: "Poppins", sans-serif;
    font-size: var(--font-size-body-2);
    line-height: 28px;
    font-weight: 400;
}

.body-lg {
    font-family: "Poppins", sans-serif;
    font-size: var(--font-size-body-3);
    line-height: 24px;
    font-weight: 400;
}

.body-md {
    font-family: "Poppins", sans-serif;
    font-size: var(--font-size-body-4);
    line-height: 20px;
    font-weight: 400;
}

.body-sm {
    font-family: "Poppins", sans-serif;
    font-size: var(--font-size-body-5);
    line-height: 18px;
    font-weight: 400;
}

/* Utility Classes */
.text-bold {
    font-weight: 700;
}

.text-light {
    font-weight: 300;
}

.text-center {
    text-align: center;
}



.inner-hero-title {
  font-size: var(--font-size-header-2);
  color: #025e51;
  font-weight: 700;
  margin: 0;
}


.inner-hero-title.corp-title {
  color: #543884;
}

.inner-hero-title.htl-title{
  color: #FB755E;
}











