@import"https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,700;1,400&family=Roboto+Condensed:wght@400;700&family=Material+Icons&display=swap";

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;
    --site-max-width: 80rem;

    /*========== Metro Colors ==========*/
    --rainforest-primary: #29856b;
    --rainforest-primary-hover: #185544;
    --rainforest-light-background: #baf1e1;
    --metro-navy: #263287;
    --metro-light-blue: #0072bc;
    --overcast-light-background: #f4f4f4;
    --color-black: #000;
    --color-dark-grey: #333;
    --color-light-grey: #ccc;
    --color-white: #fff;

    /*============links=================*/
    --color-link: #0056f5;
    --color-link-hover: #0056b3;
    --color-link-light: #4DA8DA; 
    --black-color-lighten: hsl(220, 20%, 18%);

   /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --subhead-font: 'Roboto Condensed', sans-serif;
    --body-font: Cabin, sans-serif;
    --normal-font-size: 16px;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-semi-bold: 500;

    /*========== borders, boxes and cards ==========*/
    --card-border-radius: 0px;
}

    /*======== HIDING KC ELEMENTS =========*/
    .global-header, 
    footer.footer,
    #langList,
    .alert-wrapper,
    .official-notification {
        display: none!important;
    }

    /*=============== BASE ===============*/
    * {
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    html {
        scroll-behavior: smooth;
        /*-webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;*/
        font-size: 100%;
        scroll-padding-top: 90px;
        /*overflow-x: hidden!important;*/
    }

    body {
        color: var(--color-dark-grey);
        background: #fff;
        font-family: var(--body-font);
        font-size: 16px;
        padding: 0;
        -webkit-font-smoothing: antialiased;
        width: 100%;
        overflow-x: hidden!important;
    }

    /*.anchor-target {
        position: relative;
    }

    .anchor-target::before {
        content: "";
        display: block;
        height: 72px; 
        margin-top: -72px;
        visibility: hidden;
    }*/


    #maincontent {
        overflow-x: hidden!important;
    }


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

    .sr-only-focusable:active,
    .sr-only-focusable:focus {
        position: static;
        width: auto;
        height: auto;
        overflow: visible;
        clip: auto;
        white-space: normal;
    }

    img {
        max-width: 100%;
    }

    .south-link-hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .nowrap {
        white-space: nowrap;
        display: inline-block;
        flex-wrap: nowrap;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: var(--subhead-font);
        font-weight: 500;
    }

    /* H1 */
    h1 {
        font-size: 2.75rem;
        line-height: 1.2;
    }

    /* H2 */
    h2 {
        font-size: 2.25rem;
        line-height: 1.3;
    }

    /* H3 */
    h3 {
        font-size: 1.75rem;
        line-height: 1.4;
    }

    /* H4 */
    h4 {
        font-size: 1.5rem;
        line-height: 1.5;
    }

    /* H5 */
    h5 {
        font-size: 1.25rem;
        line-height: 1.5;
    }

    /* H6 */
    h6 {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Default paragraph */
    p {
        font-size: 1rem;
        /* Set to 16px or 1rem */
        line-height: 1.5;
        
    }

    h1,
    h2,
    h3,
    h4 {
        color: var(--metro-navy);
        /* Set default text color */
    }

    a {
        color: var(--color-link);
        /* Set default text color */
    }

    h5,
    h6,
    p,
    ol,
    ul,
    li,
    figcaption,
    abbr,
    address {
        color: var(--color-dark-grey);
        /* Set default text color */
    }

    /* text element spacing */

    /* Heading spacing */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 1rem;
        
    }

    /* Paragraph spacing */
    p {
        margin-bottom: 1rem;
        
    }

    p:last-of-type {
        margin-bottom: 0;
    }

    h2+p,
    h3+p,
    h4+p {
        margin-top: 1.25rem;
    }

    /* List spacing */
    ol,
    ul {
        margin-bottom: 1rem;
        padding-inline-start: 2rem;
    }

    /* List items */
    li {
        margin-bottom: 0.5rem;   
    }
    li:last-child {
        margin-bottom: 0;   
    }

    p + ol,
    p + ul {
        margin-top: 1rem;
    }

    /* Figure captions */
    figcaption {
        margin-top: 1rem;
        
        margin-bottom: 1rem;
        
    }

    /* Abbreviations */
    abbr {
        margin-right: 0.5rem;
        
    }

    /* Address */
    address {
        margin-bottom: 1rem;
        
    }

    /*==================================
      TEXT COLORS
  ==================================*/
    /*p {
        max-width: 65rem;
        margin-inline: auto;
    }*/

    /*==================================
      TEXT COLORS
  ==================================*/
    /* in containers with background colors */
    .container-royal-blue h1,
    .container-royal-blue h2,
    .container-royal-blue h3,
    .container-royal-blue h4,
    .container-royal-blue h5,
    .container-royal-blue h6,
    .container-royal-blue p,
    .container-royal-blue ul,
    .container-royal-blue ol {
        color: #fff;
    }

    /*===================================
       BACK TO TOP
    ====================================*/
    body .floating-action-button {
        display:none;
        width:48px;
        height:48px;
        border-radius:50%;
        background-color:var(--rainforest-primary);
        color:#fff;
        font-size:48px;
        cursor:pointer;
        position:fixed;
        right:40px;
        bottom:40px;
        z-index:20;
        box-shadow: 0 4px 10px hsl(0deg 0% 0% / 0.3);
      }
      @media(max-width: 767.98px) {
        body .floating-action-button {
          right:20px;
          bottom:20px
        }
      }
      body .floating-action-button.fab-top {
        top:40px
      }
      @media(max-width: 767.98px) {
        body .floating-action-button.fab-top {
          top:20px
        }
      }

    /*===================================
       ACCORDIONS
    ====================================*/
    .accordion-button {
        font-size: 1.25rem;
    }
    .accordion-button:dir(rtl):after {
        margin-left: 0;
        margin-right: auto;
    }
    #accordion-quick-definitions .accordion-item,
    #accordion-quick-definitions .accordion-button {
        background-color: transparent;
    }
    #accordion-quick-definitions .accordion-item {
        border-bottom: 1px solid #999;
    } 

    /*========== Branding ========================*/
    .metro-navbar-logo-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-end;
        gap: 0;
    }

    .navbar-logo-kcm {
        flex: 1;
        align-self: flex-start;
        max-width: 146px;
        max-height: 54px;
        margin-top: 2px;
        transition: all .3s;
    }

    .navbar-logo-stacked-ze {
        flex: 1;
        align-self: flex-end;
        width: 136px;
        max-height: 40px;
        margin-bottom: 6px;
        margin-left: 24px;
        transition: all .3s;
    }

    .navbar-logo-horizontal-ze {
        flex: 1;
        align-self: flex-end;
        max-width: 269px;
        max-height: 20px;
        /* margin-bottom: 6px; */
        margin-left: 24px;
    }

    .project-branding {
        width: 50%;
        max-width: 267px;
        transition: width 0.3s ease
    }
    

    @media(max-width: 992px) {
        .navbar-logo-kcm {
            max-width: 124px;
            max-height: 45px;
            flex: 0 1 auto;
        }

        .navbar-logo-horizontal-ze {
            max-width: 200px;
            max-height: 18px;
            flex: 0 1 auto;
        }

        .navbar-logo-stacked-ze {
            max-height: 40px;

        }
        .project-branding {
            width: 65%;
        }
    }

    @media(max-width: 768px) {
        .project-branding {
            width: 60%;
        }
    }

    @media(max-width: 479px) {
        .navbar-logo-kcm {
            max-width: 96.5;
            max-height: 36px;
        }

        .navbar-logo-horizontal-ze {
            max-width: 139.5;
            max-height: 14px;
        }
    }

    /*========== Responsive typography ==========*/
    @media screen and (min-width: 1024px) {
        :root {
            --normal-font-size: 1rem;
        }
    }



    /*=============== HEADER ===============*/
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        /*background: none;*/
        background-color: var(--rainforest-primary);
        box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
        z-index: 1000;
    }

    .header a {
        text-decoration: none;
    }

    /*=============== NAV ===============*/
    .nav-container {
        height: 72px;
        padding-inline: 5%;
    }

    .nav__list,
    .nav__list li {
        list-style: none;
        margin-bottom: 0;
    }

    .nav__logo,
    .nav__burger,
    .nav__close {
        color: var(--color-white);
    }

    .nav__data {
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav__logo {
        display: inline-flex;
        align-items: center;
        column-gap: .25rem;
        font-weight: var(--font-semi-bold);
    }

    .nav__logo i {
        font-weight: initial;
        font-size: 1.25rem;
    }

    .nav__toggle {
        position: relative;
        width: 32px;
        height: 32px;
    }

    .nav__burger,
    .nav__close {
        position: absolute;
        width: max-content;
        height: max-content;
        inset: 0;
        margin: auto;
        font-size: 1.75rem;
        cursor: pointer;
        transition: opacity .1s, transform .4s;
    }

    .nav__close {
        font-size: 1.95rem;
    }

    .nav__close {
        opacity: 0;
    }

    /* Navigation for mobile devices */
    @media screen and (max-width: 992px) {
        .nav__menu {
            display: none;
            position: absolute;
            left: 0;
            top: 2.5rem;
            width: 100%;
            height: calc(100dvh - 3.5rem);
            overflow-y: auto;
            pointer-events: none;
            opacity: 0;
            transition: top .4s, opacity .3s;
        }

        .nav__menu::-webkit-scrollbar {
            width: 0;
        }

        .nav__list {
            background-color: var(--rainforest-primary);
            margin: 0;
            padding: 0;
            padding-top: 1rem;   
        }
    }

    @media (max-width: 479px) {
        .nav__menu {
            display: none;
        }
    }

    .nav__link {
        color: var(--color-white);
        /*background-color: var(--black-color);*/
        background-color: var(--rainforest-primary);
        font-weight: var(--font-semi-bold);
        padding: 1.25rem 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color .3s;
    }

    @media (max-width: 992px) {

        .nav__link,
        .dropdown__link {
            border-bottom: 1px solid var(--rainforest-light-background);
        }

        .nav__link+.dropdown__item {
            border-top: 1px solid var(--rainforest-light-background);
        }
    }

    .nav__link.active,
    .nav__link:hover {
        background-color: var(--rainforest-primary-hover);
    }

    /* Show menu */
    .show-menu {
        display: block;
        opacity: 1;
        top: 4.5rem;
        pointer-events: initial;
    }

    @media (max-width: 992px) {
        .show-menu {
            top: 4.5rem;
        }

        .show-menu .nav__list {
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            overflow-y: auto;
            height: calc(100dvh - 4.5rem);
            bottom: 0;
            padding-bottom: 1.5rem;
        }
    }

    @media (max-width: 479px) {
        .show-menu {
            top: 4rem;
        }

        .show-menu .nav__list {
            height: calc(100dvh - 4rem);
        }
    }

    /* Show icon */
    .show-icon .nav__burger {
        opacity: 0;
        transform: rotate(90deg);
    }

    .show-icon .nav__close {
        opacity: 1;
        transform: rotate(90deg);
    }

    /*=============== DROPDOWN ===============*/
    .dropdown__item {
        cursor: pointer;
    }

    .dropdown__arrow {
        font-size: 1.25rem;
        margin-left: 6px;
        font-weight: initial;
        transition: transform .4s;
    }

    /* Rotate dropdown icon */
    .dropdown__arrow.rotate {
        transform: rotate(180deg);
    }

    .dropdown__link,
    .dropdown__sublink {
        padding: 1.25rem 1.25rem 1.25rem 3.5rem;
        color: var(--color-white);
        background-color: var(--rainforest-primary-hover);
        display: flex;
        align-items: center;
        column-gap: .5rem;
        font-weight: var(--font-semi-bold);
        transition: background-color .3s;
    }

    .dropdown__link.active {
        position: relative;
        background-color: var(--black-color-lighten);
    }
    
    .dropdown__link.active .ri-check-line {
        position: absolute;
        left: 28px;
    }

    @media screen and (min-width: 993px) {
        .dropdown__link {
            padding: 1rem 1.25rem 1rem 3.5rem;
            border-bottom: 1px solid var(--rainforest-light-background);
        }
        .dropdown__link.active .ri-check-line {
            position: absolute;
            left: 6px;
        }
    }

    .dropdown__link i,
    .dropdown__sublink i {
        font-size: 1.25rem;
        font-weight: initial;
    }

    .dropdown__link.active,
    .dropdown__link:hover,
    .dropdown__sublink:hover {
        background-color: var(--black-color-lighten);
    }

    .dropdown__menu {
        display: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease-in-out;
    }

    .show-dropdown-menu {
        display: block;
        margin: 0;
        padding: 0;
        opacity: 1;
        top: 0;
        max-height: 1000px;
        transition: top .3s;
    }


    /*=============== DROPDOWN SUBMENU ===============*/
    .dropdown__add {
        margin-left: auto;
    }

    .dropdown__sublink {
        background-color: var(--black-color-lighten);
    }

    /*=============== BREAKPOINTS ===============*/
    /* For small devices */
    @media screen and (max-width: 479px) {
        .nav-container {
            height: 64px;
        }

        .nav__link {
            padding-inline: 1.5rem;
        }
    }

    /* For large devices */
    @media screen and (min-width: 993px) {
        .nav-container {
            height: 88px;
            margin-inline: auto;
            display: flex;
            justify-content: space-between;
        }

        .nav__toggle {
            display: none;
        }

        .nav__list {
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            /*column-gap: 3rem;*/
        }

        .nav__link {
            height: 3.5rem;
            padding: 0 1.5rem;
        }

        .nav__link:last-child {
            height: 3.5rem;
            padding: 0 1.15rem;
            max-width: 275px;
        }

        .nav__link:hover {
            background-color: var(--rainforest-primary-hover);
        }

        .dropdown__item,
        .dropdown__subitem {
            position: relative;
            max-width: 275px;
            white-space: nowrap
        }


        .dropdown__menu,
        .dropdown__submenu {
            max-height: 75dvh !important;
            width: 275px;
            overflow-y: auto;
            position: absolute;
            left: 0;
            top: 6rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s, top .3s;
        }


        .dropdown__menu {
            background-color: var(--rainforest-primary-hover);
        }

        .dropdown__menu-right,
        .dropdown__submenu-right {
            left: unset;
            right: 0;
        }

        .dropdown__link,
        .dropdown__sublink {
            padding-inline: 2rem 3.5rem;
        }

        .dropdown__subitem .dropdown__link {
            padding-inline: 1rem;
        }

        .dropdown__submenu {
            position: absolute;
            left: 100%;
            top: .5rem;
        }

        /* Show dropdown menu */
        .show-dropdown-menu {
            display: block;
            /*width: max-content;*/
            margin: 0;
            padding: 0;
            opacity: 1;
            top: auto;
            pointer-events: initial;
            transition: top .3s;
        }
    }

    /*==================================
       BANNER IMAGE SECTION
  ===================================*/
    @media (min-width: 992px) {
        #introduction {
        position: relative;
        width: 100%;
        margin-top: calc(var(--header-height) + 2rem);
        padding: 3rem 3.3rem;
    }
}

    @media (max-width: 991px) {
        #introduction {
            margin-top: calc(var(--header-height) + 1rem);
            padding: 4rem 3.25rem;
        }
    }

    @media (max-width: 768px) {
        #introduction {
            padding: 2rem 5% 3rem;
        }
    }

    @media (max-width: 479px) {
        #introduction {
            margin-top: calc(var(--header-height) + .5rem);
        }
    }

    



    /*==================================
      GRID COLUMNS & BUTTON GRIDS (CSS GRID)
  ==================================*/
    .container {
        max-width: 1280px;
        /*padding-inline: 5%;*/
        padding-inline: 3.25rem;
        margin: 0 auto;
    }

    @media (max-width: 991px) {
        .container {
            padding-inline: 5%;
        }
    }

    .container-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-gap: 2rem;
    }

    .container-grid-column {
        border: 1px solid purple;
        text-align: left;
    }

    /* white container and full width */
    .container-white {
        background-color: var(--color-white);
    }

    /* royal blue container and full width */
    .container-royal-blue {
        background-color: var(--metro-light-blue);
    }

    .container-royal-blue.container-full-width {
        box-shadow: 0 0 0 100vmax var(--metro-light-blue);
        clip-path: inset(0 -100vmax);
        max-width: 100%;
    }

    /* overcast container and full width */
    .container-overcast {
        background-color: var(--overcast-light-background);
    }

    .container-overcast.container-full-width {
        box-shadow: 0 0 0 100vmax var(--overcast-light-background);
        clip-path: inset(0 -100vmax);
    }

    /* rainforest container and full width */
    .container-rainforest {
        background-color: var(--rainforest-primary);
    }

    .container-rainforest.container-full-width {
        box-shadow: 0 0 0 100vmax var(--rainforest-primary);
        clip-path: inset(0 -100vmax);
    }

    /* primary-light container and full width */
    .container-primary-light {
        background-color: var(--rainforest-light-background);
    }

    .container-primary-light.container-full-width {
        box-shadow: 0 0 0 100vmax var(--rainforest-light-background);
        clip-path: inset(0 -100vmax);
    }

    /* Button grid */
.btn-grid {
  display: grid;
  grid-gap: 16px; /* shorthand for both row and column gaps */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center;
  align-items: stretch !important;
}

    .btn-grid .btn {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 400px;
        text-align: center;
    }

    .btn-grid:has(:only-child) {
         justify-items: center;
    }

      #introduction .btn-grid {
        margin-block: 1.5rem;
      }
      
      .btn-full-width {
        grid-column: 1 / -1;
      }

      /* Media query for small screens */
        @media (max-width: 767px) {
            .btn-grid {
            grid-template-columns: 1fr;
            justify-items: center;
            }
        }

        @media (max-width: 991px) {
            #introduction .btn-grid {
                margin-block: 1.5rem 3rem;
              }
        }

    /*==================================
      BUTTONS
    ===================================*/
    .btn {
        border:1px solid transparent;
        border-radius:0!important;
        color:#333;
        font-family: var(--body-font)!important;
        text-transform: uppercase!important;
        padding:11px 20px!important;
        box-shadow:0px 2px 4px 0px rgba(0,0,0,.5)!important;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .btn.btn-primary {
        background:var(--rainforest-primary)!important;
        border:1px solid var(--rainforest-primary)!important;
        color:#fff!important;
      }

      .btn.btn-primary-light {
        background:var(--rainforest-light-background)!important;
        border:1px solid var(--rainforest-primary)!important;
        color:var(--rainforest-primary)!important;
      }
    
      .btn.btn-primary:hover,
      .btn.btn-primary-light:hover {
          background:var(--rainforest-primary-hover)!important;
          border:1px solid var(--rainforest-primary-hover)!important;
          color:#fff!important;
        }

        .btn.btn-secondary {
            background:var(--metro-light-blue)!important;
            border:1px solid var(--metro-light-blue)!important;
            color:#fff!important;
        }

        .btn.btn-secondary:hover {
            background:var(--metro-navy)!important;
            border:1px solid var(--metro-navy)!important;
            color:#fff!important;
        }

        .btn.btn-secondary-outline,
        .btn.btn-outline-secondary {
            background:#fff!important;
            border:1px solid var(--metro-light-blue)!important;
            color:var(--metro-light-blue)!important;
        }

        .btn.btn-secondary-outline:hover,
        .btn.btn-outline-secondary:hover {
            background:var(--metro-navy)!important;
            border:1px solid var(--metro-navy)!important;
            color:#fff!important;
        }
      
      

    /*==================================
      PADDING
  ==================================*/
    .padding-block-large,
    .py-6 {
        padding-block: 5rem;
    }
    .pt-6 {
        padding-top: 5rem;
    }
    .pb-6 {
        padding-bottom: 5rem;
    }

	@media (max-width: 991px) {
        .padding-block-large,
        .py-6 {
            padding-block: 4rem;
        }
        .pt-6 {
            padding-top: 4rem;
        }
        .pb-6 {
            padding-bottom: 4rem;
        }
    }

   @media (max-width: 768px) {
        .padding-block-large,
        .py-6 {
            padding-block: 3rem;
        }
        .pt-6 {
            padding-top: 3rem;
        }
        .pb-6 {
            padding-bottom: 3rem;
        }
    }

    /*==================================
      SECTION BANNERS
  ==================================*/
    @media (min-width: 768px) {
        .section-content-center {
            text-align: center;
        }
    }

    /*==================================
      GOALS
    ===================================*/
    .goals-item-icon-wrapper {
        flex:none;
        align-self:flex-start
      }
      .goals-item-icon-wrapper:dir(ltr) {
        margin-right:1.5rem
      }
      .goals-item-icon-wrapper:dir(rtl) {
        margin-left:1.5rem
      }
      .goals-image {
        width:100%;
        height:100%
      }
      .goals-component {
        grid-column-gap:5rem;
        grid-row-gap:4rem;
        grid-template-rows:auto;
        grid-template-columns:1fr 1fr;
        grid-auto-columns:1fr;
        align-items:center;
        display:grid
      }
      .goals-item-list {
        display: grid;
        grid-column-gap:1.5rem;
        grid-row-gap:2rem;
        grid-template-rows:auto;
        grid-template-columns:1fr;
        padding-top:.5rem;
        padding-bottom:.5rem;
      }
      .goals-item {
        display:flex
      }
      .goals-item-content p {
        font-family: var(--subhead-font);
        font-size:1.3125rem;
        font-weight:500;
        line-height:1.2;
      }
      .goals-item-content-sm p {
        font-family: var(--body-font);
        font-size: var(--normal-font-size);
        font-weight: 500;
        line-height: 1.5;
      }
      .icon-1x1-medium {
        width: 3rem;
        height: 3rem;
      }

      @media (max-width: 991px) {
        .goals-item-list {
            margin-bottom: 1.5rem;
          }
      }

/*==================================
CARDS
==================================*/
.card {
    border-radius: var(--card-border-radius);
}


    /*==================================
      BENEFITS CARD GRID
  ==================================*/

    .benefits-grid {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr 1fr;
        grid-auto-columns: 1fr;
        grid-auto-flow: dense;
        justify-content: space-between;
        display: grid;
        max-width: var(--site-max-width);
        margin-inline: auto;
    }

    @media screen and (max-width: 991px) {
        .benefits-grid {
            grid-row-gap: 4rem;
            grid-template-rows: auto auto auto;
            grid-template-columns: 1fr;
        }
    }

    .benefit-card {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        border: 1px solid var(--metro-light-blue);
        background-color: #fff;
        flex-direction: column;
        grid-template-rows: minmax(auto, 8rem) auto;
        grid-template-columns: 1fr;
        grid-auto-columns: 1fr;
        min-height: 16rem;
        display: flex;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    }

    .benefit-header {
        font-family: var(--subhead-font);
        background-color: var(--overcast-light-background);
        word-break: keep-all;
        align-items: center;
        padding: 1rem;
        display: flex;
        position: relative;
    }

    .benefit-icon {
        object-fit: fill;
        align-self: auto;
        width: 118px;
        max-width: 100%;
        height: 118px;
        margin-top: -1rem;
        margin-left: -0.5rem;
        display: block;
        position: relative;
        top: -1rem;
        left: -1.5rem;
        overflow: visible;
    }

    .benefit-icon-wrapper {
        aspect-ratio: 1;
        background-color: var(--metro-light-blue);
        object-fit: cover;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        width: 118px;
        height: 118px;
        margin-top: -1rem;
        margin-left: -0.5rem;
        display: flex;
        position: relative;
        top: -1.5rem;
        left: -1.5rem;
    }

    .benefit-icon-image {
        aspect-ratio: 1;
        object-fit: contain;
        width: 100%;
        max-width: 65px;
    }

    .benefits-header {
        color: var(--color-black);
        white-space: normal;
        margin-right: 0;
        font-size: 1.25rem;
    }

    .benefits-text {
        padding: 2.5rem;
    }

/*----------------------------------------------
      HERO SECTION
---------------------------------------------*/

.hero-container {
    width: 100%;
}

.hero-map-card-wrapper,
.hero-card-carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-card,
.hero-card-carousel-wrapper .hero-card {
    background-color: var(--metro-light-blue);
    padding: 0 30px 50px 40px;
    margin-top: 40px;
    color: white;
    width: 36%;
    position: relative;
}

.hero-card::before,
.hero-card-carousel-wrapper .hero-card::before {
    content: "";
    background-color: var(--metro-light-blue);
    height: 40px;
    width: calc(100% + 75px);
    position: absolute;
    top: -40px;
    left: 0;
}

.hero-card::after,
.hero-card-carousel-wrapper .hero-card::after {
    content: "";
    height: 100%;
    width: 75px;
    background: var(--metro-light-blue);
    position: absolute;
    top: 0;
    right: -75px;
    z-index: -1;
}

/* RTL adjustments */
.hero-card:dir(rtl)::before {
    content: "";
    background-color: var(--metro-light-blue);
    height: 40px;
    width: calc(100% + 75px);
    position: absolute;
    top: -40px;
    right: 0;
    left: auto;
}

.hero-card:dir(rtl)::after {
    content: "";
    height: 100%;
    width: 75px;
    background: var(--metro-light-blue);
    position: absolute;
    top: 0;
    left: -75px;
    right: auto;
    z-index: -1;
}
/* end RTL adjustments */

.hero-card-black,
.hero-card-black::before,
.hero-card-black::after {
    background-color: var(--color-black);
    color: #fff;
}

.hero-card-light-blue,
.hero-card-light-blue::before,
.hero-card-light-blue::after {
    background-color: var(--metro-light-blue);
    color: #fff;
}

.hero-card.text-white {
    color: var(--color-white);
}

.hero-card h2,
.hero-card h3,
.hero-card p,
.hero-card ul,
.hero-card li {
    color: inherit;
}

.hero-card a {
    color: #66CCFF;
    text-decoration: none;
}

.hero-card p:last-child {
    margin-bottom: 0;
}

.hero-carousel,
.hero-map,
.hero-accordion {
    position: relative;
    background-color: lightgrey;
    padding: 0;
    margin: 40px 0 0 0;
    width: 64%;
    transition: width 0.3s;
}

.hero-map {
    height: auto;
    overflow: hidden;
    padding: 1.5rem;
}

.hero-map img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.hero-map p {
    padding: 40px 60px;
    text-align: center;
}

.hero-card {
    width: calc(50% + 1.5rem);
}
.hero-map,
.hero-carousel {
    width: calc(50% - 1.5rem);
}
.hero-card .toggle-button {
    margin-top: 20px!important;
    margin-left: -10px!important;
    color: #fff!important;
    font-weight: 700!important;
}

@media (max-width: 992px) {
    .hero-map-card-overlap,
    .hero-card::before,
    .hero-card::after {
        display: none;
    }

    .hero-map-card-wrapper,
    .hero-card-carousel-wrapper {
        display: block;
    }

    .hero-card {
        /*padding: 45px 40px 60px;*/
        padding: 30px 36px 50px;
        margin-top: 0;
        color: white;
        width: auto!important;
    }

    .hero-carousel,
    .hero-map {
        width: 90%!important;
        margin: -30px 5% 0;
    }

    .hero-accordion {
        width: 90%;
        margin: -20px 5% 0;
    }
}

@media (max-width: 767px) {
    #section-hero {
        padding-inline: 24px;
    }

    .hero-card {
        /*padding: 45px 40px;*/
        padding: 24px 20px;
    }

    .hero-carousel,
    .hero-map {
        width: 100%!important;
        height: auto;
        margin: 0;
    }

    .hero-accordion {
        width: 100%;
        margin: 0;
    }
}

/* Carousel slide and captions */
.f-carousel__slide {
    background-color: #333;
}
.f-carousel__slide-caption {
    background-color: rgba(51, 51, 51, 0.8);
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 30px;
    text-align: left;
}
.f-thumbs.is-classic.is-horizontal {
	background-color: black;
}
.f-thumbs__slide__button {
    border:1px solid #333!important;
}


    /* map styles */

    #map {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
    }


    /*==================================
       Engagement events
    ===================================*/
    .engagement-events {
        display: flex;
        flex-direction: column;
        justify-content:  space-evenly;
        align-items: center;
        gap: 3rem;
        text-align: center;
    }

    @media (min-width: 576px) {
        .engagement-events {
            flex-direction: row;
        }
    }
    .events-item-title,
    .events-item-date {
        font-family: var(--subhead-font);
        font-size:1.3125rem;
        color: var(--color-dark-grey);
        margin: 0;
        padding: 0;
    }
    .events-item-title {
        font-weight: 600!important;
    }
    .events-item-date {
        margin-bottom: 1.25rem!important;
    }
      

    /*==================================
      TIMELINE
  ==================================*/
    /*-- GENERAL STYLES
  ------------------------------*/
    .timeline-wrapper {
        padding: 1rem 5%;
        text-align: center;
        height: auto;
        position: relative;
    }

    .timeline {
        position: relative;
        text-align: left;
        line-height: 1.4;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 1040px;
        max-width: var(--site-max-width);
    }




    /*----- TIMELINE ITEM -----*/
    .timeline-item {
        padding-left: 40px;
        position: relative;
        margin-bottom: 0;
    }
    .timeline-item:dir(rtl) {
        padding-right: 40px;
        padding-left: 0;
    }

    .timeline-item:last-child {
        padding-bottom: 0;
    }

    /*----- TIMELINE INFO -----*/
    .timeline-info h3 {
        font-family: var(--subhead-font);
        font-size: 1.25rem;
        font-weight: 400;
        color: var(--metro-light-blue);
        /*letter-spacing: 1px;*/
        margin: 0 0 1em 0;
        /*text-transform: uppercase;*/
        white-space: nowrap;
    }

    @media (max-width: 767px) {
        .timeline-info {
            text-align: left;
        }
        .timeline-info:dir(rtl) {
            text-align: right;
        }
    }

    /*----- TIMELINE MARKER -----*/
    .timeline-marker {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 15px;
    }

    .timeline-marker:dir(rtl) {
        left: static;
        right: 0;
    }

    .timeline-marker:before {
        background: var(--metro-light-blue);
        border: 3px solid transparent;
        border-radius: 100%;
        content: "";
        display: block;
        height: 15px;
        position: absolute;
        top: 4px;
        left: 0;
        width: 15px;
        transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
    }

    .timeline-marker:after {
        content: "";
        width: 3px;
        background: #ccd5db;
        display: block;
        position: absolute;
        top: 24px;
        bottom: 0;
        left: 6px;
    }

    .timeline-item:last-child .timeline-marker:after {
        content: "";
        width: 3px;
        background: linear-gradient(to bottom,
                rgba(204, 213, 219, 1) 0%,
                rgba(204, 213, 219, 0) 100%);
        display: block;
        position: absolute;
        top: 24px;
        bottom: 0;
        left: 6px;
        z-index: -1;
    }

    .timeline-item:not(.period):hover .timeline-marker:before {
        background: transparent;
        border: 3px solid var(--metro-light-blue);
    }

    /*----- TIMELINE CONTENT -----*/
    .timeline-content {
        padding-bottom: 60px;
    }

.timeline-item:last-child .timeline-content {
    padding-bottom: 0;
}

    .timeline-content p:last-child {
        margin-bottom: 0;
    }

    .timeline-content .timeline-panel {
        border: 1px solid var(--metro-light-blue);
        background-color: var(--overcast-light-background);
        color: var(--color-dark-grey);
        padding: 20px;
    }

    .timeline-content .timeline-panel:dir(rtl) {
        text-align: right;
    }

    .timeline-panel h4 {
        font-family: var(--subhead-font);
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--color-dark-grey);
        margin-bottom: .75rem;
    }

    .timeline-panel h4 + p {
        margin-top: 0;
    }

    .timeline-content .timeline-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .timeline-content p+.timeline-image {
        margin-top: 8px;
    }

    .timeline-content .timeline-image+p {
        margin-top: 14px;
    }

    /*----- TIMELINE PERIOD -----*/
    .period {
        padding: 0;
    }

    .period .timeline-info {
        display: none;
    }

    .period .timeline-marker::before {
        background: transparent;
        content: "";
        width: 15px;
        height: auto;
        border: none;
        border-radius: 0;
        top: 0;
        bottom: 30px;
        position: absolute;
        border-top: 3px solid #ccd5db;
        border-bottom: 3px solid #ccd5db;
    }

    .period .timeline-marker::after {
        content: "";
        height: 32px;
        top: auto;
    }

    .period .timeline-content {
        padding: 40px 0 70px;
    }

    .period .timeline-title {
        margin: 0;
    }

    /*----------------------------------------------
      MOD: TIMELINE SPLIT
  ----------------------------------------------*/
    @media (min-width: 768px) {

        .timeline-split .timeline,
        .timeline-centered .timeline {
            display: table;
        }

        .timeline-split .timeline-item,
        .timeline-centered .timeline-item {
            display: table-row;
            padding: 0;
        }

        .timeline-split .timeline-info,
        .timeline-centered .timeline-info,
        .timeline-split .timeline-marker,
        .timeline-centered .timeline-marker,
        .timeline-split .timeline-content,
        .timeline-centered .timeline-content,
        .timeline-split .period .timeline-info {
            display: table-cell;
            vertical-align: top;
        }

        .timeline-split .timeline-marker,
        .timeline-centered .timeline-marker {
            position: relative;
        }

        .timeline-split .timeline-content,
        .timeline-centered .timeline-content {
            padding-left: 30px;
        }

        .timeline-split .timeline-info,
        .timeline-centered .timeline-info {
            padding-right: 30px;
            text-align: right;
        }

        .timeline-split .period .timeline-title,
        .timeline-centered .period .timeline-title {
            position: relative;
            left: -45px;
        }

        /* Right to Left */

        .timeline-centered .timeline-content:dir(rtl) {
            padding-right: 30px;
            text-align: right;
        }

        .timeline-centered .timeline-info:dir(rtl) {
            padding-left: 30px;
            text-align: left;
        }
    }

    /*----------------------------------------------
      MOD: TIMELINE CENTERED
  ----------------------------------------------*/
    @media (min-width: 992px) {

        .timeline-centered,
        .timeline-centered .timeline-item,
        .timeline-centered .timeline-info,
        .timeline-centered .timeline-marker,
        .timeline-centered .timeline-content {
            display: block;
            margin: 0 auto;
            padding: 0;
        }

        .timeline-centered .timeline-item {
            position: relative;
            padding-bottom: 80px;
            overflow: hidden;
        }
        
        .timeline-centered .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-centered .timeline-marker {
            position: absolute;
            left: 50%;
            margin-left: -7.5px;
        }

        .timeline-centered .timeline-info,
        .timeline-centered .timeline-content {
            width: 50%;
        }

        .timeline-centered>.timeline-item:nth-child(odd) .timeline-info {
            float: left;
            text-align: right;
            padding-right: 30px;
        }

        .timeline-centered>.timeline-item:nth-child(odd) .timeline-content {
            float: right;
            text-align: left;
            padding-left: 30px;
        }

        .timeline-centered>.timeline-item:nth-child(even) .timeline-info {
            float: right;
            text-align: left;
            padding-left: 30px;
        }

        .timeline-centered>.timeline-item:nth-child(even) .timeline-content {
            float: left;
            text-align: left;
            padding-right: 30px;
        }

        .timeline-centered>.timeline-item.period .timeline-content {
            float: none;
            padding: 0;
            width: 100%;
            text-align: center;
        }

        .timeline-centered .timeline-item.period {
            padding: 50px 0 90px;
        }

        .timeline-centered .period .timeline-marker:after {
            height: 30px;
            bottom: 0;
            top: auto;
        }

        .timeline-centered .period .timeline-title {
            left: auto;
        }
    }

    .timeline-wrapper .opp-charger-icon {
        width: 130px;
        margin: -56px auto 1rem;
    }

    @media (max-width: 991px) {
        .timeline-wrapper .opp-charger-icon {
            width: 120px;
            margin: -50px auto -3.25rem 16%;
        }
    }

    /*----------------------------------------------
      MOD: MARKER OUTLINE
  ----------------------------------------------*/
    .marker-outline .timeline-marker:before {
        background: transparent;
        border-color: #ff6b6b;
    }

    .marker-outline .timeline-item:hover .timeline-marker:before {
        background: #ff6b6b;
    }

    /* fade in effect */
    .timeline-item {
        opacity: 0.2;
        opacity: 1;
        transition: opacity 0.5s ease;
    }

    .timeline-item.visible {
        opacity: 1;
    }


/* forms styles to get the cognito forms inputs closer to KC styles */
.cog-cognito--styled .el-input__inner, 
.cog-cognito--styled .el-textarea__inner {
    width: 100%;
    background-color: #f2f2f2 !important;
    border: 0 !important;
    height: 56px !important;
    padding-inline: 15px !important;
    border-bottom: 1px solid #666 !important;
    border-radius: 0 !important;
    font-size: 1.1rem;
}
.cog-cognito--styled .el-textarea__inner {
    min-height: 150px !important;
}
.cog-cognito--styled .el-input__inner:focus-visible {
    border-bottom: 4px solid (--rainforest-primary) !important;
}
.cog-cognito--styled .el-input__inner::placeholder {
    color: #999 !important;
    opacity: 1;
}
.cog-cognito--styled .cog-label {
    font-size: 1rem!important;
}
.cog-cognito--styled .cog-button--primary {
    background:var(--rainforest-primary)!important;
    border:1px solid var(--rainforest-primary)!important;
    border-radius:0!important;
    color:#fff!important;
    font-family: var(--body-font)!important;
    text-transform: uppercase!important;
    padding:11px 20px!important;
    box-shadow:0px 2px 4px 0px rgba(0,0,0,.5)!important;
  }

.cog-cognito--styled .cog-button--primary:hover {
    background:var(--rainforest-primary-hover)!important;
    border:1px solid var(--rainforest-primary-hover)!important;
  }  
/* specific styles for this cognito form */
#cog-form {
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #b0b0b0;
	overflow: hidden;
}
/*
@media (min-width: 578px){
#cog-form {
   padding: 15px 40px 30px;
    margin-left: 76px;
}
}*/


/*=============================================
    FOOTER STYLES
==============================================*/

.metro-footer {
    background-color: #333;
    color: #fff;
    line-height: 32px;
    font-size: 16px;
  }
  
  .metro-footer-nav {
    width: 100%;
    padding-block: 40px;
    color: #fff;
    line-height: 32px;
    font-size: 16px;
  }

.metro-footer-nav,
.metro-footer-legal-content {
      max-width: 1280px;
      padding-inline: 3.25rem;
      margin-right: auto;
      margin-left: auto;
    }

  .footer-legal-links:dir(rtl) {
    text-align: right;
  }
  
  .metro-footer-nav a,
  .footer-legal-links a {
    color: #fff;
    text-decoration: none;
  }
  
  .metro-footer-nav a:hover,
  .footer-legal-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  @media (max-width: 991px) {
    .metro-footer-nav,
    .metro-footer-legal-content {
      padding-inline: 5%;
    }
  }
  
  /* Metro logo */
  .metro-brand a {
    background-image: url(https://cdn.kingcounty.gov/-/media/king-county/depts/metro/logo-art/metro/metro-logo-reversed-200x75);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    width: 155px;
    height: 50px;
    margin-bottom: 20px;
    padding: 0;
    align-self: flex-start;
    display: block;
    text-indent: -9000px;
    text-decoration: none;
  }

  .metro-brand:dir(rtl) a {
    background-position: right center;
  }
  
  /* Social links and icons */
  .metro-social-links {
    margin-left: 0;
    display: flex;
    flex-flow: row wrap;
    gap: 12px;
  }
  
  .metro-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .metro-social-links a {
    width: 33px;
    height: 33px;
    background-size: contain;
    opacity: 0.5;
    text-indent: -9000px;
  }
  
  .metro-social-links a.facebook {
    background-image: url(https://cdn.kingcounty.gov/en/-/media/king-county/depts/metro/icons/social/facebook_icon_white_100x100.png);
  }
  
  .metro-social-links a.twitter-x {
    background-image: url(https://cdn.kingcounty.gov/en/-/media/king-county/depts/metro/icons/social/twitter_x_icon_white_100x100.png);
  }
  
  .metro-social-links a.instagram {
    background-image: url(https://cdn.kingcounty.gov/en/-/media/king-county/depts/metro/icons/social/instagram_icon_white_100x100.png);
  }
  
  .metro-social-links a.youtube {
    background-image: url(https://cdn.kingcounty.gov/en/-/media/king-county/depts/metro/icons/social/youtube_icon_white_100x100.png);
  }
  
  .metro-social-links a:hover {
    opacity: 1;
  }
  
  .metro-footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px; /* Adjust the gap as needed */
    margin: 0;
  }

@media(max-width: 1100px) {
      .metro-footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px; /* Adjust the gap as needed */
    margin: 0;
  }
}
  
  /* footer links */
  .footer-link-list {
    border-left: 1px solid var(--rainforest-primary);
    padding: 0 0 0 10px;
    text-align: left;
    color: #fff;
  }

  .footer-link-list:dir(rtl) {
    border-right: 1px solid var(--rainforest-primary);
    border-left: none;
    padding: 0 10px 0 0;
    text-align: right;
    color: #fff;
  }
  
  .footer-link-list ul,
  .footer-legal-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .metro-footer-container address {
    margin: 0;
    font-style: normal;
    line-height: inherit;
  }
  
  .metro-footer-container address,
  .metro-contact-group,
  .footer-link-list li {
    line-height: 1.6;
    color: #fff;
  }
  
  .footer-link-list .link-list-title {
    font-family: var(--body-font);
    font-size: 0.95rem !important;
    line-height: 1.938rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
  }
  
  @media (max-width: 992px) {
    .metro-footer-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .metro-footer-nav {
      padding-right: 0;
      padding-left: 0;
    }
    .metro-footer-container {
      grid-template-columns: 1fr;
      grid-gap: 0;
      margin-left: 0;
    }
    .footer-link-list:nth-child(2),
    .footer-link-list:nth-child(3),
    .footer-link-list:nth-child(4) {
      padding-top: 30px;
    }
    .metro-brand a {
      margin-bottom: 30px;
    }
  }
  
  /* bottom black bar */
  .metro-footer-legal {
    background-color: var(--color-black);
    padding-block: 30px;
    color: #fff;
    text-align: left;
  }
  
  .metro-footer-legal-content {
    width: 100%;
    line-height: 32px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .footer-legal-links ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .metro-footer-legal-content {
    color: #bbb;
  }
  
  .footer-legal-links a {
    color: #bbb;
  }
  
  .footer-legal-links a:hover {
    color: var(--color-white);
  }
  
  /* Footer button */
  .all-county-btn {
    display: flex;
    justify-content: center;
    align-content: center;
    font-size: 18px;
    text-transform: uppercase;
    color: #6c757d;
    border: 1px solid #6c757d;
    min-width: calc(25% - 30px);
    margin: 0;
    padding: 8px 20px;
    text-decoration: none;
    box-sizing: border-box;
  }
  .all-county-btn:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
  }

@media (max-width: 768px) {
    .footer-legal-links ul {
    flex-direction: column;
    gap: 0;
        margin-bottom: 20px;
  }
    .footer-legal-links li {
    margin: 0;
  }
}
  
  @media (max-width: 576px) {
    .metro-footer-nav,
    .metro-footer-legal-content {
      padding-inline: 5%;
    }
    .metro-footer-legal-content {
      flex-direction: column;
      gap: 40px;
    }
  }
  
  @media (max-width: 400px) {
    .footer-legal-links ul {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin: 0;
      padding: 0;
    }
  }

  .ze-logo-footer {
    width: 135px; 
    height: auto; 
    margin-top: -125px;
    margin-left: -10px;
}

.ze-logo-footer + .link-list-title {
    margin-top: -32px;
}
 
@media (max-width: 576px) {
    .ze-logo-footer {
        margin-top: 16px;
        margin-left: auto;
    }

    .ze-logo-footer + .link-list-title {
        margin-top: 16px;
    } 
}


#resources h2+h3 {
    margin-top: 1.25rem;
}

#resources h3 {
    font-family: var(--subhead-font);
    font-size:1.3125rem;
    color: var(--text-color--text-primary);
    margin: 0;
    padding: 0;
}

#resources h3+p {
        margin-top: .5rem;
    }
 
#resources p+h3 {
    margin-top: 1.5rem!important;
}

#resources .grid-container {
    display: grid;
    gap: 40px; /* Adjust the gap between columns as needed */
    padding: 0;
}

#resources .grid-item {
    background-color: #f2f2f2;
    padding: 20px 30px 30px;
}

/* Three columns on large screens */
@media (min-width: 992px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: 
            "col1 col2"
            "col1 col3";
    }
    .grid-item:nth-child(1) { grid-area: col1; }
    .grid-item:nth-child(2) { grid-area: col2; }
    .grid-item:nth-child(3) { grid-area: col3; }
}

/* Two columns over one at 991px */
@media (max-width: 991px) and (min-width: 768px) {
    #resources .grid-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: 
            "col1 col2"
            "col3 col3";
    }
    #resources .grid-item:nth-child(1) { grid-area: col1; }
    #resources .grid-item:nth-child(2) { grid-area: col2; }
    #resources .grid-item:nth-child(3) { grid-area: col3; }

}

/* One column at 768px */
@media (max-width: 767px) {
    #resources .grid-container {
        grid-template-columns: 1fr;
    }
}

  
/*=============================================
     Subscribe form 
==============================================*/
/* forms styles to get the forms inputs closer to KC styles */
.subscribe-form,
.subscribe-form-input {
    margin: 1.25rem 0;
    padding: 0;
}
.subscribe-form-input select, 
.subscribe-form-input input {
    width: 100%;
    background-color: #ffff !important;
    border: 0 !important;
    height: 56px !important;
    padding-inline: 15px !important;
    border-bottom: 1px solid #666 !important;
    border-radius: 0 !important;
    font-size: 1.1rem;
}
.subscribe-form-input label {
    font-family: var(--body-font);
}
.subscribe-form-input select:focus-visible
.subscribe-form-input input:focus-visible {
    border-bottom: 4px solid (--rainforest-primary) !important;
}
.subscribe-form-input input::placeholder {
    color: #999 !important;
    opacity: 1;
}
.subscribe-form-input label {
    font-size: 1rem!important;
    font-family: var(--subhead-font)!important;
    margin-bottom: 6.25px;
}
.subscribe-form-button input {
    background:var(--metro-light-blue)!important;
    border:1px solid var(--metro-light-blue)!important;
    border-radius:0!important;
    color:#fff!important;
    font-family: var(--body-font)!important;
    text-transform: uppercase!important;
    padding:11px 20px!important;
    box-shadow:0px 2px 4px 0px rgba(0,0,0,.5)!important;
  }

  .subscribe-form-button input:hover {
    background:var(--metro-navy)!important;
    border:1px solid var(--metro-navy)!important;
  }  


/*=============================================
     Card image enlarge icon 
==============================================*/
.image-enlarge {
    position: relative;
    display: inline-block; /* Use inline-block to make sure the container wraps around the content */
    border: 6px solid var(--rainforest-primary) !important;
}
  .image-enlarge a::after {
    content: "";
    background-image: url(/en/~/media/king-county/depts/metro/icons/png/zoom_out_map_FILL0_wght400_GRAD0_opsz48_white);
    background-color: var(--rainforest-primary);
    background-position: center center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
    height: 44px;
    width: 44px;
    opacity: 1;
    position: absolute;
    top: -5px; /* Offset from the top */
    left: -5px; /*Offset from the right */
  }

/*=============================================
     Table styles 
==============================================*/
.thead-dark th {
    background-color: var(--rainforest-primary);
    color: #fff;
}
.table-padding-1 th,
.table-padding-1 td {
    padding: .25rem;
}
.table-padding-2 th,
.table-padding-2 td {   
    padding: .5rem;
}
.table-padding-3 th,
.table-padding-3 td {   
    padding: 1rem;
}
.table-padding-4 th,
.table-padding-4 td {
    padding: 1.5rem;
}

/*=============================================
     Background colors
==============================================*/
.bg-dark-grey {
    background-color: var(--color-dark-grey);
}
.bg-dark-grey p {
    color: #fff;
}
.bg-dark-grey a {
    color: var(--color-link-light);  
}
.bg-light-grey {
    background-color: lightgrey;
}


/*=============================================
    Fancybox styles
==========================================*/
.fancybox__caption:dir(rtl) {
    direction: rtl;
}


/*=============================================
    Hide element on a specific date
==========================================*/
[data-hide-on] {
    display: none; /* Hide all by default */
  }
  [data-hide-on].show {
    display: block; /* Only show those with class added by JS */
  }
  