:root {
      --text-color: #666666;
      --text-dark: #121212;
      --primary: rgba(239, 67, 67, 1);
      --primary-5: rgba(239, 67, 67, 0.05);
      --primary-30: rgba(239, 67, 67, 0.3);
      --primary-hover: #FF684A;
      --primary-active: #EF4343;
      --primary-gradient: linear-gradient(97deg, #EF4343 0%, #F45925 100%);
      --primary-gradient-hover: linear-gradient(97deg, #FF684A 0%, #FF684A 100%);
      --primary-gradient-active: linear-gradient(97deg, #EF4343 0%, #EF4343 100%);
      --link-color: #0D6EFD;
      --nav-link-color: rgba(48, 64, 154, 0.8);
      --nav-link-color-hover: rgba(48, 64, 154, 1);
      --text-pill: rgba(25, 25, 25, 0.7);
      --theme-bg: rgba(197, 203, 235, 1);
      --background-gradient:
        radial-gradient(92.11% 69.98% at 100% 100%, rgba(250, 124, 68, 0.10) 0%, rgba(255, 174, 83, 0.00) 100%),
        radial-gradient(36.95% 42.4% at 50% 50%, rgba(250, 249, 247, 0.70) 0%,
        rgba(250, 249, 247, 0.00) 100%), linear-gradient(180deg, rgba(197, 203, 235, 0.40) 12.83%,
        rgba(250, 249, 247, 0.40) 83.39%);
      --border-white: rgba(255, 255, 255, 0.2);
      --border-grey: #E6E6E6;
      --border-grey-dark: #CFCFCF;
      --border-gradient: rgba(197, 203, 235, 0.50);
      --black: #000000;
      --white: #ffffff;
      --off-white: #FBFBFB;
      --off-white-2: #F7F7F7;
      --off-white-3: #FDFDFD;
      --box-shadow-1: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
      --box-shadow-2: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
      --box-shadow-3: 0 4px 20px 0 rgba(33, 37, 41, 0.15);
    }

    body {
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    h1, h2, h3, h4, h5, h6 {
      color: var(--text-dark);
      font-style:normal;
      font-weight:800;
      line-height:120%;
    }

    h1, h2, h3, h4 {
       margin-top:16px;
       margin-bottom: 16px;
    }

    h2, h3, h4, h5, h6 {
      font-weight:600;
    }

    h1 {font-size:36px;letter-spacing:-1px; margin-bottom:24px; margin-top: 0;}
    h2 {font-size:26px; margin-top:24px}
    h3 {font-size:23px;}
    h4 {font-size:20px}
    h5 {font-size:18px}
    h6 {font-size:15px}
    p {font-size:15px; margin-bottom: 16px; color: var(--text-color);}
    p span, p strong { color: var(--text-dark);}
    ul {margin-bottom: 24px}

    p a {
      color: var(--link-color);
    }

    p a:hover {
      text-decoration: underline;
    }

    @media (max-width: 992px) {
        h1 {font-size:30px}
        h2 {font-size:23px}
        h3 {font-size:20px}
        h4 {font-size:18px}
        h5 {font-size:16px}
        h6 {font-size:15px}
    }


    table {
      margin: 32px 0 !important;
    }

    @media (max-width: 992px) {
      table {
        display: block;
        overflow-x: auto;
        border: 0 !important;
      }
    }

    table th, table td {
      border-color: var(--border-grey) !important;
      padding: 8px 16px !important;
    }

    table td {
      color: var(--text-color) !important;
    }

    table th {
      background: var(--off-white-2) !important;
      color: var(--text-dark) !important;
      font-size: 13px !important;
      font-weight: 600 !important;
    }

    table tbody tr:nth-child(even) td {
      background: var(--off-white) !important;
    }

    /* RESETS */
    @media (max-width: 992px) {
      .container.layout {
        padding-left: 0;
        padding-right:0;
      }
    }

    /* CONTENT */

    body.home {
      background: var(--background-gradient);
    }

    body.page {
      background: var(--off-white-3);
    }

    nav {
      background: var(--white);
      border-bottom: 1px solid var(--border-grey);
    }

    .home nav {
      background:transparent;
      border-bottom: 1px solid var(--border-white);
    }

    nav .logo {
      max-width: 140px;
    }

    nav .navbar-brand,
    nav .nav-link,
    footer a,
    footer p {
      color: var(--text-color) !important;
    }

    nav .nav-link:hover,
    footer a:hover {
      color: var(--text-dark) !important;
    }

    .home .nav .navbar-brand,
    .home nav .nav-link,
    .home footer a,
    .home footer p {
      color: var(--nav-link-color) !important;
    }

    .home nav .nav-link:hover,
    .home footer a:hover {
      color: var(--nav-link-color-hover) !important;
    }

    .content {
      background: var(--off-white);
      flex: 1;
      max-width: 900px;
      margin: 0 auto;
      width: 100%;
    }

    .home .content {
      background: transparent;
    }

    /*
    @media (max-width: 992px) {
      .page .row>*,
      .page .row .row>* {
        padding: 0;
      }
      .page .row .row {margin:0;}
    }*/


    /* HERO */

    .home .item-content h1 {
      color: var(--black);
      font-size: 48px;
      font-style: normal;
      font-weight: 300;
      line-height: 120%;
      margin-bottom: 24px;
      text-align: center;
    }

    .home .item-content h4 {
      color: var(--black);
      font-size: 18px;
      font-weight: 300;
      line-height: 150%;
      text-align: center;
    }

    .home .item-content p {
      color: var(--black);
      font-size: 16px;
      font-weight: 400;
      line-height: 150%;
      margin-bottom: 16px;
      text-align: center;
    }

    @media (min-width: 992px) {
      .home .item-content p br {
        display:none;
      }
    }

    @media (max-width: 992px) {
      .home .item-content h1 {
        font-size: 38px;
      }
    }


    /* SEARCH BAR */

    .searchbar {
      background: var(--background-gradient);
      padding: 14px 0;
    }

    .searchbar form {
      align-items: center;
      background: #ffffff;
      border-radius: 16px;
      display: flex;
      gap: 6px;
      padding: 4px;
      max-width: 820px;
      margin: 0 auto;
    }

    .searchbar form input {
      background: transparent;
      border: none;
      outline: none;
      box-shadow: none;
      height: 36px;
      padding: 0 14px;
      font-size: 0.95rem;
    }

    .searchbar form input::placeholder {
      color: rgba(0, 0, 0, 0.5);
    }

    .searchbar form button {
      border: none;
      border-radius: 16px;
      height: 36px;
      padding: 0 16px;
      font-weight: 600;
      font-size: 0.9rem;
      background: var(--primary-gradient);
      color: var(--white) !important;
      white-space: nowrap;
    }

    .searchbar form button:hover,
    .searchbar form button:focus {
      background: var(--primary-gradient-hover);
    }

    .searchbar form button:active {
      background: var(--primary-gradient-active)!important;
    }


    /* SUBLIST BUTTON */


    .item-sublist a {
        display: block;
        text-decoration: none;
    }

    .item-sublist .cta-card {
        background: var(--border-white);
        border: 1px solid var(--border-grey-dark);
        border-radius: 999px;
        color:  var(--text-color);
        font-weight: 500;
        padding: 8px 14px;
        text-align: center;
        transition: all 80ms ease-in-out 50ms;
    }

    .item-sublist .cta-card:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: translateY(-1px);
        box-shadow: var(--box-shadow-2);
    }

    .item-sublist .filled .cta-card {
        background: var(--primary-gradient);
        border: none;
        color: var(--white);
    }

    .item-sublist .filled .cta-card:hover {
      background: var(--primary-gradient-hover);
    }

    .item-sublist .filled .cta-card:active {
      background: var(--primary-gradient-active);
    }


    /* SUBLIST CARDS OLD */


    a[aria-label] {
        display: block;
        padding: 0;
        color: inherit;
        text-decoration: none;
        margin-top: 25px
    }

    .wrapper {
        position: relative;
        height: 420px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 18px;
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        overflow: hidden;
        transition: transform .18s ease,box-shadow .18s ease;
        will-change: transform,box-shadow
    }

    .preview-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 240px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast
    }

    a[aria-label]:hover .wrapper,a[aria-label]:focus-within .wrapper {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0,0,0,.14)
    }

    @media (prefers-reduced-motion:reduce) {
        .wrapper {
            transition: box-shadow .18s ease
        }

        a[aria-label]:hover .wrapper,a[aria-label]:focus-within .wrapper {
            transform: none
        }
    }

    .preview-box {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        min-height: 176px!important;
        height: auto!important;
        display: grid;
        grid-template-rows: auto auto minmax(0,1fr) auto;
        row-gap: 6px;
        padding: 14px 24px 12px!important;
        box-sizing: border-box;
        background: #fff;
        border-top: 1px solid #eef2f7;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        overflow: hidden;
        z-index: 1
    }

    .preview-pill {
        display: inline-flex;
        align-items: center;
        justify-self: start;
        white-space: nowrap;
        font-weight: 600;
        font-size: 11px;
        line-height: 1;
        color: var(--link-accent-color);
        background: var(--link-accent-bg);
        padding: 4px 8px;
        border-radius: 999px;
        margin: 0
    }

    .preview-label {
        margin: 2px 0 0;
        font-weight: 400!important;
        font-size: 20px;
        line-height: 1.25;
        color: #0f172a!important;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        min-height: calc(2*1.25em)
    }

    .preview-content {
        font-weight: 400!important;
        color: #6b7280!important;
        font-size: 14.5px;
        line-height: 1.55;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        max-height: calc(2*1.55em);
        overflow-wrap: anywhere;
        word-break: break-word
    }

    .preview-content p,.preview-content div {
        margin: 0!important
    }

    .preview-content br {
        display: none
    }

    .preview-read-more {
        background: transparent;
        border: 0;
        box-shadow: none;
        height: auto;
        padding: 0;
        border-radius: 0;
        display: inline-block;
        cursor: pointer;
        font-size: 14px;
        font-weight: 400!important;
        line-height: 1;
        color: var(--link-accent-color);
        text-transform: none;
        align-self: end;
        justify-self: start;
        margin-top: auto
    }

    .preview-read-more i {
        display: none!important
    }

    a[aria-label]:hover .preview-label,a[aria-label]:hover .preview-read-more {
        font-weight: 400!important;
        letter-spacing: normal
    }

    a[aria-label]:hover .preview-label,a[aria-label]:hover .preview-content {
        color: inherit!important
    }

    @media (max-width: 992px) {
        .wrapper {
            height:380px
        }

        .preview-image {
            height: 220px
        }
    }

    @media (max-width: 768px) {
        .wrapper {
            height:340px
        }

        .preview-image {
            height: 200px
        }
    }

    @media (max-width: 576px) {
        .wrapper {
            height:300px
        }

        .preview-image {
            height: 180px
        }
    }

    /* SUBLIST CARDS */

    .sublist.card {
      border: none;
      border-radius: 6px;
      box-shadow: var(--box-shadow-2);
      transition: all 0.2s ease-in;
    }

    .sublist.card:hover {
      box-shadow: var(--box-shadow-3);
      color: var(--primary);
      transform: translateY(-4px);
    }

    .sublist.card h5 {
      margin-bottom: 0;
      font-weight: 500;
    }

    .sublist.card .card-body {
      padding: 16px;
    }

    @media (max-width: 767.98px) {

      .row div:has(> .sublist.card) {
        padding: 0 !important;
      }

      .row:has(> div .sublist.card) {
        margin:0;
        gap: 10px;
      }

      .sublist.card {
        display: flex;
        flex-direction: row;
        align-items: center;
      }

      .sublist.card .card-img-top {
        border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
        width: 120px;
        height: 100%;
        object-fit: cover;
        flex-shrink: 0;
      }

      .sublist.card .card-body {
        flex: 1;
        padding: 1rem;
      }

      .sublist.card .card-body * {
        line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
      }
    }

    /* BUBBLES */

    .item-sublist a {
     width: 100%;
    }

    .item.item-bubbles {
      margin-bottom: 32px;
    }

    .item-bubbles .row {
      margin: 0;
    }

    .bubbles-chip {
      align-items: center;
      background: var(--white);
      border: 1px solid var(--border-grey);
      border-radius: 12px;
      color: var(--text-dark);
      display: flex;
      font-weight: 500;
      height: 100%;
      padding: 16px 48px 16px 24px;
      position: relative;
      transition: padding 0.2s ease-in-out
    }

    .bubbles-chip:hover {
      background: var(--primary-5);
      border-color: var(--primary-30);
      padding-left: 20px
    }

    .bubbles-chip:active,
    .bubbles-chip:focus {
      background: var(--primary-30);
    }

    /*
    .bubbles-chip span {
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      line-clamp: 1;
    }*/

    .bubbles-link {
      display: block;
      width: 100%;
      max-width: 100%;
      text-decoration: none;
    }

    .bubbles-link .bubbles-outer {
      height: 100%;
      padding: 5px;
      max-width: 100%;
    }

    .col-gap:has(> .item-bubbles)::before {display: none !important}

    .bubbles-chip::after {
      content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%23EF4343'/%3E%3C/svg%3E%0A");
      position: absolute;
      right:16px;
      top: 50%;
      transform: translateY(-50%);
      transition: all 0.2s ease-in-out
    }

    .bubbles-chip:hover::after {
      right: 10px;
    }

    .filled .bubbles-chip {
      background: var(--primary-gradient);
      border: 0;
      color: var(--white);
      transition: all 0.2s ease-in-out
    }

    .filled .bubbles-chip:hover {
      background: var(--primary-gradient-hover);
    }

    .filled .bubbles-chip:active,
    .filled .bubbles-chip:focus {
      background: var(--primary-gradient-active);
    }

    .filled .bubbles-chip::after {
      content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_53_83' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_53_83)'%3E%3Cpath d='M12.4773 11.0207H4.62003C4.33697 11.0207 4.09614 10.9218 3.89753 10.7239C3.69891 10.5261 3.59961 10.2862 3.59961 10.0043C3.59961 9.72235 3.69891 9.48103 3.89753 9.28033C4.09614 9.0795 4.33697 8.97908 4.62003 8.97908H12.4773L9.26544 5.76721C9.06072 5.56248 8.95642 5.32012 8.95253 5.04012C8.9485 4.76026 9.05037 4.51318 9.25815 4.29887C9.46593 4.09776 9.70975 3.99915 9.98961 4.00304C10.2695 4.00693 10.512 4.11151 10.7171 4.31679L15.6709 9.277C15.7695 9.37575 15.846 9.48853 15.9004 9.61533C15.9547 9.74228 15.9819 9.87158 15.9819 10.0032C15.9819 10.1349 15.9547 10.2642 15.9004 10.391C15.846 10.5179 15.7723 10.6279 15.6794 10.721L10.7092 15.691C10.4936 15.9067 10.2533 16.011 9.98815 16.0041C9.72315 15.9971 9.48676 15.8892 9.27899 15.6801C9.07121 15.4658 8.96732 15.2195 8.96732 14.9412C8.96732 14.6628 9.07121 14.4221 9.27899 14.2191L12.4773 11.0207Z' fill='white'/%3E%3C/g%3E%3C/svg%3E%0A");
    }

    /* SIBLINGS */

    div.basic-siblings {
      background: var(--off-white-2);
      border: var(--border-grey);
      border-radius: 12px;
      padding: 24px 24px 8px;
    }

    h2.basic-siblings {
      color: var(--text-dark);
      font-size: 18px;
      font-weight: 600;
      line-height: 170%;
      margin: 0;
      padding: 0 16px 16px 16px;
    }

    ul.basic-siblings {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    ul.basic-siblings li {
      margin: 0;
      border-bottom: 1px solid var(--border-grey);
    }

    ul.basic-siblings li:last-child {
      border: 0;
    }

    ul.basic-siblings li a {
      color: var(--text-dark);
      display: block;
      font-size: 14px;
      font-weight: 500;
      padding: 20px 60px 20px 16px;
      position: relative;
      text-decoration: none;
      transition: all 0.2s ease-in-out;
    }

    ul.basic-siblings li a:hover {
      color: var(--primary);
    }

    ul.basic-siblings li a:active {
      color: var(--primary-active);
    }

    ul.basic-siblings li a::after {
      content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_41_829' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_41_829)'%3E%3Cpath d='M11.1667 9.99984L5.29167 4.12484C5.09722 3.93039 5 3.69428 5 3.4165C5 3.13873 5.09722 2.90262 5.29167 2.70817C5.48611 2.51373 5.72222 2.4165 6 2.4165C6.27778 2.4165 6.51389 2.51373 6.70833 2.70817L12.9375 8.93734C13.0903 9.09012 13.2014 9.25678 13.2708 9.43734C13.3403 9.61789 13.375 9.80539 13.375 9.99984C13.375 10.1943 13.3403 10.3818 13.2708 10.5623C13.2014 10.7429 13.0903 10.9096 12.9375 11.0623L6.70833 17.2915C6.51389 17.4859 6.27778 17.5832 6 17.5832C5.72222 17.5832 5.48611 17.4859 5.29167 17.2915C5.09722 17.0971 5 16.8609 5 16.5832C5 16.3054 5.09722 16.0693 5.29167 15.8748L11.1667 9.99984Z' fill='%23121212'/%3E%3C/g%3E%3C/svg%3E%0A");
      position: absolute;
      right:16px;
      top: 50%;
      transform: translateY(-50%);
      transition: all 0.2s ease-in-out;
    }

    ul.basic-siblings li a:hover::after {
      fill: var(--primary);
      right:8px;
    }


    /* CHATBOT CONTAINER */

    .ez.dawn {
      position: relative;
      background: rgba(255, 255, 255, .50);
      border-radius: 24px;
      padding: 24px 24px 20px;
      margin:40px auto 32px;
    }

    .page .ez.dawn {
      background: var(--background-gradient);
      border: 1px solid var(--border-gradient);
      border-radius: 12px;
      padding: 16px;
      margin: 0 auto;
    }

    .page .chatbot.dawn .field.field-question textarea {
      border-radius: 8px !important;
    }

    .page .chatbot.dawn .field.button-submit {
      bottom: 30px;
      right: 30px;
    }

    @media (max-width: 992px) {
      .ez.dawn {
        border-radius: 24px;
        padding: 8px 8px 8px;
      }
    }


    /* FOOTER */

    footer {
      background: var(--white);
      border-top: 1px solid var(--border-grey);
      font-size: 0.85rem;
      text-align: center;
    }

    .home footer {
      background: transparent;
    }

    .page footer {
      margin-top: 80px;
    }

    footer .footer-links {
      justify-content: center;
    }

    footer .footer-links a {
      text-decoration: none;
      margin: 0 10px;
      font-size: 0.85rem;
    }

    footer .footer-links a:hover {
      text-decoration: underline;
    }

    footer .footer-copy {
      font-size: 0.8rem;
      margin: 0;
      opacity: 0.9;
    }


    @media (max-width: 992px) {
      .navbar-toggler {
        border: none;
        box-shadow: none;
      }

      .navbar-toggler:focus {
        box-shadow: none;
      }

      .navbar-toggler-icon {
        background-image: none;
        width: 24px;
        height: 2px;
        background-color: var(--nav-link-color);
        position: relative;
      }

      .navbar-toggler-icon::before,
      .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background-color: var(--nav-link-color);
      }

      .navbar-toggler-icon::before {
        top: -7px;
      }

      .navbar-toggler-icon::after {
        top: 7px;
      }

      .navbar-collapse {
        background: var(--white);
        margin-top: 1rem;
        padding: 1.5rem 1rem;
        border-radius: 8px;
      }

      nav {
        padding-top: 0;
        padding-bottom: 0;
        align-items: center;
      }

      nav .nav-item {
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
      }

      nav .nav-link {
        font-size: 1.05rem;
        display: block;
        width: 100%;
      }

      .home .item-content h4 {
        font-size: 16px;
      }

      .home .item-content p {
        text-align: center;
      }

      .item-sublist a {
        text-decoration: none;
        margin-bottom: 8px;
      }

    }

    @media (max-width: 576px) {
      .searchbar {
        padding: 6px 12px;
      }

      .searchbar form button {
        height: 34px;
        font-size: 0.85rem;
        padding: 0 12px;
      }

    }
