  :root {
        --gtiso-purple: #4F2D7F;
        --gtiso-dark-purple: #2B144D;
        --gtiso-bright-purple: #A06DFF;
        --gtiso-teal: #00838F;
        --gtiso-new-teal: #00A4B3;
        --gtiso-red: #ce2c2c;
        --gtiso-coral: #FF5149;
        --gtiso-yellow: #FFC23D;
        --gtiso-white: #ffffff;
        --gtiso-black: #000000;
        --gtiso-gray: #CBC4BC;
        --gtiso-mid-gray: #E0DCD7;
        --gtiso-light-gray: #F2F0EE;
        --gtiso-dark-gray: #CCC4BD;
      }

      .gtiso-blackfont {
font-weight: 700 !important;
      }

      .gtiso-thinfont {
font-weight: 500 !important;
      }

    .gtiso-boldfont {
font-weight: 600 !important;
      }

      * {
        box-sizing: border-box;
        font-family: 'GT Walsheim', sans-serif, Arial;
        font-style: normal;
      }

    .gtaudit-inner {
      margin-left:20px ;
      margin-right:20px;
    }

      body {
        margin: 0;
        font-family: Arial, sans-serif;
        scroll-behavior: smooth;
      }

      .gtiso-wrapper header {
        position: fixed;
        top: 0;
        width: 100%;
        height: 70px;
        background: var(--gtiso-purple);
        color: var(--gtiso-white);
        z-index: 1000;
        transition: transform 0.3s ease;
      }

      .gtiso-wrapper header.hide {
        transform: translateY(-100%);
      }

      .gtiso-wrapper .nav {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        height: 70px;
        padding: 0 20px;
      }

      .gtiso-wrapper .logo {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
      }

      .gtiso-wrapper .logo img {
        height: 32px;
      }

      /* underline for logo */
      .gtiso-wrapper .logo::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 4px;
        background: var(--gtiso-white);
        transition: width 0.3s ease;
      }

      .gtiso-wrapper .logo:hover::after {
        width: 100%;
      }

      .gtiso-wrapper nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        height: 100%;
      }

      .gtiso-wrapper nav a {
        color: var(--gtiso-white);
        text-decoration: none;
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        font-size: 18px;
        font-weight:500;
      }

      .gtiso-wrapper nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 4px;
        background: var(--gtiso-white);
        transition: width 0.3s ease;
        pointer-events: none;
      }

      .gtiso-wrapper nav a:hover::after {
        width: 100%;
      }

      /* FIXED Hamburger */
      .gtiso-wrapper .hamburger {
        display: none;
        position: relative;
        width: 32px;
        height: 100%;
        justify-self: end;
        cursor: pointer;
      }

      .gtiso-wrapper .hamburger span {
        position: absolute;
        left: 4px;
        right: 4px;
        height: 3px;
        background: var(--gtiso-white);
        transition: all 0.3s ease;
        top: 50%;
        transform-origin: center;
      }

      /* spaced from center */
      .gtiso-wrapper .hamburger span:nth-child(1) {
        transform: translateY(-8px);
      }
      .gtiso-wrapper .hamburger span:nth-child(2) {
        transform: translateY(0);
      }
      .gtiso-wrapper .hamburger span:nth-child(3) {
        transform: translateY(8px);
      }

      /* CLEAN X animation */
      .gtiso-wrapper .hamburger.active span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
      }

      .gtiso-wrapper .hamburger.active span:nth-child(2) {
        opacity: 0;
      }

      .gtiso-wrapper .hamburger.active span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
      }

      /* underline touching header bottom */
      .gtiso-wrapper .hamburger::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 4px;
        background: var(--gtiso-white);
        transition: width 0.3s ease;
      }

      .gtiso-wrapper .hamburger:hover::after,
      .gtiso-wrapper .hamburger.active::after {
        width: 100%;
      }

      .gtiso-wrapper .mobile-menu {
        display: none;
        flex-direction: column;
        background: var(--gtiso-dark-purple);
      }

      .gtiso-wrapper .mobile-menu a {
        padding: 16px;
        color: var(--gtiso-white);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      }

      .gtiso-wrapper .mobile-menu a:hover {
        text-decoration: none;
        background: var(--gtiso-red);
        color: var(--gtiso-white) !important;
      }

      .gtiso-wrapper .mobile-menu a {
        padding: 16px;
        color: var(--gtiso-white);
        text-decoration: none;
      }

      .gtiso-wrapper .mobile-menu a:hover {
        text-decoration: none;
        background: var(--gtiso-red);
        color: var(--gtiso-white);
      }

      .gtiso-wrapper .mobile-menu a:hover {
        text-decoration: underline;
        color: var(--gtiso-red);
      }

      .gtiso-wrapper .mobile-menu.show {
        display: flex;
      }

      .gtiso-wrapper .progress-bar {
        position: fixed;
        top: 70px; /* always below header */
        left: 0;
        height: 10px;
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 900;
        transition: top 0.3s ease;
      }

      .gtiso-wrapper .progress-bar-inner {
        height: 100%;
        width: 0%;
        background: var(--gtiso-red);
      }

      .gtiso-wrapper section {
        padding: 0px 0px;
         
        /* min-height: 100vh; */
      }
      @media (max-width: 1024px) {
          .gtiso-wrapper nav a {        
              font-size: 17px;          
            } 
      }

      @media (max-width: 768px) {
        .gtiso-wrapper nav {
          display: none;
        }
        .gtiso-wrapper .hamburger {
          display: block;
        }
      }

      /* Back to top */
      .gtiso-wrapper .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        background: var(--gtiso-bright-purple);
        border: 2px solid var(--gtiso-white);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1200;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
      }

      .gtiso-wrapper .back-to-top.show {
        opacity: 1;
        visibility: visible;
      }

      .gtiso-wrapper .back-to-top svg {
        width: 20px;
        height: 20px;
        fill: var(--gtiso-white);
      }

      .gtiso-wrapper .back-to-top:hover {
        background: var(--gtiso-red);
      }

      @media (min-width: 769px) {
        .gtiso-wrapper .hamburger {
          display: none;
        }
      }

      .main-wrapper-footer {
        --footer-bg: #2e1a47;
        --text-color: #ffffff;
        --underline-color: #ffffff;

        width: 100%;
        background: var(--footer-bg);
        color: var(--text-color);
        padding: 60px 20px;
        
      }

    .main-wrapper-footer   #ot-sdk-btn.ot-sdk-show-settings, .main-wrapper-footer  #ot-sdk-btn.optanon-show-settings {
    font-family: "GT Walsheim", sans-serif, Arial;
    font-style: normal;
	    font-size: 1rem;
    border: 0;
    color: rgb(255, 255, 255);
    background-color: transparent !important;
    height: auto;
    white-space: normal;
    word-wrap: break-word;
    padding: .8em 0; 
    line-height: 1.5;
    cursor: pointer;
    -moz-transition: .1s ease;
    -o-transition: .1s ease;
    -webkit-transition: 1s ease;
    transition: .1s ease;
    border-block: none !important;
    text-align: left !important;
    padding-block: 0px !important;
     
    padding-inline: 0;
	line-height: 1.5;
    padding-bottom: 3px;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
    background-repeat: no-repeat;
    background-size: 0% 2px;
    background-position: left bottom;
    transition: background-size 0.4s;
}


#ot-sdk-btn.ot-sdk-show-settings:hover, #ot-sdk-btn.optanon-show-settings:hover {
    color: #fff;
    background-color: transparent !important;
	background-size: 100% 2px;
}

      /* Container now STACKED */
      .main-wrapper-container {
        max-width: 1200px;
        margin: 0 auto;
        display: block; /* force vertical flow */
      }

      /* Heading */
      .main-wrapper-heading {
        font-size: 18px;
        letter-spacing: 1px;
        margin-bottom: 16px;
        max-width:1200px;
      }

      .main-wrapper-heading::after {
        content: "";
        display: block;
        width: 60px;
        height: 2px;
        background: #fff;
        margin-top: 8px;
      }

      /* Links */
      .main-wrapper-links {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .main-wrapper-links li {
        margin-bottom: 12px;

      }

      .main-wrapper-links a {
        font-size: 1rem;
        color: #ffffff;
        text-decoration: none;
        line-height: 1.5;

        /* 👇 add space for underline */
        padding-bottom: 3px;

        background-image: linear-gradient(#ffffff, #ffffff);
        background-repeat: no-repeat;
        background-size: 0% 2px;
        background-position: left bottom;

        transition: background-size 0.4s ease;
      }

      .main-wrapper-links a:hover,
      .main-wrapper-links a:focus {
        background-size: 100% 2px;
      }

      /* Focus accessibility */
      .main-wrapper-links a:focus {
        outline: 2px solid #fff;
        outline-offset: 2px;
      }

      /* Bottom text (now clearly below) */
      .main-wrapper-bottom {
        margin-top: 40px;
        font-size: 13px;
        line-height: 1.6;
        color: #ffffff; /* all text white */
      }

      .main-wrapper-bottom p {
        margin-bottom: 14px;
        line-height: 18px;
      }

      /* Responsive spacing tweak only (no columns anymore) */
      @media (min-width: 768px) {
        .main-wrapper-bottom {
          margin-top: 50px;
        }
      }

      /* Main module */
      .mkto-sec-module {
        width: 100%;
        background-color: #008080;
        padding: 64px 0px;
        margin: 0;
        display: block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
        clear: both; /* extra safety */
      }

      /* Container */
      .mkto-sec-container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        padding: 80px 20px 60px;
      }

      /* Header wrapper (replaces <header>) */
      .mkto-sec-header-wrap {
        text-align: left;
        margin-bottom: 32px;
      }

      /* Title */
      .mkto-sec-header-wrap h2 {
        color: #ffffff;
        font-size:3rem;
        line-height:1.2;
        margin: 0 0 12px;
      }

      /* Subtitle */
      .mkto-sec-subtitle {
        color: #ffffff;
        font-size: 1.5rem;
        line-height: 32px;
        margin: 0;
        font-weight: 700;
      }

      /* Form wrapper */
      .mkto-sec-form-wrapper {
        width: 100%;
      }

      /* Placeholder */
      .mkto-sec-placeholder {
        width: 100%;
        min-height: 200px;
        border: 2px dashed rgba(255, 255, 255, 0.5);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        padding: 20px;
        text-align: center;
      }

      /* Marketo scoped overrides */
      .mkto-sec-module .mktoForm {
        width: 100% !important;
      }

      .mkto-sec-module .mktoForm input,
      .mkto-sec-module .mktoForm select,
      .mkto-sec-module .mktoForm textarea {
        width: 100% !important;
      }

      /* Focus accessibility */
      .mkto-sec-module input:focus,
      .mkto-sec-module select:focus,
      .mkto-sec-module textarea:focus {
        outline: 3px solid #ffffff;
        outline-offset: 2px;
      }

      .mktoForm .mktoFieldWrap {
       float:none !important;
      }

.mktoForm .mktoLabel {
  float:none !important;
}

.mktoForm .mktoRequiredField label.mktoLabel {
   
    color: #ffffff;
}

      /* Responsive */
      @media (max-width: 1024px) {
    .mkto-sec-header-wrap h2 {
              font-size: 2.438rem;
    line-height: 1.1;
        }

      /* Subtitle */
      .mkto-sec-subtitle {
        
            font-size: 1.25rem;
            line-height: 26px;
        
      }

      }
      @media (max-width: 768px) {
        .mkto-sec-module {
          padding: 48px 0px;
        }

    
      }

      /* Wrapper */
      .hero-main-wrapper {
        position: relative;
        width: 100%;
        height: 30vh; /* responsive height */
        max-height: 600px; /* cap it */
        min-height: 400px; /* avoid too small on mobile */
        overflow: hidden;
        top: 70px;
      }

      /* Background image layer */
      .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url("./images/h-2026-a-businessman-is-using-a-laptop.jpg");
        background-size: cover;
        background-position: center;
        transition: transform 0.6s ease;
        z-index: 1;
      }

      /* Gradient overlay */
      .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to right,
          rgba(0, 0, 0, 0.75) 0%,
          rgba(0, 0, 0, 0.55) 40%,
          rgba(0, 0, 0, 0.2) 70%,
          rgba(0, 0, 0, 0) 100%
        );
      }

      /* Hover zoom effect */
      .hero-main-wrapper:hover .hero-bg {
        transform: scale(1.08);
      }

      /* Content wrapper */
      .hero-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        align-items: center; /* vertical center */
        padding-left: 20px;
        padding-right: 20px;
      }

      /* Inner container */
      .hero-inner {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0px;
		padding-left: 20px;
        padding-right: 20px;
        color: #ffffff;
      }

      /* Typography */
      .hero-inner h1 {
       font-size: 4.375rem;
        line-height: 78px;
        margin-top: 0;
        margin-bottom: 24px;
        font-weight: 700;
      }

      .hero-inner h2 {
        font-size: 2.25rem;
        line-height: 42px;
        font-weight: 700;
        max-width: 700px;
        margin:0;

      }

      /* Responsive */
    @media (max-width: 1210px) {
        .hero-inner {
    
        padding: 0px;
		 
        
      }
      
    }

    @media (max-width: 1024px) {
    

     .hero-inner h1 {
      font-size: 54px;
      line-height: 60px;
      }    
      
      .hero-inner h2 {
      font-size: 1.813rem;
      line-height: 33px;
      }

    }

      @media (max-width: 768px) {
        .hero-main-wrapper {
          height: 350px;
          min-height: 350px
        }

        .hero-inner h1 {
          font-size: 46px;
          line-height: 56px;
          margin-bottom: 16px;
        }

      
      }

      @media (max-width: 480px) {

.hero-bg {
 
    background-image: url(./images/hm-2026-a-businessman-is-using-a-laptop.jpg);
 
}

        .hero-main-wrapper {
          height: 400px;
          min-height: 400px
        }

        .hero-inner {
   
    padding-left: 0px;
    padding-right: 0px;
     
}

   
      }

      /*intro module */

      .gtiso-into-module {
        --gtiso-into-max-width: 1200px;
        --gtiso-into-text-color: #1a1a1a;
        --gtiso-into-bg-color: #f3f4f6;
        --gtiso-into-heading-color: #000000;
        --gtiso-into-focus-color: #005fcc;

        font-family: Arial, sans-serif;
      }

      .gtiso-into-module * {
        box-sizing: border-box;
      }

      .gtiso-into-section {
        background: var(--gtiso-into-bg-color);
        padding: 60px 20px;
      }

      .gtiso-into-container {
        max-width: var(--gtiso-into-max-width);
        margin: 0 auto;
        padding-top:140px;
        padding-bottom:60px;
        display: flex;
        align-items: flex-start;
        gap: 40px;
        padding-left: 20px;
        padding-right: 20px;
      }

      .gtiso-into-content {
        flex: 1;
        color: var(--gtiso-into-text-color);
      }

      .gtiso-into-heading {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 32px;
        margin-top:0;
        color: var(--gtiso-into-heading-color);
      }

      .gtiso-into-text {        
        font-size: 1.125rem;
        line-height: 32px;
        font-weight:400;
        margin-bottom: 36px;
      }

      .gtiso-into-image {
        flex: 1;
      }

      /* ✅ Aspect ratio + crop control */
      .gtiso-into-image-wrap {
        width: 100%;
        aspect-ratio: 4 / 3; /* matches screenshot */
        overflow: hidden;
        border-radius: 20px;
      }

      .gtiso-into-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* crop nicely */
        object-position: center; /* adjust if needed */
        display: block;
      }

      /* Accessibility */
      .gtiso-into-module a:focus,
      .gtiso-into-module button:focus {
        outline: 3px solid var(--gtiso-into-focus-color);
        outline-offset: 2px;
      }

      /* Responsive */

      @media (max-width: 1024px) {

        .gtiso-into-heading {
          font-size: 2.438rem;
          line-height: 1.2;
        }

        .gtiso-into-text {        
          font-size: 1.063rem;
          line-height: 28px;
        }        

      }

      @media (max-width: 768px) {
        .gtiso-into-container {
          flex-direction: column;
        }


      }

      /* end intro module */

      /* start  Commitment to Impartiality module */
 /* ==================================
     Commitment to Impartiality Module
     Scoped Styles
  ================================== */

  .gtimp-module {
    width: 100%;
    background-color: #f3f1f0;
    padding: 72px 0px;
    box-sizing: border-box;

  }

  .gtimp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px 80px 20px;
    
  }

  .gtimp-heading-wrap {
    margin-bottom: 32px;
  }

  .gtimp-title {
    margin: 0;
    color: #000000;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    
  }

  .gtimp-content {
    max-width: 950px;
  }

  .gtimp-content p {
    margin: 0 0 28px;
    color: #1f1f1f;
    
    font-size: 1rem;
    line-height: 24px;
    font-weight: 400;
  }

  .gtimp-content p:last-child {
    margin-bottom: 0;
  }

  /* Accessibility */
  .gtimp-module * {
    box-sizing: border-box;
  }

  .gtimp-title:focus,
  .gtimp-content p:focus {
    outline: 3px solid #005fcc;
    outline-offset: 3px;
  }


  
  /* Tablet */
  @media screen and (max-width: 1024px) {
   .gtimp-title {
   
    font-size: 2.438rem;
    line-height: 1.1;
  
    
  }

   
  }

  /* Mobile */
  @media screen and (max-width: 767px) {
    .gtimp-module {
      padding: 48px 16px;
    }

    .gtimp-heading-wrap {
      margin-bottom: 24px;
    }

    .gtimp-title {
      line-height: 1.15;
    }

    .gtimp-content p {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 24px;
    }


      .gtimp-container {
 
    padding: 80px 0 70px;
    
  }
  }

  @media screen and (max-width: 489px) {
 .gtimp-container {
 
    padding: 80px 20px 70px;
    
  }

  .mktoForm, .mktoForm * {
  
        padding: 0px !important; 
    }
  }

  /* Reduced Motion Accessibility */
  @media (prefers-reduced-motion: reduce) {
    * {
      scroll-behavior: auto !important;
      transition: none !important;
    }
  }
      /* end Commitment to Impartiality module */
 /* start lifecycle title section  module */
  /* ==================================
     ISO Certification Process Module
     Fully Scoped Styles
  ================================== */

  .gtiso-process-module {
    width: 100%;
    background-color: #E0DCD7;
    padding: 0;
    box-sizing: border-box;
    
  }

  .gtiso-process-container {
    max-width: 1200px;
    margin: 0 auto;
    
  }

  .gtiso-process-heading-wrap {
    width: 100%;
    padding: 0 20px;
    padding-top: 80px;
    padding-bottom: 32px;
  }

  .gtiso-process-title {
    margin: 0 0 24px; 
    font-size: 3rem;
    line-height: 56px;   
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
  }

  .gtiso-process-title-light {

    color: #000000;
    font-weight: 400;
  }

  .gtiso-process-title-accent {
    color: #5b3696;
    font-weight: 700;
  }

  .gtiso-process-subtitle {
    margin: 0;
    color: #000000;
   font-size: 2.438rem;
    line-height: 45px;
    font-weight: 700;
     
  }

  /* Accessibility */
  .gtiso-process-module * {
    box-sizing: border-box;
  }

  .gtiso-process-title:focus,
  .gtiso-process-subtitle:focus {
    outline: 3px solid #005fcc;
    outline-offset: 4px;
  }

  /* Tablet */
  @media screen and (max-width: 1024px) {
    .gtiso-process-module {
      padding: 0;
    }

    .gtiso-process-title {
      font-size: 2.438rem;
    line-height: 45px;
      margin-bottom: 20px;
    }

  .gtiso-process-subtitle {
      font-size: 29px;
    line-height: 36px;
    }

  }

  /* Mobile */
  @media screen and (max-width: 767px) {
    .gtiso-process-module {
      padding: 48px 16px 40px;
    }

      .gtiso-process-heading-wrap {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 32px;
  }

    .gtiso-process-title {
      flex-direction: column;
      gap: 6px;
      margin-bottom: 18px;
    
    }

    .gtiso-process-heading-wrap {
    
    padding: 0px;
    padding-top: 80px;
    padding-bottom: 32px;
  }

  
  }

  /* Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
    * {
      scroll-behavior: auto !important;
      transition: none !important;
    }
  }
  /* end lifecycle title section module */
      /* start lifecycle module */
      .gt5-container {
        position: relative;
        width: 100%;
        max-width: 1200px;
        padding-left: 20px;
        padding-right:20px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;         
        padding-bottom:80px;
      }

      .gt5-links-box {
        position: absolute;
        top: 48px;
        background-color: #4f2d7f;
        padding: 0;
        z-index: 2;
        border-radius: 20px;
        width: 46%;
        box-shadow: 8px 8px 5px rgba(0, 0, 0, 0.4);
        overflow: hidden;
      }

      .gt5-links-box .gt5-main-links-box button {
        font-family: "GT Walsheim", sans-serif, Arial;
        font-size: 1.25rem;
        line-height: 1.4;
        font-style: normal;
        font-weight: 400;
        display: block;
        padding: 14px 20px;
        text-decoration: none;
        color: #fff;
        position: relative;
        transition: color 0.3s;
        position: relative;
        padding-right: 33px;
        border: none;
        width: 100%;
        background: #4f2d7f;
        text-align: left;
        cursor: pointer;
      }

      .gt5-links-box .gt5-main-links-box button:hover {
        color: #fff;
        text-decoration: none;
        background: #ce2c2c;
      }

      .gt5-links-box .gt5-main-links-box button.active {
        font-weight: 400;
        color: #fff;
        text-decoration: none;
        background: #a06dff;
      }

      .gt5-image-box {
        height: 100%;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        background-repeat: no-repeat;
      }

      .gt5-image-box:before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        content: "";
        z-index: 0;
      }

      .gt5-links-box .gt5-main-links-box button:before {
        background-image: url(./images/text-right-arrow-white.svg);
        position: absolute;
        right: 20px;
        width: 10px;
        height: 16px;
        top: 50%;
        content: "";
        background-repeat: no-repeat;
        transform: translateY(-50%);
      }

      .gt5-description {
        font-family: "GT Walsheim", sans-serif, Arial;
        font-size: 1.125rem;
        line-height: 32px;
        font-style: normal;
        font-weight: 400;
        position: absolute;
        bottom: 0;
        left: 0;
        width: calc(100% - 48px);
        margin: 24px;
        background-color: #ffffff;
        color: #000000;
        padding: 24px;
        box-sizing: border-box;
        border-radius: 20px;
        z-index: 1;
      }

      .gt5-accordion-main-content {
        display: none !important;
        /* Hiding accordion on desktop */
      }

      .gt5-tabs-main-desktop {
        position: relative;
        width: 82%;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        margin-left: auto;
      }

      .gt5-tabs-main-desktop .gt5-tab-content {
        display: none;
      }

      .gt5-tabs-main-desktop .gt5-tab-content.active {
        display: block;
      }

      .gt5-cta-block {
        display: flex;
        justify-content: flex-end;
        margin-top: 55px;
      }

      .gt5-cta-block a.gt-view-more-cta {
        color: #4f2d7f;
        font-family: "GT Walsheim", sans-serif, Arial;
        font-style: normal;
        font-size: 36px;
        line-height: 42px;
        font-weight: 700;
        text-decoration: none;
      }

      .gt5-cta-block a.gt-view-more-cta:hover,
      .gt5-cta-block a.gt-view-more-cta:focus {
        text-decoration: underline;
        cursor: pointer;
        color: #de002e;
        background-color: #ffffff;
      }

      .gt5-description .image-mobile-view {
        display: none;
      }

      @media (max-width: 1024px) {
        .gt5-links-box .gt5-main-links-box button {
          font-size: 1.125rem;
          line-height: 1.3;
          padding-right: 40px;
        }

        .gt5-description {
          font-size: 1.063rem;
          line-height: 28px;
        }

        .gt5-cta-block a.gt-view-more-cta {
          font-size: 29px;
          line-height: 33px;
        }

        .gt5-links-box {
          width: 40%;
        }
      }

      @media (max-width: 767px) {
        .gt5-container {
          flex-direction: column;
        }

        .gt5-image-box {
          width: 100%;
          margin: 0;
          background: #f5f3f2;
          height: 100%;
          position: relative;
          background-image: none !important;
          border-radius: 0;
        }

        .gt5-links-box .gt5-main-links-box button {
          margin: 0;
          padding-right: 40px;
          /* Increased margin between links */
        }

        .gt5-description {
          font-size: 1rem;
          width: 100%;
          /* Adjusting width to account for margin */
          border-radius: 0;
          padding: 0;
          margin: 0;
          position: relative;
          background: #f5f3f2;
        }

        .gt5-accordion-main-content.active {
          display: block !important;
          padding: 35px 24px;
          background: #f5f3f2;
        }

        .gt5-links-box {
          position: relative;
          width: 100%;
          box-shadow: none;
          padding: 0;
          margin: 0;
          border-radius: 0;
          top: 0;
        }

        .gt5-container > .gt5-image-box {
          display: none;
        }

        .gt5-links-box .gt5-main-links-box button:before {
          width: 10px;
          height: 20px;
          transform: translateY(-70%) rotate(90deg);
        }

        .gt5-links-box .gt5-main-links-box button.active:before {
          transform: translateY(-70%) rotate(270deg);
        }

        .gt5-tabs-main-desktop {
          display: none;
        }

        .gt5-description .image-mobile-view {
          display: block;
          margin-bottom: 16px;
        }

        .gt5-description .image-mobile-view img {
          border-radius: 20px;
        }
      }

      @media screen and (max-width: 600px) {
        .gt5-cta-block {
          display: flex;
          justify-content: flex-start;
        }
      }

      @media (max-width: 479px) {
        .gt5-accordion-main-content.active {
          padding: 35px 15px;
        }

        .gt5-description {
          width: 100%;
          margin: 0;
        }
      }

      /* end lifecycle module */


/* =========================================
   GTISO Certification Process Module
   Scoped + Responsive + Accessible
========================================= */

.gtiso-process-wrapper {
  --gtiso-primary: #4b2e83;
  --gtiso-text: #1f1f1f;
  --gtiso-body: #4a4a4a;
  --gtiso-bg: #ffffff;

  background: var(--gtiso-bg);
  padding: 80px 20px;
   
  color: var(--gtiso-text);
}

.gtiso-cert-process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gtiso-process-section {
  margin-bottom: 72px;
}

.gtiso-process-section:last-child {
  margin-bottom: 0;
}

.gtiso-process-section h3 {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--gtiso-primary);
  margin: 0 0 28px;
}

.gtiso-process-section p {
  font-size: 1rem;
  line-height: 24px;
  color: var(--gtiso-body);
  margin: 0 0 24px;
}

.gtiso-process-section ul,
.gtiso-process-section ol {
  margin: 0 0 28px 24px;
  padding: 0;
}

.gtiso-process-section li {
  font-size: 1rem;
  line-height: 24px;
  color: var(--gtiso-body);
  margin-bottom: 8px;
}

.gtiso-process-section strong {
  color: var(--gtiso-text);
}

.gtiso-process-section a {
  color: var(--gtiso-primary);
  text-decoration: underline;
  word-break: break-word;
}

.gtiso-process-section a:hover {
  text-decoration-thickness: 2px;
}

.gtiso-process-section a:focus-visible {
  outline: 3px solid var(--gtiso-primary);
  outline-offset: 3px;
}

/* Tablet */

@media (max-width: 1200px) {
  .gtiso-cert-process {
  
  padding: 0;
}
}

@media (max-width: 1024px) {
  .gtiso-process-section h3 {
    font-size: 1.813rem;
    line-height: 1.1;
  }

  .gtiso-process-section p,
  .gtiso-process-section li {
    font-size: 1rem
  }
}

/* Mobile */
@media (max-width: 767px) {
  .gtiso-process-wrapper {
    padding: 60px 20px ;
  }

  

  .gtiso-process-section {
    margin-bottom: 56px;
  }

  .gtiso-process-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .gtiso-process-section p,
  .gtiso-process-section li {
    font-size: 16px;
    line-height: 1.7;
  }

  .gtiso-process-section ul,
  .gtiso-process-section ol {
    margin-left: 20px;
  }
}    

/* form addtional fix */
.mktoForm .mktoAsterix {
    float: right;
    color: #ffffff;
    padding-left: 5px;
    display: none;
	padding: 0 !important;
    position: absolute;
    right: -10px;
}

 .ppRtext {
            margin-top: 15px;
        }


.mktoForm input[type=text], .mktoForm input[type=url], .mktoForm input[type=email], .mktoForm input[type=tel], .mktoForm input[type=number], .mktoForm input[type=date], .mktoForm select.mktoField, .mktoForm textarea.mktoField {
     
    background-color: #fff;
    line-height: 1.5em;
    color: #000;
    border: 1px solid #aeb0b6;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding: 0.2em 0.3em;
    box-shadow: inset 1px 1px 4px 1px #ddd;
    min-height: 1.9em;
    box-shadow: none;
    font-size: 1rem;
    height: 50px;
    margin-bottom: 17px;
    -webkit-box-ordinal-group: 4;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(102, 102, 102);
    border-image: initial;
    border-radius: 8px;
    padding: 12px 16px;

}   

.mktoForm textarea.mktoField {
    resize: none;
    height: 100px;
}

.mktoForm .mktoRequiredField label.mktoLabel {
    color: #ffffff;
    font-size: 14px;
    line-height: 32px;
	order: 1;
    padding: 0;
    position: relative;
    width: auto !important;
}

.mktoForm .mktoGutter {
  width:0 !important;
    height: 0.6em;
}

/* form upload */

.cmp-marketo-form--bg-new-teal .cmp-embed .mktoForm label.file-upload-label {
    color: rgb(255, 255, 255);
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
}

 .mktoForm label.file-upload-label {
    color: rgb(255, 255, 255);
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
}



.mktoForm label.file-upload-label {
cursor: pointer;
      font-size: 0.875rem;
    line-height: 24px;
    -webkit-box-ordinal-group: 2;
    order: 1;
    position: relative;
    padding: 0px 24px;
}


.mktoForm label.mktoLabel {
    align-self: flex-start;
    font-weight: 400;
    width: auto !important;
    margin: 0px 0px 12px;
}

.marketo-form .cmp-embed .mktoForm label.file-upload-label .file-upload-name {
 color: #ffffff;
  font-size: 0.875rem;
    pointer-events: none;
    position: absolute;
    right: -16px;
    top: 0px;
    transform: translateX(100%);
}

span.file-upload-name {
    color: #fff !important;
}

/* form upload */

.cmp-marketo-form--bg-new-teal .cmp-embed .mktoForm .mktoButtonWrap .mktoButton
{
  color: rgb(255, 255, 255);
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
}


 .mktoButton{
    border: 2px solid #ffffff;
    background: none;
    padding: 15px 30px;
    font-size: 1rem;
    line-height: 24px;
    border-radius: 10px;
    font-weight: 600;

}

 .mktoButton:hover{
    border: 2px solid #ffffff;
 color: #ce2c2c;
}

.marketo-form .cmp-embed.cmp-button--animate .mktoButton {
    position: relative;
    z-index: 3;
    overflow: hidden;
    text-decoration: none;
    transition: 0.5s;
}

  #mktoForm_6603 {
    @media only screen and (min-width: 1025px) {
        .ppRtext {
            margin-top: -6px;
            margin-left: 20px;
        }
    }
} 

        .mktoButton {
            margin-top: 10px;
        }

#mktoForm_6603 {
    @media only screen and (min-width: 1025px) {
        .mktoButton {
            margin-top: 10px;
        }
    }
} 

.mktoForm .mktoButtonWrap.mktoRound .mktoButton {
color: #ffffff !important;
    border: 2px solid #ffffff !important;
	border-radius: 10px !important;
	background-color: transparent !important;
	background-image: none !important;
	 padding: 10px 30px !important;
	 background: none !important;
}
.mktoForm .mktoButtonWrap.mktoRound .mktoButton:hover {
    border: 2px solid #ce2c2c !important;
 background: #ce2c2c !important;
}

/* end form addtional fix */

.marketo-form .cmp-embed .mktoForm label.file-upload-label .file-upload-name, .cmp-section--bg-purple.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm label.file-upload-label .file-upload-name, .cmp-section--bg-bright-purple.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm label.file-upload-label .file-upload-name, .cmp-section--bg-new-teal.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm label.file-upload-label .file-upload-name, .cmp-section--bg-teal.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm label.file-upload-label .file-upload-name {
    color: rgb(0, 0, 0);
    font-size: 0.875rem;
    pointer-events: none;
    position: absolute;
    right: -16px;
    top: 0px;
    transform: translateX(100%);
}

.marketo-form .cmp-embed .mktoForm *, .cmp-section--bg-purple.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm *, .cmp-section--bg-bright-purple.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm *, .cmp-section--bg-new-teal.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm *, .cmp-section--bg-teal.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm * 
 
 {
    font-family: "GT Walsheim", sans-serif, Arial;
    font-style: normal;
    font-weight: 400;
}

span.file-upload-name {
    color: #fff !important;
}

.mktoForm div, .mktoForm span, .mktoForm label, .mktoForm p {
    text-align: left;
    margin: 0;
    padding: 0;
}

.cmp-marketo-form--bg-teal .cmp-embed .mktoForm .mktoButtonWrap .mktoButton, .cmp-marketo-form--bg-new-teal .cmp-embed .mktoForm .mktoButtonWrap .mktoButton, .cmp-marketo-form--bg-teal .cmp-embed .mktoForm label.file-upload-label, .cmp-marketo-form--bg-new-teal .cmp-embed .mktoForm label.file-upload-label {
    color: rgb(255, 255, 255) ;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
}

.marketo-form .cmp-embed .mktoForm label.file-upload-label, .cmp-section--bg-purple.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm label.file-upload-label, .cmp-section--bg-bright-purple.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm label.file-upload-label, .cmp-section--bg-new-teal.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm label.file-upload-label, .cmp-section--bg-teal.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm label.file-upload-label {
    color: rgb(0, 0, 0);
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 24px;
    -webkit-box-ordinal-group: 2;
    order: 1;
    position: relative;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    border-image: initial;
    padding: 0px 24px;
}
.marketo-form .cmp-embed .mktoForm label.mktoLabel, .cmp-section--bg-purple.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm label.mktoLabel, .cmp-section--bg-bright-purple.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm label.mktoLabel, .cmp-section--bg-new-teal.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm label.mktoLabel, .cmp-section--bg-teal.cmp-section--sat-20 .marketo-form .cmp-embed .mktoForm label.mktoLabel {
    align-self: flex-start;
    color: rgb(0, 0, 0);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 14px;
    -webkit-box-ordinal-group: 2;
    order: 1;
    position: relative;
    width: auto !important;
    margin: 0px 0px 12px;
    padding: 0px;
}

input#file-upload-button {
color: #ffffff !important;
background: none;

}

input[type="file"]#mkto-file-upload {
height: 0;
    margin-bottom: 17px;
    opacity: 0;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 0;
}

label.file-upload-label {
cursor: pointer;
    font-size: .875rem;
    line-height: 24px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0 24px;
    position: relative;
	border: 2px solid #fff;
    color: #fff;
}

.mktoFieldWrap.file-upload-wrapper {
    flex-direction: column;
    display: flex;
}

.mktoFieldWrap.file-upload-wrapper input#mkto-file-upload {
    height: 0;
    opacity: 0;
    -ms-flex-order: 3;
    order: 3;
    width: 0 !important;
}

.mktoFieldWrap.file-upload-wrapper label.mktoLabel.file-upload-label {
    align-self: flex-start;
    width: auto !important;
}

.mktoFieldWrap.file-upload-wrapper span.file-upload-name {
    color: #000;
    font-size: .875rem;
    pointer-events: none;
    position: absolute;
    right: -16px;
    top: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

span.mktoButtonWrap {
margin-left: 0 !important;}

.mktoForm * {
    box-sizing: border-box;
    font-family: 'GT Walsheim', sans-serif, Arial;
    font-style: normal;
}




    @media (max-width: 1200px) {
		       .mkto-sec-container {
 
        
      }
	}	

  @media (max-width: 1024px) {
.mktoForm input[type=checkbox] + label:before {
    border-radius: 2px;
    border: solid 1px #999;
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    height: 20px;
    left: 20px;
    top: 1px;
    width: 20px;
}

.ppRtext span {
     margin-left: 30px !important;
}

.mktoForm .mktoOffset {
width: 0 !important;
}

.mktoForm .mktoFieldWrap.file-upload-wrapper {
    margin-top: 0px; 
}

  }

@media (max-width:489px) {
.mktoForm div.mktoLogicalField {

    border: solid 1px #999;
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    height: 20px;
    left: 20px;
    top: 1px;
    width: 20px;
}

    .mktoForm, .mktoForm * {

        padding: 0px; 
    }
}

}

#mktoForm_6603 {
    @media only screen and (min-width: 1025px) {
        .mktoButton {
            margin-top: 20px !important;
        }
    }
}

.mktoForm .mktoFieldWrap.file-upload-wrapper {
    margin-top: 20px;
}


#mktoForm_6603 {
    @media only screen and (min-width: 1025px) {
        .mktoFormRow:nth-child(2) .mktoFormCol:first-child .mktoHtmlText {
            text-align: left !important;
            padding: 0 30px 0 0;
        }
    }
}

.mktoForm select.mktoField {
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: "";
    padding: 0.2em 22px 0.2em 0.3em;
    background: #fff url(./images/down-cheveron-black.svg) center right no-repeat;
    background-size: 16px !important;
}
       