/* --- 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 */
.container {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
}

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

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

/* CTA Sections */
.cta {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}
.cta h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 16px;
}
.cta p {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  margin-bottom: 24px;
}
.cta-primary {
  background: #f08d23;
  color: #fff;
}
.cta-primary a {
  display: inline-block;
  background: #fff;
  color: #f08d23;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  margin-right: 16px;
}
.cta-light {
  background: #f8f8f8;
  color: #333;
}
.cta-light a {
  display: inline-block;
  background: #f08d23;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 767px) {
  .toc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    flex-direction: column;
  }
  .section-image,
  .section-content {
    flex: 0 0 100%;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .toc-grid {
    grid-template-columns: 1fr;
  }
}

.custom-banner {
  background-color: #f08d23;
  padding: 40px;
  color: #fff;
}