@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@layer reset, base, components, screen, utility;
/* Import variables*/
@layer base {
  :root {
    --primary-font: "Roboto", sans-serif;
    --secondary-font: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
               "Open Sans", "Helvetica Neue", sans-serif;
    --body-font: var(--primary-font), var(--secondary-font);
    --transition-duration: 0.5s;
    --primary-main: rgb(212 32 39);
    --primary-main-rgb: 212 32 39;
    --primary-100: rgb(237 43 50);
    --primary-100-rgb: 237 43 50;
    --secondary-main: rgb(0, 0, 0);
    --secondary-main-rgb: 0, 0, 0;
    --secondary-100: rgb(74, 74, 74);
    --secondary-100-rgb: 74, 74, 74;
    --secondary-200: rgb(223, 223, 223);
    --secondary-200-rgb: 223, 223, 223;
    --secondary-300: rgb(247, 247, 247);
    --secondary-300-rgb: 247, 247, 247;
    --secondary-400: rgb(245, 245, 247);
    --secondary-400-rgb: 245, 245, 247;
    --tertiary-main: rgb(5, 5, 5);
    --tertiary-main-rgb: 5, 5, 5;
    --grey-main: rgb(247, 247, 247);
    --grey-main-rgb: 247, 247, 247;
    --grey-100: rgb(113, 113, 113);
    --grey-100-rgb: 113, 113, 113;
    --grey-200: rgb(221, 221, 221);
    --grey-200-rgb: 221, 221, 221;
    --grey-300: rgb(34, 34, 34);
    --grey-300-rgb: 34, 34, 34;
    --grey-400: rgb(215, 215, 215);
    --grey-400-rgb: 215, 215, 215;
    --grey-500: rgb(230, 230, 230);
    --grey-500-rgb: 230, 230, 230;
    --grey-600: rgb(83, 83, 83);
    --grey-600-rgb: 83, 83, 83;
    --grey-700: rgb(248, 248, 248);
    --grey-700-rgb: 248, 248, 248;
    --grey-800: rgb(222, 222, 222);
    --grey-800-rgb: 222, 222, 222;
    --grey-900: rgb(148, 151, 156);
    --grey-900-rgb: 148, 151, 156;
    --generic-white: rgb(255, 255, 255);
    --generic-white-rgb: 255, 255, 255;
    --generic-black: rgb(0, 0, 0);
    --generic-black-rgb: 0, 0, 0;
    --generic-text: rgb(24, 26, 32);
    --generic-text-rgb: 24, 26, 32;
    --red-main: rgb(213, 25, 25);
    --red-main-rgb: 213, 25, 25;
    --blue-main: rgb(20 176 195);
    --blue-main-rgb: 20 176 195;
    --yellow-main: rgb(255 185 0);
    --yellow-main-rgb: 255 185 0;
    --yellow-100: rgb(253 248 227);
    --yellow-100-rgb: 253 248 227;
    --green-main: rgb(232, 248, 235);
    --green-main-rgb: 232, 248, 235;
    --green-100: rgb(232, 244, 248);
    --green-100-rgb: 232, 244, 248;
    --green-200: rgb(40, 115, 46);
    --green-200-rgb: 40, 115, 46;
    --green-300: rgb(232, 244, 248);
    --green-300-rgb: 232, 244, 248;
    --green-400: rgb(232, 248, 235);
    --green-400-rgb: 232, 248, 235;
    --green-500: rgb(51, 200, 62);
    --green-500-rgb: 51, 200, 62;
    --orange-main: rgb(242, 135, 6);
    --orange-main-rgb: 242, 135, 6;
    --orange-100: rgb(235, 227, 183);
    --orange-100-rgb: 235, 227, 183;
    --orange-200: rgb(255, 252, 237);
    --orange-200-rgb: 255, 252, 237;
    --orange-300: rgb(250, 242, 174);
    --orange-300-rgb: 250, 242, 174;
    --orange-400: rgb(255, 157, 39);
    --orange-400-rgb: 255, 157, 39;
    --purple-main: rgb(170, 53, 228);
    --purple-main-rgb: 170, 53, 228;
    --purple-100: rgb(240, 210, 252);
    --purple-100-rgb: 240, 210, 252;
    --purple-200: rgb(251, 243, 255);
    --purple-200-rgb: 251, 243, 255;
  }
}
/*  Default settings */
/* CSS Reset */
@layer reset {
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }
  /* HTML5 display-role reset for older browsers */
  article, aside, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section {
    display: block;
  }
  /* Reset list styles */
  ol, ul {
    list-style: none;
  }
  /* Reset quotes */
  blockquote, q {
    quotes: none;
  }
  blockquote::before, blockquote::after,
  q::before, q::after {
    content: "";
    content: none;
  }
  /* Reset table styles */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  /* Inherit box-sizing */
  *, *::before, *::after {
    box-sizing: border-box;
  }
}
/* Google font */
@layer base {
  * {
    box-sizing: border-box;
  }
  ::selection {
    background: rgba(var(--primary-main-rgb), 0.2);
    color: black;
  }
  ::-moz-selection {
    background: rgba(var(--primary-main-rgb), 0.2);
    color: black;
  }
  html {
    min-height: 100%;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  body {
    font-family: var(--body-font);
    font-size: 0.9375rem;
    -webkit-font-smoothing: subpixel-antialiased; /* or subpixel-antialiased */
    text-rendering: optimizeLegibility;
    font-weight: 400;
    line-height: 1.5;
    color: var(--generic-text);
    margin: 0;
    min-height: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  a:focus, input:focus, textarea:focus, button:focus {
    outline: none;
    text-decoration: none;
  }
  h1, .h1 {
    font-size: 2.8125rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    font-weight: 700;
  }
  @media (max-width: 991px) {
    h1, .h1 {
      font-size: 2.1875rem;
    }
  }
  @media (max-width: 767px) {
    h1, .h1 {
      font-size: 2rem;
    }
  }
  h2, .h2 {
    font-size: 2.125rem;
    line-height: 1.2;
    font-weight: 600;
  }
  @media (max-width: 1440px) {
    h2, .h2 {
      font-size: 2rem;
    }
  }
  @media (max-width: 1200px) {
    h2, .h2 {
      font-size: 1.875rem;
    }
  }
  @media (max-width: 991px) {
    h2, .h2 {
      font-size: 1.625rem;
    }
  }
  @media (max-width: 576px) {
    h2, .h2 {
      font-size: 1.375rem;
    }
  }
  h3, .h3 {
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.2;
  }
  @media (max-width: 1200px) {
    h3, .h3 {
      font-size: 1.5rem;
    }
  }
  @media (max-width: 991px) {
    h3, .h3 {
      font-size: 1.375rem;
    }
  }
  @media (max-width: 576px) {
    h3, .h3 {
      font-size: 1.25rem;
    }
  }
  h4, .h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
  }
  @media (max-width: 991px) {
    h4, .h4 {
      font-size: 1.25rem;
    }
  }
  h5, .h5 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.5;
  }
  @media (max-width: 991px) {
    h5, .h5 {
      font-size: 1.125rem;
    }
  }
  h6, .h6 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
  }
  .body-1 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--generic-text);
  }
  .body-2 {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--generic-text);
  }
  .body-3 {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--generic-text);
  }
  .heading-1 {
    font-size: 1rem;
    font-weight: 500;
  }
  .heading-2 {
    font-size: 0.875rem;
    font-weight: 500;
  }
  .heading-3 {
    font-size: 0.75rem;
    font-weight: 500;
  }
  a {
    color: var(--generic-text);
    text-decoration: none;
    font-weight: 600;
    transition: color ease 0.2s;
    -webkit-transition: color ease 0.2s;
    -moz-transition: color ease 0.2s;
    -ms-transition: color ease 0.2s;
    -o-transition: color ease 0.2s;
  }
  a:hover {
    text-decoration: none;
    color: var(--primary-main);
  }
  button:focus-visible, a:focus-visible {
    outline: var(--primary-main) 2px dashed;
    outline-offset: 4px;
    text-decoration: none;
  }
  label {
    font-weight: normal;
  }
  p {
    margin: 0;
  }
  p + p {
    margin-top: 1rem;
  }
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  ol {
    padding: 0px;
    list-style-position: inside;
  }
  ol li {
    margin-bottom: 0px;
    list-style: none;
    position: relative;
  }
  img {
    opacity: 1;
    transition: opacity ease 0.2s;
    -webkit-transition: opacity ease 0.2s;
    -moz-transition: opacity ease 0.2s;
    -ms-transition: opacity ease 0.2s;
    -o-transition: opacity ease 0.2s;
  }
  img[data-src] {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  .container {
    width: 100%;
    max-width: 1635px;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
    margin: 0 auto;
  }
  @media (max-width: 1440px) {
    .container {
      max-width: 90vw;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  @media (max-width: 767px) {
    .container {
      max-width: 100%;
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
  .container-sm {
    width: 100%;
    max-width: 1210px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin: 0 auto;
  }
  @media (max-width: 1440px) {
    .container-sm {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  @media (max-width: 767px) {
    .container-sm {
      max-width: 100%;
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
  .container-md {
    width: 100%;
    max-width: 1440px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin: 0 auto;
  }
  @media (max-width: 1440px) {
    .container-md {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  @media (max-width: 767px) {
    .container-md {
      max-width: 100%;
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
  .container-xl {
    max-width: 2520px;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
    margin: 0 auto;
  }
  @media (max-width: 1440px) {
    .container-xl {
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
  }
  @media (max-width: 767px) {
    .container-xl {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  .img-fluid {
    max-width: 100%;
    display: block;
    max-height: 100%;
  }
  svg {
    width: 100%;
    height: 100%;
  }
  /*
  * Let's target IE to respect aspect ratios and sizes for img tags containing SVG files
  *
  * [1] IE9
  * [2] IE10+
  */
  /* 1 */
  .ie9 img[src$=".svg"] {
    width: 100%;
  }
  /* 2 */
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    img[src$=".svg"] {
      width: 100%;
    }
  }
}
/* Component */
@layer components {
  .btn {
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.75rem 1.625rem;
    cursor: pointer;
    outline: none;
    border: 1px solid transparent;
    line-height: normal;
    transition: color ease 0.2s, background ease 0.2s, border ease 0.2s;
    -webkit-transition: color ease 0.2s, background ease 0.2s, border ease 0.2s;
    -moz-transition: color ease 0.2s, background ease 0.2s, border ease 0.2s;
    -ms-transition: color ease 0.2s, background ease 0.2s, border ease 0.2s;
    -o-transition: color ease 0.2s, background ease 0.2s, border ease 0.2s;
    border-radius: 2.1875rem;
    -webkit-border-radius: 2.1875rem;
    -moz-border-radius: 2.1875rem;
    -ms-border-radius: 2.1875rem;
    -o-border-radius: 2.1875rem;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .btn.btn-primary {
    background-color: var(--primary-main);
    color: var(--generic-white);
  }
  .btn.btn-primary:hover, .btn.btn-primary:focus {
    background-color: var(--primary-100);
  }
  .btn.btn-primary[disabled] {
    cursor: not-allowed;
    background: var(--grey-100);
  }
  .btn.btn-primary.btn-color {
    background-color: transparent;
    color: var(--primary-main);
  }
  .btn.btn-primary.btn-color:hover, .btn.btn-primary.btn-color:focus {
    color: rgba(var(--primary-main-rgb), 0.8);
  }
  .btn.btn-primary.btn-text {
    background-color: transparent;
    color: var(--tertiary-main);
  }
  .btn.btn-primary.btn-text:hover, .btn.btn-primary.btn-text:focus {
    color: var(--generic-white);
    background-color: var(--primary-main);
  }
  .btn.btn-primary.btn-outline {
    background-color: transparent;
    border-color: var(--primary-main);
    color: var(--primary-main);
  }
  .btn.btn-primary.btn-outline:focus, .btn.btn-primary.btn-outline:hover {
    border-color: var(--primary-main);
    color: var(--primary-main);
    background-color: rgba(var(--primary-main-rgb), 0.1);
  }
  .btn.btn-primary.btn-text-only {
    padding: 0;
    border: none;
    font-weight: 500;
  }
  .btn.btn-secondary {
    background-color: var(--tertiary-main);
    color: var(--generic-white);
  }
  .btn.btn-secondary:hover, .btn.btn-secondary:focus {
    background-color: rgba(var(--tertiary-main-rgb), 0.8);
  }
  .btn.btn-secondary.btn-color {
    background: transparent;
    color: var(--tertiary-main);
  }
  .btn.btn-secondary.btn-color:hover, .btn.btn-secondary.btn-color:focus {
    color: rgba(var(--tertiary-main-rgb), 0.8);
  }
  .btn.btn-secondary.btn-text {
    background-color: transparent;
    color: var(--tertiary-main);
  }
  .btn.btn-secondary.btn-text:hover, .btn.btn-secondary.btn-text:focus {
    color: rgba(var(--tertiary-main-rgb), 0.8);
    background: var(--grey-400);
  }
  .btn.btn-secondary.btn-outline {
    background-color: transparent;
    border-color: var(--secondary-200);
    color: var(--generic-black);
  }
  .btn.btn-secondary.btn-outline:focus {
    border-color: var(--generic-black);
    color: var(--generic-black);
    background-color: rgba(var(--generic-black-rgb), 0.1);
  }
  .btn.btn-secondary.btn-outline:hover {
    color: var(--generic-black);
    border-color: var(--generic-black);
  }
  .btn.btn-secondary.btn-icon {
    background-color: transparent;
    color: var(--tertiary-main);
  }
  .btn.btn-secondary.btn-icon:hover, .btn.btn-secondary.btn-icon:focus {
    color: rgba(var(--tertiary-main-rgb), 0.8);
    background: var(--grey-400);
  }
  .btn.btn-icon {
    min-width: 0;
    border-radius: 0.75rem;
    -webkit-border-radius: 0.75rem;
    -moz-border-radius: 0.75rem;
    -ms-border-radius: 0.75rem;
    -o-border-radius: 0.75rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .btn.btn-icon.btn-icon-large {
    width: 3.4375rem;
    height: 3.4375rem;
    padding: 1rem;
  }
  .btn.btn-icon.btn-icon-medium {
    width: 1.625rem;
    height: 1.625rem;
    padding: 0.25rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .btn.btn-icon.btn-icon-small {
    width: 1.125rem;
    height: 1.125rem;
    padding: 0;
  }
  .btn.btn-circle {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .btn.btn-circle.btn-icon-large {
    width: 3rem;
    height: 3rem;
    padding: 0.875rem;
  }
  .btn.btn-circle.btn-icon-medium {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0.625rem;
  }
  .btn.btn-with-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    gap: 0.625rem;
  }
  .btn.btn-with-icon > svg {
    width: 1.25rem;
    height: 1.25rem;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .btn.btn-medium {
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
  }
  @media (max-width: 576px) {
    .btn.btn-medium {
      padding: 0.4375rem 1rem;
    }
  }
  .btn.btn-small {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.375rem;
  }
  .btn.btn-extra-small {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3125rem 0.75rem;
  }
  .btn.btn-block {
    width: 100%;
  }
}
@layer components {
  .form-group .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  .form-group .wpcf7-not-valid-tip {
    color: var(--red-main);
    font-weight: 400;
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
  .form-group .form-control {
    display: block;
    border: #D6DFF5 1px solid;
    background-color: #F9FAFF;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--grey-100);
    height: auto;
    padding: 0.75rem 1rem;
    width: 100%;
    resize: none;
    font-family: var(--primary-font);
    outline: none;
    border-radius: 0.625rem;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    -ms-border-radius: 0.625rem;
    -o-border-radius: 0.625rem;
    transition: box-shadow ease var(--transition-duration), color ease var(--transition-duration), border ease var(--transition-duration), background ease var(--transition-duration);
    -webkit-transition: box-shadow ease var(--transition-duration), color ease var(--transition-duration), border ease var(--transition-duration), background ease var(--transition-duration);
    -moz-transition: box-shadow ease var(--transition-duration), color ease var(--transition-duration), border ease var(--transition-duration), background ease var(--transition-duration);
    -ms-transition: box-shadow ease var(--transition-duration), color ease var(--transition-duration), border ease var(--transition-duration), background ease var(--transition-duration);
    -o-transition: box-shadow ease var(--transition-duration), color ease var(--transition-duration), border ease var(--transition-duration), background ease var(--transition-duration);
  }
  .form-group .form-control::placeholder, .form-group .form-control:-ms-input-placeholder, .form-group .form-control::-ms-input-placeholder {
    color: var(--grey-200);
  }
  .form-group .form-control:focus {
    border-color: rgba(var(--primary-main-rgb), 0.65) !important;
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-main-rgb), 0.25) !important;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--primary-main-rgb), 0.25) !important;
    -moz-box-shadow: 0 0 0 0.25rem rgba(var(--primary-main-rgb), 0.25) !important;
    -ms-box-shadow: 0 0 0 0.25rem rgba(var(--primary-main-rgb), 0.25) !important;
    -o-box-shadow: 0 0 0 0.25rem rgba(var(--primary-main-rgb), 0.25) !important;
  }
  .form-group .form-control.wpcf7-not-valid {
    border-color: var(--red-main) !important;
  }
  .form-group .form-control.wpcf7-not-valid:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--red-main-rgb), 0.25) !important;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--red-main-rgb), 0.25) !important;
    -moz-box-shadow: 0 0 0 0.25rem rgba(var(--red-main-rgb), 0.25) !important;
    -ms-box-shadow: 0 0 0 0.25rem rgba(var(--red-main-rgb), 0.25) !important;
    -o-box-shadow: 0 0 0 0.25rem rgba(var(--red-main-rgb), 0.25) !important;
  }
  .form-group select.form-control {
    height: 2.625rem;
  }
}
@layer components {
  .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    text-align: center;
    color: var(--generic-white);
    border: 1px solid transparent;
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
  }
  @media (max-width: 767px) {
    .badge {
      padding: 2px 6px;
    }
  }
  .badge.info {
    background-color: var(--blue-main);
  }
  .badge.info-light {
    background-color: var(--primary-300);
    color: var(--primary-100);
  }
  .badge.error {
    background-color: var(--red-main);
  }
  .badge.success {
    background-color: var(--green-main);
    color: #0A220B;
    border-color: #DAF7DB;
  }
  .badge.warning {
    background-color: var(--yellow-main);
  }
  .badge.secondary {
    background-color: var(--generic-black);
    color: var(--generic-white);
  }
  .badge.primary {
    background-color: var(--primary-main);
    color: var(--generic-white);
  }
  .badge.purple {
    background-color: var(--purple-main);
    color: var(--generic-white);
  }
  .badge.orange {
    background-color: var(--orange-main);
    color: var(--generic-white);
  }
  .badge.standard {
    background-color: var(--generic-white);
    color: var(--generic-black);
    border: 1px solid #E1E1E1;
  }
  .badge.default {
    background-color: rgba(0, 0, 0, 0);
    color: var(--generic-black);
    border: 1px solid var(--secondary-200);
    padding: 0.3125rem 0.75rem;
  }
  .badge.green-300 {
    background-color: var(--green-300);
    color: #0B3A4A;
  }
  .badge.green-400 {
    background-color: var(--green-400);
    color: #0B3A4A;
  }
  .badge.orange-300 {
    background-color: var(--orange-300);
    color: #AE6104;
  }
  .badge.badge-rounded {
    border-radius: 2.1875rem;
    -webkit-border-radius: 2.1875rem;
    -moz-border-radius: 2.1875rem;
    -ms-border-radius: 2.1875rem;
    -o-border-radius: 2.1875rem;
  }
  .badge.badge-600 {
    font-weight: 600;
  }
  .badge.badge-large {
    padding: 0.625rem 1.25rem;
  }
  .badge.badge-medium {
    padding: 0.375rem 0.625rem;
  }
  .badge.badge-small {
    padding: 0.1875rem 0.375rem;
  }
  .badge.no-border {
    border-color: transparent;
  }
}
@layer components {
  .checkbox label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    cursor: pointer;
    gap: 0.5rem;
    position: relative;
  }
  .checkbox label .check-icon {
    width: 1rem;
    height: 1rem;
    border: var(--grey-900) 1px solid;
    position: absolute;
    top: 0;
    left: 0.75rem;
    bottom: 0;
    margin: auto;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    transition: border ease 0.2s, background ease 0.2s;
    -webkit-transition: border ease 0.2s, background ease 0.2s;
    -moz-transition: border ease 0.2s, background ease 0.2s;
    -ms-transition: border ease 0.2s, background ease 0.2s;
    -o-transition: border ease 0.2s, background ease 0.2s;
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .checkbox label .check-icon:before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.13057 6.26016L1.10641 4.23599C0.878906 4.00849 0.511406 4.00849 0.283906 4.23599C0.0564063 4.46349 0.0564063 4.83099 0.283906 5.05849L2.72224 7.49682C2.94974 7.72432 3.31724 7.72432 3.54474 7.49682L9.71641 1.32516C9.94391 1.09766 9.94391 0.730156 9.71641 0.502656C9.48891 0.275156 9.12141 0.275156 8.89391 0.502656L3.13057 6.26016Z' fill='white'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    transition: transform ease 0.2s, opacity ease 0.2s;
    -webkit-transition: transform ease 0.2s, opacity ease 0.2s;
    -moz-transition: transform ease 0.2s, opacity ease 0.2s;
    -ms-transition: transform ease 0.2s, opacity ease 0.2s;
    -o-transition: transform ease 0.2s, opacity ease 0.2s;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }
  .checkbox label .check-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--generic-text);
    border: 1px solid #DFE2F5;
    padding: 0.5rem 0.75rem 0.5rem 2.125rem;
    border: 1px solid #DFE2F5;
    transition: color ease 0.2s;
    -webkit-transition: color ease 0.2s;
    -moz-transition: color ease 0.2s;
    -ms-transition: color ease 0.2s;
    -o-transition: color ease 0.2s;
    border-radius: 0.625rem;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    -ms-border-radius: 0.625rem;
    -o-border-radius: 0.625rem;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .checkbox label input {
    display: none;
  }
  .checkbox label input:checked + .check-icon {
    background-color: var(--generic-black);
    border-color: var(--generic-black);
  }
  .checkbox label input:checked + .check-icon::before {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  .checkbox label input:checked ~ .check-label {
    color: var(--generic-black);
    border-color: var(--generic-black);
  }
}
/* Screen component*/
@layer screen {
  .swiper-control-custom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    --swiper-pagination-bullet-size: 6px;
    --swiper-pagination-bullet-border-radius: 50%;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-inactive-color: var(--grey-300);
    --swiper-pagination-bullet-horizontal-gap: 8px;
    --swiper-pagination-color: var(--primary-main);
    --swiper-navigation-size: 32px;
    --swiper-navigation-color: var(--generic-white);
  }
  .swiper-control-custom .swiper-button-next {
    margin-right: auto;
  }
  .swiper-control-custom .swiper-button-prev {
    margin-left: auto;
  }
  .swiper-control-custom .swiper-pagination-bullets {
    width: 100%;
    position: static;
    padding: 0 1.625rem;
  }
  .swiper-control-custom .swiper-pagination-bullets .swiper-pagination-bullet {
    transition: transform ease 0.2s;
    -webkit-transition: transform ease 0.2s;
    -moz-transition: transform ease 0.2s;
    -ms-transition: transform ease 0.2s;
    -o-transition: transform ease 0.2s;
  }
  .swiper-control-custom .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
  .swiper-control-custom .swiper-button-prev, .swiper-control-custom .swiper-button-next {
    width: 2rem;
    height: 2rem;
    background-color: var(--generic-white);
    color: var(--grey-300);
    margin: 0;
    padding: 0 0.25rem;
    opacity: 0;
    position: static;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    transition: transform ease 0.2s, opacity ease 0.2s;
    -webkit-transition: transform ease 0.2s, opacity ease 0.2s;
    -moz-transition: transform ease 0.2s, opacity ease 0.2s;
    -ms-transition: transform ease 0.2s, opacity ease 0.2s;
    -o-transition: transform ease 0.2s, opacity ease 0.2s;
  }
  .swiper-control-custom .swiper-button-prev.swiper-button-disabled, .swiper-control-custom .swiper-button-prev.swiper-button-lock, .swiper-control-custom .swiper-button-next.swiper-button-disabled, .swiper-control-custom .swiper-button-next.swiper-button-lock {
    opacity: 0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
  .swiper-control-custom .swiper-button-prev:after, .swiper-control-custom .swiper-button-next:after {
    display: none;
  }
  .swiper-control-custom .swiper-button-next {
    margin-left: auto;
    transform: translate(15px, 0);
    -webkit-transform: translate(15px, 0);
    -moz-transform: translate(15px, 0);
    -ms-transform: translate(15px, 0);
    -o-transform: translate(15px, 0);
  }
  .swiper-control-custom .swiper-button-prev {
    transform: translate(-15px, 0);
    -webkit-transform: translate(-15px, 0);
    -moz-transform: translate(-15px, 0);
    -ms-transform: translate(-15px, 0);
    -o-transform: translate(-15px, 0);
  }
  .carousel {
    position: relative;
    max-width: 100%;
  }
  .carousel iframe {
    width: 100%;
    outline: none;
    height: 100%;
    display: block;
  }
  .menutiles {
    width: 100%;
    background-color: var(--primary-main);
    padding: 2rem 0;
  }
  .menutiles iframe {
    width: 100%;
    display: block;
    height: 100%;
  }
  .trainingCalendarSlider .swiper-wrapper .swiper-slide {
    height: auto !important;
  }
  .calendarEvents {
    padding: 4rem 0;
  }
  .calendarEvents .calendarEventContainer {
    border: 1px solid var(--grey-200);
    border-radius: 0.5rem;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .calendarEvents .calendarEventContainer .calendarDate {
    display: flex;
    margin-bottom: 0.75rem;
  }
  .calendarEvents .calendarEventContainer .calendarDate .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .calendarEvents .calendarEventContainer .calendarDate .badge svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .calendarEvents .calendarEventContainer .calendarDescCal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
  }
  .calendarEvents .calendarEventContainer .calendarDescCal .calendarTrainer {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .calendarEvents .calendarEventContainer .calendarDescCal .calendarTrainer .calendarTrainerIcon {
    display: flex;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--grey-900);
  }
  .calendarEvents .calendarEventContainer .calendarDescCal .calendarTrainer .calendarTrainerName {
    text-transform: capitalize;
    line-height: 1;
  }
  .calendarEvents .calendarEventContainer .calendarDescCal .calendarMode {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .calendarEvents .calendarEventContainer .calendarDescCal .calendarMode .calendarCircle {
    flex-shrink: 0;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--green-500);
    box-shadow: 0 0 0 0.25rem rgba(var(--green-500-rgb), 0.25);
  }
  .calendarEvents .calendarEventContainer .calendarDescCal .calendarMode .body-2 {
    text-transform: capitalize;
    color: var(--green-500);
    font-weight: 500;
  }
  .calendarEvents .calendarEventContainer .calendarDescCal .calendarMode.black .body-2 {
    color: var(--grey-900);
  }
  .calendarEvents .calendarEventContainer .calendarDescCal .calendarMode.black .calendarCircle {
    background-color: var(--grey-900);
    box-shadow: 0 0 0 0.25rem rgba(var(--grey-900-rgb), 0.25);
  }
  .calendarEvents .calendarEventContainer .calendarDescCal .calendarMode.yellow .body-2 {
    color: var(--orange-400);
  }
  .calendarEvents .calendarEventContainer .calendarDescCal .calendarMode.yellow .calendarCircle {
    background-color: var(--orange-400);
    box-shadow: 0 0 0 0.25rem rgba(var(--orange-400-rgb), 0.25);
  }
  .calendarEvents .calendarEventContainer .calendarCourseName {
    margin-bottom: 0.5rem;
  }
  .calendarEvents .calendarEventContainer .calendarCourseDetails {
    flex-grow: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .calendarEvents .swiper .swiper-pagination {
    position: static !important;
    margin-top: 1.5rem;
  }
  .headingcontainer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .headingcontainer h2 {
    min-width: 0;
  }
  .headingcontainer .heading-icon {
    flex-shrink: 0;
    display: flex;
    margin-top: 0.5rem;
    width: 1.875rem;
    height: 1.875rem;
    color: var(--primary-main);
  }
  .newsLetterSection {
    padding: 4rem 0;
    background-color: var(--grey-700);
  }
  .newsLetterSection .newsletter .inner-div {
    display: flex;
    gap: 2rem;
  }
  @media (max-width: 767px) {
    .newsLetterSection .newsletter .inner-div {
      flex-direction: column;
      text-align: center;
    }
  }
  .newsLetterSection .newsletter .inner-div .left {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
  }
  .newsLetterSection .newsletter .inner-div .left h4 {
    line-height: 1.1;
  }
  @media (max-width: 767px) {
    .newsLetterSection .newsletter .inner-div .left h4 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
  }
  @media (max-width: 767px) {
    .newsLetterSection .newsletter .inner-div .left {
      align-items: center;
    }
  }
  .newsLetterSection .newsletter .inner-div .right {
    width: 100%;
    max-width: 39.0625rem;
    display: flex;
    justify-content: center;
    height: 25rem;
    overflow: hidden;
    border-radius: 1rem;
  }
  @media (max-width: 1200px) {
    .newsLetterSection .newsletter .inner-div .right {
      max-width: 30rem;
    }
  }
  @media (max-width: 767px) {
    .newsLetterSection .newsletter .inner-div .right {
      margin-left: auto;
      margin-right: auto;
    }
  }
  .newsLetterSection .newsletter .inner-div .right img {
    height: 100% !important;
    max-width: 100%;
  }
  .announceAndCalendar {
    padding: 4rem 0;
  }
  .announcement-wrap {
    display: flex;
    gap: 2rem;
  }
  @media (max-width: 767px) {
    .announcement-wrap {
      flex-direction: column;
    }
  }
  .announcement-wrap .announcement {
    flex-grow: 1;
    min-width: 0;
  }
  .announcement-wrap .announcement .AnnouncementList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .announcement-wrap .announcement .AnnouncementList .announcement-item-block {
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: var(--grey-700);
    border: 1px solid var(--grey-800);
    transition: border ease 0.2s, background ease 0.2s, box-shadow ease 0.2s;
    display: flex;
    gap: 1.25rem;
  }
  .announcement-wrap .announcement .AnnouncementList .announcement-item-block .number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--primary-main);
    background-color: rgba(var(--primary-main-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-main);
    font-size: 1rem;
    font-weight: 500;
  }
  .announcement-wrap .announcement .AnnouncementList .announcement-item-block .announcement-item {
    flex-grow: 1;
    min-width: 0;
  }
  .announcement-wrap .announcement .AnnouncementList .announcement-item-block .announcement-item .announcement-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .announcement-wrap .announcement .AnnouncementList .announcement-item-block .announcement-item .announcement-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .announcement-wrap .announcement .buttonseemore {
    margin-top: 1.5rem;
  }
  .announcement-wrap .calendar-wrap {
    flex-basis: 22.5rem;
    flex-shrink: 0;
  }
  @media (max-width: 767px) {
    .announcement-wrap .calendar-wrap {
      flex-basis: 100%;
      max-width: 21.875rem;
    }
  }
  .announcement-wrap .calendar-wrap .calendar .fc-header-toolbar .fc-toolbar-chunk .fc-toolbar-title {
    font-size: 1rem !important;
    font-weight: 500;
    color: var(--secondary-main);
  }
  .announcement-wrap .calendar-wrap .calendar .fc-header-toolbar .fc-toolbar-chunk .fc-button {
    background-color: var(--grey-700) !important;
    border-color: var(--grey-700) !important;
    color: var(--grey-100) !important;
    padding: 4px 6px !important;
    font-size: 12px !important;
  }
  .announcement-wrap .calendar-wrap .calendar .fc-header-toolbar .fc-toolbar-chunk .fc-button:hover {
    background-color: var(--grey-500) !important;
    border-color: var(--grey-600) !important;
    color: var(--grey-100) !important;
  }
  .announcement-wrap .calendar-wrap .calendar .fc-header-toolbar .fc-toolbar-chunk .fc-button:active {
    background-color: var(--grey-500) !important;
    border-color: var(--grey-600) !important;
    color: var(--grey-100) !important;
  }
  .announcement-wrap .calendar-wrap .calendar .fc-header-toolbar .fc-toolbar-chunk .fc-button:focus {
    background-color: var(--grey-500) !important;
    border-color: var(--grey-600) !important;
    color: var(--grey-100) !important;
    box-shadow: none !important;
  }
  .announcement-wrap .calendar-wrap .calendar th {
    padding: 2px !important;
  }
}
@layer screen {
  .header-container {
    background-color: white;
    padding: 1rem 0rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 9;
  }
  .header-container .header-container-wrap {
    display: flex;
    align-items: center;
  }
  .logotext {
    font-size: 18px; /* Further decrease logo size */
    font-weight: 500;
  }
  .logotext a {
    color: var(--primary-main);
    text-decoration: none;
  }
  .logotext a .mobile-logo {
    display: none;
  }
  @media (max-width: 1200px) {
    .logotext a .desktop-logo {
      display: none;
    }
    .logotext a .mobile-logo {
      display: block;
    }
  }
  .logotext .amp {
    /* font-size: 16px; Increase ampersand size slightly */
    color: black; /* Ampersand color */
  }
  .search-bar {
    width: 100%;
    max-width: 18.75rem;
    margin-left: auto;
  }
  .search-bar .search-wrap {
    position: relative;
  }
  @media (max-width: 1440px) {
    .search-bar {
      max-width: 12.5rem;
    }
  }
  @media (max-width: 991px) {
    .search-bar {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--generic-white);
      border: 1px solid var(--grey-200);
      box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
      padding: 1rem;
      max-width: 18.75rem;
      border-radius: 0 0 0.5rem 0.5rem;
    }
  }
  @media (max-width: 991px) and (max-width: 991px) {
    .search-bar.open {
      display: block;
    }
  }
  .search-bar .form-control {
    padding-left: 2.5rem;
  }
  .search-bar .search-icon {
    position: absolute;
    left: 0.375rem;
    top: 0;
    width: 2.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-bar .search-icon svg {
    width: 1rem;
    height: 1rem;
  }
  .suggestions-container {
    position: absolute;
    top: 100%;
    margin-top: 0.625rem;
    background-color: var(--generic-white);
    max-height: 12.5rem;
    overflow-y: auto;
    width: 100%;
    border: 1px solid var(--grey-200);
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  }
  .suggestions-container:empty {
    display: none;
  }
  .mobile-controls {
    display: none;
  }
  @media (max-width: 991px) {
    .mobile-controls {
      display: flex;
      gap: 0.5rem;
      margin-left: auto;
    }
  }
  .suggestions-container div {
    padding: 0.625rem 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
  }
  .suggestions-container div:hover {
    background-color: #f0f0f0;
  }
  .header-buttons {
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
  }
  .bell-icon {
    color: var(--secondary-100);
    width: 2rem;
    height: 2rem;
    transition: color var(--transition-duration) ease;
  }
  @media (max-width: 991px) {
    .bell-icon {
      width: 1.5rem;
      height: 1.5rem;
    }
  }
  .nav-container {
    display: flex;
    margin-left: auto;
  }
  @media (max-width: 991px) {
    .nav-container {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--generic-white);
      border: 1px solid var(--grey-200);
      box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
      padding: 1rem;
    }
  }
  @media (max-width: 991px) {
    .nav-container.open {
      display: flex;
    }
  }
  .nav-container nav {
    display: flex;
  }
  @media (max-width: 991px) {
    .nav-container nav {
      width: 100%;
    }
  }
  .nav-container nav ul {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0;
    padding: 0;
  }
  @media (max-width: 1440px) {
    .nav-container nav ul {
      gap: 30px;
      flex-grow: 1;
    }
  }
  @media (max-width: 991px) {
    .nav-container nav ul {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }
  .nav-container nav ul li a {
    text-decoration: none;
    color: var(--secondary-100);
    font-size: 15px;
    transition: color 0.3s ease;
    font-weight: 500;
    position: relative;
  }
  .nav-container nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -0.375rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    background-color: var(--primary-main);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 0.25rem;
  }
  .nav-container nav ul li a:hover {
    color: var(--primary-main);
  }
  .nav-container nav ul li a:hover::after {
    transform: scaleX(1);
  }
  .nav-container nav ul li.active a {
    color: var(--primary-main);
  }
  .announcements {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    border: none;
    background-color: transparent;
    padding: 0;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .announcements .badge {
    position: absolute;
    top: -0.375rem;
    right: -0.375rem;
  }
  .announcements:hover .bell-icon {
    color: var(--primary-main);
  }
  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .calendarEventContainer {
    /* padding-left: 50px;
    padding-right: 50px;
    width: 100%; */
  }
  .calendarEventContainer .date {
    background-color: #4D4D4D;
    color: white;
    line-height: 4px;
    position: relative;
    top: 0px;
    left: 10px;
    width: 50px;
    height: 80px;
    z-index: 999;
  }
  .calendarEventContainer .date p {
    padding-top: 10px;
  }
  .calendarEventContainer .date h2 {
    padding-top: 20px;
  }
  .calendarEventContainer .date .swiper .swiper-pagination {
    padding-top: 50px;
  }
  .calendarEventContainer .descCal {
    display: flex;
    justify-content: space-between;
  }
  .calendarEventContainer .descCal .trainer {
    display: flex;
    padding-top: 10px;
    padding-left: 70px;
  }
  .calendarEventContainer .descCal .trainer p {
    padding-left: 5px;
    font-size: 13px;
    max-width: 100px; /* Adjust the width as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .calendarEventContainer img {
    height: auto;
    width: 20px;
  }
  .calendarEventContainer .mode {
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
  }
  .calendarEventContainer .mode .circle {
    width: 16px;
    height: 16px;
    border-radius: 50px;
    background-color: green;
    border: rgba(0, 0, 0, 0.2549019608) 2px solid;
  }
  .calendarEventContainer .mode .black {
    background-color: rgba(76, 76, 76, 0.537254902);
    border: #000000 2px solid;
  }
  .calendarEventContainer .mode .yellow {
    background-color: #ded413;
    border: #000000 2px solid;
  }
  .calendarEventContainer .mode p {
    padding-left: 5px;
    font-size: 13px;
    padding-right: 10px;
  }
  .calendarEventContainer .calbottom {
    height: 20px;
    border-bottom: #000000 1px solid;
  }
  .calendarEventContainer .courseDetails {
    position: absolute;
    top: 15px;
    width: 300px;
  }
  .calendarEventContainer .coursename {
    background-color: #D42027;
    height: 30px;
    /* margin-top: -20px; */
    color: white;
  }
  .calendarEventContainer .coursename p {
    text-align: end;
    padding-right: 10px;
    padding-left: 60px;
  }
  /* newsletter */
  .newsLetter iframe {
    padding-top: 20px;
  }
  .header {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
  }
  .logo {
    margin-top: -1.2rem;
  }
  .announcement-hover {
    width: 21.875rem;
    height: auto;
    position: absolute;
    top: 43px;
    right: 0%;
    background-color: var(--generic-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--grey-200);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .announcement-section {
    display: flex;
    padding: 1rem;
    gap: 1rem;
    align-items: center;
    transition: background-color var(--transition-duration);
    cursor: pointer;
  }
  .announcement-section:hover {
    background-color: var(--grey-700);
  }
  .notification-description {
    min-width: 0;
  }
  .notification-description h4 {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--generic-black);
  }
  .event-section {
    display: flex;
    flex-direction: row;
    padding: 3%;
  }
  .event-icon {
    padding-right: 4%;
  }
  .notification-icon {
    flex-shrink: 0;
    align-self: self-start;
    display: flex;
    width: 1.5rem;
    height: 1.5rem;
  }
}
@layer screen {
  .footer-wrap {
    background-color: var(--secondary-main);
    padding: 2.75rem 0;
  }
  .footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  @media (max-width: 767px) {
    .footer-nav {
      flex-wrap: wrap;
      column-gap: 1rem;
      row-gap: 0.5rem;
    }
  }
  .footer-nav li a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--grey-700);
  }
  .footer-nav li a:hover {
    color: var(--primary-main);
    text-decoration: underline;
  }
  .footer-copyrights {
    margin-top: 1.5rem;
    text-align: center;
  }
  .footer-copyrights p {
    color: var(--grey-900);
    font-size: 0.75rem;
    font-weight: 400;
  }
  .leaderInsight {
    margin-top: auto;
  }
}
@layer screen {
  .main-content-wrapper {
    width: 100%;
    height: 100%;
  }
  .page-info {
    padding: 4rem 0;
    background-color: var(--grey-700);
  }
  @media (max-width: 767px) {
    .page-info {
      padding: 2rem 0;
    }
  }
  .page-info .page-info-base {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  @media (max-width: 767px) {
    .page-info .page-info-base {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .page-info .page-info-base .page-h-action {
    margin-left: auto;
  }
  @media (max-width: 767px) {
    .page-info .page-info-base .page-h-action {
      margin-left: 0;
    }
  }
  .main-content-block {
    padding: 3.25rem 0;
  }
  .inside-content {
    display: flex;
    gap: 2rem;
  }
  @media (max-width: 991px) {
    .inside-content {
      flex-direction: column;
    }
  }
  .inside-content .calendar-preview {
    flex-grow: 1;
  }
  .inside-content .calendar-preview img {
    max-width: 100%;
    width: 100%;
  }
  .inside-content .sidebar {
    flex-basis: 25rem;
    flex-shrink: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  @media (max-width: 1200px) {
    .inside-content .sidebar {
      flex-basis: 18.75rem;
    }
  }
  .inside-content .sidebar-block {
    padding: 1.5rem;
    background-color: var(--grey-700);
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .inside-content .announcement-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .inside-content .announcement-list li {
    background-color: var(--generic-white);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .inside-content .announcement-list li .heading-1 {
    line-height: 1;
  }
  .inside-content .show-more-wrap {
    margin-top: 1rem;
  }
  .inside-content .gallery-slider {
    --swiper-navigation-sides-offset: 16px;
    border-radius: 0.75rem;
  }
  .inside-content .gallery-slider .gallery-item {
    overflow: hidden;
    border-radius: 0.75rem;
    position: relative;
  }
  .inside-content .gallery-slider .gallery-item .gallery-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    color: var(--generic-white);
    padding: 2rem 1rem 1rem 1rem;
  }
  .inside-content .gallery-slider .gallery-item .gallery-description p {
    color: var(--generic-white);
    font-weight: 500;
  }
  .inside-content .gallery-slider .swiper-button-prev,
  .inside-content .gallery-slider .swiper-button-next {
    width: 2rem !important;
    height: 2rem !important;
    padding: 0.25rem;
  }
  .gallery-header {
    margin-bottom: 1.5rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--grey-800);
  }
  .gallery-header ul {
    display: flex;
    gap: 0.25rem;
  }
  .gallery-header ul li {
    font-size: 1rem;
    color: var(--secondary-main);
    padding: 1rem;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
  }
  .gallery-header ul li::before {
    content: "";
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-main);
    width: 0%;
    height: 2px;
    border-radius: 8px;
    transition: width 0.3s ease-in-out;
  }
  .gallery-header ul li.active {
    color: var(--primary-main);
  }
  .gallery-header ul li.active::before {
    width: 100%;
  }
  .gallery-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15.625rem, 1fr));
    gap: 2rem;
  }
  .gallery-wrap .responsive {
    min-width: 0;
    padding: 1rem;
    border: 1px solid var(--grey-800);
    border-radius: 0.625rem;
  }
  .gallery-wrap .responsive .gallery {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .gallery-wrap .responsive .gallery img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform ease 0.2s;
  }
  .gallery-wrap .responsive .gallery a {
    display: flex;
    overflow: hidden;
    border-radius: 0.625rem;
    aspect-ratio: 16/9;
    cursor: pointer;
  }
  .gallery-wrap .responsive .gallery a:hover img {
    transform: scale(1.05);
  }
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 11; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
    padding: 2rem;
  }
  /* Modal Content (Image) */
  .modal-content {
    margin-top: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  .modal-image-holder {
    max-height: 100%;
    min-height: 0;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 1rem;
  }
  .modal-image-holder img {
    border-radius: 1rem;
  }
  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  #caption {
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    margin-bottom: auto;
  }
  /* Add Animation - Zoom in the Modal */
  .modal-content,
  #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  @keyframes zoom {
    from {
      transform: scale(0);
    }
    to {
      transform: scale(1);
    }
  }
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    transition: 0.3s;
    width: 1.5rem;
    height: 1.5rem;
  }
  .close:hover,
  .close:focus {
    text-decoration: none;
    cursor: pointer;
  }
  .modal-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    gap: 1rem;
  }
  .announcement-base {
    max-width: 61.9375rem;
    margin: 0 auto;
  }
  .announcement-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .announcement-container .card {
    padding: 1rem;
    background-color: var(--grey-700);
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  @media (max-width: 767px) {
    .announcement-container .card {
      padding-top: 2.75rem;
      position: relative;
    }
  }
  .announcement-container .card .heading-1 {
    line-height: 1;
  }
  .announcement-container .card .announce-date {
    display: flex;
  }
  @media (max-width: 767px) {
    .announcement-container .card .announce-date {
      position: absolute;
      top: 0;
      left: 0;
    }
  }
  .announcement-container .card .announce-date .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .announcement-container .card .announce-date .badge svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
  }
  .announcement-container .card .icon-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .announcement-container .card .icon-wrapper .red-circle {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-main);
  }
  .announcement-container .card .announcement-desc {
    padding: 0.5rem 0 0 1.5rem;
  }
}
@layer reset, base, components, screen, utility;
@layer base {
  :root {
    --primary-font: "Roboto", sans-serif;
    --secondary-font: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
               "Open Sans", "Helvetica Neue", sans-serif;
    --body-font: var(--primary-font), var(--secondary-font);
    --transition-duration: 0.5s;
    --primary-main: rgb(212 32 39);
    --primary-main-rgb: 212 32 39;
    --primary-100: rgb(237 43 50);
    --primary-100-rgb: 237 43 50;
    --secondary-main: rgb(0, 0, 0);
    --secondary-main-rgb: 0, 0, 0;
    --secondary-100: rgb(74, 74, 74);
    --secondary-100-rgb: 74, 74, 74;
    --secondary-200: rgb(223, 223, 223);
    --secondary-200-rgb: 223, 223, 223;
    --secondary-300: rgb(247, 247, 247);
    --secondary-300-rgb: 247, 247, 247;
    --secondary-400: rgb(245, 245, 247);
    --secondary-400-rgb: 245, 245, 247;
    --tertiary-main: rgb(5, 5, 5);
    --tertiary-main-rgb: 5, 5, 5;
    --grey-main: rgb(247, 247, 247);
    --grey-main-rgb: 247, 247, 247;
    --grey-100: rgb(113, 113, 113);
    --grey-100-rgb: 113, 113, 113;
    --grey-200: rgb(221, 221, 221);
    --grey-200-rgb: 221, 221, 221;
    --grey-300: rgb(34, 34, 34);
    --grey-300-rgb: 34, 34, 34;
    --grey-400: rgb(215, 215, 215);
    --grey-400-rgb: 215, 215, 215;
    --grey-500: rgb(230, 230, 230);
    --grey-500-rgb: 230, 230, 230;
    --grey-600: rgb(83, 83, 83);
    --grey-600-rgb: 83, 83, 83;
    --grey-700: rgb(248, 248, 248);
    --grey-700-rgb: 248, 248, 248;
    --grey-800: rgb(222, 222, 222);
    --grey-800-rgb: 222, 222, 222;
    --grey-900: rgb(148, 151, 156);
    --grey-900-rgb: 148, 151, 156;
    --generic-white: rgb(255, 255, 255);
    --generic-white-rgb: 255, 255, 255;
    --generic-black: rgb(0, 0, 0);
    --generic-black-rgb: 0, 0, 0;
    --generic-text: rgb(24, 26, 32);
    --generic-text-rgb: 24, 26, 32;
    --red-main: rgb(213, 25, 25);
    --red-main-rgb: 213, 25, 25;
    --blue-main: rgb(20 176 195);
    --blue-main-rgb: 20 176 195;
    --yellow-main: rgb(255 185 0);
    --yellow-main-rgb: 255 185 0;
    --yellow-100: rgb(253 248 227);
    --yellow-100-rgb: 253 248 227;
    --green-main: rgb(232, 248, 235);
    --green-main-rgb: 232, 248, 235;
    --green-100: rgb(232, 244, 248);
    --green-100-rgb: 232, 244, 248;
    --green-200: rgb(40, 115, 46);
    --green-200-rgb: 40, 115, 46;
    --green-300: rgb(232, 244, 248);
    --green-300-rgb: 232, 244, 248;
    --green-400: rgb(232, 248, 235);
    --green-400-rgb: 232, 248, 235;
    --green-500: rgb(51, 200, 62);
    --green-500-rgb: 51, 200, 62;
    --orange-main: rgb(242, 135, 6);
    --orange-main-rgb: 242, 135, 6;
    --orange-100: rgb(235, 227, 183);
    --orange-100-rgb: 235, 227, 183;
    --orange-200: rgb(255, 252, 237);
    --orange-200-rgb: 255, 252, 237;
    --orange-300: rgb(250, 242, 174);
    --orange-300-rgb: 250, 242, 174;
    --orange-400: rgb(255, 157, 39);
    --orange-400-rgb: 255, 157, 39;
    --purple-main: rgb(170, 53, 228);
    --purple-main-rgb: 170, 53, 228;
    --purple-100: rgb(240, 210, 252);
    --purple-100-rgb: 240, 210, 252;
    --purple-200: rgb(251, 243, 255);
    --purple-200-rgb: 251, 243, 255;
  }
}
@layer screen {
  html,
  body {
    position: relative;
    font-family: var(--body-font);
  }
  body {
    margin: 0;
    padding: 0;
  }
  .swiper-slide img {
    width: 100%;
    /* height: 100%; */
  }
  .description-overlay {
    position: absolute;
    top: 50px;
    right: 10%;
    /* transform: translate(-50%, -50%); */
    width: 350px;
    height: 350px;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content */
  }
  .description-overlay img {
    max-width: 100%; /* Ensure the image doesn't overflow */
    height: auto;
    z-index: 2;
    margin-top: 10px; /* Adds space between text and image */
    opacity: 0.6;
    /* border-top: #eee 2px solid; */
  }
  .description-overlay h2 {
    position: absolute;
    padding-top: 26px;
    padding-left: 50px;
    padding-right: 20px;
    text-align: left;
    z-index: 3;
  }
  .description-overlay p {
    position: absolute;
    /* transform: translate(0%, 60%); */
    top: 96px;
    padding: 30px;
    padding-left: 50px;
    padding-right: 30px;
    z-index: 3;
    text-align: left;
    font-size: 17px;
  }
  .know-more-btn {
    position: absolute;
    top: 240px;
    left: 50px;
    background-color: #d42027;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px; /* Adds space between the image and button */
    z-index: 2; /* Ensure it stays on top */
  }
  .know-more-btn:hover {
    background-color: #ff5a5f;
  }
  .know-more-btn:hover {
    background-color: #ff5a5f;
  }
  .swiper-control-custom {
    display: flex;
    align-items: center;
    --swiper-pagination-bullet-size: 6px;
    --swiper-pagination-bullet-border-radius: 50%;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-inactive-color: var(--grey-300);
    --swiper-pagination-bullet-horizontal-gap: 5px;
    --swiper-pagination-color: var(--primary-main);
    --swiper-navigation-size: 32px;
    --swiper-navigation-color: var(--grey-300);
    --swiper-pagination-bottom: 20px;
    --swiper-navigation-sides-offset: 40px;
  }
  /* Pagination */
  .swiper-control-custom .swiper-pagination-bullets {
    width: 100%;
    padding: 0 1.625rem; /* rem(26) assuming base 16px */
  }
  .swiper-control-custom .swiper-pagination-bullet {
    transition: transform ease 0.2s;
  }
  .swiper-control-custom .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.5);
  }
  /* Navigation Buttons (Shared) */
  .swiper-control-custom .swiper-button-prev,
  .swiper-control-custom .swiper-button-next {
    width: 2.5rem !important; /* rem(32) */
    height: 2.5rem !important; /* rem(32) */
    background-color: var(--secondary-200);
    color: var(--grey-300);
    margin: auto;
    padding: 0; /* rem(4) */
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform ease 0.2s, opacity ease 0.2s;
  }
  .swiper-control-custom .swiper-button-prev::after,
  .swiper-control-custom .swiper-button-next::after {
    display: none;
  }
  .swiper-control-custom .swiper-button-prev.swiper-button-disabled,
  .swiper-control-custom .swiper-button-prev.swiper-button-lock,
  .swiper-control-custom .swiper-button-next.swiper-button-disabled,
  .swiper-control-custom .swiper-button-next.swiper-button-lock {
    opacity: 0;
    transform: translate(0, 0);
  }
  .swiper-control-custom:hover .swiper-button-prev,
  .swiper-control-custom:hover .swiper-button-next {
    opacity: 1;
    transform: translate(0, 0);
  }
  /* Specific Button Positioning */
  .swiper-control-custom .swiper-button-next {
    margin-left: auto;
    transform: translate(35px, 0);
  }
  .swiper-control-custom .swiper-button-prev {
    margin-right: auto;
    transform: translate(-35px, 0);
  }
}
@layer reset, base, components, customComponents, utility;
@layer base {
  :root {
    --primary-font: "Roboto", sans-serif;
    --secondary-font: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
               "Open Sans", "Helvetica Neue", sans-serif;
    --body-font: var(--primary-font), var(--secondary-font);
    --transition-duration: 0.5s;
    --primary-main: rgb(212 32 39);
    --primary-main-rgb: 212 32 39;
    --primary-100: rgb(237 43 50);
    --primary-100-rgb: 237 43 50;
    --secondary-main: rgb(0, 0, 0);
    --secondary-main-rgb: 0, 0, 0;
    --secondary-100: rgb(74, 74, 74);
    --secondary-100-rgb: 74, 74, 74;
    --secondary-200: rgb(223, 223, 223);
    --secondary-200-rgb: 223, 223, 223;
    --secondary-300: rgb(247, 247, 247);
    --secondary-300-rgb: 247, 247, 247;
    --secondary-400: rgb(245, 245, 247);
    --secondary-400-rgb: 245, 245, 247;
    --tertiary-main: rgb(5, 5, 5);
    --tertiary-main-rgb: 5, 5, 5;
    --grey-main: rgb(247, 247, 247);
    --grey-main-rgb: 247, 247, 247;
    --grey-100: rgb(113, 113, 113);
    --grey-100-rgb: 113, 113, 113;
    --grey-200: rgb(221, 221, 221);
    --grey-200-rgb: 221, 221, 221;
    --grey-300: rgb(34, 34, 34);
    --grey-300-rgb: 34, 34, 34;
    --grey-400: rgb(215, 215, 215);
    --grey-400-rgb: 215, 215, 215;
    --grey-500: rgb(230, 230, 230);
    --grey-500-rgb: 230, 230, 230;
    --grey-600: rgb(83, 83, 83);
    --grey-600-rgb: 83, 83, 83;
    --grey-700: rgb(248, 248, 248);
    --grey-700-rgb: 248, 248, 248;
    --grey-800: rgb(222, 222, 222);
    --grey-800-rgb: 222, 222, 222;
    --grey-900: rgb(148, 151, 156);
    --grey-900-rgb: 148, 151, 156;
    --generic-white: rgb(255, 255, 255);
    --generic-white-rgb: 255, 255, 255;
    --generic-black: rgb(0, 0, 0);
    --generic-black-rgb: 0, 0, 0;
    --generic-text: rgb(24, 26, 32);
    --generic-text-rgb: 24, 26, 32;
    --red-main: rgb(213, 25, 25);
    --red-main-rgb: 213, 25, 25;
    --blue-main: rgb(20 176 195);
    --blue-main-rgb: 20 176 195;
    --yellow-main: rgb(255 185 0);
    --yellow-main-rgb: 255 185 0;
    --yellow-100: rgb(253 248 227);
    --yellow-100-rgb: 253 248 227;
    --green-main: rgb(232, 248, 235);
    --green-main-rgb: 232, 248, 235;
    --green-100: rgb(232, 244, 248);
    --green-100-rgb: 232, 244, 248;
    --green-200: rgb(40, 115, 46);
    --green-200-rgb: 40, 115, 46;
    --green-300: rgb(232, 244, 248);
    --green-300-rgb: 232, 244, 248;
    --green-400: rgb(232, 248, 235);
    --green-400-rgb: 232, 248, 235;
    --green-500: rgb(51, 200, 62);
    --green-500-rgb: 51, 200, 62;
    --orange-main: rgb(242, 135, 6);
    --orange-main-rgb: 242, 135, 6;
    --orange-100: rgb(235, 227, 183);
    --orange-100-rgb: 235, 227, 183;
    --orange-200: rgb(255, 252, 237);
    --orange-200-rgb: 255, 252, 237;
    --orange-300: rgb(250, 242, 174);
    --orange-300-rgb: 250, 242, 174;
    --orange-400: rgb(255, 157, 39);
    --orange-400-rgb: 255, 157, 39;
    --purple-main: rgb(170, 53, 228);
    --purple-main-rgb: 170, 53, 228;
    --purple-100: rgb(240, 210, 252);
    --purple-100-rgb: 240, 210, 252;
    --purple-200: rgb(251, 243, 255);
    --purple-200-rgb: 251, 243, 255;
  }
}
/* CSS Reset */
@layer reset {
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }
  /* HTML5 display-role reset for older browsers */
  article, aside, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section {
    display: block;
  }
  /* Reset list styles */
  ol, ul {
    list-style: none;
  }
  /* Reset quotes */
  blockquote, q {
    quotes: none;
  }
  blockquote::before, blockquote::after,
  q::before, q::after {
    content: "";
    content: none;
  }
  /* Reset table styles */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  /* Inherit box-sizing */
  *, *::before, *::after {
    box-sizing: border-box;
  }
}
/* Google font */
@layer base {
  * {
    box-sizing: border-box;
  }
  ::selection {
    background: rgba(var(--primary-main-rgb), 0.2);
    color: black;
  }
  ::-moz-selection {
    background: rgba(var(--primary-main-rgb), 0.2);
    color: black;
  }
  html {
    min-height: 100%;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  body {
    font-family: var(--body-font);
    font-size: 0.9375rem;
    -webkit-font-smoothing: subpixel-antialiased; /* or subpixel-antialiased */
    text-rendering: optimizeLegibility;
    font-weight: 400;
    line-height: 1.5;
    color: var(--generic-text);
    margin: 0;
    min-height: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  a:focus, input:focus, textarea:focus, button:focus {
    outline: none;
    text-decoration: none;
  }
  h1, .h1 {
    font-size: 2.8125rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    font-weight: 700;
  }
  @media (max-width: 991px) {
    h1, .h1 {
      font-size: 2.1875rem;
    }
  }
  @media (max-width: 767px) {
    h1, .h1 {
      font-size: 2rem;
    }
  }
  h2, .h2 {
    font-size: 2.125rem;
    line-height: 1.2;
    font-weight: 600;
  }
  @media (max-width: 1440px) {
    h2, .h2 {
      font-size: 2rem;
    }
  }
  @media (max-width: 1200px) {
    h2, .h2 {
      font-size: 1.875rem;
    }
  }
  @media (max-width: 991px) {
    h2, .h2 {
      font-size: 1.625rem;
    }
  }
  @media (max-width: 576px) {
    h2, .h2 {
      font-size: 1.375rem;
    }
  }
  h3, .h3 {
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.2;
  }
  @media (max-width: 1200px) {
    h3, .h3 {
      font-size: 1.5rem;
    }
  }
  @media (max-width: 991px) {
    h3, .h3 {
      font-size: 1.375rem;
    }
  }
  @media (max-width: 576px) {
    h3, .h3 {
      font-size: 1.25rem;
    }
  }
  h4, .h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
  }
  @media (max-width: 991px) {
    h4, .h4 {
      font-size: 1.25rem;
    }
  }
  h5, .h5 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.5;
  }
  @media (max-width: 991px) {
    h5, .h5 {
      font-size: 1.125rem;
    }
  }
  h6, .h6 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
  }
  .body-1 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--generic-text);
  }
  .body-2 {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--generic-text);
  }
  .body-3 {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--generic-text);
  }
  .heading-1 {
    font-size: 1rem;
    font-weight: 500;
  }
  .heading-2 {
    font-size: 0.875rem;
    font-weight: 500;
  }
  .heading-3 {
    font-size: 0.75rem;
    font-weight: 500;
  }
  a {
    color: var(--generic-text);
    text-decoration: none;
    font-weight: 600;
    transition: color ease 0.2s;
    -webkit-transition: color ease 0.2s;
    -moz-transition: color ease 0.2s;
    -ms-transition: color ease 0.2s;
    -o-transition: color ease 0.2s;
  }
  a:hover {
    text-decoration: none;
    color: var(--primary-main);
  }
  button:focus-visible, a:focus-visible {
    outline: var(--primary-main) 2px dashed;
    outline-offset: 4px;
    text-decoration: none;
  }
  label {
    font-weight: normal;
  }
  p {
    margin: 0;
  }
  p + p {
    margin-top: 1rem;
  }
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  ol {
    padding: 0px;
    list-style-position: inside;
  }
  ol li {
    margin-bottom: 0px;
    list-style: none;
    position: relative;
  }
  img {
    opacity: 1;
    transition: opacity ease 0.2s;
    -webkit-transition: opacity ease 0.2s;
    -moz-transition: opacity ease 0.2s;
    -ms-transition: opacity ease 0.2s;
    -o-transition: opacity ease 0.2s;
  }
  img[data-src] {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  .container {
    width: 100%;
    max-width: 1635px;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
    margin: 0 auto;
  }
  @media (max-width: 1440px) {
    .container {
      max-width: 90vw;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  @media (max-width: 767px) {
    .container {
      max-width: 100%;
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
  .container-sm {
    width: 100%;
    max-width: 1210px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin: 0 auto;
  }
  @media (max-width: 1440px) {
    .container-sm {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  @media (max-width: 767px) {
    .container-sm {
      max-width: 100%;
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
  .container-md {
    width: 100%;
    max-width: 1440px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin: 0 auto;
  }
  @media (max-width: 1440px) {
    .container-md {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  @media (max-width: 767px) {
    .container-md {
      max-width: 100%;
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
  .container-xl {
    max-width: 2520px;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
    margin: 0 auto;
  }
  @media (max-width: 1440px) {
    .container-xl {
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
  }
  @media (max-width: 767px) {
    .container-xl {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  .img-fluid {
    max-width: 100%;
    display: block;
    max-height: 100%;
  }
  svg {
    width: 100%;
    height: 100%;
  }
  /*
  * Let's target IE to respect aspect ratios and sizes for img tags containing SVG files
  *
  * [1] IE9
  * [2] IE10+
  */
  /* 1 */
  .ie9 img[src$=".svg"] {
    width: 100%;
  }
  /* 2 */
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    img[src$=".svg"] {
      width: 100%;
    }
  }
}
@layer customComponents {
  body, html {
    margin: 0;
    font-family: var(--body-font);
  }
  .icon-bar-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    height: 100%;
  }
  @media (max-width: 991px) {
    .icon-bar-main {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
  }
  @media (max-width: 767px) {
    .icon-bar-main {
      grid-template-columns: repeat(auto-fill, minmax(15.625rem, 1fr));
      gap: 16px;
    }
  }
  .icon-item {
    min-width: 0;
  }
  .icon-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 2rem;
    justify-content: center;
    transition: box-shadow ease 0.2s, background-color ease 0.2s;
    background-color: rgba(var(--generic-white-rgb), 0.2);
    text-align: center;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    text-decoration: none;
    color: rgb(255, 255, 255);
  }
  @media (max-width: 767px) {
    .icon-item a {
      padding: 1rem;
    }
  }
  .icon-item a:hover {
    box-shadow: 0 10px 10px rgba(var(--generic-black-rgb), 0.1);
    background-color: rgba(var(--generic-white-rgb), 0.25);
  }
  .icon-item a img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(1) grayscale(1);
  }
  .icon-item a .icon-item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.125rem;
    height: 3.125rem;
    margin-bottom: 1rem;
  }
  @media (max-width: 767px) {
    .icon-item a .icon-item-img {
      width: 2rem;
      height: 2rem;
      margin-bottom: 0.625rem;
    }
  }
  .icon-item i {
    font-size: 3.125rem;
    margin-bottom: 0.625rem;
  }
  @media (max-width: 767px) {
    .icon-item i {
      font-size: 2rem;
    }
  }
  .icon-item p {
    margin: 0;
    line-height: 1.2;
  }
  @media (max-width: 767px) {
    .icon-item p {
      font-size: 0.875rem;
    }
  }
}
/* Utilities */
@layer utility {
  .u-min-width-100 {
    min-width: 100px;
  }
  .u-upper-case {
    text-transform: uppercase;
  }
  .u-upper-capilalize {
    text-transform: capitalize;
  }
  .u-text-white {
    color: var(--generic-white);
  }
  .u-text-center {
    text-align: center;
  }
  .u-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .d-block {
    display: block;
  }
  .d-none {
    display: none;
  }
  .w-full {
    width: 100%;
  }
  .m-0 {
    margin: 0;
  }
  .mt-0 {
    margin-top: 0;
  }
  .mr-0 {
    margin-right: 0;
  }
  .mb-0 {
    margin-bottom: 0;
  }
  .ml-0 {
    margin-left: 0;
  }
  .mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .m-1 {
    margin: 0.25rem;
  }
  .mt-1 {
    margin-top: 0.25rem;
  }
  .mr-1 {
    margin-right: 0.25rem;
  }
  .mb-1 {
    margin-bottom: 0.25rem;
  }
  .ml-1 {
    margin-left: 0.25rem;
  }
  .mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .m-2 {
    margin: 0.5rem;
  }
  .mt-2 {
    margin-top: 0.5rem;
  }
  .mr-2 {
    margin-right: 0.5rem;
  }
  .mb-2 {
    margin-bottom: 0.5rem;
  }
  .ml-2 {
    margin-left: 0.5rem;
  }
  .mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .m-3 {
    margin: 1rem;
  }
  .mt-3 {
    margin-top: 1rem;
  }
  .mr-3 {
    margin-right: 1rem;
  }
  .mb-3 {
    margin-bottom: 1rem;
  }
  .ml-3 {
    margin-left: 1rem;
  }
  .mx-3 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .m-4 {
    margin: 1.5rem;
  }
  .mt-4 {
    margin-top: 1.5rem;
  }
  .mr-4 {
    margin-right: 1.5rem;
  }
  .mb-4 {
    margin-bottom: 1.5rem;
  }
  .ml-4 {
    margin-left: 1.5rem;
  }
  .mx-4 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .m-5 {
    margin: 3rem;
  }
  .mt-5 {
    margin-top: 3rem;
  }
  .mr-5 {
    margin-right: 3rem;
  }
  .mb-5 {
    margin-bottom: 3rem;
  }
  .ml-5 {
    margin-left: 3rem;
  }
  .mx-5 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .p-0 {
    padding: 0;
  }
  .pt-0 {
    padding-top: 0;
  }
  .pr-0 {
    padding-right: 0;
  }
  .pb-0 {
    padding-bottom: 0;
  }
  .pl-0 {
    padding-left: 0;
  }
  .px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .p-1 {
    padding: 0.25rem;
  }
  .pt-1 {
    padding-top: 0.25rem;
  }
  .pr-1 {
    padding-right: 0.25rem;
  }
  .pb-1 {
    padding-bottom: 0.25rem;
  }
  .pl-1 {
    padding-left: 0.25rem;
  }
  .px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .p-2 {
    padding: 0.5rem;
  }
  .pt-2 {
    padding-top: 0.5rem;
  }
  .pr-2 {
    padding-right: 0.5rem;
  }
  .pb-2 {
    padding-bottom: 0.5rem;
  }
  .pl-2 {
    padding-left: 0.5rem;
  }
  .px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .p-3 {
    padding: 1rem;
  }
  .pt-3 {
    padding-top: 1rem;
  }
  .pr-3 {
    padding-right: 1rem;
  }
  .pb-3 {
    padding-bottom: 1rem;
  }
  .pl-3 {
    padding-left: 1rem;
  }
  .px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .p-4 {
    padding: 1.5rem;
  }
  .pt-4 {
    padding-top: 1.5rem;
  }
  .pr-4 {
    padding-right: 1.5rem;
  }
  .pb-4 {
    padding-bottom: 1.5rem;
  }
  .pl-4 {
    padding-left: 1.5rem;
  }
  .px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .p-5 {
    padding: 3rem;
  }
  .pt-5 {
    padding-top: 3rem;
  }
  .pr-5 {
    padding-right: 3rem;
  }
  .pb-5 {
    padding-bottom: 3rem;
  }
  .pl-5 {
    padding-left: 3rem;
  }
  .px-5 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/*# sourceMappingURL=main.css.map */
