/*
 Theme Name:   Lisraya Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Alex Pogor
 Author URI:   https://alexpogor.com
 Template:     generatepress
 Version:      0.1
*/

/* ============================================================
   LOCAL FONTS
   Nunito Sans 600 & 800  — body text
   Agenda SemiBold (600)  — headings, loaded via Adobe Fonts (Typekit)
                            kit: agh8xcs  →  font-family: "agenda"
   ============================================================ */

/* Nunito Sans 600 — latin-ext */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('assets/fonts/nunito-sans/nunito-sans-600-latin-ext.woff2')
    format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Nunito Sans 600 — latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('assets/fonts/nunito-sans/nunito-sans-600.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

/* Nunito Sans 800 — latin-ext */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('assets/fonts/nunito-sans/nunito-sans-800-latin-ext.woff2')
    format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Nunito Sans 800 — latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('assets/fonts/nunito-sans/nunito-sans-800.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   FONT STACK TOKENS
   Override GeneratePress font custom properties so all GP
   components pick up these fonts automatically.
   ============================================================ */

:root {
  --gp-font--headings: 'agenda', sans-serif;
  --gp-font--body: 'Nunito Sans', sans-serif;

  /* ============================================================
     LISRAYA BRAND COLORS
     Mirrors theme.json palette — use these tokens in CSS.
     Block editor generates: var(--wp--preset--color--{slug})
     ============================================================ */

  /* Primary */
  --color-blue: #003d74;
  --color-sunshine: #faa31b;
  --color-gold: #ffc60a;

  /* Secondary */
  --color-medium-blue: #00529b;
  --color-deep-blue: #003d74;
  --color-dark-navy: #011e45;
  --color-coral: #f26a38;

  /* Tertiary */
  --color-light-blue: #e6f0f9;
  --color-light-sand: #fef1c8;

  /* Neutral */
  --color-white: #ffffff;
  --color-dark-gray: #464547;
  --color-black: #1e1e1e;

  /* Gradients */
  --gradient-brand-blue: linear-gradient(135deg, #00529b 0%, #003d74 100%);
  --gradient-sunshine: linear-gradient(135deg, #faa31b 0%, #ffc60a 100%);
  --gradient-liquid-glass-90: linear-gradient(
    135deg,
    rgba(230, 240, 249, 0.9) 0%,
    rgba(0, 82, 155, 0.9) 100%
  );
  --gradient-liquid-glass-20: linear-gradient(
    135deg,
    rgba(0, 61, 116, 0.2) 0%,
    rgba(1, 30, 69, 0.2) 100%
  );

  /* font size override */
  --wp--preset--font-size--small: 14px;
  --wp--preset--font-size--medium: 16px;
  --wp--preset--font-size--large: 20px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
body,
.ff-body {
  font-family: var(--gp-font--body);
  color: var(--color-dark-gray);
}

h1,
.fs-h1,
h2,
.fs-h2,
h3,
.fs-h3,
h4,
.fs-h4,
h5,
.fs-h5,
h6,
.fs-h6,
.ff-heading {
  font-family: var(--gp-font--headings);
  color: var(--color-deep-blue);
}

/* ============================================================
   FLUID TYPOGRAPHY SCALE
   Mobile baseline → Desktop target (390px → 1280px viewport)
   Formula: clamp(mobile, mobile + (desktop - mobile) * (100vw - 390px) / 890px, desktop)
   Simplified to: clamp(min, preferred-vw-expression, max)

   H1  32px  → 72px   line-height: 95%  (desktop) / 110% (mobile)
   H2  28px  → 40px   line-height: 110%
   H3  24px  → 28px   line-height: 110% (desktop) / 120% (mobile)
   H4  20px  → 24px   line-height: 120%
   Body Large   16px → 18px  line-height: 140%
   Body Medium  14px → 16px  line-height: 150%
   Body Small   13px → 14px  line-height: 140%
   ============================================================ */

h1,
.fs-h1 {
  font-family: 'agenda', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(2rem, 0.9551rem + 4.4944vw, 4.5rem);
  /* 32px → 72px */
  line-height: 1.05;
}

h2,
.fs-h2 {
  font-family: 'agenda', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.75rem, 1.1517rem + 2.5843vw, 2.5rem);
  /* 28px → 40px */
  line-height: 1.1;
}

h2.gspb_heading,
h3.gspb_heading,
h4.gspb_heading,
h5.gspb_heading,
h6.gspb_heading {
  margin-bottom: 6px;
}

h2.gspb_heading a,
h3.gspb_heading a,
h4.gspb_heading a,
h5.gspb_heading a,
h6.gspb_heading a{
  text-decoration: underline;
}

@media (max-width: 768px) {
  h2,
  .fs-h2 {
    font-size: 28px;
  }
}

h3,
.fs-h3 {
  font-family: 'agenda', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.5rem, 1.2809rem + 0.8989vw, 1.75rem);
  /* 24px → 28px */
  line-height: 1.1;
}

h4,
.fs-h4 {
  font-family: 'agenda', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.25rem, 1.0309rem + 0.8989vw, 1.5rem);
  /* 20px → 24px */
  line-height: 1.2;
}

h5,
.fs-h5 {
  font-family: 'agenda', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.0625rem, 0.953rem + 0.4494vw, 1.25rem);
  /* 17px → 20px */
  line-height: 1.2;
}

h6,
.fs-h6 {
  font-family: 'agenda', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(0.9375rem, 0.828rem + 0.4494vw, 1.125rem);
  /* 15px → 18px */
  line-height: 1.3;
}

/* Body Large — default body text */
p.fs-body-hero,
.gspb_text.fs-body-hero,
.fs-body-hero {
  font-size: 28px;
  line-height: 110%;
}
p,
.fs-body-large,
.fs-p,
.gspb_text {
  font-size: clamp(1rem, 0.9452rem + 0.2247vw, 1.125rem);
  /* 16px → 18px */
  line-height: 1.4;
}
p.fs-body-xl,
.fs-body-xl {
  font-size: 24px;
}
/* Body Medium */
.fs-body-medium {
  font-size: clamp(0.875rem, 0.8202rem + 0.2247vw, 1rem);
  /* 14px → 16px */
  line-height: 1.5;
}

/* Body Small */
.fs-body-small {
  font-size: clamp(0.8125rem, 0.7852rem + 0.1124vw, 0.875rem);
  /* 13px → 14px */
  line-height: 1.4;
}

.fs-label {
  font-size: 12px;
  font-weight: 400;
}

.tooltip {
  border-bottom: 2px dashed var(--color-medium-blue);
  font-family: 'Nunito Sans';
  font-size: inherit;
  position: relative;
  transition: 0.2s;
}
.tooltip:hover {
  color: var(--color-blue);
  border-color: var(--color-coral);
}
.tooltip:hover .tooltip-details {
  opacity: 1;
  visibility: visible;
}
.tooltip-details {
  position: absolute;
  z-index: 999;
  left: 0;
  margin-top: 5px;
  top: 100%;
  background: var(--color-light-sand);
  border-radius: 8px;
  padding: 12px 14px;
  width: 200px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.tooltip-details .title,
.tooltip-details .txt {
  display: block;
}

.tooltip-details .title {
  font-weight: 800;
  font-size: 16px;
  line-height: 150%;
}
.tooltip-details .txt {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
}

@media (max-width: 768px) {
  p,
  .fs-body-large,
  .fs-p,
  .gspb_text,
  .gspb_text ul li,
  .gspb_container ul li {
    font-size: 16px;
    line-height: 150%;
  }

  p.fs-body-xl,
  .fs-body-xl {
    font-size: 20px;
  }
  .fs-body-hero {
    font-size: 24px;
  }

  .fs-body-small {
    font-size: 14px;
  }

  h3,
  .fs-h3,
  h3.gspb_heading {
    font-size: 24px;
  }

  h6,
  .fs-h6 {
    font-size: 16px;
  }

  .font-mobile-18,
  .custom-icons-list.font-mobile-18 .gspb_iconsList__item__text {
    font-size: 18px;
  }

  .font-mobile-14 {
    font-size: 14px;
  }
}

.wp-block-paragraph a,
.gspb_text a {
  text-decoration: underline;
}

/* ============================================================
   CUSTOM ELEMENTS STYLES
   ============================================================ */
/* content / sections */
html,
body {
  overflow-x: hidden;
}

.site-content .inside-article {
  padding-top: 0;
  padding-bottom: 0;
}

.site-content .site-main {
  margin-top: 0;
  margin-bottom: 0;
}

/* div[id^=gspb_col-id] {
  padding: var(--gs-row-column-padding, 20px min(3vw, 20px)) !important;
} */
.no-sidebar .entry-content .alignfull {
  /* padding-left: 5px;
  padding-right: 5px; */
}

/* heading */
.h1-hero {
  font-weight: 700;
  font-size: 110px;
  line-height: 80%;
}

/* @media (max-width: 768px) { */

@media (max-width: 1439px) {
  .h1-hero {
    font-size: 80px;
  }
  .hero-text-wrapper {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.4) 100%
    ) !important;
    backdrop-filter: blur(8px);
  }
  .hero-text-wrapper-dark {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0) 100%
    ) !important;
    backdrop-filter: blur(8px);
  }
  .hero-text-wrapper,
  .hero-text-wrapper-dark {
    position: absolute !important;
    top: 0;
    right: 0;
    width: calc(100% - 90px);
    height: 600px;
    transform: translateX(0) translateY(0);
    padding: 40px;
    border-top-left-radius: 40px;
  }

  .hero-text-wrapper-dark *,
  .hero-text-wrapper-dark .gspb_heading,
  .hero-text-wrapper *,
  .hero-text-wrapper .gspb_heading,
  #gspb_heading-id-gsbp-581dd67,
  #gspb_heading-id-gsbp-581dd67 .gsap-g-line {
    text-align: left !important;
    max-width: 100% !important;
  }

  .hero-text-section > .gspb_row__col--12 {
    padding-top: 40px !important;
  }

  .hero-text-section #gspb_col-id-gsbp-578e813.gspb_row__col--4,
  .hero-text-section
    > .gspb_row
    > .gspb_row__content
    > .wp-block-greenshift-blocks-row-column.gspb_row__col--4 {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .hero-text-wrapper,
  .hero-text-wrapper-dark {
    padding: 20px;
  }
  .hero-text-section > .gspb_row__col--12 {
    padding-top: 20px !important;
  }
}

@media (min-width: 2000px) {
  .hero-main-section,
  .hero-text-section {
    min-height: 80vh !important;
  }
  .hero-content-section {
    min-height: 90vh !important;
  }
}
@media (min-width: 3000px) {
  .hero-main-section,
  .hero-text-section {
    min-height: 90vh !important;
  }
  .hero-content-section {
    min-height: 100vh !important;
  }
}

/* buttons */
button {
  text-transform: capitalize;
  transition: 0.2s;
}

.gs_button_w_icon {
  border-radius: 30px;
  padding: 10px 48px 11px 24px;
  height: 45px;
  font-family: 'Agenda';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--color-white);
  background-color: var(--color-medium-blue);
  text-transform: capitalize;
  transition: 0.2s;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.gs_button_w_icon:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
}

.gs_button_w_icon:after {
  transition: 0.4s;
  content: '';
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-repeat: repeat-x;
  background-position: center;
  background-size: 18px 14px;

  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1_22068)'%3E%3Cpath d='M13.75 7.0625L8.25 12.3125C7.9375 12.5938 7.46875 12.5938 7.1875 12.2812C6.90625 11.9688 6.90625 11.5 7.21875 11.2188L11.375 7.25H0.75C0.3125 7.25 0 6.9375 0 6.5C0 6.09375 0.3125 5.75 0.75 5.75H11.375L7.21875 1.8125C6.90625 1.53125 6.90625 1.03125 7.1875 0.75C7.46875 0.4375 7.96875 0.4375 8.25 0.71875L13.75 5.96875C13.9062 6.125 14 6.3125 14 6.5C14 6.71875 13.9062 6.90625 13.75 7.0625Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_22068'%3E%3Crect width='14' height='13' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");

  /* animation: moveBackground 20s linear infinite; */
}
@media (max-width: 768px){
  .gs_button_w_icon{
    padding: 10px 44px 11px 20px;
    height: 40px;
  }
  .gs_button_w_icon:after{
    right: 20px;
  }
}
.gs_button_w_icon:hover:after {
  background-position: 18px center;
}

.gs_button_w_icon span {
}

.gs_button_w_icon svg {
  transform: none;
  width: 15px;
  height: 15px;
  display: none;
}

.gs_button_w_icon svg:hover {
  margin-left: 15px;
}

.gs_button_w_icon .gl-button-overlay {
  background-color: var(--color-deep-blue);
  display: none !important;
}

.gs_button_w_icon.hero-button {
  background-color: var(--color-gold);
  color: var(--color-deep-blue);
  /* padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 4px; */
  padding: 16px 58px 16px 24px;
}

.gs_button_w_icon.hero-button .gl-button-overlay {
  background-color: var(--color-sunshine);
}
/* 
.gs_button_w_icon.hero-button svg {
  transform: rotate(90deg);
  background: var(--color-deep-blue);
  color: var(--color-white);
  padding: 6px;
  width: 40px;
  height: 40px;
  border: 7px solid var(--color-light-sand);
  border-radius: 50%;
} */
.gs_button_w_icon.hero-button:after {
  transform: rotate(90deg) translate(-50%, -50%);
  border: 7px solid var(--color-light-sand);
  border-radius: 50%;
  background-color: var(--color-blue);
  width: 42px;
  height: 42px;
  background-size: 42px 12px;
}
.gs_button_w_icon.hero-button:hover:after {
  background-position: 35px center;
}

.gs_button_w_icon.hero-button:hover {
  background-color: var(--color-sunshine);
}

.gs_button_w_icon.yellow-button {
  background-color: var(--color-gold);
  color: var(--color-deep-blue);
}

.gs_button_w_icon.yellow-button .gl-button-overlay {
  background-color: var(--color-sunshine);
}

/* outline button */
.gs_button_w_icon.outline-button {
  background-color: transparent;
  color: var(--color-medium-blue);
  border: 2px solid var(--color-medium-blue);
}

.gs_button_w_icon.outline-button .gl-button-overlay {
  background-color: var(--color-white);
}
.gs_button_w_icon.outline-button:after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1_22068)'%3E%3Cpath d='M13.75 7.0625L8.25 12.3125C7.9375 12.5938 7.46875 12.5938 7.1875 12.2812C6.90625 11.9688 6.90625 11.5 7.21875 11.2188L11.375 7.25H0.75C0.3125 7.25 0 6.9375 0 6.5C0 6.09375 0.3125 5.75 0.75 5.75H11.375L7.21875 1.8125C6.90625 1.53125 6.90625 1.03125 7.1875 0.75C7.46875 0.4375 7.96875 0.4375 8.25 0.71875L13.75 5.96875C13.9062 6.125 14 6.3125 14 6.5C14 6.71875 13.9062 6.90625 13.75 7.0625Z' fill='%23003d74'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_22068'%3E%3Crect width='14' height='13' fill='%23003d74'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.gs_button_w_icon.outline-button:hover {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
}

.gs_button_w_icon.outline-button:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1_22068)'%3E%3Cpath d='M13.75 7.0625L8.25 12.3125C7.9375 12.5938 7.46875 12.5938 7.1875 12.2812C6.90625 11.9688 6.90625 11.5 7.21875 11.2188L11.375 7.25H0.75C0.3125 7.25 0 6.9375 0 6.5C0 6.09375 0.3125 5.75 0.75 5.75H11.375L7.21875 1.8125C6.90625 1.53125 6.90625 1.03125 7.1875 0.75C7.46875 0.4375 7.96875 0.4375 8.25 0.71875L13.75 5.96875C13.9062 6.125 14 6.3125 14 6.5C14 6.71875 13.9062 6.90625 13.75 7.0625Z' fill='%23FFFFFF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_22068'%3E%3Crect width='14' height='13' fill='%23003d74'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

/* link button */
.gs_button_w_icon.link-button {
  background-color: transparent;
  padding: 0 50px 0 0;
  color: var(--color-blue);
  border-radius: 0;
}
.gs_button_w_icon.link-button:after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1_22068)'%3E%3Cpath d='M13.75 7.0625L8.25 12.3125C7.9375 12.5938 7.46875 12.5938 7.1875 12.2812C6.90625 11.9688 6.90625 11.5 7.21875 11.2188L11.375 7.25H0.75C0.3125 7.25 0 6.9375 0 6.5C0 6.09375 0.3125 5.75 0.75 5.75H11.375L7.21875 1.8125C6.90625 1.53125 6.90625 1.03125 7.1875 0.75C7.46875 0.4375 7.96875 0.4375 8.25 0.71875L13.75 5.96875C13.9062 6.125 14 6.3125 14 6.5C14 6.71875 13.9062 6.90625 13.75 7.0625Z' fill='%23003d74'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_22068'%3E%3Crect width='14' height='13' fill='%23003d74'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  content: none;
}
.gs_button_w_icon.link-button > span {
  position: relative;
}
.gs_button_w_icon.link-button > span:after {
  transition: 0.4s;
  content: '';
  display: block;
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-repeat: repeat-x;
  background-position: center;
  background-size: 18px 14px;

  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1_22068)'%3E%3Cpath d='M13.75 7.0625L8.25 12.3125C7.9375 12.5938 7.46875 12.5938 7.1875 12.2812C6.90625 11.9688 6.90625 11.5 7.21875 11.2188L11.375 7.25H0.75C0.3125 7.25 0 6.9375 0 6.5C0 6.09375 0.3125 5.75 0.75 5.75H11.375L7.21875 1.8125C6.90625 1.53125 6.90625 1.03125 7.1875 0.75C7.46875 0.4375 7.96875 0.4375 8.25 0.71875L13.75 5.96875C13.9062 6.125 14 6.3125 14 6.5C14 6.71875 13.9062 6.90625 13.75 7.0625Z' fill='%23003d74'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_22068'%3E%3Crect width='14' height='13' fill='%23003d74'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.gs_button_w_icon.link-button:hover > span:after {
  background-position: 18px center;
}

.gs_button_w_icon.link-button-orange > span:after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1_22068)'%3E%3Cpath d='M13.75 7.0625L8.25 12.3125C7.9375 12.5938 7.46875 12.5938 7.1875 12.2812C6.90625 11.9688 6.90625 11.5 7.21875 11.2188L11.375 7.25H0.75C0.3125 7.25 0 6.9375 0 6.5C0 6.09375 0.3125 5.75 0.75 5.75H11.375L7.21875 1.8125C6.90625 1.53125 6.90625 1.03125 7.1875 0.75C7.46875 0.4375 7.96875 0.4375 8.25 0.71875L13.75 5.96875C13.9062 6.125 14 6.3125 14 6.5C14 6.71875 13.9062 6.90625 13.75 7.0625Z' fill='%23FFC60A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_22068'%3E%3Crect width='14' height='13' fill='%23003d74'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.gs_button_w_icon.external-button:after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.3125 0.65625C8.3125 0.300781 8.58594 0 8.96875 0H13.3164C13.6992 0 13.9727 0.300781 13.9727 0.65625V5.03125C13.9727 5.41406 13.6992 5.6875 13.3164 5.6875C12.9609 5.6875 12.6602 5.41406 12.6602 5.03125V2.24219L6.5625 8.33984C6.31641 8.61328 5.90625 8.61328 5.66016 8.33984C5.38672 8.09375 5.38672 7.68359 5.66016 7.41016L11.7578 1.3125H8.96875C8.58594 1.3125 8.3125 1.03906 8.3125 0.65625ZM1.96875 0.875H5.46875C5.82422 0.875 6.125 1.17578 6.125 1.53125C6.125 1.91406 5.82422 2.1875 5.46875 2.1875H1.96875C1.58594 2.1875 1.3125 2.48828 1.3125 2.84375V12.0312C1.3125 12.4141 1.58594 12.6875 1.96875 12.6875H11.1562C11.5117 12.6875 11.8125 12.4141 11.8125 12.0312V8.53125C11.8125 8.17578 12.0859 7.875 12.4688 7.875C12.8242 7.875 13.125 8.17578 13.125 8.53125V12.0312C13.125 13.125 12.2227 14 11.1562 14H1.96875C0.875 14 0 13.125 0 12.0312V2.84375C0 1.77734 0.875 0.875 1.96875 0.875Z' fill='white'/%3E%3C/svg%3E%0A");
}

/* .gs_button_w_icon.link-button:hover svg{
  transform: translateX(0px);
} */

.gs_button_w_icon.link-button .gl-button-overlay {
  background-color: transparent;
}

.gs_button_w_icon.link-button > span {
}

.gs_button_w_icon.link-button-orange {
}

.gs_button_w_icon.no-arrow:after {
  display: none;
}

/* button download */
.fs-button-download {
  width: 100%;
  border-radius: 20px 4px;
  display: inline-block;
  white-space: normal;
  height: auto;
  padding: 18px 48px 18px 20px;
}

.fs-button-download > span {
  justify-content: space-between;
}

.fs-button-download.button-white {
  background-color: var(--color-white) !important;
}

.fs-button-download.button-white .gl-button-overlay {
  background-color: var(--color-light-sand) !important;
}
.fs-button-download::after {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='28' height='28' rx='14' fill='%23E6F0F9'/%3E%3Cpath d='M14.6016 16.1289L14 16.7578L13.3711 16.1289L9.87109 12.6289L9.24219 12L10.5 10.7695L11.1016 11.3984L13.125 13.3945V7.625V6.75H14.875V7.625V13.3945L16.8711 11.3984L17.5 10.7695L18.7305 12L18.1016 12.6289L14.6016 16.1289ZM9.625 16.375V19H18.375V16.375V15.5H20.125V16.375V19.875V20.75H19.25H8.75H7.875V19.875V16.375V15.5H9.625V16.375Z' fill='%2300539B'/%3E%3C/svg%3E%0A");
  width: 28px;
  height: 28px;
  background-size: 28px 38px;
  background-repeat: repeat-y;
  background-position: center 34px;
  right: 20px;
}
.fs-button-download:hover::after {
  background-position: center 71px;
}
/* fs-button-orange */

.fs-button-orange {
  background-color: var(--color-gold) !important;
  color: var(--color-deep-blue) !important;
}

.fs-button-orange:hover {
  background-color: var(--color-sunshine) !important;
}

.fs-button-icon-float-left {
  padding: 0 20px 0 0;
  border-radius: 0 26px 26px 0;
  overflow: visible;
  margin-left: 20px;
  height: auto;
}

.fs-button-icon-float-left img {
  transform: translateX(-50%);
  height: 56px;
}

.fs-button-icon-float-left .gl-button-overlay {
  display: none;
}

.btn-down {
  transform: translateX(-50%);
}
.btn-down a {
  border: 8px solid rgba(53, 140, 203, 0.4);
  border-radius: 50%;
  transition: 0.2s;
  position: relative;
}
.btn-down .gspb_iconBox__wrapper {
  background-color: #00539b !important;
  position: relative;
  overflow: hidden;
}
.btn-down svg {
  /* opacity: 0; */
  transition: 0.2s;
}
#gspb_iconBox-id-gsbp-0c42f75 svg,
#gspb_iconBox-id-gsbp-0c42f75 svg path,
.btn-down svg path {
  fill: var(--color-white) !important;
}

.btn-down .gspb_iconBox__wrapper:after {
  transition: 0.2s;
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-repeat: repeat-x;
  background-position: center;
  background-size: 12px;
  background-image: url("data:image/svg+xml,%3Csvg class='' style='display:inline-block;vertical-align:middle' width='72' height='72' viewBox='0 0 896 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill:%23FFFFFF' d='M883.8 500.2l-39.6-39.6c-9.4-9.4-24.6-9.4-34 0l-310.2 310.2v-682.8c0-13.2-10.8-24-24-24h-56c-13.2 0-24 10.8-24 24v682.8l-310.2-310.2c-9.4-9.4-24.6-9.4-34 0l-39.6 39.6c-9.4 9.4-9.4 24.6 0 34l418.8 418.8c9.4 9.4 24.6 9.4 34 0l418.8-418.8c9.4-9.4 9.4-24.6 0-34z'%3E%3C/path%3E%3C/svg%3E");

  margin-top: -22px;
}

.btn-down:hover a {
  border-color: rgba(0, 61, 116, 0.4);
}

.btn-down:hover .gspb_iconBox__wrapper {
  background-color: var(--color-blue) !important;
}

.btn-down:hover .gspb_iconBox__wrapper:after {
  margin-top: 0px;
  background-image: url("data:image/svg+xml,%3Csvg class='' style='display:inline-block;vertical-align:middle' width='72' height='72' viewBox='0 0 896 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill:%2300529B' d='M883.8 500.2l-39.6-39.6c-9.4-9.4-24.6-9.4-34 0l-310.2 310.2v-682.8c0-13.2-10.8-24-24-24h-56c-13.2 0-24 10.8-24 24v682.8l-310.2-310.2c-9.4-9.4-24.6-9.4-34 0l-39.6 39.6c-9.4 9.4-9.4 24.6 0 34l418.8 418.8c9.4 9.4 24.6 9.4 34 0l418.8-418.8c9.4-9.4 9.4-24.6 0-34z'%3E%3C/path%3E%3C/svg%3E");
}

.btn-down:hover svg {
  transform: translateY(22px);
}

.btn-down.btn-orange a {
  border-color: #ffc60a66;
}
.btn-down.btn-orange .gspb_iconBox__wrapper {
}

.btn-down.btn-orange:hover a {
  border-color: rgba(242, 106, 56, 0.4);
}

.btn-down.btn-orange:hover .gspb_iconBox__wrapper {
  background-color: var(--color-coral) !important;
}
.btn-down.btn-orange:hover svg path {
  fill: var(--color-coral) !important;
}
.btn-down.btn-orange:hover .gspb_iconBox__wrapper:after {
  background-image: url("data:image/svg+xml,%3Csvg class='' style='display:inline-block;vertical-align:middle' width='72' height='72' viewBox='0 0 896 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill:%23FFFFFF' d='M883.8 500.2l-39.6-39.6c-9.4-9.4-24.6-9.4-34 0l-310.2 310.2v-682.8c0-13.2-10.8-24-24-24h-56c-13.2 0-24 10.8-24 24v682.8l-310.2-310.2c-9.4-9.4-24.6-9.4-34 0l-39.6 39.6c-9.4 9.4-9.4 24.6 0 34l418.8 418.8c9.4 9.4 24.6 9.4 34 0l418.8-418.8c9.4-9.4 9.4-24.6 0-34z'%3E%3C/path%3E%3C/svg%3E");
}

.btn-down.btn-yellow a {
  border-color: #ffc60a66 !important;
}
.btn-down.btn-yellow .gspb_iconBox__wrapper {
  background-color: var(--color-gold) !important;
}
.btn-down.btn-yellow .gspb_iconBox__wrapper:after{
  background-image: url("data:image/svg+xml,%3Csvg class='' style='display:inline-block;vertical-align:middle' width='72' height='72' viewBox='0 0 896 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill:%23003D74' d='M883.8 500.2l-39.6-39.6c-9.4-9.4-24.6-9.4-34 0l-310.2 310.2v-682.8c0-13.2-10.8-24-24-24h-56c-13.2 0-24 10.8-24 24v682.8l-310.2-310.2c-9.4-9.4-24.6-9.4-34 0l-39.6 39.6c-9.4 9.4-9.4 24.6 0 34l418.8 418.8c9.4 9.4 24.6 9.4 34 0l418.8-418.8c9.4-9.4 9.4-24.6 0-34z'%3E%3C/path%3E%3C/svg%3E");
}
#gspb_iconBox-id-gsbp-0c42f75.btn-down.btn-yellow .gspb_iconBox__wrapper svg path,
.btn-down.btn-yellow .gspb_iconBox__wrapper svg path{
  fill: var(--color-blue) !important;
}
.btn-down.btn-yellow:hover a {
  border-color: rgba(242, 106, 56, 0.4) !important;
}

.btn-down.btn-yellow:hover .gspb_iconBox__wrapper {
  background-color: var(--color-coral) !important;
}
.btn-down.btn-yellow:hover svg path {
  fill: var(--color-coral) !important;
}
.btn-down.btn-yellow:hover .gspb_iconBox__wrapper:after {
  background-image: url("data:image/svg+xml,%3Csvg class='' style='display:inline-block;vertical-align:middle' width='72' height='72' viewBox='0 0 896 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill:%23FFFFFF' d='M883.8 500.2l-39.6-39.6c-9.4-9.4-24.6-9.4-34 0l-310.2 310.2v-682.8c0-13.2-10.8-24-24-24h-56c-13.2 0-24 10.8-24 24v682.8l-310.2-310.2c-9.4-9.4-24.6-9.4-34 0l-39.6 39.6c-9.4 9.4-9.4 24.6 0 34l418.8 418.8c9.4 9.4 24.6 9.4 34 0l418.8-418.8c9.4-9.4 9.4-24.6 0-34z'%3E%3C/path%3E%3C/svg%3E");
}

/* icon */
.icon-shadow {
  filter: drop-shadow(0px 0px 40px rgba(0, 82, 155, 0.2));
}

.fs-border-radius,
.fs-border-radius.wp-block-greenshift-blocks-image img,
.fs-border-radius.gspb_image img {
  border-radius: 40px 8px 40px 8px !important;
}

.fs-border-radius-small,
.fs-border-radius-small.wp-block-greenshift-blocks-image img,
.fs-border-radius-small.gspb_image img {
  border-radius: 20px 4px 20px 4px !important;
}

.gspb_iconBox.fs-border-radius-small .gspb_iconBox__wrapper {
  border-radius: 20px 4px 20px 4px !important;
}

@media (max-width: 768px) {
  .no-border-radius-mobile {
    border-radius: 0px !important;
  }
}

/* custom icon list */
.custom-icon-list2 {
  position: relative;
  z-index: 2;
}

.custom-icon-list2:after {
  content: '';
  display: block;
  /* border: 2px dashed #FFFFFF; */
  position: absolute;
  top: 0;
  height: calc(100% - 80px);
  transform: translate(-50%, 0%);
  left: 40px;
  z-index: -1;

  width: 2px;

  background-image: linear-gradient(to bottom, #ffffff 8px, transparent 8px);
  background-position: right;
  background-size: 2px 16px;
  background-repeat: repeat-y;
}

.custom-icon-list-pal .gspb_iconsList__item__text strong {
  font-family: 'Agenda';
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 4px;
}
.custom-icon-list-pal .gspb_iconsList__item__text mark {
  display: block;
  font-weight: 600;
}
.custom-icon-list-pal .gspb_iconsList__item__text mark,
.custom-icon-list-pal .gspb_iconsList__item__text mark strong {
  margin-top: 4px;
  font-family: 'Nunito Sans';
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
}
.custom-icon-list-pal .gspb_iconsList__item__text mark strong {
  font-weight: bold;
}

@media (max-width: 990px) {
  .custom-icon-list2:after {
    left: 30px;
  }
  .custom-icon-list-pal .gspb_iconsList__item__text strong {
    font-size: 20px;
    line-height: 120%;
  }
  .custom-icon-list-pal .gspb_iconsList__item__text mark,
  .custom-icon-list-pal .gspb_iconsList__item__text mark strong {
    font-size: 16px;
    line-height: 150%;
  }
}
.icon-list-contact .gspb_iconsList__iconbox{
  padding: 7px !important;
}
.icon-list-contact .gspb_iconsList__iconbox img,
.icon-list-contact .gspb_iconsList__iconbox svg{
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
}
.icon-list-contact .gspb_iconsList__item__text{
  margin-left: 10px !important;
}

#gspb_iconsList-id-gsbp-1c277ee.gspb_iconsList.icon-list-contact-large .gspb_iconsList__iconbox,
.icon-list-contact-large .gspb_iconsList__iconbox{
  padding: 10px !important;
}
#gspb_iconsList-id-gsbp-1c277ee.gspb_iconsList.icon-list-contact-large .gspb_iconsList__iconbox img,
#gspb_iconsList-id-gsbp-1c277ee.gspb_iconsList.icon-list-contact-large .gspb_iconsList__iconbox svg,
.icon-list-contact-large .gspb_iconsList__iconbox img,
.icon-list-contact-large .gspb_iconsList__iconbox svg{
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
}

.icon-list-contact-large .gspb_iconsList__item__text a,
.icon-list-contact .gspb_iconsList__item__text a{
  color: var(--color-blue);
}

@media (max-width: 768px) {
  #gspb_iconsList-id-gsbp-1c277ee.gspb_iconsList.icon-list-contact-large .gspb_iconsList__iconbox,
  .icon-list-contact-large .gspb_iconsList__iconbox{
    padding: 7px !important;
  }
  #gspb_iconsList-id-gsbp-1c277ee.gspb_iconsList.icon-list-contact-large .gspb_iconsList__iconbox img,
  #gspb_iconsList-id-gsbp-1c277ee.gspb_iconsList.icon-list-contact-large .gspb_iconsList__iconbox svg,
  .icon-list-contact-large .gspb_iconsList__iconbox img,
  .icon-list-contact-large .gspb_iconsList__iconbox svg{
    width: 14px !important;
    height: 14px !important;
    min-width: 14px;
  }

}

/* image-caption */
.image-caption {
  border-top: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.3);
  /* Semi-transparent white */
  /* backdrop-filter: blur(10px); */
  background-blend-mode: soft-light;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 40px rgba(0, 82, 155, 0.2);
  backdrop-filter: blur(3.5px);
  padding: 6px 14px;
}

.image-caption.caption-small {
  /* padding: 8px 14px; */
}

.image-caption p {
  color: var(--color-white);
  font-size: 14px;
}

.image-caption.position-bottom-left,
.image-caption.position-top-left {
  border-right: 2px solid var(--color-white);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  left: 0;
}

.image-caption.position-bottom-right,
.image-caption.position-top-right {
  border-left: 2px solid var(--color-white);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  right: 0;
}

.image-caption.position-bottom-right,
.image-caption.position-bottom-left {
  bottom: 30px;
}

.image-caption.position-top-right,
.image-caption.position-top-left {
  top: 30px;
}

/* colors */
.color-blue,
.color-blue p {
  color: var(--color-blue);
}

.color-dark-blue,
.color-dark-blue p {
  color: var(--color-dark-navy);
}

.color-white,
.color-white p {
  color: var(--color-white);
}

.color-grey,
.color-grey p {
  color: var(--color-dark-gray);
}

/* custom block styles */

.custom-icons-list {
  font-family: 'Agenda';
}
@media (max-width: 768px){
  .custom-icons-list ul li{
    padding: 12px !important;
    border-radius: 10px !important;
  }
  .custom-icons-list ul li .gspb_iconsList__iconbox{
    padding: 10px !important;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
  }
  #gspb_iconsList-id-gsbp-c3c2f4d.gspb_iconsList .gspb_iconsList__item img, #gspb_iconsList-id-gsbp-c3c2f4d.gspb_iconsList .gspb_iconsList__item svg,
  .custom-icons-list ul li .gspb_iconsList__iconbox img{
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
  }
}
.custom-icons-list.fs-font-body {
  font-family: 'Nunito Sans';
}

.custom-icons-list .gspb_iconsList__iconbox {
  filter: drop-shadow(0px 0px 20px rgba(0, 82, 155, 0.2));
  border-radius: 20px 4px 20px 4px !important;
}

.custom-icons-list.no-shadow .gspb_iconsList__iconbox{
  filter: unset;
}

.custom-icons-list .gspb_iconsList__item__text {
  width: 100%;
}

.custom-icons-list.list-yellow .gspb_iconsList__item .gspb_iconsList__iconbox {
  background-color: var(--color-light-sand) !important;
  filter: drop-shadow(0px 0px 20px rgba(0, 82, 155, 0.2)) !important;
}

.custom-icons-list.list-yellow .gspb_iconsList__item {
  background-color: var(--color-gold) !important;
}

@media (max-width: 768px) {
  .custom-icons-list .gspb_iconsList__iconbox {
    border-radius: 10px 2px 10px 2px !important;
  }
  .custom-icons-list .gspb_iconsList__item__text {
    font-size: 18px;
    line-height: 24px;
  }

  .custom-icons-list.icons-top-mobile .gspb_iconsList__item {
    padding: 14px !important;
    margin-left: 0 !important;
    margin-top: 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .custom-icons-list.icons-top-mobile .gspb_iconsList__iconbox {
    margin-left: 0 !important;
  }
  .custom-icons-list.icons-top-mobile .gspb_iconsList__item__text {
    margin-left: 0 !important;
  }

  .custom-icons-list.icons-normal-mobile .gspb_iconsList__item {
    margin-right: 0 !important;
    padding: 16px 12px !important;
  }
  #gspb_iconsList-id-gsbp-c3c2f4d.gspb_iconsList.icons-normal-mobile
    .gspb_iconsList__iconbox,
  .custom-icons-list.icons-normal-mobile .gspb_iconsList__iconbox {
    order: 1;
    margin: 0 !important;
    padding: 10px !important;
  }
  #gspb_iconsList-id-gsbp-c3c2f4d.gspb_iconsList.icons-normal-mobile
    .gspb_iconsList__item
    img,
  .custom-icons-list.icons-normal-mobile .gspb_iconsList__iconbox img {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
  }
  #gspb_iconsList-id-gsbp-c3c2f4d.gspb_iconsList.icons-normal-mobile
    .gspb_iconsList__item__text,
  .custom-icons-list.icons-normal-mobile .gspb_iconsList__item__text {
    order: 2;
    margin-right: 0 !important;
    margin-left: 14px !important;
  }
}

.custom-icons-list.custom-icons-list1 .gspb_iconsList__item:first-child {
  border-top-left-radius: 40px !important;
}

.custom-icons-list.custom-icons-list1 .gspb_iconsList__item:last-child {
  border-bottom-right-radius: 40px !important;
}

.custom-icons-list.custom-icons-list1.radius-small
  .gspb_iconsList__item:first-child {
  border-top-left-radius: 20px !important;
}

.custom-icons-list.custom-icons-list1.radius-small
  .gspb_iconsList__item:last-child {
  border-bottom-right-radius: 20px !important;
}

.custom-icons-list.items-center .gspb_iconsList__item {
  align-items: center !important;
}

.custom-icons-list.radius-all-items .gspb_iconsList__item {
  border-top-left-radius: 40px !important;
  border-bottom-right-radius: 40px !important;
}

@media (max-width: 768px) {
  .custom-icons-list.custom-icons-list1 .gspb_iconsList__item:first-child {
    border-top-left-radius: 20px !important;
  }

  .custom-icons-list.custom-icons-list1 .gspb_iconsList__item:last-child {
    border-bottom-right-radius: 20px !important;
  }

  .custom-icons-list.radius-all-items .gspb_iconsList__item {
    border-top-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
  }
}

.custom-icons-list.overlap-right ul li{
  margin-right: 20px !important;
}
.custom-icons-list.overlap-right ul li .gspb_iconsList__iconbox{
  margin-right: -40px !important;
}

@media (max-width: 768px) {
  .custom-icons-list.mobile-left-normal  ul li{
    margin-right: 0px !important;
  }
  .custom-icons-list.mobile-left-normal  ul li .gspb_iconsList__iconbox{
    margin-right: 0px !important;
    order: 1 !important;
  }
  .custom-icons-list.mobile-left-normal  ul li .gspb_iconsList__item__text{
    margin-left: 15px !important;
    margin-right: 0 !important;
    order: 2 !important;
  }
}

/* slider */
.testimonial-slider-text-only .swiper-button-next::after,
.testimonial-slider-text-only .swiper-button-prev::after,
.webinar-slider .swiper-button-next::after,
.webinar-slider .swiper-button-prev::after,
.testimonial-slider .swiper-button-next::after,
.testimonial-slider .swiper-button-prev::after {
  width: 18px;
  height: 18px;
  /* background-repeat: no-repeat; */
  background-size: 24px 18px;
  content: '';
  background-repeat: repeat-x;
  transition: 0.2s;
  /* background-position: 22px center; */
}

.testimonial-slider-text-only .swiper-button-prev::after,
.webinar-slider .swiper-button-prev::after,
.testimonial-slider .swiper-button-prev::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='20' viewBox='0 0 14 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_7920_1637)'%3E%3Cpath d='M0.25 10.25L1.05859 9.47656L7.80859 2.72656L8.61719 1.91797L10.1992 3.5L9.39062 4.30859L3.44922 10.25L9.39062 16.2266L10.1992 17L8.61719 18.6172L7.80859 17.8086L1.05859 11.0586L0.25 10.25Z' fill='%23FFFFFF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_7920_1637'%3E%3Crect width='14' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-position: 22px center;
}

.testimonial-slider-text-only .swiper-button-next::after,
.webinar-slider .swiper-button-next::after,
.testimonial-slider .swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='20' viewBox='0 0 14 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_188_14848)'%3E%3Cpath d='M12.4492 10.25L11.6406 11.0586L4.89062 17.8086L4.11719 18.6172L2.5 17L3.30859 16.2266L9.25 10.25L3.30859 4.30859L2.5 3.5L4.11719 1.91797L4.89062 2.72656L11.6406 9.47656L12.4492 10.25Z' fill='%23FFFFFF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_188_14848'%3E%3Crect width='14' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-position: 22px center;
}

.testimonial-slider-text-only .swiper-button-next:hover::after,
.webinar-slider .swiper-button-next:hover::after,
.testimonial-slider .swiper-button-next:hover::after {
  background-position: 46px center;
}

.testimonial-slider-text-only .swiper-button-prev:hover::after,
.webinar-slider .swiper-button-prev:hover::after,
.testimonial-slider .swiper-button-prev:hover::after {
  background-position: -2px center;
}

.testimonial-slider-text-only.control-orange .swiper-button-prev::after,
.webinar-slider.control-orange .swiper-button-prev::after,
.testimonial-slider.control-orange .swiper-button-prev::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='20' viewBox='0 0 14 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_7920_1637)'%3E%3Cpath d='M0.25 10.25L1.05859 9.47656L7.80859 2.72656L8.61719 1.91797L10.1992 3.5L9.39062 4.30859L3.44922 10.25L9.39062 16.2266L10.1992 17L8.61719 18.6172L7.80859 17.8086L1.05859 11.0586L0.25 10.25Z' fill='%2300529B'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_7920_1637'%3E%3Crect width='14' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.testimonial-slider-text-only.control-orange .swiper-button-next::after,
.webinar-slider.control-orange .swiper-button-next::after,
.testimonial-slider.control-orange .swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='20' viewBox='0 0 14 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_188_14848)'%3E%3Cpath d='M12.4492 10.25L11.6406 11.0586L4.89062 17.8086L4.11719 18.6172L2.5 17L3.30859 16.2266L9.25 10.25L3.30859 4.30859L2.5 3.5L4.11719 1.91797L4.89062 2.72656L11.6406 9.47656L12.4492 10.25Z' fill='%2300529B'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_188_14848'%3E%3Crect width='14' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.testimonial-slider-text-only.control-orange .swiper-button-next:hover,
.testimonial-slider-text-only.control-orange .swiper-button-prev:hover,
.webinar-slider.control-orange .swiper-button-next:hover,
.webinar-slider.control-orange .swiper-button-prev:hover,
.testimonial-slider.control-orange .swiper-button-next:hover,
.testimonial-slider.control-orange .swiper-button-prev:hover {
  background-color: var(--color-coral);
  border-color: var(--color-coral);
}

.testimonial-slider-text-only.control-orange .swiper-button-next:hover::after,
.webinar-slider.control-orange .swiper-button-next:hover::after,
.testimonial-slider.control-orange .swiper-button-next:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='20' viewBox='0 0 14 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_188_14848)'%3E%3Cpath d='M12.4492 10.25L11.6406 11.0586L4.89062 17.8086L4.11719 18.6172L2.5 17L3.30859 16.2266L9.25 10.25L3.30859 4.30859L2.5 3.5L4.11719 1.91797L4.89062 2.72656L11.6406 9.47656L12.4492 10.25Z' fill='%23FFFFFF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_188_14848'%3E%3Crect width='14' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.testimonial-slider-text-only.control-orange .swiper-button-prev:hover::after,
.webinar-slider.control-orange .swiper-button-prev:hover::after,
.testimonial-slider.control-orange .swiper-button-prev:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='20' viewBox='0 0 14 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_7920_1637)'%3E%3Cpath d='M0.25 10.25L1.05859 9.47656L7.80859 2.72656L8.61719 1.91797L10.1992 3.5L9.39062 4.30859L3.44922 10.25L9.39062 16.2266L10.1992 17L8.61719 18.6172L7.80859 17.8086L1.05859 11.0586L0.25 10.25Z' fill='%23FFFFFF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_7920_1637'%3E%3Crect width='14' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.testimonial-slider-text-only .swiper-button-next,
.testimonial-slider-text-only .swiper-button-prev {
  margin-top: -32px;
}

.testimonial-slider .swiper {
  max-width: 818px;
}

.testimonial-slider {
  overflow: hidden;
}

.webinar-slider .gs-swiper-init {
  padding-bottom: 50px;
}

@media (min-width: 769px) {
  .testimonial-slider .wp-block-greenshift-blocks-row-column.gspb_row__col--8 {
    height: 100%;
  }

  .webinar-slider .swiper {
    overflow: hidden !important;
  }

  .webinar-slider .swiper-button-next {
    right: 0;
    transform: translateX(50%);
    margin-top: 20px;
  }

  .webinar-slider .swiper-button-prev {
    left: 0;
    transform: translateX(-50%);
    margin-top: 20px;
  }

  .slider-full .swiper-button-next {
    margin-right: 20px;
  }
  .slider-full .swiper-button-prev {
    margin-left: 20px;
  }

  .slider-overlay-white,
  .slider-overlay {
    position: relative;
  }

  .slider-overlay-white::before,
  .slider-overlay-white::after,
  .slider-overlay::before,
  .slider-overlay::after {
    content: '';
    display: block;
    width: 250px;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
  }
  .slider-overlay-white::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
  }
  .slider-overlay-white::after {
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  }
  .slider-overlay::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0, 82, 155, 0) 0%, #00529b 100%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
  }
  .slider-overlay::after {
    right: 0;
    background: linear-gradient(90deg, rgba(0, 82, 155, 0) 0%, #00529b 100%);
  }
}

.webinar-slider .swiper-button-prev,
.webinar-slider .swiper-button-next {
  background-color: var(--color-gold);
  color: var(--color-deep-blue);
}

@media (max-width: 768px) {
  .webinar-slider .swiper-button-prev,
  .webinar-slider .swiper-button-next {
    top: unset;
    bottom: -10px;
  }

  .webinar-slider .swiper {
    max-width: calc(100% - 40px);
  }

  .testimonial-slider-text-only .swiper-pagination-bullet {
    background-color: var(--color-medium-blue) !important;
  }
  .testimonial-slider-text-only
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #358ccb !important;
  }
}

/* accordion */
.gs-accordion-item > .gs-accordion-item__title span.iconfortoggle {
  background-color: var(--color-blue);
  border-radius: 50%;
  padding: 6px;
  width: 24px !important;
  height: 24px !important;
}
.gs-accordion-item > .gs-accordion-item__title {
  padding: 28px !important;
  align-items: flex-start !important;
}
.gs-accordion-item > .gs-accordion-item__title .gs-accordion-item__heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  max-width: calc(100% - 40px);
}
.gs-accordion-item > .gs-accordion-item__content > .gs-accordion-item__text {
  padding: 0 28px 28px 28px !important;
  max-width: calc(100% - 40px);
}
.gs-accordion-item > .gs-accordion-item__content > .gs-accordion-item__text p {
  font-size: 16px !important;
  line-height: 150%;
}
.gs-accordion-item.gsopen > .gs-accordion-item__title {
  padding-bottom: 4px !important;
}
.gs-accordion-item
  > .gs-accordion-item__title
  span.iconfortoggle
  .gs-iconbefore,
.gs-accordion-item
  > .gs-accordion-item__title
  span.iconfortoggle
  .gs-iconafter {
  background-color: var(--color-white) !important;
  width: 14px !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
}

.gs-accordion-item
  > .gs-accordion-item__title
  span.iconfortoggle
  .gs-iconafter {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gs-accordion
  .gs-accordion-item.gsopen
  .gs-accordion-item__title
  .gs-iconafter {
  transform: translate(-50%, -50%) rotate(0deg);
}

.gs-accordion .gs-accordion-item.gsopen span.iconfortoggle {
  background-color: #358ccb !important;
}

.fs-accordion-radius {
}

.fs-accordion-radius .wp-block-greenshift-blocks-accordionitem:first-child,
.fs-accordion-radius .gs-accordion-item:first-child {
  border-top-left-radius: 40px;
  overflow: hidden;
}

.fs-accordion-radius .wp-block-greenshift-blocks-accordionitem:last-child,
.fs-accordion-radius .gs-accordion-item:last-child {
  border-bottom-right-radius: 40px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gs-accordion-item__heading,
  .gs-accordion-item__text p {
    font-size: 20px !important;
  }
  .gs-accordion-item > .gs-accordion-item__title {
    padding: 20px !important;
  }
  .gs-accordion-item.gsopen > .gs-accordion-item__title {
    padding-bottom: 4px !important;
  }
  .gs-accordion-item > .gs-accordion-item__content > .gs-accordion-item__text {
    padding: 0 20px 20px 20px !important;
  }
  .fs-accordion-radius .wp-block-greenshift-blocks-accordionitem:first-child,
  .fs-accordion-radius .gs-accordion-item:first-child {
    border-top-left-radius: 20px;
  }

  .fs-accordion-radius .wp-block-greenshift-blocks-accordionitem:last-child,
  .fs-accordion-radius .gs-accordion-item:last-child {
    border-bottom-right-radius: 20px;
  }

  .gs-accordion.font-mobile-16
    .gs-accordion-item
    > .gs-accordion-item__title
    > .gs-accordion-item__heading {
    font-size: 16px !important;
  }
}

/*  */

.overlay-back-white {
  overflow: visible;
}

.overlay-back-white:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 4;
}

/* switcher */
.gspb__switcher-element {
  /* background-color: var(--color-dark-gray) !important; */
  /* border: 2px solid var(--color-dark-gray) !important; */
  width: 94px !important;
  height: 52px !important;
  background:
    linear-gradient(180deg, #358ccb 0%, #003d74 100%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.45) 100%
    );
  border: 2px solid #ffffffca !important;
}

.gspb-switchwrap:has(:checked) .gspb__switcher-element {
  background-color: var(--color-blue) !important;
  background: linear-gradient(180deg, rgba(255, 198, 10, 0.8) 0%, #faa31b 100%);
}

.gspb-switchwrap:has(:checked) .gspb__switch-handler {
  left: calc(100% - 48px) !important;
}

.gspb-switchwrap:has(:checked) .gspb__switch-handler span {
  background-color: var(--color-coral) !important;
}

.gspb__switch-handler {
  width: 48px !important;
}

.gspb__switch-handler span {
  border: 6px solid var(--color-white);
  background-color: var(--color-blue) !important;
}

.gspb__switcher-label.gspb__switcher-control-off {
  text-align: right;
  justify-content: flex-end;
}

.gspb__switcher-label.gspb__switcher-control-on {
  text-align: left;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .gspb__switcher-element {
    width: 64px !important;
    height: 40px !important;
  }

  .gspb__switch-handler {
    width: 36px !important;
  }

  .gspb_id-gsbp-125cfe9 .gspb__switcher-element{
    width: 64px !important;
  }
  .gspb__switcher-label.gspb__switcher-control-on,
  .gspb__switcher-label.gspb__switcher-control-off{
    width: calc(50% - 64px);
  }
}

/* tabs content */

.gs_tabs_60 .gs_tab {
  padding: 12px 28px;
  border-radius: 20px 20px 0px 0px;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-weight: bold;
}

.gs_tabs_60 .gs_tab.active {
  background-color: var(--color-gold);
  color: var(--color-deep-blue);
}

.gsbp-5e259f7 {
  column-gap: 6px;
  row-gap: 6px;
}

@media (min-width: 769px) {
  .tabs-title-mobile {
    display: none;
  }
  .gs_tabs_60 .gs_tab.active:hover {
    color: var(--color-white);
  }

  .gs_tabs_60 .gs_tabs_list .gs_tab:hover {
    background-color: var(--color-coral);
  }
}

@media (max-width: 768px) {
  .gs_tabs_60 .gs_tabs_list {
    gap: 1px;
    flex-direction: column;
    padding: 15px 10px;
    border: 1px solid var(--color-blue);
    border-radius: 8px;
    background-color: var(--color-light-blue);
    position: absolute;
    width: 100%;
    z-index: 9;
    display: none;
  }

  .tabs-title-mobile,
  .gs_tabs_60 .gs_tabs_list .gs_tab {
    background-color: transparent;
    padding: 10px;
    border-radius: 8px;
    color: var(--color-blue);
    justify-content: flex-start;
    width: 100%;
  }
  .tabs-title-mobile,
  .gs_tabs_60 .gs_tabs_list .gs_tab:hover,
  .gs_tabs_60 .gs_tabs_list .gs_tab.active {
    background-color: var(--color-blue);
    color: var(--color-white);
  }
  .gs_tabs_60 .gs_tabs_list .gs_tab .gs_name {
    text-align: left;
  }
  .tabs-title-mobile {
    /* border-radius: 30px; */
    cursor: pointer;
    font-weight: bold;
    padding: 15px 20px;
    margin-bottom: 10px !important;
    position: relative;
    user-select: none;
  }

  .tabs-title-mobile:after {
    content: '';
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.20703 8.78906L0.457031 2.03906C0 1.61719 0 0.878906 0.457031 0.457031C0.878906 0 1.61719 0 2.03906 0.457031L8.01562 6.39844L13.957 0.457031C14.3789 0 15.1172 0 15.5391 0.457031C15.9961 0.878906 15.9961 1.61719 15.5391 2.03906L8.78906 8.78906C8.36719 9.24609 7.62891 9.24609 7.20703 8.78906Z' fill='white'/%3E%3C/svg%3E%0A");
    width: 16px;
    height: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.2s;
  }

  .tabs-container.open .tabs-title-mobile:after {
    transform: translateY(-50%) rotate(180deg);
  }

  .tabs-container.open .gs_tabs_60 .gs_tabs_list {
    display: block;
  }

  .tabs-container div[id^='gspb_col-id'] {
    padding: 0;
  }
}

/* table */

.fs-table,
.fs-table thead,
.fs-table tbody {
  display: block;
  width: 100%;
}
.fs-table tr {
  display: flex;
}

.fs-table th,
.fs-table td {
  flex-basis: 50%;
}
.fs-table .gspb_text {
  height: 100%;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.fs-table td:first-child .gspb_text {
  justify-content: flex-start;
}
/*  */

.fs-table {
  /* border-radius: 16px;
  overflow: hidden; */
  border: none;
}

.fs-table thead {
}

.fs-table tbody {
  /* border: 2px solid var(--color-gold); */
}

.fs-table tr {
}

.fs-table th {
  background: var(--color-gold);
  border-radius: 16px 16px 0 0;
  padding: 16px 40px;
  border-color: var(--color-light-sand);
  border-width: 2px;
  border: none;
  position: relative;
  font-weight: 500;
  font-size: 14px;
}

.fs-table th b,
.fs-table th strong {
  font-weight: bold;
  font-size: 18px;
}

.fs-table th:not(:last-child):after {
  content: '';
  display: block;
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  width: 2px;
  height: calc(100% - 8px);
  transform: translateX(50%);
  background-color: var(--color-light-sand);
}

.fs-table td {
  padding: 0;
  border: none;
}

.fs-table td .gspb_text {
  background-color: var(--color-white);
  padding: 16px 40px;
  border: 1px solid var(--color-light-sand);
}

.fs-table tbody tr:last-child td:first-child .gspb_text {
  border-bottom-left-radius: 16px;
  border-bottom: 2px solid var(--color-gold);
}

.fs-table tbody tr:last-child td:last-child .gspb_text {
  border-bottom-right-radius: 16px;
  border-bottom: 2px solid var(--color-gold);
}

.fs-table th,
.fs-table td {
  /* border-color: var(--color-light-sand);
  overflow: hidden; */
}

.fs-table td:first-child .gspb_text {
  border-left: 2px solid var(--color-gold);
}

.fs-table td:last-child .gspb_text {
  border-right: 2px solid var(--color-gold);
}

@media (max-width: 768px) {
  .fs-table th,
  .fs-table td .gspb_text {
    padding: 16px 20px;
  }

  .fs-table th b,
  .fs-table th strong {
    font-size: 16px;
  }
}

/* box container */
.fs-row-columns-devider .wp-block-greenshift-blocks-row-column {
  position: relative;
}

/* @media (min-width: 769px) */
@media (min-width: 990px) {
  .fs-row-columns-devider
    .wp-block-greenshift-blocks-row-column:not(:last-child):after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: calc(100% - 80px);
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-medium-blue);
  }
}

@media (max-width: 990px) {
  .fs-row-columns-devider
    .wp-block-greenshift-blocks-row-column:not(:last-child):after {
    content: '';
    display: block;
    position: absolute;
    width: calc(100% - 40px);
    height: 1px;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    background-color: var(--color-medium-blue);
  }
}

/* read more */
@media (max-width:767px) {
	.read-more.blue.wp-block-read-more,
	.read-less.blue.wp-block-read-more{
		margin-bottom:10px;
	}
}

.read-more-wrapper {
  overflow-y: auto;
}
.read-more-content .read-more {
}

.read-more-content .read-less {
  display: none;
}

.read-more-content.expanded .read-more {
  display: none;
}

.read-more-content.expanded .read-less {
  display: block;
}

.read-more-content .gspb_text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
}

.read-more-content-small .gspb_text {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.read-more-content-smaller .gspb_text {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.read-more-content-zero .gspb_text {
  -webkit-line-clamp: 1;
  line-clamp: 1;
  height: 0px;
}

/* wp-admin */
.block-editor-block-list__layout .read-more-content .read-less,
.block-editor-block-list__layout .read-more-content.expanded .read-more,
.block-editor-block-list__layout .read-more-content-small .gspb_text,
.block-editor-block-list__layout .read-more-content-smaller .gspb_text,
.block-editor-block-list__layout .read-more-content-zero .gspb_text {
  height: auto;
  display: block;
  max-height: 400px;
  overflow: auto;
}

.read-more-content-zero.expanded .gspb_text,
.read-more-content.expanded .gspb_text {
  display: block;
  height: auto;
}

.wp-block-read-more {
  color: var(--color-gold);
  position: relative;
  padding-right: 20px;
  font-weight: bold;
  margin-top: 10px;
  font-size: 16px;
  text-transform: capitalize;
  transition: 0.4s;
}

.wp-block-read-more:hover {
  color: var(--color-coral);
}

.wp-block-read-more:hover:before,
.wp-block-read-more:hover:after {
  background-color: var(--color-coral);
}

.wp-block-read-more:before,
.wp-block-read-more:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  background-color: var(--color-gold);
  border-radius: 2px;
  transition: 0.4s;
}

.wp-block-read-more:before {
  width: 16px;
  height: 2px;
}

.wp-block-read-more:after {
  height: 16px;
  width: 2px;
}

.read-more-content.expanded .wp-block-read-more:after,
.wp-block-read-more.read-less:after {
  transform: translate(50%, -50%) rotate(90deg);
}

.wp-block-read-more.blue {
  color: var(--color-deep-blue);
}

.wp-block-read-more.blue:hover {
  color: var(--color-coral);
}

.wp-block-read-more.blue:before,
.wp-block-read-more.blue:after {
  background-color: var(--color-deep-blue);
}

.wp-block-read-more.blue:hover:before,
.wp-block-read-more.blue:hover:after {
  background-color: var(--color-coral);
}

/* navigation menu */
/* .mobile-menu-open .site-header{
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;
  height: 100vh;
  overflow: auto;
} */
/* nav */
.fs-custom-dropdown-desktop nav ul li .gs-top-level-item {
  border-radius: 36px !important;
  position: relative;
  padding-top: 4px;
  padding-bottom: 4px;
}

.fs-custom-dropdown-desktop nav ul li .gs-top-level-item:hover {
  background-color: var(--color-coral);
  color: var(--color-white);
}

.fs-custom-dropdown-desktop nav ul li .gs-top-level-item:hover:after {
  top: 50%;
}

.fs-custom-dropdown-desktop nav ul li .gs-top-level-item:after {
  transition: 0.2s;
  content: '';
  display: block;
  position: absolute;
  right: 10px;
  top: 0%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='11' viewBox='0 0 9 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.00781 10.0781L0.398438 6.49219L0 6.09375L0.796875 5.29688L1.19531 5.69531L3.84375 8.32031V0H4.96875V8.32031L7.99219 5.29688L8.78906 6.09375L4.40625 10.4766L4.00781 10.0781Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* custom nav dropdown */
.fs-custom-dropdown {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
.fs-custom-dropdown.w-full {
  width: 100%;
}
.fs-custom-dropdown.fixed {
  position: fixed;
  top: 20px;
  z-index: 9999;
  width: calc(100% - 40px);
  left: 20px;
  filter: drop-shadow(0px 0px 40px rgba(0, 82, 155, 0.2));
}
.fs-custom-dropdown .gs-menu-item-has-children,
.fs-custom-dropdown .gs-dropdown-menu {
  width: 100%;
}
.fs-custom-dropdown .gs-menu-item-has-children:hover a::after {
  transform: rotate(-135deg) !important;
}
.fs-custom-dropdown .gs-top-level-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fs-custom-dropdown-desktop {
  position: absolute !important;
  top: 468px;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%) !important;
  min-width: 940px !important;
  max-width: 100%;
}
.fs-custom-dropdown-desktop.fs-custom-dropdown-desktop-1 {
  top: 465px;
}

.fs-custom-dropdown-desktop2 {
  top: 840px;
}

.block-editor-block-list__layout .fs-custom-dropdown-desktop2 {
  top: -328px;
}

.block-editor-block-list__layout .fs-custom-dropdown-desktop.fs-custom-dropdown-desktop-1 {
  top: -354px;
}

.admin-bar .fs-custom-dropdown-desktop2 {
  top: 888px;
}
/* .admin-bar .fs-custom-dropdown-desktop {
  top: 490px;
}
 */
@media (min-width: 1440px){
  .admin-bar .fs-custom-dropdown-desktop.fs-custom-dropdown-desktop-1 {
    top: 488px;
  }
}

@media (max-width: 2000px){
  .fs-custom-dropdown-desktop2 {
    top: 780px;
  }
  .admin-bar .fs-custom-dropdown-desktop2 {
    top: calc(780px + 34px) ;
  }
}

@media (max-width: 1440px){
  .fs-custom-dropdown-desktop2 {
    top: 880px;
  }
  .admin-bar .fs-custom-dropdown-desktop2 {
    top: calc(880px + 34px) ;
  }
}

@media (max-width: 1440px){
  .fs-custom-dropdown-desktop2 {
    top: 880px;
  }
  .admin-bar .fs-custom-dropdown-desktop2 {
    top: calc(880px + 34px) ;
  }
}

.fs-custom-dropdown-desktop > .gspb_container {
  height: 56px;
}
.fs-custom-dropdown-desktop.fixed {
  position: fixed !important;
  top: 20px !important;
  filter: drop-shadow(0px 0px 40px rgba(0, 82, 155, 0.2));
}

.fs-custom-dropdown > ul,
.fs-custom-dropdown-desktop > ul {
  margin-left: 0 !important;
}

.fs-custom-dropdown-mobile .gs-dropdown-menu {
  /* display: none; */
  opacity: 0 !important;
  visibility: hidden !important;
}

.fs-custom-dropdown-mobile.open .gs-dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}
.fs-custom-dropdown-mobile
  ul
  li.gs-menu-item-has-children
  .gs-top-level-item:after {
  transform: rotate(45deg) !important;
}

.fs-custom-dropdown-mobile.open > ul {
  background-color: var(--color-blue);
}
.fs-custom-dropdown-mobile.open > ul a.gs-top-level-item {
  color: var(--color-white);
}

.fs-custom-dropdown-mobile.open > ul a.gs-top-level-item::after {
  border-color: var(--color-white);
  margin-bottom: 0;
}

.gs_menu_a7183 .gs-menu-item-has-children > .gs-nav-trigger::after,
.gs_menu_a7363 .gs-menu-item-has-children > .gs-nav-trigger::after {
  width: 10px;
  height: 10px;
  border-width: 2px;
}

.fs-custom-dropdown-mobile.open
  ul
  li.gs-menu-item-has-children
  .gs-top-level-item:after {
  transform: rotate(-135deg) !important;
  background: transparent !important;
}

@media (max-width: 991.98px) {
  .fs-custom-dropdown .gsbp-8976bfc {
    display: block !important;
  }
}

@media (min-width: 991.99px) {
  .fs-custom-dropdown .gsbp-8976bfc {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .fs-custom-dropdown-desktop nav ul {
    gap: 0px;
  }
  .fs-custom-dropdown-desktop nav ul li .gs-top-level-item {
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .fs-custom-dropdown-desktop nav ul {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .fs-custom-dropdown-desktop nav ul li .gs-top-level-item {
    padding: 10px 20px 10px 20px !important;
  }
  nav.fs-custom-dropdown ul ul.gs-dropdown-menu,
  .fs-custom-dropdown-desktop nav ul ul.gs-dropdown-menu {
    overflow: hidden;
    border: 1px solid var(--color-blue) !important;
    margin-top: 8px;
    border-radius: 8px;
    padding: 12px 10px !important;
  }

  nav.fs-custom-dropdown ul ul.gs-dropdown-menu {
    background-color: var(--color-light-blue);
  }

  nav.fs-custom-dropdown ul ul.gs-dropdown-menu li .gs-sub-level-item,
  .fs-custom-dropdown-desktop nav ul ul.gs-dropdown-menu li .gs-sub-level-item {
    border-radius: 8px;
    padding: 6px 10px !important;
  }

  nav.fs-custom-dropdown ul ul.gs-dropdown-menu li .gs-sub-level-item:hover,
  .fs-custom-dropdown-desktop
    nav
    ul
    ul.gs-dropdown-menu
    li
    .gs-sub-level-item:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
  }

  .fs-custom-dropdown-desktop nav ul li .gs-top-level-item:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
  }
  .fs-custom-dropdown-desktop nav ul li .gs-top-level-item:hover:after {
    transform: translateY(-50%) rotate(45deg) !important;
    background: transparent !important;
  }
}

/* list */
.wp-block-greenshift-blocks-container ul,
ul.wp-block-list {
  margin-left: 20px;
}

.wp-block-greenshift-blocks-container ul li::marker,
ul.wp-block-list li::marker {
  color: var(--color-coral);
}

/* footer notice banner */

.site-footer {
  position: relative;
  z-index: 99998;
}

.footer-notice a,
.site-footer a,
.lisraya-footer-notice-banner a {
  color: var(--color-white);
  text-decoration: underline;
}

.lisraya-footer-notice-banner {
  background-color: var(--color-deep-blue);
  color: var(--color-white);
  position: relative;
  z-index: 99997;
}

.lisraya-footer-notice-banner-floating {
  z-index: 99991;
  background-color: var(--color-deep-blue);
  color: var(--color-white);
  position: fixed;
  width: 100%;
  transition: 0.4s;
  bottom: 0;
  max-height: 100%;
}

.footer-notice-floating .cols {
  align-items: center;
  margin-bottom: 10px;
}

.footer-notice-floating .col-left {
  padding-right: 24px;

  width: calc(100% - 100px);
}

.footer-notice-floating .col-right {
  width: 100px;
}

.footer-notice-floating h6 {
  margin-bottom: 0;
}



.lisraya-footer-notice-banner-floating .footer-widgets-container {
  padding-top: 10px;
  padding-bottom: 4px;
}

/* white rule under the title row, spanning the full banner width */
.lisraya-footer-notice-banner-floating .footer-notice-floating {
  padding-bottom: 10px;
}

.lisraya-footer-notice-banner-floating .footer-notice-floating:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-white);
  opacity: 1;
  transition: opacity 0.4s;
}

/* nothing below the title row to divide when collapsed */
.lisraya-footer-notice-banner-floating.is-collapsed
  .footer-notice-floating:after {
  /* opacity: 0; */
}

/* three states: is-collapsed (title only) / is-partial (default peek) / is-expanded (full screen) */

.lisraya-footer-notice-banner-floating .footer-notice-details {
  margin-top: 20px;
  overflow: hidden;
  transition:
    max-height 0.4s,
    margin-top 0.4s;
}

/* tighten the ISI copy inside the floating bar */
.lisraya-footer-notice-banner-floating .footer-notice-details h1,
.lisraya-footer-notice-banner-floating .footer-notice-details h2,
.lisraya-footer-notice-banner-floating .footer-notice-details h3,
.lisraya-footer-notice-banner-floating .footer-notice-details h4,
.lisraya-footer-notice-banner-floating .footer-notice-details h5,
.lisraya-footer-notice-banner-floating .footer-notice-details h6 {
  margin-bottom: 10px;
}

.lisraya-footer-notice-banner-floating.is-collapsed .footer-notice-details {
  margin-top: 0;
  max-height: 0;
}

.lisraya-footer-notice-banner-floating.is-partial .footer-notice-details {
  max-height: 6em;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

.lisraya-footer-notice-banner-floating.is-expanded {
  z-index: 999999;
  overflow: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.lisraya-footer-notice-banner-floating.is-expanded .footer-notice-details {
  max-height: none;
  overflow: visible;
}

body.notice-banner-expanded {
  overflow: hidden;
}

/*  */
.footer-notice .cols {
  display: flex;
  justify-content: space-between;
}

.footer-notice-details .cols {
  flex-wrap: wrap;
}

.footer-notice-details .col-left {
  width: 30%;
}

.footer-notice-details .col-right {
  width: 70%;
  padding-left: 24px;
}

@media (max-width: 768px) {
  .footer-notice-details .col-left {
    width: 100%;
  }

  .footer-notice-details .col-right {
    width: 100%;
    padding-left: 0px;
    padding-top: 24px;
  }

  .lisraya-footer-notice-banner-floating.is-partial .footer-notice-details {
    max-height: 4.5em;
  }

  /* keep the title on one or two lines instead of being squeezed by the buttons */
  .footer-notice-floating .cols {
    /* flex-wrap: wrap; */
    row-gap: 8px;
  }
  /* 
  .footer-notice-floating .col-left {
    width: 100%;
    padding-right: 0;
  } */

  /* .footer-notice-floating .col-right {
    width: 100%;
    justify-content: flex-start;
  } */
}

.footer-notice h1,
.footer-notice h2,
.footer-notice h3,
.footer-notice h4,
.footer-notice h5,
.footer-notice h6 {
  color: var(--color-gold);
}

.footer-notice h6,
.footer-notice p {
  font-size: 16px;
}

.footer-notice .btn-expand {
  font-size: 14px;
  position: relative;
  padding: 10px 30px 10px 10px;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
}

.footer-notice .btn-expand:before,
.footer-notice .btn-expand:after {
  content: '';
  display: block;
  position: absolute;
  background-color: var(--color-white);
  border-radius: 2px;
}

.footer-notice .btn-expand:before {
  right: 5px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 14px;
  transition: 0.4s;
}

.footer-notice .btn-expand:after {
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
  width: 14px;
  height: 2px;
}

/* legacy 2-state toggle — harmless, only fires if .expanded is still applied */
.footer-notice .btn-expand.expanded:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* collapse reads as a minus: drop the vertical stroke */
.footer-notice .btn-notice-collapse:before {
  display: none;
}

.footer-notice-floating .col-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.footer-notice ul {
  margin-left: 20px;
}

/* @media (min-width: 1401px){ */
  .btn-notice-collapse{
    display: none;
  }

  .notice-banner-expanded {
    .btn-notice-collapse{
      display: block;
    }
    .btn-notice-expand{
      display: none;
    }
  }
/* } */

/* forms */
.form-content-wrapper input[type='text']:focus,
.form-content-wrapper input[type='email']:focus,
.form-content-wrapper input[type='tel']:focus,
.form-content-wrapper input[type='number']:focus,
.form-content-wrapper textarea:focus,
.form-content-wrapper input[type='text']:active,
.form-content-wrapper input[type='email']:active,
.form-content-wrapper input[type='tel']:active,
.form-content-wrapper input[type='number']:active,
.form-content-wrapper textarea:active,
.form-content-wrapper input[type='text'],
.form-content-wrapper input[type='email'],
.form-content-wrapper input[type='tel'],
.form-content-wrapper input[type='number'],
.form-content-wrapper textarea {
  height: 46px !important;
  background: var(--color-white) !important;
  border: 1px solid var(--color-medium-blue) !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  width: 100% !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 26px !important;
  color: var(--color-dark-gray) !important;
}
.form-content-wrapper input[type='text']::placeholder,
.form-content-wrapper input[type='email']::placeholder,
.form-content-wrapper input[type='tel']::placeholder,
.form-content-wrapper input[type='number']::placeholder,
.form-content-wrapper textarea::placeholder {
  color: #b5b5b5 !important;
}
.form-content-wrapper .priovant-form__submit,
.form-content-wrapper [type='submit'] {
  border-radius: 30px !important;
  padding: 15px 48px 15px 24px !important;
  font-family: 'Agenda' !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 100% !important;
  color: var(--color-white) !important;
  background-color: var(--color-medium-blue) !important;
  text-transform: capitalize !important;
  transition: 0.2s !important;
  position: relative !important;
}
.form-content-wrapper [type='submit']::after,
.form-content-wrapper .priovant-form__submit:after {
  transition: 0.4s !important;
  content: '' !important;
  display: block !important;
  position: absolute !important;
  right: 24px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 18px !important;
  height: 18px !important;
  background-repeat: repeat-x !important;
  background-position: center !important;
  background-size: 18px 14px !important;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1_22068)'%3E%3Cpath d='M13.75 7.0625L8.25 12.3125C7.9375 12.5938 7.46875 12.5938 7.1875 12.2812C6.90625 11.9688 6.90625 11.5 7.21875 11.2188L11.375 7.25H0.75C0.3125 7.25 0 6.9375 0 6.5C0 6.09375 0.3125 5.75 0.75 5.75H11.375L7.21875 1.8125C6.90625 1.53125 6.90625 1.03125 7.1875 0.75C7.46875 0.4375 7.96875 0.4375 8.25 0.71875L13.75 5.96875C13.9062 6.125 14 6.3125 14 6.5C14 6.71875 13.9062 6.90625 13.75 7.0625Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_22068'%3E%3Crect width='14' height='13' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  /* animation: moveBackground 20s linear infinite !important; */
}
.form-content-wrapper [type='submit']:hover:after,
.form-content-wrapper .priovant-form__submit:hover:after {
  background-position: 18px center !important;
}
.form-content-wrapper #signing-submit-btn {
  width: auto !important;
}
.form-content-wrapper .priovant-form__submit {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}
.form-content-wrapper .priovant-form__check input[type='checkbox'],
.form-content-wrapper .disclosure-label input[type='checkbox'] {
  position: absolute !important;
  left: 0 !important;
  top: 2px !important;
  cursor: pointer !important;
}
.form-content-wrapper .disclosure-label,
.form-content-wrapper .signing-actions,
.form-content-wrapper .signing-privacy {
  margin-top: 20px !important;
}
.form-content-wrapper .priovant-form__row,
.form-content-wrapper .signing-fields {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 18px !important;
}
.form-content-wrapper .priovant-form__row {
  row-gap: 0 !important;
}
.form-content-wrapper fieldset legend,
.form-content-wrapper .priovant-form__field label,
.form-content-wrapper .signing-field label {
  color: var(--color-blue) !important;
  font-size: 16px !important;
  font-weight: bold !important;
  display: block !important;
  margin-bottom: 10px !important;
}
.form-content-wrapper .priovant-form__req,
.form-content-wrapper .required {
  color: var(--color-coral) !important;
}
.form-content-wrapper #signing-form label.disclosure-label,
.form-content-wrapper #signing-form .disclosure-label,
.form-content-wrapper .disclosure-label,
.form-content-wrapper .priovant-form__check {
  display: block !important;
  position: relative !important;
  padding-left: 26px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 150% !important;
  color: var(--color-dark-gray) !important;
}
.form-content-wrapper #signing-form label.disclosure-label a,
.form-content-wrapper #signing-form .disclosure-label a,
.form-content-wrapper .disclosure-label a,
.form-content-wrapper .priovant-form__check a {
  color: var(--color-blue) !important;
  text-decoration: underline !important;
}
.form-content-wrapper .disclosure-box {
  border-top: 4px solid var(--color-white) !important;
  border-bottom: 4px solid var(--color-white) !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  background: transparent !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  height: auto !important;
  max-height: unset !important;
}
.form-content-wrapper fieldset,
.form-content-wrapper .priovant-form__field {
  margin-bottom: 18px !important;
}
.form-content-wrapper input[type='checkbox'] {
  /* -webkit-appearance: none !important;
  display: block !important; */
  width: 16px !important;
  height: 16px !important;
  padding: 0 !important;
  border: 1px solid var(--color-blue) !important;
  border-radius: 4px !important;
}
.form-content-wrapper input[type='checkbox']:checked {
  /* background-color: var(--color-blue) !important; */
  /* background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.25 0H13.5C14.7305 0 15.75 1.01953 15.75 2.25V13.5C15.75 14.7656 14.7305 15.75 13.5 15.75H2.25C0.984375 15.75 0 14.7656 0 13.5V2.25C0 1.01953 0.984375 0 2.25 0ZM11.8477 6.22266H11.8125C12.1641 5.90625 12.1641 5.37891 11.8125 5.02734C11.4961 4.71094 10.9688 4.71094 10.6523 5.02734L6.75 8.96484L5.09766 7.3125C4.74609 6.96094 4.21875 6.96094 3.90234 7.3125C3.55078 7.62891 3.55078 8.15625 3.90234 8.47266L6.15234 10.7227C6.46875 11.0742 6.99609 11.0742 7.34766 10.7227L11.8477 6.22266Z' fill='%2300529B'/%3E%3C/svg%3E%0A"); */
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: calc(100% + 2px) !important;
}
.form-content-wrapper p {
  font-size: 16px !important;
}
.form-content-wrapper p.priovant-form__required {
  font-size: 16px !important;
  color: var(--color-coral) !important;
}

.priovant-form {
  display: block !important;
  max-width: 100% !important;
  margin: 0 !important;
}

#signing-page-wrapper {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}

#signing-form-container {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

#signing-error:not([style*='display: none']):not([style*='display:none']) {
  padding: 20px !important;
}

.form-updated-wrapper,
.form-success-wrapper {
  display: none;
}
/* wp-admin */
.block-editor-block-list__layout .form-updated-wrapper,
.block-editor-block-list__layout .form-success-wrapper {
  display: block;
}

.form-section-wrapper:has(.priovant-form__error--updated) .form-updated-wrapper,
.form-section-wrapper:has(.priovant-form__error--success) .form-success-wrapper {
  display: block;
}

.form-section-wrapper:has(.priovant-form__error--updated) .form-content-wrapper,
.form-section-wrapper:has(.priovant-form__error--success) .form-content-wrapper {
  display: none;
}

.priovant-form__field--phone {
  display: none !important;
}

.form-content-wrapper:has(#signup-pal-request:checked) .priovant-form__field--phone {
  display: block !important;
}

/* back to top */
.generate-back-to-top {
  display: none !important;
}

.back-to-top-button {
  /* position: fixed; */

  z-index: 12;
  right: 0;
  /* bottom: 82px; */
  border-radius: 14px 0 0 14px;
  background-color: var(--color-white);
  text-align: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 40px rgba(0, 82, 155, 0.2);
  backdrop-filter: blur(5px);
  transition: 0.2s;

  position: absolute;
  transform: translateY(calc(-100% - 20px));
}

.back-to-top-button.floating {
  position: fixed;
  bottom: calc(82px + 110px);
  transform: translateY(0);
  z-index: 99999;
}

.back-to-top-button .icon svg {
  width: 48px;
  height: 48px;
}

.back-to-top-button .icon {
  display: block;
}

.back-to-top-button .txt {
  display: block;
  margin-top: 8;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: bold;
}

.back-to-top-button.hide {
  opacity: 0;
  visibility: hidden;
}
.back-to-top-button svg circle {
  transition: 0.2s;
}
.back-to-top-button:hover svg circle {
  fill: var(--color-coral);
}

@media (max-width: 768px) {
  .back-to-top-button {
    padding: 10px;
    width: 58px;
  }
  .back-to-top-button .icon svg {
    width: 32px;
    height: 32px;
  }

  .mobile-no-radius {
    border-radius: 0 !important;
  }
}
div:has(.grecaptcha-badge){
  position: fixed;
  z-index: 9;
  bottom: calc(208px + 110px);;
  right: 0;
  /* right: -186px; */
}
/* div:has(.grecaptcha-badge):hover{
  right: 0;
} */
.grecaptcha-badge{
  position: relative !important;
  transition: 0.2s !important;
  right: 0 !important;
  transform: translateX(186px);
  bottom: 0 !important;
}
div:has(.grecaptcha-badge):hover .grecaptcha-badge{
  transform: translateX(0px);
}

@media (max-width: 768px){
  .back-to-top-button.floating{
    bottom: calc(112px + 50px);
  }
  div:has(.grecaptcha-badge){
    bottom: calc(228px + 50px) !important;
  }
}

@media (max-width: 400px){
  .back-to-top-button.floating{
    bottom: calc(132px + 50px);
  }
  div:has(.grecaptcha-badge){
    bottom: calc(238px + 50px) !important;
  }
}



.pointer-event-none {
  pointer-events: none;
}

.bg-gradient-orange {
  background: linear-gradient(90deg, #faa31b 0%, #ffc60a 100%);
}

.has-inline-color.has-coral-color,
.has-inline-color.has-coral-color a {
  color: var(--color-coral);
  text-decoration: none;
}

.hidden {
  display: none !important;
}
.link-slider {
  display: none;
}

.link-slider-wrapper:has(.swiper-slide.swiper-slide-active[aria-label='1 / 5'])
  .link-slider-1,
.link-slider-wrapper:has(.swiper-slide.swiper-slide-active[aria-label='2 / 5'])
  .link-slider-2,
.link-slider-wrapper:has(.swiper-slide.swiper-slide-active[aria-label='3 / 5'])
  .link-slider-3,
.link-slider-wrapper:has(.swiper-slide.swiper-slide-active[aria-label='4 / 5'])
  .link-slider-4,
.link-slider-wrapper:has(.swiper-slide.swiper-slide-active[aria-label='5 / 5'])
  .link-slider-5 {
  display: block;
}

@media (max-width: 768px) {
  .link-slider img {
    aspect-ratio: 1 / 1 !important;
  }
}
@media (min-width: 769px) {
  .z-index-front-desktop {
    z-index: 99;
  }
  .testimonial-slider .gs-swiper-init {
    padding-bottom: 50px;
  }
}

.testimonial-slider-text-only .swiper .swiper-slide,
.testimonial-slider-text-only .swiper-slide {
  height: auto !important;
  display: flex;
}

.testimonial-slider-text-only .slider-content-zone,
.testimonial-slider-text-only .slider-content-zone > div {
  height: auto;
}

.object-left,
.object-left img {
  object-position: top left !important;
}

.object-right,
.object-right img {
  object-position: top right !important;
}

.object-bottom-right,
.object-bottom-right img {
  object-position: bottom right !important;
}

.object-bottom-left,
.object-bottom-left img {
  object-position: bottom left !important;
}

.object-top,
.object-top img {
  object-position: top !important;
}


.gspb_text.hero-subtitle,
.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
}

.btn-down:hover .gspb_iconBox__wrapper:after {
  background-image: url("data:image/svg+xml,%3Csvg class='' style='display:inline-block;vertical-align:middle' width='72' height='72' viewBox='0 0 896 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill:%23FFFFFF' d='M883.8 500.2l-39.6-39.6c-9.4-9.4-24.6-9.4-34 0l-310.2 310.2v-682.8c0-13.2-10.8-24-24-24h-56c-13.2 0-24 10.8-24 24v682.8l-310.2-310.2c-9.4-9.4-24.6-9.4-34 0l-39.6 39.6c-9.4 9.4-9.4 24.6 0 34l418.8 418.8c9.4 9.4 24.6 9.4 34 0l418.8-418.8c9.4-9.4 9.4-24.6 0-34z'%3E%3C/path%3E%3C/svg%3E");
}

#gspb_iconsList-id-gsbp-69fbe26.gspb_iconsList.fs-font-body
  .gspb_iconsList__item {
  line-height: 140%;
}

/* mobile */
@media (max-width: 768px) {
  .gspb_text.hero-subtitle,
  .hero-subtitle {
    font-size: 18px;
    font-weight: 600;
  }
  .mobile-no-bg {
    background: none !important;
  }
}

/* dekstop */

@media (min-width: 769px) {
  .testimonial-slider .swiper .swiper-slide {
    height: auto !important;
  }

  .testimonial-slider .swiper .swiper-slide.swiper-slide-active {
    width: 818px !important;
  }

  .testimonial-slider .swiper {
    max-width: 300px;
    transform: translateX(-266px);
    height: 278px;
  }

  .testimonial-slider .swiper-slide .gspb_text.fs-body-small {
    display: none;
  }
  .testimonial-slider
    .swiper-slide.swiper-slide-active
    .gspb_text.fs-body-small {
    display: block;
  }
}

/* small dekstop | tablet */
@media (min-width: 576px) and (max-width: 1280px) {
  .home-testimonial-slider > .wp-block-greenshift-blocks-row-column {
    padding-bottom: 160px !important;
  }
}

/*  */
@media (max-width: 1280px) {
  .gspb_row.tablet-row-break
    .gspb_row__content
    > .wp-block-greenshift-blocks-row-column,
  .gspb_row.tablet-row-break .gspb_row__content > .gspb_row__col--4,
  .gspb_row.tablet-row-break .gspb_row__content > .gspb_row__col--6,
  .gspb_row.tablet-row-break .gspb_row__content > .gspb_row__col--8 {
    width: 100% !important;
  }

  body.gspb-bodyfront #gspb_container-id-gsbp-1911dcc.gspb_container,
  body.gspb-bodyfront #gspb_container-id-gsbp-96ed7fb.gspb_container,
  body.gspb-bodyfront #gspb_container-id-gsbp-e38ee2e.gspb_container,
  .moa-card,
  .moa-module {
    max-width: 100% !important;
  }
  .custom-switcher
    > .gspb__switcher-container
    > .gspb__switcher-content
    > .switcher-panel
    > .gspb_container
    > .gspb_container,
  body.gspb-bodyfront #gspb_container-id-gsbp-6bd6745.gspb_container,
  body.gspb-bodyfront #gspb_container-id-gsbp-9d1b6b1.gspb_container {
    position: static;
    transform: none;
    margin: 20px auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .custom-switcher
    > .gspb__switcher-container
    > .gspb__switcher-content
    > .switcher-panel
    > .gspb_container
    > .gspb_container
    > .gspb_container {
    width: 100% !important;
  }
  .custom-switcher {
    margin-bottom: 10px;
  }
  .custom-switcher-wrapper {
    display: block !important;
  }
}
/* small-tablet */
@media (max-width: 990px) {
  .gspb_row.small-tablet-row-break
    .gspb_row__content
    > .wp-block-greenshift-blocks-row-column,
  .gspb_row.small-tablet-row-break .gspb_row__content > .gspb_row__col--4,
  .gspb_row.small-tablet-row-break .gspb_row__content > .gspb_row__col--6,
  .gspb_row.small-tablet-row-break .gspb_row__content > .gspb_row__col--8 {
    width: 100% !important;
  }
  .row-accordion-text
    > .gspb_row__content
    > .wp-block-greenshift-blocks-row-column
    > .gspb_container,
  .row-cols-overlap
    > .gspb_row__content
    > .wp-block-greenshift-blocks-row-column
    > .gspb_container,
  .row-image-text
    > .gspb_row__content
    > .wp-block-greenshift-blocks-row-column
    > .gspb_container {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .row-video-text
    > .gspb_row__content
    > .wp-block-greenshift-blocks-row-column:not(:has(.gs-video)),
  .row-accordion-text
    > .gspb_row__content
    > .wp-block-greenshift-blocks-row-column:not(:has(.gs-accordion)),
  .row-image-text
    > .gspb_row__content
    > .wp-block-greenshift-blocks-row-column.gspb_row__col--8 {
    order: 1 !important;
  }
  .row-video-text
    > .gspb_row__content
    > .wp-block-greenshift-blocks-row-column:has(.gs-video),
  .row-accordion-text
    > .gspb_row__content
    > .wp-block-greenshift-blocks-row-column:has(.gs-accordion),
  .row-image-text
    > .gspb_row__content
    > .wp-block-greenshift-blocks-row-column.gspb_row__col--4 {
    order: 2 !important;
  }
  .row-image-text
    > .gspb_row__content
    > .wp-block-greenshift-blocks-row-column.gspb_row__col--4
    > .gspb_container {
    width: calc(100% - 28px) !important;
    margin-top: -60px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 24px 20px !important;
  }
  .clinical-studied-container {
    padding-bottom: 0px !important;
  }
  .mobile-icons-list-break ul {
    grid-template-columns: 100% !important;
  }
  .pal-slider-wrapper {
    height: auto !important;
  }
}
@media (max-width: 400px) {
  .pal-slider-wrapper>#gspb_container-id-gsbp-736c859.gspb_container{
    margin-bottom: -220px;
  }
  .pal-slider-col-wrapper{
    padding-bottom: 240px !important;
  }
}

@media (max-width: 350px) {
  .pal-slider-wrapper>#gspb_container-id-gsbp-736c859.gspb_container{
    margin-bottom: -260px;
  }
  .pal-slider-col-wrapper{
    padding-bottom: 280px !important;
  }
}

@media (max-width: 330px) {
  .pal-slider-wrapper>#gspb_container-id-gsbp-736c859.gspb_container{
    margin-bottom: -280px;
  }
  .pal-slider-col-wrapper{
    padding-bottom: 300px !important;
  }
}

@media (max-width: 310px) {
  .pal-slider-wrapper>#gspb_container-id-gsbp-736c859.gspb_container{
    margin-bottom: -300px;
  }
  .pal-slider-col-wrapper{
    padding-bottom: 320px !important;
  }
}

@media (max-width: 300px) {
  .pal-slider-wrapper>#gspb_container-id-gsbp-736c859.gspb_container{
    margin-bottom: -320px;
  }
  .pal-slider-col-wrapper{
    padding-bottom: 340px !important;
  }
}
/* mobile */
@media (max-width: 768px) {
  .gspb_row.mobile-row-break
    .gspb_row__content
    > .wp-block-greenshift-blocks-row-column
    > .gspb_container,
  .gspb_row.mobile-row-break
    .gspb_row__content
    > .wp-block-greenshift-blocks-row-column,
  .gspb_row.mobile-row-break .gspb_row__content > .gspb_row__col--4,
  .gspb_row.mobile-row-break .gspb_row__content > .gspb_row__col--6,
  .gspb_row.mobile-row-break .gspb_row__content > .gspb_row__col--8 {
    width: 100% !important;
  }
}

@media (max-width: 991.98px) {
  .small-tablet-row-break
    > .gspb_row__content
    > .wp-block-greenshift-blocks-row-column
    > .wp-block-greenshift-blocks-container,
  body.gspb-bodyfront #gspb_container-id-gsbp-6efb58c.gspb_container {
    width: 100%;
  }
}

@media (min-width: 1240px) and (max-width: 1600px) {
  .hero-overlay-white-small-desktop {
    position: relative;
  }
  .hero-overlay-white-small-desktop:after {
    pointer-events: none;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
      radial-gradient(
        71.95% 318.68% at 100% 40.22%,
        rgba(53, 140, 203, 0.4) 0%,
        rgba(53, 140, 203, 0) 100%
      ),
      radial-gradient(
        69.03% 448% at 100% 40.22%,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0) 100%
      );
    opacity: 0.8;
    backdrop-filter: blur(15px);
  }
}


/* hero-text-section */

@media (min-width: 1440px) {
  .hero-text-section .hero-image-desktop{
    display: block !important;
  }
  .hero-text-section .hero-image-tablet{
    display: none !important;
  }
  .hero-text-section .hero-image-mobile{
    display: none !important;
  }

  .hero-text-section{
    position: relative;
  }
  .hero-text-section:after{
    /* background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), radial-gradient(71.95% 318.68% at 100% 40.22%, rgba(53, 140, 203, 0.2) 0%, rgba(53, 140, 203, 0) 100%), radial-gradient(69.03% 448% at 100% 40.22%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(15px); */
    pointer-events: none;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
      radial-gradient(
        71.95% 318.68% at 100% 40.22%,
        rgba(53, 140, 203, 0.4) 0%,
        rgba(53, 140, 203, 0) 100%
      ),
      radial-gradient(
        69.03% 448% at 100% 40.22%,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0) 100%
      );
    opacity: 0.15;
    /* backdrop-filter: blur(15px); */
  }

  .hero-text-section.hero-blue-section:after{
    content: none;
  }

  .clinical-data-nav-desktop{
    display: block !important;
  }
  .clinical-data-nav-mobile{
    display: none !important;
  }
}

@media (max-width: 1439px) {
  .clinical-data-nav-desktop{
    display: none !important;
  }
  .clinical-data-nav-mobile,
  .clinical-data-nav-mobile .gsbp-8976bfc{
    display: block !important;
  }
  #gspb_row-id-gsbp-61396cb{
    margin-top: 0px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1439px){}
@media (min-width: 1100px) and (max-width: 1439px) {
  .hero-text-section .hero-image-desktop{
    display: none !important;
  }
  .hero-text-section .hero-image-tablet{
    display: block !important;
  }
  .hero-text-section .hero-image-mobile{
    display: none !important;
  }

  .hero-text-section .gspb_row__content{
    max-width: 100% !important;
  }
  .hero-text-section .gspb_row__col--4{
    max-width: calc(100% - 400px) !important;
  }
  .hero-text-section .hero-text-wrapper{
    padding: 60px !important;
  }

  .hero-text-section .btn-down{
    bottom: 20% !important;
  }

  .hero-blue-section{
    min-height: 600px !important;
  }
}
@media (max-width: 1199px){}
@media (max-width: 1100px) {
  .hero-text-section .hero-image-desktop{
    display: none !important;
  }
  .hero-text-section .hero-image-tablet{
    display: none !important;
  }
  .hero-text-section .hero-image-mobile{
    display: block !important;
  }

  .hero-text-section .btn-down{
    bottom: 20% !important;
  }

  .top-bar .inside-top-bar{
    padding-top: 0 !important;
  }
  .has-inline-mobile-toggle #site-navigation.toggled{
    flex-grow: unset !important;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {}
@media (min-width: 576px) and (max-width: 1099px) {
  .hero-text-section .hero-text-wrapper{
    padding: 40px !important;
  }
}

/* hero-main-section */


@media (min-width: 1440px) {
  .hero-main-section .hero-image-desktop,
  .hero-content-section .hero-image-desktop{
    display: block !important;
  }
  .hero-main-section .hero-image-tablet,
  .hero-content-section .hero-image-tablet{
    display: none !important;
  }
  .hero-main-section .hero-image-mobile,
  .hero-content-section .hero-image-mobile{
    display: none !important;
  }
}

@media (min-width: 991.98px) and (max-width: 1439px) {
  .hero-main-section .hero-image-desktop,
  .hero-content-section .hero-image-desktop{
    display: none !important;
  }
  .hero-main-section .hero-image-tablet,
  .hero-content-section .hero-image-tablet{
    display: block !important;
  }
  .hero-main-section .hero-image-mobile,
  .hero-content-section .hero-image-mobile{
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hero-main-section .hero-image-desktop,
  .hero-content-section .hero-image-desktop{
    display: none !important;
  }
  .hero-main-section .hero-image-tablet,
  .hero-content-section .hero-image-tablet{
    display: none !important;
  }
  .hero-main-section .hero-image-mobile,
  .hero-content-section .hero-image-mobile{
    display: block !important;
  }
}

/* custom-video-embed */
.custom-video-embed{
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.custom-video-embed .wp-block-embed {}
.custom-video-embed .gspb_image,
.custom-video-embed .wp-block-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.custom-video-embed .gspb_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-editor-block-list__block .custom-video-embed .wp-block-cover{
  position: relative;
  z-index: 4;
}
.custom-video-embed .wp-block-cover, 
.custom-video-embed .wp-block-cover-image{
  min-height: unset !important;
}

.wp-block-cover{
  background-color: var(--color-blue);
}

.wp-block-cover .wp-block-cover__inner-container{
  text-align: center;
}

.wp-block-cover .wp-block-cover__inner-container p{
  display: inline-block;
  border: 1px solid white;
  padding: 7px 15px;
  border-radius: 30px;
  font-size: 14px !important;
}

.custom-video-embed::after{
  content: '';
  position: absolute;
  z-index: 2;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='15' viewBox='0 0 12 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.28125 0.28125L11.2812 5.78125C11.7188 6.0625 12 6.5625 12 7.0625C12 7.59375 11.7188 8.09375 11.2812 8.34375L2.28125 13.8438C1.8125 14.125 1.21875 14.1562 0.75 13.875C0.28125 13.625 0 13.125 0 12.5625V1.5625C0 1.03125 0.28125 0.53125 0.75 0.28125C1.21875 0 1.8125 0 2.28125 0.28125Z' fill='white'/%3E%3C/svg%3E%0A");
  width: 12px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 15px;
  left: 20px;
  bottom: 20px;
  pointer-events: none;
}
.custom-video-embed::before{
  content: '';
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(1, 30, 69, 0.6) 0%, rgba(1, 30, 69, 0) 12.74%), transparent;
}

.custom-video-embed.playing::before,
.custom-video-embed.playing::after{
  display: none;
}

.custom-video-embed.no-cover .gspb_image,
.custom-video-embed.no-cover .wp-block-cover,
.custom-video-embed.no-cover::before,
.custom-video-embed.no-cover::after{
	display: none;
}

.custom-video-embed.no-cover-title .wp-block-cover div,
.custom-video-embed.no-cover-title .wp-block-cover span{
  display: none;
}
/* enroll-row-wrapper */


@media (max-width: 1700px) {
  .enroll-row-wrapper>.gspb_row__content>.gspb_row__col--8{
    width: 60% !important;
  }
  .enroll-row-wrapper>.gspb_row__content>.gspb_row__col--4{
    width: 40% !important;
  }
}

@media (max-width: 1500px) {
  .enroll-row-wrapper>.gspb_row__content>.gspb_row__col--8{
    width: 60% !important;
    margin-left: 0 !important;
    padding-bottom: 0;
  }
  .enroll-row-wrapper>.gspb_row__content>.gspb_row__col--4{
    padding-top: 0;
    width: 100% !important;
  }
}

@media (max-width: 1300px) {
  .enroll-row-wrapper>.gspb_row__content>.gspb_row__col--8{
    width: 50% !important;
  }
}
@media (max-width: 990px) {

}
@media (max-width: 768px) {
  .enroll-row-wrapper>.gspb_row__content>.gspb_row__col--8{
    width: 90% !important;
  }
}
@media (max-width: 440px) {
  .enroll-row-wrapper>.gspb_row__content>.gspb_row__col--8{
    width: 100% !important;
  }
  .enroll-row-wrapper>.gspb_row__content>.gspb_row__col--4>.gspb_container>.gspb_container{
    /* max-width: 150px !important; */
  }
}

@media (max-width: 380px) {
  .enroll-row-wrapper>.gspb_row__content>.gspb_row__col--4>.gspb_container>.gspb_container{
    max-width: 174px !important;
    padding: 10px !important;
  }
}

/* support-hero-row-warpper */


@media (max-width: 1800px) {
  .support-hero-row-warpper>.gspb_row__content>.gspb_row__col--8{
    width: 60% !important;
  }
  .support-hero-row-warpper>.gspb_row__content>.gspb_row__col--4{
    width: 40% !important;
  }
}

@media (max-width: 1600px) {
  
  .support-hero-row-warpper>.gspb_row__content>.gspb_row__col--8{
    width: 57% !important;
  }
  .support-hero-row-warpper>.gspb_row__content>.gspb_row__col--4{
    width: 43% !important;
  }
}
@media (min-width: 1121px) {
  .support-hero-term-text-mobile{
    display: none !important;
  }
}
@media (max-width: 1120px) {
  .support-hero-row-warpper>.gspb_row__content>.gspb_row__col--8{
    width: 100% !important;
    margin-left: 0 !important;
  }
  .support-hero-row-warpper>.gspb_row__content>.gspb_row__col--4{
    width: 100% !important;
  }

  .support-custom-dropdwon-desktop,
  .hero-content-section.support-hero-content-section .fs-custom-dropdown-desktop,
  .support-hero-term-text,
  .hero-content-section.support-hero-content-section .hero-image-tablet{
    display: none !important;
  }

  .support-custom-dropdwon-mobile .gsbp-8976bfc,
  .support-custom-dropdwon-mobile,
  .support-hero-term-text-mobile,
  .hero-content-section.support-hero-content-section .hero-image-mobile{
    display: block !important;
  }

  .hero-content-section.support-hero-content-section{
    height: 104vh !important;
  }
}

@media (max-width: 1100px) {
  .support-hero-row-warpper>.gspb_row__content>.gspb_row__col--8{
    
  }
  .support-hero-row-warpper>.gspb_row__content>.gspb_row__col--4{
    
  }
}

@media (max-width: 990px) {
  .hero-content-section.support-hero-content-section{
    height: auto !important;
  }
  .support-hero-row-warpper{
    padding-bottom: 100px !important;
  }
  .support-hero-row-warpper>.gspb_row__content>.gspb_row__col--8{
    
  }
  .support-hero-row-warpper>.gspb_row__content>.gspb_row__col--4{
    
  }
}

@media (max-width: 768px) {
  .support-hero-row-warpper{
    padding-bottom: 0px !important;
  }
  .support-hero-row-warpper>.gspb_row__content>.gspb_row__col--8{
    width: 70% !important;
  }
}

@media (max-width: 600px) {
  .support-hero-row-warpper>.gspb_row__content>.gspb_row__col--8{
    width: 100% !important;
  }
}


.main-navigation .main-nav ul li.nav-button.current-menu-item>a, 
.main-navigation .main-nav ul li.nav-button.current-page-ancestor>a, 
.main-navigation .main-nav ul li.nav-button.current-menu-ancestor>a,
li.nav-button a{
  background-color: #ffc60a !important;
  color: var(--color-dark-navy) !important;
  /* border-radius: 20px !important; */
  /* padding: 8px 18px !important; */
	font-family: "agenda" ,sans-serif;
  font-size: 14px;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  height: 46px;
  padding: 16px 24px !important;
  margin: 0 !important;
  border-radius: 30px !important;
  border-bottom: none !important;
}
.main-navigation .main-nav ul li.nav-button.current-menu-item>a:hover, 
.main-navigation .main-nav ul li.nav-button.current-page-ancestor>a:hover, 
.main-navigation .main-nav ul li.nav-button.current-menu-ancestor>a:hover,
li.nav-button a:hover {
  background-color: var(--color-sunshine) !important;
  color: var(--color-dark-navy) !important;
}

/* to remove after launch pad18 0*/

@media (max-width: 767px) {
	.site-header.has-inline-mobile-toggle .nav-button a {
		margin: 24px 8px !important;
		width: 95vw;
		justify-content: center;
	}
	.site-header.has-inline-mobile-toggle {
  padding: 0;
}
}
@media (min-width: 768px) {
	.site-header.has-inline-mobile-toggle .nav-button {
		margin-bottom: 6px;
		margin-left: 15px;

	}

}

/* read more — scrollable variant
   .read-more-content-scroll is added automatically by custom.js to any read-more
   block sitting inside a clipping ancestor (.read-more-wrapper / .gs_content tab
   panel) — no manual class needed in the block markup. Expanding then reveals the
   full text inside a capped, internally scrolling box, so the Read more/less
   toggle that follows it in flow does not get pushed out of view. Used by the
   copay terms block on Support & Savings. Overrides
   .read-more-content.expanded .gspb_text (~line 1806), which releases the clamp
   with an uncapped height: auto. */
.read-more-content.read-more-content-scroll.expanded .gspb_text {
  display: block;
  height: auto;
  max-height: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 8px;
}

/* Long legal copy in a capped box needs to look scrollable, or the text reads as
   truncated. --color-deep-blue matches .wp-block-read-more.blue (~line 1860). */
.read-more-content-scroll.expanded .gspb_text::-webkit-scrollbar {
  width: 6px;
}

.read-more-content-scroll.expanded .gspb_text::-webkit-scrollbar-thumb {
  background-color: var(--color-deep-blue);
  border-radius: 3px;
}

/* move after launch */
/* .wp-block-greenshift-blocks-container.gspb_container.gspb_container-gsbp-f628c87 {
	display:none;
} */

@media (min-width: 1984px) {
	body.gspb-bodyfront #gspb_image-id-gsbp-055e53f {
		bottom: -100px;
	}
}



.gs_button_w_icon.yellow-button::after {

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='13' viewBox='0 0 14 13'%3E%3Cpath fill='%23003D74' d='M13.75,7.062 L8.25,12.312 C7.938,12.594 7.469,12.594 7.188,12.281 C6.906,11.969 6.906,11.5 7.219,11.219 L11.375,7.25 L0.75,7.25 C0.312,7.25 0,6.938 0,6.5 C0,6.094 0.312,5.75 0.75,5.75 L11.375,5.75 L7.219,1.812 C6.906,1.531 6.906,1.031 7.188,0.75 C7.469,0.438 7.969,0.438 8.25,0.719 L13.75,5.969 C13.906,6.125 14,6.312 14,6.5 C14,6.719 13.906,6.906 13.75,7.062 Z'/%3E%3C/svg%3E");
}

.gs_button_w_icon.yellow-button:hover {
	background-color: var(--color-sunshine) !important;
	color: var(--color-deep-blue) !important;
}

.wp-block-greenshift-blocks-row.gspb_row.gspb_row-id-gsbp-1041dcd .gspb_row__content{
	/* max-width:1000px !important; */
}


/* read-more-content-transcript */

.read-more-content-transcript .gspb_text::-webkit-scrollbar{
  background-color: #D9D9D9;
  border-radius: 10px;
  width: 8px;
}

.read-more-content-transcript .gspb_text::-webkit-scrollbar-thumb{
  background-color: #00529B;
  border-radius: 10px;
  width: 8px;
}
.read-more-content-transcript.expanded .read-more-content-text-wrapper .gspb_text{
  padding-right: 10px;
  overflow-y: auto;
  max-height: 340px;
  margin: 0;
}
.read-more-content-transcript.expanded .read-more-content-text-wrapper{
  margin-top: 12px;
  background: #E6F0F9;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
}
.read-more-content-transcript.expanded .read-more-content-text-wrapper.add-shadow{
  box-shadow: 0px 0px 40px rgba(0, 82, 155, 0.2);
}
.read-more-content-transcript.float-content .read-more-content-text-wrapper{
  position: absolute !important;
  z-index: 9;
  left: 0;
}
@media (max-width: 767.98px) {
  .gspb-switchwrap:has(:checked) .gspb__switch-handler {
    left: calc(100% - 35px) !important;
  }
}
@media (max-width: 575.98px) {
  .hero-blue-section.hero-text-section .hero-text-wrapper-dark {
    width: calc(100% - 40px) !important;
  }
  .gspb__switcher-control-wrapper{
    gap: 10px !important;

  }
}
@media (max-width: 359px) {
  .gspb__switcher-off-label-text,
  .gspb__switcher-on-label-text{
    font-size: 12px !important;
  }
}
@media (max-width: 380px) {
  .hero-blue-section.hero-text-section .hero-text-wrapper-dark h1,
  .hero-text-section .hero-text-wrapper h1 {
    font-size: 28px !important;
  }
}
.moa-module {
  background: #FEFBEC;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1200px) {
  #block-7 {
    order: 20 !important;
  }
}
@media (max-width: 575.98px) {
  body.gspb-bodyfront #gspb_container-id-gsbp-a970a45.gspb_container {

  }
}
@media (max-width: 1100px) {
  .cky-btn-revisit-wrapper{
    left: unset !important;
    right: 15px !important;
  }
}