@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --brand-primary: #d82167;
    --brand-secondary: #ff8622;
    --yellow: #fff56d;
    --blue: #3b73ff;
    --white: #ffffff;
    --dark-grey: #3a4968;
    --light-grey: #f3f4f5;
    --mid-grey: #7e94bc;
    --overlay-color:rgba(240,240,240,0.95);
    --highlight:rgba(255,242,0,0.3);
}

/* HTML basics */
body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    background-color: var(--white);
    color: var(--dark-grey);
}
body,p,li{
    font-size: 17px;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: 800;
    margin:0;
    padding:0;
    letter-spacing:normal;
}
h1 {
    font-size: 80px;
    letter-spacing: -1px;
    margin-bottom: 30px;
    line-height: 1em;
}
h1 span,
h2 span {
    color: var(--mid-grey);
}
h2 {
    font-size: 40px;
    line-height: 1em;
}
h3 {
    font-size: 20px;
    line-height: 1.1em;
}
a,
a:link,
a:visited {
    color: var(--blue);
}
a:hover,
a:active {
    color: var(--brand-primary);
}
button, .cta-link a {
    font-size: 17px;
    font-weight: 800;
    padding:10px 25px;
    border-radius: 30px;
    border-width: 0;
    cursor: pointer!important;
}
blockquote {
    margin:40px auto;
    padding:30px 40px;
    background-color: var(--mid-grey);
    color:var(--light-grey);
    font-size: 28px;
    border-radius:6px;
}
blockquote span {
    font-size: 12px;
    text-transform: uppercase;
}

/* SEMANTIC layout */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--overlay-color);
    z-index: 999;
}
header img {
    max-width: 200px;
    position: fixed;
}
header button {
    position: fixed;
    right:20px
}
footer {
    background-color: var(--dark-grey);
    color: var(--mid-grey);
    padding: 20px;
    text-align: center;
    clear:both;
}
footer a {
    color: var(--white);
    text-decoration: none;
}        
nav {
    text-align: center;
    font-weight: 800;
}
nav a,
nav a:link,
nav a:visited {
    color: var(--dark-grey);
    text-decoration: none;
    margin: 0 10px;
}
nav a:hover,
nav a:active {
    color: var(--brand-primary);
}

section {
    padding: 100px 40px;
}
.container {
    max-width: 800px;
    margin: auto;
}
.cta-link a:hover,
.cta-link a:active,
button:hover,
button:active {
    background-color: var(--brand-primary)!important;
    color: var(--white)!important;
}

/* CUSTOM classes */

.logo {
    font-weight:800;
    max-width: 150px;
}
.site-icon {
    display:none;
}
img.footerLogo {filter:opacity(0.3);}
img.footerLogo:hover {filter:opacity(1);}
.tinytext {
    font-size:10px;
    line-height: 12px;
    max-width: 550px;
    margin-left:auto;
    margin-right:auto;
    text-align: center;
}
#about {
    padding-top: 160px;
    padding-bottom: 100px;
}
/* .homepage #about {
    display: flex;
    height:100vh;
    padding:0 40px;
    margin:0;
} */
.headline {
    text-align: center;
    margin-bottom: 30px;
}
.clarity-statement {
    font-weight: 400;
    text-align: center;
}
.clarity-statement a,
.clarity-statement a:link,
.clarity-statement a:visited {
    color: var(--mid-grey);
}
.clarity-statement a:hover,
.clarity-statement a:active {
    color: var(--brand-primary);
}
.cta-link {
    text-align: center;
    font-weight: 800;
    margin-top: 40px;
}
.cta-link a,
.cta-button {
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
}
.cta-link a.secondary-button {
    background: var(--mid-grey);
    color: var(--dark-grey);
}

#benefits {
    background-color: var(--mid-grey);
}
#benefits h2 {
    color: var(--white);
}
.thirds-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.thirds-box {
    flex: 0 1 calc(30% - 20px);
    background-color: var(--white);
    padding: 40px 20px 20px 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    text-align: center;
    background-size: cover;
}
img.userpic {
    width:25px;
    height: 25px;
    border-radius: 15px;
    background-color: var(--mid-grey);
    vertical-align: middle;
}

#cta {
    background-color: var(--dark-grey);
    color: var(--white);
}
.cta-box {
    text-align: center;
}

span.highlight {
    background-color: var(--highlight);
    padding-left: 3px;
    padding-right: 3px;
}
p.subhead {
    font-size: 30px;
    color: var(--mid-grey);
}

section#sessionimage {
    padding: 0px !important;
    width:100%;
}

/* INSIGHTS blog 

.insights {
    padding-top: 150px;
}
.insights h1 {
    font-size:60px;
    text-align:center;
    clear:both;
    margin-top:40px;
}
.insights h2,
.insights h3 {
    margin-top:40px;
}
.insightsIndex li {
    display:inline-block;
    width:49%;
    float:left;
    margin-right:1%;
    margin-bottom:6px;
    background: var(--light-grey);
    border-radius:6px;
    height: 170px;
}
.insightsList a:hover li {
    background: var(--brand-primary);
    color: white!important;
}
.insightsIndex li h4 {
    margin:15px 15px 5px 15px;
}
.insightsIndex li p {
    margin:0px 15px 15px 15px;
}
.insightsList {
    clear:both;
} */

@media only screen and (max-width: 768px) {
    header {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        justify-content: space-around;
        padding: 15px;
    }
    nav {
        display: flex;
        justify-content: space-around;
        width: 100%;
        margin-top: 10px;
    }
    nav a {
        padding: 0 0 10px 0;
    }
    header button{
        display: none;
    }
    h1 {
        font-size: 55px;
        letter-spacing: 0px;
        margin-bottom: 15px;
        line-height: 1em;
    }
    .thirds-box {
        flex: calc(100%);
    }
    /* #about {
        padding-top: 80px;
    }*/
    .logo {
        display: none;
    }
    /*.site-icon {
        display:inline-block;
        position:fixed;
        color: var(--brand-primary);
        font-weight: 800;
        left:20px;
        width: 50px;
    }
    .site-icon img {
        margin: auto;
        width: 150px;
        height: auto;
    }*/
    .insightsIndex li {
        width: 100%;
        margin-right: 0%;
    }
}


.signup-link {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    font-weight: 500;
    transition: opacity 0.2s ease-in-out;
    position: fixed;
    right: 140px;
    top: 20px;
}

.signup-link:hover {
    opacity: 0.8;
}