/* --- Theme base styles --- */

/* --- Font Family --- */
/* Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



/* --- Generic
This is where reset, normalize & box-sizing styles go.
*/
*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
========================================================================== */

/**
* Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
========================================================================== */

/**
* Add the correct box sizing in Firefox.
*/

hr {
  box-sizing: content-box;
  height: 0;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
========================================================================== */

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
*/

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
* Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
========================================================================== */

/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
* Remove the inheritance of text transform in Edge and Firefox.
* 1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
* Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
*/

legend {
  padding: 0;
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/

progress {
  vertical-align: baseline;
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
========================================================================== */

/*
* Add the correct display in Edge and Firefox.
*/

details {
  display: block;
}

/*
* Add the correct display in all browsers.
*/

summary {
  display: list-item;
}

/* --- Objects
Non-cosmetic design patterns including grid and layout classes)
*/


/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


.row-fluid .span1,
.row-fluid .span2,
.row-fluid .span3,
.row-fluid .span4,
.row-fluid .span5,
.row-fluid .span6,
.row-fluid .span7,
.row-fluid .span8,
.row-fluid .span9,
.row-fluid .span10,
.row-fluid .span11,
.row-fluid .span12{
/*   min-height: 1px; */
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
  .row-fluid .span1 {
    width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span2 {
    width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span3 {
    width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span4 {
    width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span5 {
    width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span6 {
    width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span7 {
    width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span8 {
    width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span9 {
    width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span10 {
    width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span11 {
    width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
  }
  
}
/* --- Unknown but removes bottom invisible padding */
.body-wrapper {
  height: 100px;
}


.content-wrapper {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* --- Global components --- */

/* @import url('http://example.com/example_style.css'); */

      /***********************************************/
      /* CSS @imports must be at the top of the file */
      /* Add them above this section                 */
      /***********************************************/

      /*****************************************/
      /* Start your style declarations here    */
      /*****************************************/




      .btn_default{
        display: inline-block;
        background-color: var(--primary); /* Button background color */
        color: white;
        padding: 1.25em 2.5em;
        border-radius: 6px;
        text-decoration: none;
        border:1px solid rgba(255, 255, 255, 1);
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-align: center;
      }

      .btn_default:hover {
        background-color: var(--black); /* Button hover color */
        color:var(--primary); /* Slightly enlarge on hover */
      }

      .btn_default_2{
        border-radius: 6px;
        color: var(--primary);
        cursor: pointer;
        display: inline-block;
        /* padding: 1.25em 8.125em; */
        text-align: start;

        transition: background-color .3s ease, transform .3s ease;
      }

      .btn_default_2:hover {
        text-decoration: underline;
      }

      @media (max-width: 768px) {

        .btn_default_2{
          display: block;
          background-color: var(--primary); /* Button background color */
          color: white;
          border-radius: 6px;
           text-decoration: none;
          padding: 14px 0;
          text-align: center;
          /*     padding: .75em; */
        }

        .btn_default_2:hover {
        background-color: var(--black); /* Button hover color */
        color:var(--primary); /* Slightly enlarge on hover */
          text-decoration: none;
      }

      }
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


:root {
  --primary: #F08D23;
  --black: #333333;
  --white: #FFFFFF;
  --gray: #D9D9D9;
  --gray-2: #707070;
  --black75: rgba(51, 51, 51, 0.75);
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&display=swap');



a {
  text-decoration: none;
}

p,h1,h2,h3,h4,h5,h6 {
  margin: 0;
}



.h1-desktop {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 2.5em; /* 40px */
  line-height: auto;
  letter-spacing: 0%;
}

.h2-desktop {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1.875em; /* 30px */
  line-height: 140%;
  letter-spacing: 0%;
}

.h3-desktop {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 1.5em; /* 24px */
  line-height: 36px; /* remains as px because it's absolute */
  letter-spacing: 0%;
}

.h4-desktop {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1.25em; /* 20px */
  line-height: 100%;
  letter-spacing: 0%;
}


.button-1-desktop {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 1.5em; /* 24px */
  line-height: 100%;
  letter-spacing: 0%;
}

.button-2-desktop {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 1.25em; /* 20px */
  line-height: 100%;
  letter-spacing: 0%;
}

.button-3-desktop {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 1em; /* 16px */
  line-height: 30px; /* Converted to px since line-height is absolute */
  letter-spacing: 0%;
}

.paragraph-desktop {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 1.5em; /* 24px */
  line-height: 36px; /* remains as px because it's absolute */
  letter-spacing: 0%;
}

.paragraph-2-desktop {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 1em; /* 16px */
  line-height: auto;
  letter-spacing: 0%;
}

.chips-desktop {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 1.25em; /* 20px */
  line-height: 140%;
  letter-spacing: 0%;
}


@media(max-width: 768px) {

  .h1-desktop  {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.875em; /* 30px */
    line-height: auto;
    letter-spacing: 0%;
  }

  .h2-desktop {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.5em; /* 24px */
    line-height: 140%;
    letter-spacing: 0%;
  }

  .h3-desktop {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 1.25em; /* 20px */
    line-height: 140%;
    letter-spacing: 0%;
  }


  .h4-desktop {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1em; /* 16px */
    line-height: 100%;
    letter-spacing: 0%;
  }

  .button-1-desktop {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 1.125em; /* 18px */
    line-height: 100%;
    letter-spacing: 0%;
  }

  .button-2-desktop {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 1em; /* 16px */
    line-height: 180%;
    letter-spacing: 0%;
  }

  .paragraph-desktop {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 1em; /* 16px */
    line-height: 27px; /* remains in px as it is absolute */
    letter-spacing: 0%;
  }

  .paragraph-2-desktop {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 0.875em; /* 14px */
    line-height: auto;
    letter-spacing: 0%;
  }
  .chips-desktop {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 1em; /* 16px */
    line-height: 140%;
    letter-spacing: 0%;
  }




}


/* --- Utilities --- */
/* common-Macro */
/* --- Macro CSS --- */







/* --- Custom --- */
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Container */
.sup-pil-container {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Table of Contents */
.sup-pil-toc {
  margin-bottom: 60px;
}
.sup-pil-toc-title {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin-bottom: 24px;
}
.sup-pil-toc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sup-pil-toc-grid a {
  display: block;
  text-align: center;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  text-decoration: none;
}

/* Hero Section */
.sup-pil-hero-section {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}
.sup-pil-hero-image-wrapper {
  width: 100%;
  height: auto;
}
.sup-pil-hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.sup-pil-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 3.75em;
  max-width: 600px;
  width: 100%;
  z-index: 2;
  background: var(--black75);
  color: white;
  border-radius: 20px;
  backdrop-filter: blur(100px);
}
.sup-pil-h1-desktop {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #333333;
  margin: 0;
}
.sup-pil-gray-text {
  color: #333333;
}
.sup-pil-paragraph-desktop {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  margin: 16px 0 24px;
}
.sup-pil-light-text {
  color: #D9D9D9;
}
.sup-pil-btn-default {
  display: inline-block;
  background-color: #F08D23;
  color: #FFFFFF;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
}

/* Sections */
.sup-pil-section {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  align-items: center;
}
.sup-pil-section-image {
  flex: 0 0 33%;
  padding-right: 20px;
}
.sup-pil-section-image img {
  width: 100%;
  height: auto;
  display: block;
}
.sup-pil-section-image p {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  color: #666666;
  margin-top: 8px;
}
.sup-pil-section-content {
  flex: 0 0 67%;
}
.sup-pil-section-content h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #333333;
  margin-bottom: 16px;
}
.sup-pil-section-content p,
.sup-pil-section-content ul {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}
.sup-pil-section-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.sup-pil-section-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  color: #333333;
}
.sup-pil-section-content th,
.sup-pil-section-content td {
  border: 1px solid #DDDDDD;
  padding: 12px;
}
.sup-pil-section-content th {
  background: #F8F8F8;
  text-align: left;
}

/* CTA Sections */
.sup-pil-cta {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
}
.sup-pil-cta-inner {
  max-width: 900px;
  margin: 0 auto;
}
.sup-pil-cta-primary {
  background-color: #F08D23;
}
.sup-pil-cta-light {
  background-color: #F8F8F8;
}
.sup-pil-cta-inner h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 16px;
  color: #ffffff;
}
.sup-pil-cta-light .sup-pil-cta-inner h2{
      color: #F08D23;
}
.sup-pil-cta-inner p {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  margin-bottom: 24px;
  color: #ffffff;
}
.sup-pil-cta-final .sup-pil-cta-inner p{
  margin-top: 24px;
}
.sup-pil-cta-light .sup-pil-cta-inner p{
  color: #F08D23;
}
.sup-pil-cta-primary a,
.sup-pil-cta-light a {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
}
.sup-pil-cta-primary a {
  background: #ffffff;
  color: #F08D23;
  margin-right: 16px;
}
.sup-pil-cta-primary a.secondary {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}
.sup-pil-cta-light a {
  background: #F08D23;
  color: #FFFFFF;
}

/* Small “button” used inside content */
.sup-pil-cta-button {
  display: inline-block;
  background: #F08D23;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 16px;
}

/* Accent link */
.sup-pil-link-accent {
  color: #F08D23;
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 767px) {
  .sup-pil-toc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sup-pil-section {
    flex-direction: column;
  }
  .sup-pil-section-image,
  .sup-pil-section-content {
    flex: 0 0 100%;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .sup-pil-toc-grid {
    grid-template-columns: 1fr;
  }
}
/* Hero – mobile responsiveness */
@media (max-width: 767px) {
  /* Stop the full-bleed trick (let it stay inside the viewport normally) */
  .sup-pil-hero-section {
    position: relative;
    width: 100%;
    left: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
  }

  /* Let the image shrink to its natural aspect ratio */
  .sup-pil-hero-image-wrapper {
    height: auto;
  }
  .sup-pil-hero-image {
    object-fit: contain;
  }

  /* Stack content below the image, instead of absolute over it */
  .sup-pil-hero-content {
    position: static;
    transform: none;
    padding: 20px;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.6);  /* tweak for contrast over the image */
    border-radius: 0;
    backdrop-filter: none;
  }

  /* Scale down the heading & paragraph for small screens */
  .sup-pil-h1-desktop {
    font-size: 28px;
    line-height: 1.3;
  }
  .sup-pil-paragraph-desktop {
    font-size: 16px;
    margin: 12px 0 16px;
  }

  /* Center the button and give it breathing room */
  .sup-pil-btn-default {
    margin-top: 12px;
  }
}
/* Cluster Hero Image – center & responsively scale */
.sup-pil-cluster-hero-image-wrapper {
  text-align: center;
}
.sup-pil-cluster-hero-image {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
/*****************************************************/
/* @Raghuveer Singh Rao Additions below this line    */
/*****************************************************/