:root {

  /* Fonts */
  
  --font_plus_jakarta_sans: "Plus Jakarta Sans", sans-serif;
  --font_outfit:  "Outfit", sans-serif;
  --font_montserrat: "Montserrat", sans-serif;
  /* --font-secondary: "", sans-serif; */

  /* Colors */
  /* The *-rgb color names are simply the RGB converted value of the corresponding color for use in the rgba() function */
 
  /* Default dark color */
  --color-brand_dark: #011B3D;
  --color-brand_green: #2B723C;
  --color_orange: #FD7F00;
  --color_blue: #0B81FE;
  --color_dark_blue: #01458E;
  --color-dark: rgba(67, 67, 67, 1);
  --color-dark-rgb: 22, 28, 45;
  
}

/* ====================================== */
.font_plus_jakarta_sans{
  font-family: var(--font_plus_jakarta_sans) !important;
}
.font_outfit{
  font-family: var(--font_outfit) !important;
}
.font_montserrat{
  font-family: var(--font_montserrat) !important;
}
.text_color_brand_dark{
  color: var(--color-brand_dark) !important;
}
.text_color_blue{
  color: var(--color_blue) !important;
}
.text_color_dark_blue{
  color: var(--color_dark_blue) !important;
}
.text_color_orange{
  color: var(--color_orange) !important;
}
.fs-10{
  font-size: 10px !important;
}
.fs-12{
  font-size: 12px !important;
} 
.fs-14{
  font-size: 14px !important;
} 
.fs-16{
  font-size: 16px !important;
} 
.fs-17{
  font-size: 17px !important;
}
.fs-18{
  font-size: 18px !important;
}  
.fs-20{
  font-size: 20px !important;
}  
.fs-22{
  font-size: 22px !important;
}  
.fs-24{
  font-size: 24px !important;
}  
.fs-25{
  font-size: 25px !important;
} 
.fs-30{
  font-size: 30px !important;
} 
.fs-32{
  font-size: 32px !important;
} 
.fs-34{
  font-size: 34px !important;
} 
.fs-35{
  font-size: 35px !important;
} 
.fs-36{
  font-size: 36px !important;
} 
.fs-40{
  font-size: 40px !important;
} 
.fs-44{
  font-size: 44px !important;
} 
.fs-48{
  font-size: 48px !important;
} 
.fs-50{
  font-size: 50px !important;
} 
.fs-54{
  font-size: 54px !important;
} 
.fs-60{
  font-size: 60px !important;
} 
.fs-70{
  font-size: 70px !important;
}  
.fw-300{
  font-weight: 300 !important;
} 
.fw-400{
  font-weight: 400 !important;
}
.fw-500{
  font-weight: 500 !important;
}
.fw-600{
  font-weight: 600 !important;
}
.fw-700{
  font-weight: 700 !important;
}
.fw-900{
  font-weight: 900 !important;
}
.fw-normal{
  font-weight: normal !important;
}
.fw-bold{
  font-weight: bold !important;
}


.lh-1{
  line-height: 1;
}
.lh-1-2{
  line-height: 1.2;
}
.lh-1-5{
  line-height: 1.5;
}
.lh-1-7{
  line-height: 1.7;
}
.lh-2{
  line-height: 2;
}
.opacity_half{
  opacity: 0.5;
}
.opacity_2{
  opacity: 0.2;
}


@media (max-width: 767px) {
  .fs-54 {
      font-size: 35px !important;
  }
  .hdng .large_hdng {
    font-size: 30px;
  }
}