/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* 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: 600;
}

/**
 * 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));
    }
  
}
.dnd-section > .row-fluid,
.page-center,
.content-wrapper {
  margin:0 auto;
  padding: 0 15px;
  width: 100%;
}
.page-center.full_width,
.content-wrapper.full_width{
  width:100%;
  max-width:100%;
}
.dnd-section[class*="force-full-width-section"]>.row-fluid .dnd-column {
  padding: 0;
}

.dnd-section[class*="force-full-width-section"] > .row-fluid{
  padding:0;
}

.dnd-section[class*="force-full-width-section"]{
  padding:0;
}

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

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

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* ================================
Clash Display Font Family
================================ */

@font-face {
  font-family: "Clash Display";
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Extralight.woff2") format("woff2"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Extralight.woff") format("woff"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Extralight.ttf") format("truetype");
          }

@font-face {
  font-family: "Clash Display";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Light.woff2") format("woff2"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Light.woff") format("woff"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Light.ttf") format("truetype");
          }

@font-face {
  font-family: "Clash Display";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Regular.woff2") format("woff2"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Regular.woff") format("woff"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Regular.ttf") format("truetype");
          }

@font-face {
  font-family: "Clash Display";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Medium.woff2") format("woff2"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Medium.woff") format("woff"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Medium.ttf") format("truetype");
          }

@font-face {
  font-family: "Clash Display";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Semibold.woff2") format("woff2"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Semibold.woff") format("woff"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Semibold.ttf") format("truetype");
          }

@font-face {
  font-family: "Clash Display";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Bold.woff2") format("woff2"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Bold.woff") format("woff"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashDisplay/ClashDisplay-Bold.ttf") format("truetype");
          }

/* ================================
Clash Grotesk Font Family
================================ */

@font-face {
  font-family: "Clash Grotesk";
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Extralight.woff2") format("woff2"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Extralight.woff") format("woff"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Extralight.ttf") format("truetype");
          }

@font-face {
  font-family: "Clash Grotesk";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Light.woff2") format("woff2"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Light.woff") format("woff"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Light.ttf") format("truetype");
          }

@font-face {
  font-family: "Clash Grotesk";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Regular.woff2") format("woff2"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Regular.woff") format("woff"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Regular.ttf") format("truetype");
          }

@font-face {
  font-family: "Clash Grotesk";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Medium.woff2") format("woff2"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Medium.woff") format("woff"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Medium.ttf") format("truetype");
          }

@font-face {
  font-family: "Clash Grotesk";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Semibold.woff2") format("woff2"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Semibold.woff") format("woff"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Semibold.ttf") format("truetype");
          }

@font-face {
  font-family: "Clash Grotesk";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Bold.woff2") format("woff2"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Bold.woff") format("woff"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/ClashGrotesk/ClashGrotesk-Bold.ttf") format("truetype");
          }

/* ================================
Avenir Next Font Family
================================ */

/* ================================
Avenir Next Font Family
================================ */

/* Ultra Light */
@font-face {
  font-family: "Avenir Next";
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-UltraLight.ttf") format("truetype"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-UltraLight.woff2") format("woff2"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-UltraLight.woff") format("woff");
          }

@font-face {
  font-family: "Avenir Next";
  font-weight: 200;
  font-style: italic;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-UltraLightItalic.ttf") format("truetype"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-UltraLightItalic.woff2") format("woff2"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-UltraLightItalic.woff") format("woff");
          }

/* Regular */
@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Regular.ttf") format("truetype"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Regular.woff2") format("woff2"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Regular.woff") format("woff");
          }

@font-face {
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Italic.ttf") format("truetype"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Italic.woff2") format("woff2"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Italic.woff") format("woff");
          }

/* Medium */
@font-face {
  font-family: Avenir Next;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Medium.ttf") format("truetype"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Medium.woff2") format("woff2"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Medium.woff") format("woff");
          }

@font-face {
  font-family: Avenir Next;
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-MediumItalic.ttf") format("truetype"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-MediumItalic.woff2") format("woff2"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-MediumItalic.woff") format("woff");
          }

/* Demi Bold */
@font-face {
  font-family: Avenir Next;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-DemiBold.ttf") format("truetype"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-DemiBold.woff2") format("woff2"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-DemiBold.woff") format("woff");
          }

@font-face {
  font-family: Avenir Next;
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-DemiBoldItalic.ttf") format("truetype"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-DemiBoldItalic.woff2") format("woff2"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-DemiBoldItalic.woff") format("woff");
          }

/* Bold */
@font-face {
  font-family: Avenir Next;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Bold.ttf") format("truetype"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Bold.woff2") format("woff2"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Bold.woff") format("woff");
          }

@font-face {
  font-family: Avenir Next;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-BoldItalic.ttf") format("truetype"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-BoldItalic.woff2") format("woff2"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-BoldItalic.woff") format("woff");
          }

/* Heavy */
@font-face {
  font-family: Avenir Next;
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Heavy.ttf") format("truetype"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Heavy.woff2") format("woff2"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-Heavy.woff") format("woff");
          }

@font-face {
  font-family: Avenir Next;
  font-weight: 800;
  font-style: italic;
  font-display: swap;
  src:
    url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-HeavyItalic.ttf") format("truetype"),
      url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-HeavyItalic.woff2") format("woff2"),
        url("https://512003.fs1.hubspotusercontent-na1.net/hubfs/512003/raw_assets/public/growth_tech_2026/fonts/AvenirNext/AvenirNext-HeavyItalic.woff") format("woff");
          }


/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */
body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */
html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

th{
  text-align:left; 
}
/* Paragraphs */

p {
  margin: 0 0 22px;
}

p:last-child{
  margin-bottom: 0;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration:none;
  transition:all 0.3s ease-in-out;
}
/* Headings */

h1,
.h1,
h2,
h3,
h4,
h5,
h6,
.h2,
.h3,
.h4,
.h5,
.h6{
  margin: 0 0 40px;
}
.eyebrow_text {
  margin-bottom: 12px;
  line-height: 1.04166667;
  font-weight: 500;
  font-family: var(--global_secondary_font_family);
  font-size: calc(var(--h5_font_size) * 0.923076923);
  color: var(--secondary_color);
}
.title:last-child > * {
  margin-bottom: 0;
}
@media(max-width:767px){
  .eyebrow_text {
    line-height: 1.05;
    font-size: calc(var(--h5_font_size) * 0.875);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6{
    margin: 0 0 20px;
  }
}
/* Lists */

ul,
ol {
  margin: 0 0 22px;
  padding-left: 32px;
}


.body-container-wrapper li:not(:last-child) {
  margin-bottom: 12px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;

}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Styled arrow bullets for content lists */
.body-container-wrapper ul:not(.no-list),
.blog-post ul:not(.no-list) {
  list-style: none;
  padding-left: 0;
}

.body-container-wrapper ul:not(.no-list) > li,
.blog-post ul:not(.no-list) > li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.body-container-wrapper ul:not(.no-list) > li::before,
.blog-post ul:not(.no-list) > li::before {
  content: '→';
  color: var(--secondary_color);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
  line-height: inherit;
}

/* Nested list uses a smaller secondary arrow */
.body-container-wrapper ul:not(.no-list) ul > li::before,
.blog-post ul:not(.no-list) ul > li::before {
  content: '›';
  opacity: 0.7;
}

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
blockquote {
  position: relative;
  font-style: italic;
  border-left-style: solid;
  border-left-width: 4px;
  padding-left: 15px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  font-size:var(--h5_font_size);
  margin-bottom:24px;
}

/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
  font-size: 0.583rem;
  word-break: normal;
}

svg{
  vertical-align: middle;
}
.hs-search-results__listing {
  margin-bottom: 24px !important;
}
.systems-page p,.systems-page p:last-child {
  margin-bottom: 16px;
}
.hs-search-results__pagination{
  flex-wrap: wrap;
}

img{
  vertical-align: middle;
  max-width:100%;
  height:auto;
} 

a.cta_button {
  box-sizing: border-box !important;
}

.full-web-site {
    font-size: var(--body_sub_font_size);
}

.full-web-site h1,
.full-web-site .h1,
.full-web-site h2,
.full-web-site h3,
.full-web-site h4,
.full-web-site h5,
.full-web-site h6,
.full-web-site .h2,
.full-web-site .h3, 
.full-web-site .h4, 
.full-web-site .h5,
.full-web-site .h6 {
    margin: 0 0 24px;
}
button,
.button,
.hs-button,
.primary_btn,
.primary-btn a,
.btn-custom a,
.secondary_btn,
.secondary-btn a,
.custom-btn a{
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease-in;
  white-space: normal;
  line-height:1.2;
  vertical-align: middle;
  letter-spacing: 0.04em;
  display: inline-block;
  text-decoration: none;
  position:relative;
  overflow:hidden;
  isolation: isolate; /* Important for stacking context */
}

/* Add ::before for gradient borders */
.hs-button:before,
.primary_btn:before,
.primary-btn a:before,
.btn-custom a:before,
.secondary_btn:before,
.secondary-btn a:before,
.custom-btn a:before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* This should match your border thickness */
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition: all 0.3s ease-in;
}
.hs-button:after,
.primary_btn:after,
.primary-btn a:after,
.btn-custom a:after,
.secondary_btn:after,
.secondary-btn a:after,
.custom-btn a:after{
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: left bottom;
  border-radius: 100%;
  transition: all 0.8s ease;
  z-index: 1;
  pointer-events: none;
  min-width: 641.409912109375px;
  min-height: 641.409912109375px;
  width:250%;
  height:250%;
  transform: translate(0) scale(0);
}

.hs-button > *,
.primary_btn > *,
.primary-btn a > *,
.btn-custom a > *,
.secondary_btn > *,
.secondary-btn a > *,
.custom-btn a > *{
  position: relative;
  z-index: 2; 
}

.hs-button:hover:after,
.primary_btn:hover:after,
.primary-btn a:hover:after,
.btn-custom a:hover:after,
.secondary_btn:hover:after,
.secondary-btn a:hover:after,
.custom-btn a:hover:after,

.hs-button:active:after,
.primary_btn:active:after,
.primary-btn a:active:after,
.btn-custom a:active:after,
.secondary_btn:active:after,
.secondary-btn a:active:after,
.custom-btn a:active:after,

.hs-button:focus:after,
.primary_btn:focus:after,
.primary-btn a:focus:after,
.btn-custom a:focus:after,
.secondary_btn:focus:after,
.secondary-btn a:focus:after,
.custom-btn a:focus:after{
  transform: translate(-50%, 70%) scale(1);
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  border:none !important;
  background:none !important;
  background-color: #F1F1F1 !important;
  border: 1px solid #868C98 !important;
  color: #868C98 !important;
}

/* No button */
.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 24px;
}

/* Labels */

form label {
  display: inline-block;
  font-size: 0.875rem;
  margin-bottom: 6px;
  letter-spacing: 0.005em;
  line-height: 1.4;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

.form-title:has(+div .submitted-message) {
  display: none;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

form{
  margin-bottom: 20px;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 12px;
  line-height:1.5;
  padding: 19px 12px;
  width: 100%;
  font-weight:500;
  outline:0;
  box-shadow: 0px 0px 24px 0px #00000014;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

form select {
  color: #868C98;
  letter-spacing: normal;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.4583 8.41797L10.7838 12.0925C10.3498 12.5265 9.63974 12.5265 9.20578 12.0925L5.53125 8.41797' stroke='%23CDCED0' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
  letter-spacing: 0.05em;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin:0;
}

form label p {
  font-size: 0.875rem;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
  outline: none;
  accent-color: var(--secondary_color);
  margin-top: 4px;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

/* .legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
margin-left: 1rem !important;
} */

/* Validation */

.hs-form-required {
  color: red !important;
}

.hs-input.invalid.error {
  border-color: red !important;
}
.hs-error-msgs label{
  color: red !important;
}
.hs-error-msg {
  color: red !important;
  margin-top: 0.35rem;
}

fieldset .input {
  margin-right: 0 !important;
}

form input[type=email],
form input[type=number],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form select,
form textarea {
  width: 100% !important;
}
form textarea {
  min-height: 120px;
}

form .hs-submit {
  padding-top: 32px;
  text-align: center;
}
/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  margin-top:20px;
}
.submitted-message{
  font-weight:bold;
}

.form-title:empty {
  display:none;
}
/* Captcha */

.grecaptcha-badge {
  margin: auto auto auto 0;
}

.systems-page form input[type=checkbox]~label {
  display: inline;
}

form input[type=submit],
form .hs-button {
  margin-top: 0;
}


@media(max-width:400px){
  .grecaptcha-badge {
    overflow: auto;
    width: auto !important;
    max-width: 100%;
    height: auto !important;
    display: inline-block;
  }
  .grecaptcha-badge iframe {
    vertical-align: middle;
  }
}


/* Search button input field and suggestions */
.body-container-wrapper .hs-search-field__button {
  padding: 15px;
}

.body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
  margin-left: 6px;
  margin-bottom: 0;
}

.body-container-wrapper .hs-search-field__button svg {
  height: 15px;
  fill: #fff;
}

.body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
  padding: 10px;
}

.body-container-wrapper .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

form input[type=file] {
  border: 0 !important;
  background-color: transparent !important;
  margin-top: 10px !important;
}

.submitted-message {
  text-align: center;
}

form a.hs-button {
  margin-top: 32px;
}

form select.hs-input {
  color: #868C98;
}

.systems-page form .hs-submit.hs-membership-loader {
  padding-top: 15px;
}

.form-title{
  line-height:normal;
}

@media(min-width:601px){
  fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 0px !important;
  }
  form fieldset.form-columns-3 .hs-form-field,
  form fieldset.form-columns-2 .hs-form-field {
    padding-right: 24px;
  }

  form fieldset.form-columns-3 .hs-form-field:last-child,
  form fieldset.form-columns-2 .hs-form-field:last-child {
    padding-right: 0;
  }

  form fieldset.form-columns-3 .hs-form-field {
    width: 33.3333% !important;
  }

  from fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
  }
}
@media (max-width: 991px) {
  .body-container--landing-form fieldset.form-columns-2 .hs-form-field,
  .body-container--landing-form fieldset.form-columns-3 .hs-form-field{
    width: 100% !important;
    padding: 0 !important;
  }
}

@media (max-width: 767px) {
  .body-container--landing-form  .hs_cos_wrapper_type_rich_text img {
    display: block;
    float: none !important;
    margin: 20px 0 !important;
    width: auto !important;
  }
}
@media (max-width: 600px) {
  form fieldset.form-columns-3 .hs-form-field,
  form fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
  }
  form fieldset.form-columns-3 .hs-form-field,
  form fieldset.form-columns-2 .hs-form-field {
    padding-right: 0;
  }
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.hs-inline-edit #onetrust-consent-sdk {
  display: none;
}

/* Navigation skipper */
.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}
.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 10px;
  top: 10px;
  width: auto;
  outline: none;
}

/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}


.hs-image__grid__list{
  margin-bottom: 0;
}

.body-container-wrapper .hs-image__grid__list li:not(:last-child){
  margin-bottom: 0;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
ul.custom-check-list {
  list-style: none !important;
  padding-left: 0;
}

ul.custom-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

ul.custom-check-list li::before {
  content: '→' !important;
  color: var(--secondary_color);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.1em;
}


.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.contact-address img {
    width: 29px;
    height: 29px;
    min-width: 10px;
    max-width: 10px;
    flex: 0 0 10px;
}

.contact-address span {
    flex: 1;
    line-height: 1.4;
    word-break: break-word;
    color:#D3E9FA !important;
}

/* Tablet */
@media (max-width: 991px) {
    .contact-address {
        gap: 7px;
    }

    .contact-address span {
        line-height: 1.5;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .contact-address {
        gap: 6px;
    }

    .contact-address img {
    }

    .contact-address span {
        line-height: 1.5;
        font-size: inherit;
    }
}

@media (min-width: 992px) {
  li.menu_item.sec_menu-7 {
    /* Add your styles here */
    display:none;
    visibility:hidden;
  }
}


@media (max-width: 991px) {
  li.menu_item.sec_menu-7 {
    /* Add your styles here */
    box-shadow: rgba(60, 60, 60, 0.12) 0px 8px 11px 0px;
    font-family: "Clash Display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    text-transform: none;
    background: linear-gradient(146.95deg, rgb(91, 175, 175) -65.95%, rgb(27, 102, 107) 80.29%);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    border-radius: 8px;
    padding: 17px 60px;
    text-decoration: none;
    border:none;
    margin-top:40px !important;
    width: fit-content;
    

  }
  
  .header_section .mobile_header .mega_menu li.menu_item.sec_menu-7 .menu_txt{
    padding:0px !important;
    text-transform: none;
    font-size:16px;


}
  .header_section .mobile_header .mega_menu li.menu_item.sec_menu-7 .menu_txt a{
    color: rgb(255, 255, 255) !important;
  }

  .header_section .mobile_header .mega_menu li.menu_item.sec_menu-7:before{
    background: linear-gradient(180deg, #5bafaf, #1a656b 50%, #1a656b);
    padding: 2px;
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s ease-in;  
  
  }
}


.hs-button:after, .primary_btn:after, .primary-btn a:after, .btn-custom a:after, .secondary_btn:after, .secondary-btn a:after, .custom-btn a:after{
  
z-index:-2 !important;  
}



/* Spacing Working */
.top-content{
margin-bottom:40px !important;
}




.bottom_pane {
  margin-bottom:0px !important;
}

/* About Page */
.our_partner{
padding:60px 0px 50px !important;
}
.organization-overview{
padding-bottom:60px !important;

}

.our_partner .btn_sec{
margin-bottom:50px !important;
}

/* .content_with_top_icon{
    padding: 60px 0 !important;

}
.insights_wrapper{
    padding: 60px 0 !important;
}

.accordion_wrapper{
    padding: 60px 0px !important;
}
.two_col_content{
    padding: 60px 0px !important;
}


.partner_section{
    padding: 60px 0px !important;
}
 */
/* Footer Shadow */

.footerWrap {
    box-shadow: 0 -44px 54.7px 6px #0000001c !important;
}