:root {

    --foundation: #efe6e4;
    --bg: #FCF6F5;
    --fg: #000;
    --fg2: #fff;
    --sp: #533BE2;
    --sp: #803bb1;
    --sp-hover: #f5325e;
    --sp2: #37298e;
    --hl: var(--fg);

    /* @media (prefers-color-scheme: dark) {
        --foundation: #efe6e4;
        --bg: #FCF6F5;
        --fg: #000;
        --fg2: #fff;
        --sp: #533BE2;
        --sp2: #37298e;
        --hl: var(--fg);
    }

    @media (prefers-color-scheme: light) {
        --foundation: #efe6e4;
        --bg: #FCF6F5;
        --fg: #000;
        --fg2: #fff;
        --sp: #533BE2;
        --sp2: #37298e;
        --hl: var(--fg);
    } */
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-size: 1rem;
}

html {
    font-size: 14.5px;
    font-family: "PPFragment TextRegular", Helvetica, Arial, sans-serif !important;
    line-height: 1.3;
    background: var(--bg);
    background: #fff !important;
    body {
        margin: 0;
        background: var(--foundation);
        color: var(--fg);
    }
    @media screen and (max-width: 80rem) {
        font-size: 13px !important;
    }
}


.balance-text {
    text-wrap: balance;
}

a {
    color: var(--fg);
    color: var(--hl);
    &:not(.btn){
        text-decoration: underline;
        &:hover{
            text-decoration-color: var(--sp) !important;
        }
    }
}

.btn{
    &.btn-secondary{
        background-color: #000 !important;
        border-color: #000 !important;
        color: var(--fg2) !important;
    }
    &.btn-tertiary{
        background-color: #fff !important;
        border-color: #000 !important;
        color: var(--fg) !important;
        border-width: 0.18rem !important;
        .material-symbols-outlined{
            color: var(--fg) !important;
        }
    }
    &[data-mobile-btn]{
        display: none;
        @media screen and (max-width: 60rem) {
            display: flex !important;
        }
    }
    &:hover{
        background-color: var(--sp-hover) !important;
        border-color: var(--sp-hover) !important;       
    }
}



ul {
    /* list-style: disc; */
    margin: 0;
    li {
        /* list-style: disc; */
        font-weight: 400;
        font-size: 0.8rem;
        /* text-wrap: balance; */
    }
}

.flex{
    display: flex;
}
.grid{
    display: grid;
    align-items: center;
    grid-template-columns: repeat(var(--cols, 1), 1fr) !important;

    @media screen and (min-width: 41rem) {
        &.reverse {
            div:nth-child(1) {
                order: 2;
            }
            div:nth-child(2) {
                order: 1;
            }
        }
    }
    @media screen and (max-width: 40rem) {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 2rem !important;
    }
}
.card{
    background: #e3dcd6;
    background: rgb(238 234 230);
    background: #e6e2ff;
    text-align: center;
    border-radius: 2rem !important;
    /* min-height: 10rem;
    display: flex !important;
    align-items: center !important;
    align-content: center !important; */
    h2, h3, p{
        margin: 0 !important;
        text-wrap: balance;
    }
    strong{
        font-family: "Poppins", Helvetica, Arial, sans-serif !important;  
        font-weight: 600 !important;
    }
    img{
        margin: 0 0 1rem 0 !important;
    }
}

nav{
    background: #444;
    padding: 0 1rem;
    position: sticky;
    top: 0;
    z-index: 2;
    > div:nth-of-type(2) {
        text-align: center;
    }
    > div:nth-of-type(3) {
        text-align: right;
    }
}
[data-site-nav-2] {
  /* border-bottom: 1px solid #ddd; */
     
  /* -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1); */
           
  position: sticky;
  width: 100%;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 0 1.5rem;
  z-index: 900;
  font-family: "Poppins";
}
@media screen and (max-width: 60rem) {
  [data-site-nav-2] {
    > div:nth-of-type(2) {
      display: none !important;
    }
    > div:nth-of-type(3) {
      display: none !important;
    }
  }
}
[data-site-nav-2] .logo {
  display: block;
  width: 100%;
  max-width: 11rem;
  margin-right: 1rem;
}
[data-site-nav-2] .logo img {
  width: 100%;
  height: auto;
  display: block;
}
[data-site-nav-2] .btn {
  /* background: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.6rem 0.75rem; */
  border-radius: 0.5rem;
}
[data-site-nav-2] > div a {
  font-size: 1rem;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}
[data-site-nav-2] > div a:hover {
  text-decoration: underline;
}
/* [data-site-nav-2] > div > ul > li {
  -webkit-box-shadow: inset 0 -0.2rem 0 #fff;
          box-shadow: inset 0 -0.2rem 0 #fff;
}
[data-site-nav-2] > div > ul > li:hover {
  -webkit-box-shadow: inset 0 -0.2rem 0 #000;
          box-shadow: inset 0 -0.2rem 0 #000;
} */
[data-site-nav-2] > div > ul > li > a {
  text-decoration: none !important;
}
[data-site-nav-2] > div:nth-of-type(1), 
[data-site-nav-2] > div:nth-of-type(2), {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
[data-site-nav-2] > div:nth-of-type(1) {
  width: 20rem;
  @media screen and (max-width: 60rem) {
    width: 100%;
  }
}
[data-site-nav-2] > div:nth-of-type(3) {
  width: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
[data-site-nav-2] > div:nth-of-type(3) a {
  /* display: block; */
  margin: 0 0rem 0 1.5rem;
}
[data-site-nav-2] > div > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
[data-site-nav-2] > div > ul > li {
  margin: 0 1.25rem;
  margin: 0;
  padding: 0 1.25rem;
  position: relative;
}
[data-site-nav-2] > div > ul > li:has(div) > a:after {
  content: "\e313";
  font-family: "Material Symbols Outlined";
  opacity: 0.5;
}
[data-site-nav-2] > div > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
}
[data-site-nav-2] > div > ul > li > div {
  border: 1px solid #ddd;
  border-top: none;
  -webkit-box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.1);
  border-radius: 0 0 0.75rem 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  position: absolute;
  top: 100%;
  left: 50%;
  background: #fff;
  padding: 2rem 1.75rem 1rem;
  visibility: hidden;
  opacity: 0.01;
  -webkit-transform: translate3d(-50%, 0rem, 0) scale(0.9);
          transform: translate3d(-50%, 0rem, 0) scale(0.9);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
[data-site-nav-2] > div > ul > li > div strong {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 1rem;
  display: block;
  color: #803bb1;
  font-weight: 700;
}
[data-site-nav-2] > div > ul > li > div ul {
  width: 14rem;
}
[data-site-nav-2] > div > ul > li > div ul li {
  margin-bottom: 0.75rem;
}
[data-site-nav-2] > div > ul > li > div ul li a {
  font-weight: 700;
  display: block;
  line-height: 1.3;
}
[data-site-nav-2] > div > ul > li > div ul li p {
  color: #767676;
  font-size: 0.8rem;
  line-height: 1.3;
}
[data-site-nav-2] > div > ul > li:hover > div {
  visibility: visible;
  opacity: 0.99;
  -webkit-transform: translate3d(-50%, 0, 0) scale(1);
          transform: translate3d(-50%, 0, 0) scale(1);
}
[data-site-nav-2] {
    box-shadow: 0 1.65rem 0 -1.5rem #000;
    min-height: 5rem;
    .btn{
        border-radius: 0.75rem !important;
        text-decoration: none !important;
        font-family: "Poppins", Helvetica, Arial, sans-serif !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        text-transform: none !important;
        color: var(--fg2) !important;
        @media screen and (min-width: 60rem) {
            min-height: 0;
            height: 2.75rem;
        }
        &.btn-primary{
            background-color: var(--sp) !important;
            border-color: var(--sp) !important;
        }
        
    }
    > div > ul > li:hover{
        background: rgba(230, 226, 255, 0.5) !important;
    }
    > div > ul > li > div{
        border-top: 0.2rem solid var(--sp) !important;
        border-radius: 0 0 1.25rem 1.25rem;
    }
    ul ul li a{
        display: flex !important;
        align-items: center;
        gap: 0.35rem;
        font-size: 1.2rem;
        /* text-decoration: underline; */
        font-weight: 600 !important;
        margin-bottom: 0.5rem;
        /* font-family: 'PPFragment TextRegular'; */
        /* color: #392a93; */
        &:hover{
            text-decoration-color: var(--sp) !important;
        }
        .material-symbols-outlined{
            color: var(--sp) !important;
        }
    }
}
article {
    .container {
        max-width: 60rem;
        margin: 0 auto;
        padding: 0 3rem !important;
        @media screen and (max-width: 50rem) {
            padding: 0 1.5rem !important;
        }
    }
    .vr{
        display: flex;
        gap: 4rem;
        flex-direction: column;
        @media screen and (max-width: 50rem) {
            .grid{
                gap: 2rem !important;
            }
        }
    }
    header{
        /* padding: 4rem 0; */
    }
    section{
        padding: 3rem 0;
    }
    footer{
        #sr-footer{
            .container {
                padding: 3rem!important;
                @media screen and (max-width: 50rem) {
                    padding: 1.5rem !important;
                }
            }
        }
        #sr-newsletter{
            @media screen and (max-width: 50rem) {
                padding-top: 4rem !important;
            }
        }
    }
    .eyebrow{
        font-family: "Poppins", Helvetica, Arial, sans-serif !important;  
        font-size: 1.2rem;
        font-weight: 600 !important;
        margin-bottom: 1rem !important;
        color: var(--sp2);
        display: block;
    }
    h1,
    h2,
    h3,
    h5,
    h6{
        margin: 0 0 1rem 0 !important;
        font-weight: 100 !important;
        line-height: 1.2 !important;
        text-wrap: balance;
        font-family: "PPFragment GlareExtraBold", Helvetica, Arial, sans-serif;
    }

    h1{ 
        font-size: 3.4rem !important; 
        font-size: 3rem !important;
        @media screen and (max-width: 50rem) {
            font-size: 2.5rem !important;
        }
    }
    h2{ font-size: 2.25rem !important; }
    h3{ 
        font-size: 2.25rem !important; 
        font-family: "PPFragment TextRegular", Helvetica, Arial, sans-serif !important;
    }
    /* h3{ 
        font-size: 1.5rem !important; 
        font-family: "Poppins", Helvetica, Arial, sans-serif !important;  
        font-weight: 600 !important;
    } */
    h4{ font-size: 1.5rem !important; font-family: "PPFragment TextRegular", Helvetica, Arial, sans-serif !important; font-weight: 100 !important;}
    h5{ font-size: 1.5rem !important; }
    h6{ font-size: 1rem !important; }
    p {
        margin: 0 0 1.5rem 0 !important;
        font-weight: 300;
        font-size: 1.3rem !important;
        line-height: 1.5 !important;
    }
    footer{
        p {
            margin: 0 0 1rem 0 !important;
        }
    }
    .btn{
        padding: 1rem 2rem;
        height: auto !important;
        border-radius: 0.75rem !important;
        text-decoration: none !important;
        font-family: "Poppins", Helvetica, Arial, sans-serif !important;
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        text-transform: none !important;
        &.btn-primary{
            background-color: var(--sp) !important;
            border-color: var(--sp) !important;
            color: var(--fg2) !important;
        }
        &:hover{
            background-color: var(--sp-hover) !important;
            border-color: var(--sp-hover) !important;    
        }
    }
    img{
        width: 100%;
        height: auto;
        display: block;
        margin: 0 !important;
        border-radius: 2rem !important;
    }
    #sr-pre-footer{
        padding-top: 2rem !important;
        background-color: #e6e2ff !important;
        background-color:  rgb(238 234 230) !important;
        h2,p,.btn,[data-button],[data-slot]{
            text-align: left !important;
        }
    }
    #sr-footer{
        background: rgb(238 234 230) !important;
    }

    [data-theme-label] {
        display: flex !important;
        align-items: center;
        justify-content: start !important;
        gap: 0.5rem;
        /* span:nth-of-type(1){
            
        } */
        span:nth-of-type(2){
            font-size: 1.2rem !important;
            @media  screen and (max-width: 50rem) {
                font-size: 1rem !important;
            }
        }
    }
}

.logos {
    
    img{
        border-radius: 0 !important;
    }
    @media  screen and (max-width: 50rem) {
        --cols: 4 !important;
        grid-template-columns: repeat(4, 1fr) !important;

        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;

        margin-top: 1.5rem !important;
        > div {
            width: 20%;
        }
    }
}

.icons{
    @media  screen and (max-width: 50rem) {
        gap: 1rem !important;
        --cols: 2 !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.social-icons{
    display: flex;
    gap: 0.5rem;
    a{
        text-decoration: none !important;
        background: var(--fg);
        height: 2.5rem !important;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100rem;
        transition: all 0.2s;
        svg{
            height: 1.25rem !important;
            fill: var(--fg2) !important;
        }
        &:hover{
            background: var(--sp-hover);
        }
    }
}

#report-preview .icons .material-symbols-outlined {
    font-size: 2.2rem;
}

#blog-posts{
    a{
        text-decoration: none !important;
        &:hover{
            text-decoration: underline !important;
        }
    }
}
.menu-title{
    margin: 1.5rem 0 0 1rem !important;
    font-size: 1.4rem !important;
    padding: 0.5rem 0 !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    color: var(--fg) !important;
    /* font-family: "PPFragment TextRegular", Helvetica, Arial, sans-serif !important; */
}

.menu{
    a{
        font-size: 1.2rem !important;
        font-weight: 500 !important;
    }
}

/* overides */
#icp61c{
    display: none !important;
}
#izof3g #ib6usd{
    background-color: #eee !important;
}

[data-picture]{
    margin-bottom: 1rem !important;
}
article > div > section[data-component="prose"]:nth-of-type(1) {
    padding: 0 !important;
}
h1#i0r7au,
h1#i8pbdx,
h1#ibfpyu_dupe_dupe_dupe {
    /* margin-top: 1rem !important; */
    br:first-of-type {
        display: none !important;
    }
}
h1#i0r7au{
    text-transform: lowercase;
    &::first-letter {
        text-transform: uppercase !important;
    }
}
[data-accordion-summary] h2{
    font-family: "PPFragment TextRegular", Helvetica, Arial, sans-serif !important;
    font-size: 1.4rem !important;
}

[data-component="accordion"]{
    background-color: rgba(230, 226, 255,0.4) !important;
}