/* -------------------- FONT DECLARATION -------------------- */
@font-face {
  font-family: "publicSans";
  src: url("../fonts/public-sans/public-sans-variable-font.woff2")
      format("woff2"),
    /* Modern Browsers */
      url("../fonts/public-sans/public-sans-variable-font.woff") format("woff"); /* Older Browsers */
  /* Optionally specify font-weight and font-style */
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "sen";
  src: url("../fonts/sen/sen-variable-font.woff2") format("woff2"),
    /* Modern Browsers */ url("../fonts/sen/sen-variable-font.woff")
      format("woff"); /* Older Browsers */
  /* Optionally specify font-weight and font-style */
  font-weight: 400 800;
  font-style: normal;
}

/* -------------------- FONT DECLARATION ENDS -------------------- */

/* -------------------- VARIABLES -------------------- */
:root {
  /* colors */
  --primary: #30ae5a;
  --primary-dark: #079436;
  --secondary: #002d64;
  --tertiary: #fff5e1;
  --tertiary2: #fef5e4;
  --dark-grey: #1b2128;
  --dark-grey2: #1b221b;
  --green: #4aa964;
  --orange: #cc7634;
  --blue: #2661b5;
  --cyan: #489aa1;
  --grey: #8a8e91;
  --grey2: #cdced0;
  --black: #000000;
  --white: #ffffff;
  /* font family */
  --font-heading: "sen", sans-serif;
  --font-para: "publicSans", sans-serif;
  /* misc */
  --shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
/* -------------------- VARIABLES ENDS -------------------- */

/* -------------------- BASE -------------------- */
/* css reset */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
/* css reset */

html {
  /* This defines what 1rem is */
  font-size: 62.5%; /* //1rem = 10px; 10px/16 = 62.5%; */
}

body {
  box-sizing: border-box;
  font-family: var(--font-para);
  font-size: 1.6rem;
  font-weight: 400;
}
/* -------------------- BASE ENDS -------------------- */

/* -------------------- COLORS -------------------- */
/* colors are present here */
::selection {
  background-color: var(--primary);
  color: var(--white);
}

/* == background colors == */
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-tertiary {
  background-color: var(--tertiary);
}
.bg-white {
  background-color: var(--white);
}
.bg-black {
  background-color: var(--black);
}

/* == text colors == */
.color-primary {
  color: var(--primary);
}
.color-secondary {
  color: var(--secondary);
}
.color-grey {
  color: var(--grey);
}
.color-white {
  color: var(--white);
}
.color-black {
  color: var(--black);
}
/* -------------------- COLORS ENDS -------------------- */

/* -------------------- TYPOGRAPHY -------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
}

p {
  line-height: 1.3;
}

.h1--lg {
  font-size: 7.2rem;
  line-height: 1.2;
}
h1,
.h1 {
  font-size: 4.4rem;
}
h2,
.h2 {
  font-size: 3.2rem;
}
h3,
.h3 {
  font-size: 3rem;
}
h4,
.h4 {
  font-size: 2.4rem;
}
h5,
.h5 {
  font-size: 2rem;
}
h6,
.h6 {
  font-size: 1.8rem;
}
p,
.para {
  font: 1.6rem;
}

@media screen and (max-width: 1200px) {
  .h1--lg {
    font-size: 5rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 3.2rem;
  }
  h2,
  .h2 {
    font-size: 2.8rem;
  }
  h3,
  .h3 {
    font-size: 2.4rem;
  }
  h4,
  .h4 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 370px) {
  .h1--lg {
    font-size: 3rem;
  }
}

a {
  text-decoration: none !important;
}

/* font family */
.font-heading {
  font-family: var(--font-heading);
}
.font-para {
  font-family: var(--font-para);
}

/* font weights */
.font-light {
  font-weight: 300;
}
.font-regular {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

/* -------------------- TYPOGRAPHY ENDS -------------------- */

/* --------------------  COMPONENTS -------------------- */
/* buttons */
.btn {
  font-size: 1.8rem;
  line-height: 1.3;
  display: inline-block;
  font-family: var(--font-heading);
  padding: 8px 16px;
  border: 1px solid var(--secondary);
  border-radius: 50px;
}
.btn:hover,
.btn:focus {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn--sm {
  padding: 4px 14px;
}

.btn--primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn--primary:hover,
.btn--primary:focus,
.btn--primary-outline:hover,
.btn--primary-outline:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn--grey-outline {
  background-color: transparent;
  border-color: var(--dark-grey2);
  color: var(--dark-grey2);
}
.btn--grey-outline:hover,
.btn--grey-outline:focus {
  background-color: var(--dark-grey2);
  border-color: var(--dark-grey2);
  color: var(--white);
}

.btn--primary-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--dark-grey);
}
/* buttons ends */

/* header */
.header-container {
  container: header / inline-size;
  z-index: 50;
  /* transform: translateZ(0);   ========= Removed to make header sticky ======== */
}
.header {
  padding: 30px 7px;
  transition: all 0.3s;
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  background-color: transparent;
}
.header-scroll {
  padding: 10px 7px;
  background-color: var(--white);
  box-shadow: var(--shadow);
}
.header__inner,
.header__links,
.header__links nav ul {
  display: flex;
  align-items: center;
}
.header__links {
  margin-left: auto;
}
.header__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 32px;
  margin-inline-end: 32px;
}
.header__links nav ul li > a {
  color: var(--dark-grey);
  display: inline-block;
  transition: all 0.3s;
  position: relative;
}
.header__links nav ul li > a:hover,
.header__links nav ul li > a:focus,
.header__links nav ul li > a.active {
  color: var(--primary);
}
.header__links nav ul li > a::after {
  height: 1px;
  width: 100%;
  content: "";
  position: absolute;
  left: 0;
  background-color: var(--primary);
  opacity: 0;
  bottom: -3px;
  transition: all 0.3s;
}
.header__links nav ul li > a:hover::after,
.header__links nav ul li > a:focus::after,
.header__links nav ul li > a.active::after {
  bottom: 0;
  opacity: 1;
}

/* toggle button styles */
.nav-toggle-icon {
  display: none;
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
}
.nav-toggle-icon__checkbox {
  display: none;
}
.nav-toggle-icon__bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
  margin: 4px 0;
  transition: 0.3s ease;
  transform-origin: center;
}

/* Animation when checked */
.nav-toggle-icon__checkbox:checked ~ .nav-toggle-icon__bar:nth-child(2) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle-icon__checkbox:checked ~ .nav-toggle-icon__bar:nth-child(3) {
  opacity: 0;
}
.nav-toggle-icon__checkbox:checked ~ .nav-toggle-icon__bar:nth-child(4) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* toggle button styles */
.header-spacer {
  height: 93px;
}

@container header (max-width: 800px) {
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
    max-height: 55px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow);
  }
  .header__inner,
  .header__links,
  .header__links nav ul {
    flex-direction: column;
    align-items: unset;
  }
  .header__links {
    margin-left: unset;
    margin-block-start: 30px;
    margin-block-end: 10px;
  }
  .header__links nav ul {
    gap: 15px;
    margin-inline-end: 0;
    margin-block-end: 10px;
  }
  .nav-toggle-icon {
    display: block;
  }
  .header:has(#headerToggle:checked) {
    max-height: 2000px;
  }
  .header-spacer {
    height: 55px;
  }
}

/* header styles ends */

/* icon card */
.iconCard {
  background-color: var(--white);
  padding: 32px 24px;
  height: 100%;
}
.iconCard__img {
  width: auto;
  height: 48px;
  object-fit: contain;
  display: block;
}
.iconCard__text {
  font-family: var(--font-para);
  font-size: 2rem;
  line-height: 1.3;
  color: var(--dark-grey2);
  margin: 0;
}
/* icon card ends */

/* footer styles */
.footer {
  background-color: var(--secondary);
  color: var(--white);
  padding: 28px 7px;
}
.footer__inner {
  display: flex;
  align-items: center;
}
.footer__logo {
  width: 120px;
}
.footer__copytxt {
  margin-inline-start: 34px;
}
.footer__links {
  display: flex;
  align-items: center;
  margin: 0 0 0 auto;
  padding: 0;
  list-style-type: none;
  gap: 32px;
}
.footer__links a {
  color: var(--white);
  transition: all 0.3s;
}
.footer__links a:hover,
.footer__links a:focus {
  color: var(--primary);
}
@media screen and (max-width: 1200px) {
  .footer__links {
    gap: 15px;
  }
  .footer__copytxt {
    margin-inline-start: 20px;
  }
}
@media screen and (max-width: 991px) {
  .footer__inner {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .footer__links {
    margin: 0;
    flex-wrap: wrap;
    gap: 10px 25px;
    justify-content: center;
  }
  .footer__copytxt {
    margin: 20px 0;
    display: block;
    text-align: center;
  }
}
/* footer styles ends */

/* bootstrap form overrides */
.form-control {
  padding: 15px 20px;
  font-size: 1.6rem;
}
.form-label {
  font-weight: 700;
  color: var(--dark-grey2);
}
/* bootstrap form overrides */
/* --------------------  COMPONENTS ENDS   -------------------- */

/* --------------------  SECTIONS   -------------------- */

/* hero section */
.heroSection {
  padding-top: 75px;
}
.heroSection__img {
  max-width: 90%;
  border-radius: 175px 175px 30px 175px;
}
.heroSection__title span {
  color: var(--primary);
}
@media screen and (max-width: 991px) {
  .heroSection__img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    max-width: unset;
    width: 100%;
    z-index: -1;
    border-radius: 0;
  }
  .heroSection {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .heroSection::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--tertiary2);
    z-index: -1;
    opacity: 0.6;
  }
  .heroSection__para {
    color: var(--white);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }
  .heroSection__img {
    filter: blur(3px);
  }
}
/* hero section ends */

/* about section */
.aboutPattern {
  position: absolute;
  z-index: -1;
  height: 100%;
}
.aboutPattern--1 {
  bottom: 0px;
  right: 0px;
}
.aboutPattern--2 {
  bottom: -23%;
  left: 0px;
}
/* about section ends */

/* audience section */
.audienceInfo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.audienceInfo__logo {
  width: 232px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.audienceCard {
  padding: 20px 24px;
  border-radius: 6px;
  color: var(--white);
  background-color: var(--grey);
  text-align: center;
  display: inline-block;
  width: 250px;
  text-box-trim: trim-both;
}
.audienceCard--green {
  background-color: var(--green);
}
.audienceCard--orange {
  background-color: var(--orange);
}
.audienceCard--blue {
  background-color: var(--blue);
}
.audienceCard--cyan {
  background-color: var(--cyan);
}
.audienceInfo .audienceCard {
  position: absolute;
}
.audienceInfo .audienceCard--green {
  left: 0;
  top: 0;
}
.audienceInfo .audienceCard--orange {
  left: 5%;
  bottom: 0;
}
.audienceInfo .audienceCard--blue {
  right: 0;
  top: 0;
}
.audienceInfo .audienceCard--cyan {
  right: 5%;
  bottom: 0;
}

@media screen and (max-width: 991px) {
  .audienceInfo__logo {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .audienceInfo .audienceCard {
    position: static;
  }
  .audienceInfo {
    flex-direction: column;
    gap: 20px;
  }
  .audienceInfo__logo {
    position: absolute;
    top: -40%;
    z-index: -1;
    width: 100%;
    opacity: 0.2;
  }
}
@media screen and (max-width: 575px) {
  .audienceInfo__logo {
    top: -20%;
  }
}
/* audience section ends */

/* --------------------  SECTIONS ENDS   -------------------- */

/* globals */
/* blur styles */
.blur {
  width: 505px;
  height: 505px;
  background-color: var(--tertiary);
  position: absolute;
  filter: blur(100px);
  z-index: -1;
}
.blur--top-left {
  transform: translate(-50%, -50%);
}
.blur--primary {
  background-color: var(--primary);
  opacity: 0.15;
}
.blur--right {
  right: 0;
  bottom: 0;
  transform: translateX(50%);
}
/* blur styles */

.section-padding-x {
  padding-inline-start: 7px;
  padding-inline-end: 7px;
}
.section-padding-y {
  padding-block-start: 60px;
  padding-block-end: 60px;
}
.section-padding-top {
  padding-block-start: 60px;
}
@media screen and (max-width: 991px) {
  .section-padding-y {
    padding-block-start: 50px;
    padding-block-end: 50px;
  }
  .section-padding-top {
    padding-block-start: 50px;
  }
}

/* divider */
.divider {
  height: 1px;
  width: 100%;
  background-color: var(--grey2);
}
.divider-vertical {
  width: 1px;
  height: 100%;
  background-color: var(--grey2);
}

.partnerLogo {
  max-width: 333px;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 575px) {
  .partnerLogo {
    max-width: 200px;
  }
}

/* globals ends */

/* cms styles */
.cms-contents h1,
.cms-contents h2,
.cms-contents h3,
.cms-contents h4,
.cms-contents h5,
.cms-contents h6 {
  margin-bottom: 15px;
}
.grey-contents h1,
.grey-contents h2,
.grey-contents h3,
.grey-contents h4,
.grey-contents h5,
.grey-contents h6,
.grey-contents p {
  color: var(--grey);
  font-family: var(--font-para);
}
.black-contents h1,
.black-contents h2,
.black-contents h3,
.black-contents h4,
.black-contents h5,
.black-contents h6,
.grey-contents p {
  color: var(--dark-grey);
  font-family: var(--font-para);
}
.cms-contents a {
  color: var(--primary);
}
.cms-contents a:hover,
.cms-contents a:focus {
  text-decoration: underline !important;
}
/* cms styles */

/* utilities */
.max-w-1240 {
  max-width: 1240px;
}
.radius-6 {
  border-radius: 6px;
}
.radius-20 {
  border-radius: 20px;
}
.h-230 {
  height: 230px;
}
.vh-75 {
  height: 75vh;
}
.object-fit-cover {
  object-fit: cover;
}
.cursor-default {
  cursor: default;
}

/* ======================== responsive utilities ======================== */

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

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

@media screen and (max-width: 500px) {
}
/* utilities */
