@charset "UTF-8";

:root {
    --white: rgb(254,250,242);
    --green: rgb(8,162,70);
    --yellow: rgb(237,208,35);
    --blue: rgb(18,27,196);
    --navy: rgb(47,49,133);
    --red: rgb(232, 69, 46);
    --grey: rgb(67,67,67);
    --grey2: rgb(182,179,178);
    --grey3: rgb(200,196,196);
    --pink: rgb(188,60,142);
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    min-height: 0;
    min-width: 0;
}

body {
    background: var(--green);
    font-size: 20px;
    line-height: 1.45em;
    color: #000;
    margin: 0;
    font-family: freight-text-pro, serif;
    -webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;

    -moz-font-feature-settings: "liga";
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
}

body.themes {
    background: var(--grey);
}

h1 {
    font-family: obviously-condensed, sans-serif;
    font-weight: 600;
    font-size: 100px;
    line-height: 1em;
    letter-spacing: 0.01em;
    margin-bottom: 40px;
}

h2 {
    font-family: freight-text-pro, serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 1.2em;
    letter-spacing: 0.015em;
}

h4 {
    font-family: freight-text-pro, serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.35em;
    color: var(--white);
}

.smcp {
    font-feature-settings: "smcp";
    letter-spacing: 0.05em;
}

.big-title {
    font-family: obviously-compressed, sans-serif;
    font-weight: 600;
    font-size: calc(150px + 8vw);
    line-height: 0.9em;
    text-align: center;
    color:var(--white);
    grid-column: span 10;
    flex-grow: 1;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-content {
    padding: 150px 120px;
    height: 100%;
    position: relative;
    
    display: grid;
    grid-template-columns: repeat(10, 10fr);
    grid-template-rows: auto;
    grid-row-gap: 50px;
    grid-column-gap: 30px;
}

.narrow-text {
    grid-column-end: span 4;
    max-width: 550px;
}

.wide-text {
    grid-column-end: span 8;
    max-width: 700px;
}

.h-1 {
    min-height: 30vh;
}

.h-1 p {
    color:var(--white);
}

.title {
    grid-column-start: span 10;
}

a {
    text-decoration: none;
    color: inherit;
}

/******* Mobile Menu *******/

#mobile-menu {
    width: 100%;
    height: 50px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

#logo-con {
    display: inline;
    margin: 13px 0 0 20px;
    opacity: 1;
}

#logo {
    width: 90px;
}

#logo, #journal {
    display: inline;
    height: 24px;
    margin-right: 15px;
}

.menu-button {
    display: block;
    right: 0;
    top: 0;
    margin: 10px 20px 0 auto;
    
    position: relative;
    height: 30px;
    width: 30px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 0.3s;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

#burger {
    width: 30px;
    height: 10px;
    position: relative;
    display: block;
    margin: -4px auto;
    top: 50%;
}

.bar {
    width: 100%;
    height: 1px;
    display: block;
    position: relative;
    background: #fff;
    transition: all 0.3s;
    transition-delay: 0s;
}

.topBar {
    transform: translateY(0px) rotate(0deg);
}

.btmBar {
    transform: translateY(8px) rotate(0deg);
}

#dropdown-content {
    opacity: 0;
    position: absolute;
    top: 55px;
    left: 0;
    padding: 16px 0px;
    width: 100%;
    overflow-y: scroll;
    height: 0;
}


#dropdown-content::-webkit-scrollbar { width: 0 !important }

.m-btn-con {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 0 50px 0;
    flex-wrap: wrap;
}

.m-btn {
    min-width: 160px;
    border: 1px solid #000;
    border-right: none;
    background-color: #505050;
    flex-grow: 1;
}

.m-btn:hover, .m-btn:active {
    background-color: #606060;
}

.m-btn a {
    display: block;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 15px auto;
    text-decoration: none;
    color: #000;
}

.m-title {
    font-size: 18px;
    line-height: 1em;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.2em;
    margin: 0 0 0 95px;    
}

#mobile-menu ul {
    position: relative;
    display: block;
    padding: 0 30px 0 30px;
    list-style: none;
    height: 100%;
    margin-top: 10px;
    margin-bottom: 100px;

}

#mobile-menu li {
    border-top: 1px solid #000;
    padding: 10px 0px 20px 20px;
    opacity: 0;
    display: flex;
    flex-direction: row;
    transform: translateY(-40px);
    
    transition: all 0.2s ease calc(0.03s * var(--index));
}

#mobile-menu li a {
    display: none;
    position: relative;
    color: #fff;
    
	font-weight: 400;
    text-decoration: none;
    font-size: 30px;
    line-height: 1em;
    font-style: italic;
    letter-spacing: 0.02em;
    
    width: 100%;
    padding-left: 10px;
    opacity: 0;
    /*transform: translateY(-10px);
    transition: all 0.3s ease-out;*/

}

.menu-no {
    font-size: 15px;
    letter-spacing: 0.1em;
    width: 40px;
    margin: 0 0px 0 0;
}

body.m-open {
    height: 100vh;
    overflow: hidden;
}

.m-open #mobile-menu {
    height: 120vh;
    background-color: #505050;
    top: 0;
}

.m-open.themes #mobile-menu {
    height: 120vh;
    background-color: #505050;
    top: 0;
}

.m-open #dropdown-content {
    opacity: 1;
    height: calc(100vh - 71px);
    z-index: 10;
}

.m-open #mobile-menu li {
    transform: translateY(0px);
    opacity: 1;
}

.m-open #mobile-menu li a {
    display: inline;
    opacity: 1;
    /*transform: translateY(0px);
    transition: all 0.3s ease-out;
    transition-delay: 0.5s;*/
    
}

.m-open .menu-button {
    transform: rotate(90deg);
    /*right: -5px;
    top: 5px;*/
}

.m-open .topBar {
    transform: translateY(4px) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0.1s;
}
.m-open .btmBar {
    transform: translateY(3px) rotate(-45deg);
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0.1s;
}



/***************** BODY *****************/


#intro-title {
    grid-column: span 10;
    padding: 0px 0 100px 0;
    text-align: center;
}

#intro-title h4 {
    max-width: 500px;
    margin: 0 auto;
}

.strapline-gif {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 20px auto 10px auto;
}

#helpful-sticker {
    position: absolute;
    top: 40px;
    right: 5px;
    width: 150px;
    transform: rotate(10deg);
}

.s-list {
    grid-column: span 10;
}

.s-list-con {
    padding-top: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.s-list ul {
    position: relative;
    display: block;
    list-style: none;
    height: 100%;
    margin-top: 10px;

    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.s-list li a {
    position: relative;
    color: #fff;
    
	font-weight: 400;
    text-decoration: none;
    font-size: 30px;
    line-height: 1em;
    font-style: italic;
    letter-spacing: 0.02em;
    
    width: 100%;
    padding-left: 10px;

    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

.s-list li {
    border-top: 1px solid #000;
    padding: 10px 0px 20px 20px;
    display: flex;
    flex-direction: row;
}

.s-list li:last-child, .s-list li:nth-child(5) {
    border-bottom: 1px solid #000;
}

#home-help {
    background-image: url(../Images/white-wave-2.svg);
    background-repeat: no-repeat;
    background-position: center top;
    color: #1D1E1B;
    background-color: var(--white);
}

#home-help-text {
    margin: 30vw 0 100px 0;
    max-width: 500px;
    grid-column: span 10;
}

#home-help-text h4 {
    color: #1D1E1B;
}




/*******************   GET HELP   ******************/

.help-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    grid-row-gap: 100px;
    color: var(--white);
}

#help-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 300px);
}

#get-help-gif {
    margin: 60px 0px 0px auto;
}

#help {
    background-color: var(--green);
    background-image: url(../Images/green-blue.svg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    color: var(--black);
}

.help-narrow {
    margin-top: 20px;
}

.help-narrow a {
    color: var(--white);
    text-decoration: none;
    font-style: italic;
}

.wide-text {
    grid-column-end: span 10;
    max-width: 700px;
}

#help h1 {
    color: var(--white);
}

/*************************************/

footer {
    background: var(--grey2);
    padding: 50px 8vw;
}

.f-links {
    padding: 50px 0;
}

.f-links a {
    display: block;
    padding-bottom: 20px;
    font-family: obviously-condensed, sans-serif;
    font-weight: 800;
    font-size: 50px;
    line-height: 1em;
    letter-spacing: 0.015em;
    color: var(--grey);
    text-decoration: none;
}

footer p {
    font-size: 15px;
    letter-spacing: 0.025em;
    line-height: 1.5em;
    padding-top: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 50px
}

.footer-logo {
    width: 120px;
    height: 25px;
    bottom: 0;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    color: var(--grey);
    width: 400px;
    justify-content: space-between;
}

/****************************  THEME PAGES  ******************************/

#finding-intro {
    background-color: var(--red);
    background-image: url(../Images/red-blue.svg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    height: calc(100vh - 50px);
    height: calc((var(--vh, 1vh) * 100) - 50px);
}



.themes #mobile-menu {
    background-color: var(--red);
}

#finding-intro .section-content {
    display: flex;
    flex-direction: column;
    grid-row-gap: 0px;
    position: relative;
    padding: 0px 8vw;
}

.big-title p {
    transform: translateY(-0.2em);
}

.intro-subhead {
    text-align: center;
    color: var(--grey2);  
    flex-grow: 0;
    margin-bottom: 20px;
}

.theme-no {
    font-variant: small-caps;
    letter-spacing: 0.25em;
    margin-bottom: 25px;
}

.down-arrow {
    font-size: 40px;
    font-weight: 300;
}

.theme-recap {
    background: var(--grey);
    color:var(--white);
}

.theme-experiments {
    background: var(--white);
    color: var(--navy);
}

.recap-video {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    grid-column: span 4;
}

.theme-experiments-content, .theme-recap-content {
    grid-column: span 6;
    max-width: 700px;
}

.theme-experiments ol, .theme-recap ol{
    margin-top: 40px;
    font-weight: 700;
}

.theme-experiments li, .theme-recap li {
    margin: 0 0 15px 16px;
    font-weight: 400;
    
}

.theme-experiments a, .theme-recap a {
    text-decoration: underline;
}
/**************************** ******************************/


@media (max-width:1250px) {
    
    .section-content {
        padding: 100px 8vw;
    }

    .recap-video {
        justify-content: flex-start;
        grid-column: span 8;
        margin-top: 50px;
    }
    
    .theme-experiments-content, .theme-recap-content {
        grid-column: span 8;
    }
}

@media (max-width:900px) {

    .section-content {
        padding: 100px 8vw;
        grid-row-gap: 35px;
        grid-column-gap: 15px;
    }

    .s-list ul {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }

    .s-list li:nth-child(5) {
        border-bottom: none;
    }

    .help-grid {
        grid-row-gap: 100px;
    }

    .theme-experiments-content, .theme-recap-content, .recap-video {
        grid-column: span 10;
    }
}

@media (max-width: 700px) {

    #home-help-text {
        margin: 150px 0 100px 0;
    }

    .footer-legal {
        flex-direction: column;
        align-items: flex-end;
    }
}

@media (max-width:500px) {
    
    h1 {
        font-size: 75px;
    }

    h2 {
        font-size: 40px;
    }

    h4 {
        font-size: 26px;
    }

    .big-title {
        font-size: 38vw;
    }

    .section-content {
        grid-row-gap: 25px;
        grid-column-gap: 5px;
    }

    .help-grid {
        grid-row-gap: 75px;
    }

    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-legal {
        width: 100%;
        margin-top: 50px;
        align-items: flex-start;
    }
}

@media (max-width: 482px) {

    .m-btn:nth-child(3) {
        border-top: none;
    }
}

@media (max-width:321px) {

    .m-btn:nth-child(2) {
        border-top: none;
    }
}


@media (max-width:350px){
    
    h1 {
        font-size: 65px;
    }

    h4 {
        font-size: 22px;
        line-height: 1.35em;
    }
}