:root {
    --background: #fff;
    --content-background: #f0f0f0;
    --text: #4c4c4c;
    --links: #8c8c8c;
    --accent: #b1c9e8;
    --borders: #e0e0e0;
    --title: #111111;
    --gradient-1: #e0c3fc;
    --gradient-2: #8ec5fc;
    --home-text: #f0f0f0;
    --question-background: #f0f0f0;
    --question-text: #111;
    --answer-background: #212121;
    --answer-text: #fafafa;
    --answer-link: #c9c9c9;

    --body-font: 'Lora', serif;
    --title-font: 'Roboto', sans-serif;
}

@keyframes lazyload {
    0%   {opacity: 0;}
    100% {opacity: 1;}
}
 
@-webkit-keyframes lazyload {
    0%   {opacity: 0;}
    100% {opacity: 1;}
}
 
@-moz-keyframes lazyload {
    0%   {opacity: 0;}
    100% {opacity: 1;}
}
 
@-o-keyframes lazyload {
    0%   {opacity: 0;}
    100% {opacity: 1;}
}

body {
    font-family: var(--body-font);
    font-size: 17px;
    color: var(--text);
    background-color: var(--background);
    text-align: left;
    line-height: 160%;
    word-wrap: break-word;
    letter-spacing: 0.04em;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-animation: lazyload 2s;
    -moz-animation: lazyload 2s;
    -o-animation: lazyload 2s;
    animation: lazyload 2s;
}

a {
    color: var(--links); 
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover {
    color: var(--accent);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

b, bold, strong {color: var(--title);}
b a, bold a, strong a {color: var(--title);}

::-webkit-scrollbar {
    width: 12px; 
    height: 20px;
    background-color: var(--content-background);
}

::-webkit-scrollbar-track {background-color: var(--content-background); border-radius: 20px;}
 
::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    min-height: 35px;
    min-width: 35px;
    border-radius: 20px;
}

.tmblr-iframe-compact .tmblr-iframe--unified-controls {
    z-index: 999999999!important;
    margin-top: 0.5em;
    transform: scale(0.9);
    transform-origin: 100% 0;
    -webkit-transform: scale(0.9);
    -webkit-transform-origin: 100% 0;
    -o-transform: scale(0.9);
    -o-transform-origin: 100% 0;
    -moz-transform: scale(0.9);
    -moz-transform-origin: 100% 0;
    -ms-transform: scale(0.9);
    -ms-transform-origin: 100% 0;
}

/*----- COMMON STYLES -----*/

.title {
    font-weight: 900;
    color: var(--title);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.25em;
    font-family: var(--title-font);
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--title-font);
    color: var(--title);
    font-weight: bold;
}

.upper {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9em;
    font-family: var(--title-font);
}

.gradient-icon {display: inline-block; vertical-align: middle;}

.gradient-icon svg {
    display: inline-block;
    vertical-align: middle;
    background: linear-gradient(to bottom right, var(--gradient-1), var(--gradient-2));
    padding: 0.5em;
    border-radius: 50%;
    fill: var(--background);
}

a svg {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover svg {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.title-wrap {background-color: var(--title); padding: 1.5em;}
.title-wrap .title {color: var(--background);}

/*----- HEADER -----*/

header {
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--borders);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
    box-sizing: border-box;
    padding: 1em 1.25em;
    font-size: 0.9em;
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    -ms-backdrop-filter: blur(10px);
    -o-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

#main-header nav li {list-style-type: none; display: inline-block;}

#main-header nav li a {
    font-weight: bold;
    color: var(--title);
    display: inline-block;
}

#main-header nav li a:hover {color: var(--title);}

#main-header nav li::after {
    content: '/';
    color: var(--borders);
    margin: 0 1em;
    display: inline-block;
    vertical-align: middle;
    font-size: 1em;
}

#main-header nav li:last-of-type::after {display: none;}

#main-header nav li a::after {
    content: '';
    display: block;
    position: relative;
    height: 4px;
    bottom: 2px;
    background: linear-gradient(to right, var(--gradient-1), var(--gradient-2));
    left: 50%;
    right: 50%;
    width: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

#main-header nav li a:hover::after {
    left: 0;
    right: 0;
    width: 100%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/*----- HOME PAGE -----*/

#home-page {
    background-color: var(--title);
    color: var(--home-text);
    width: 100vw;
    height: 100vh;
    z-index: 50;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 1.25s ease-in-out;
    -moz-transition: all 1.25s ease-in-out;
    -ms-transition: all 1.25s ease-in-out;
    -o-transition: all 1.25s ease-in-out;
    transition: all 1.25s ease-in-out;
}

#home-page .title, #home-page .subtitle {color: var(--background); text-align: center;}
#home-page .content-wrap {width: 75vw;}
#home-page .title {margin-bottom: 2em;}
#home-page .subtitle {margin-bottom: 1.5em;}

#home-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.no-list {width: 48%;}
.no-list li {margin: 0.75em 0; list-style-type: none;}

.no-list li::before {
    content: '*';
    color: var(--accent);
    font-weight: bold;
    font-size: 1.25em;
    position: absolute;
    margin-left: -1em;
}

.no-list b {
    font-family: var(--title-font);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--background);
    font-size: 0.9em;
}

b.big-important {color: #fd3f5c; font-size: 1em;}

#home-page nav {
    text-align: center;
    margin-top: 1.5em;
}

#home-page nav a {
    margin: 0 0.5em;
    border-radius: 6px;
    box-sizing: border-box;
    display: inline-block;
    padding: 0.75em 1em;
    border: 2px solid var(--home-text);
    color: var(--home-text);
    background-color: #3d3d3d;
}

#home-page nav a svg {
    display: inline-block;
    vertical-align: middle;
    width: 1.25em;
    height: 1.25em;
    margin-right: 0.5em;
}

#home-page nav a.home-button {cursor: pointer;}

#home-page nav a:first-of-type svg {color: #32bb6b;}
#home-page nav a:last-of-type svg {color: #fd3f5c;}

#home-page nav a:hover, #home-page nav a:hover svg {color: var(--background);}
#home-page nav a:first-of-type:hover {background-color: #32bb6b; border: 2px solid #32bb6b;}
#home-page nav a:last-of-type:hover {background-color: #fd3f5c; border: 2px solid #fd3f5c;}

#home-page.home-hide {
    margin-top: -100vh;
    -webkit-transition: all 1.25s ease-in-out;
    -moz-transition: all 1.25s ease-in-out;
    -ms-transition: all 1.25s ease-in-out;
    -o-transition: all 1.25s ease-in-out;
    transition: all 1.25s ease-in-out;
}

#back-button {
    background-color: var(--title);
    color: var(--background);
    position: fixed;
    top: 0.75em;
    left: 1em;
    padding: 0.5em 0.75em;
    box-sizing: border-box;
    border-radius: 6px;
    cursor: help;
}

#back-button:hover {background-color: var(--accent);}

#back-button svg {
    width: 1.5em; 
    height: 1.5em;
    fill: var(--background);
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.5em 0.15em 0;
}

/*----- MAIN CONTENT -----*/

main {
    position: relative;
    margin: 150px auto;
    width: 1000px;
}

#main-content {display: none;}

section {
    width: 100%;
    background-color: var(--background);
    margin: 75px 0;
}

section .title-wrap {
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

section .title-wrap .title {display: inline-block;}
section .title-wrap .gradient-icon {margin-right: 1em;}
section .title-wrap .gradient-icon svg {width: 1.5em; height: 1.5em;}

section a {
    box-shadow: inset 0 -0.15em 0 var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--title-font);
    font-size: 0.9em;
}

section a:hover {box-shadow: inset 0 1.25em 0 var(--accent); color: var(--background);}

/*----- FAQ FAQ -----*/

#faq-faq-wrap {
    z-index: 5;
    width: 100vw;
    height: 100vh;
    background-color: var(--background);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#more-message {margin-top: 2.5em; text-align: center;}
.more {font-size: 1.25em;}

#more-message a {
    margin-top: 1.5em;
    border-radius: 6px;
    box-sizing: border-box;
    display: inline-block;
    padding: 0.75em 1em;
    border: 2px solid var(--borders);
    color: var(--title);
    background-color: rgba(177, 201, 232, 0.25);
    cursor: pointer;
}

#more-message a:hover {
    background-color: var(--accent); 
    color: var(--background);
    border: 2px solid var(--accent);
}

#more-message a svg {
    width: 1.5em;
    height: 1.5em;
    fill: var(--accent);
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0.15em 0.5em;
}

#more-message a:hover svg {fill: var(--background);}

/*----- FAQS -----*/

.faq-wrap {margin-top: 1.5em;}

.question-wrap, .answer-wrap {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    border-radius: 6px;
    overflow: hidden;
}

.question-wrap {align-items: center;}
.answer-wrap {align-items: flex-start;}

.question-wrap .gradient-icon, .answer-wrap .gradient-icon {height: 100%;}
.question-wrap .gradient-icon {padding: 1.5em 0 1.5em 1.5em;}
.answer-wrap .gradient-icon {padding: 1.5em 1.5em 1.5em 0;}

.question-wrap .gradient-icon svg, .answer-wrap .gradient-icon svg {
    width: 2em;
    height: 2em;
    background: var(--accent) !important;
}

.question, .answer {
    padding: 2em;
    box-sizing: border-box;
    width: calc(100% - 5em);
    border-radius: 8px;
    overflow: hidden;
}

.question-wrap {
    color: var(--question-text);
    background-color: var(--question-background);
    cursor: help;
}

.question {font-weight: bold;}

.answer-wrap {
    margin-top: 0.75em;
    background-color: var(--answer-background);
    color: var(--answer-text);
}

.answer b {color: var(--background);}

.answer a {color: var(--answer-link);}
.answer a:hover {color: var(--background);}

.answer p:first-of-type {margin-top: 0;}
.answer p:last-of-type {margin-bottom: 0;}

/*----- CHECKLIST -----*/

.checklist-wrap {margin-top: 1.5em;}

.checklist-wrap li {list-style-type: none; margin: 0.75em 0;}

.checklist-wrap li::before {
    content: url('data:image/svg+xml, <svg version="1.1" id="Layer_1" xmlns="http%3A%2F%2Fwww.w3.org/2000/svg" xmlns:xlink="http%3A%2F%2Fwww.w3.org/1999/xlink" width="1.5em" height="1.5em" fill="rgba(177, 201, 232)" x="0px" y="0px" viewBox="0 0 216 216" enable-background="new 0 0 216 216" xml:space="preserve"><path d="M146.9,73.2l-51.2,57l-27-25.9c-2.4-2.3-6.2-2.2-8.5,0.2c-2.3,2.4-2.2,6.2,0.2,8.5l31.4,30.2c1.1,1.1,2.6,1.7,4.2,1.7c0.1,0,0.1,0,0.2,0c1.6-0.1,3.2-0.8,4.2-2l55.4-61.6c2.2-2.5,2-6.3-0.5-8.5C152.9,70.5,149.1,70.7,146.9,73.2z"/><path d="M108,19.9c-48.6,0-88.1,39.5-88.1,88.1s39.5,88.1,88.1,88.1s88.1-39.5,88.1-88.1S156.6,19.9,108,19.9z M108,184.1c-42,0-76.1-34.1-76.1-76.1S66,31.9,108,31.9S184.1,66,184.1,108S150,184.1,108,184.1z"/></svg>');
    display: inline-block;
    vertical-align: middle;
    float: left;
    margin-right: 0.75em;
}

.important-message {color: #fd3f5c; font-weight: bold;}

/*----- FAQ LINKS -----*/

#links .subtitle {margin-top: 2em;}

#links nav {margin-top: 1em;}

#links nav li {
    list-style-type: none; 
    display: inline-block;
    margin: 0 0.75em 1em 0;
}

#links nav li a {
    background-color: var(--title);
    color: var(--background);
    box-sizing: border-box;
    padding: 0.5em 0.75em;
    border-radius: 6px;
    box-shadow: none;
}

#links nav li a:hover {background-color: var(--accent);}
#links nav li a b {color: var(--background);}

/*----- ASK -----*/

.ask-desc {margin-top: 1.5em;}
#ask_form {margin-top: 2em;}

/*----- MOBILE HEADER -----*/

#mobile-header {display: none; text-align: left;}

.mobile-menu, .close-button {
    background-color: var(--title);
    color: var(--background);
    box-sizing: border-box;
    padding: 0.75em 1em;
    border-radius: 6px;
    cursor: help;
}

.mobile-menu svg, .close-button svg {
    width: 1.5em;
    height: 1.5em;
    fill: var(--background);
    display: inline-block;
    vertical-align: middle;
}

.mobile-menu svg {margin: 0 0.5em 0.15em 0;}

.close-button {
    position: fixed;
    right: 3em;
    top: 2em;
    display: none;
}

.mobile-menu:hover, .close-button:hover {background-color: var(--accent); color: var(--background);}
.mobile-menu:hover svg, .close-button:hover svg {fill: var(--background);}

/*----- MEDIA QUERIES -----*/

@media only screen and (max-width: 1200px) {
    main {width: 90vw;}
    #back-button {display: none;}

    #home-page {overflow: auto; box-sizing: border-box;}
    #home-page .content-wrap {padding: 300px 0 50px 0; box-sizing: border-box;}
    #home-flex {flex-direction: column; align-items: center;}
    #home-page .no-list {width: 100%;}
}

@media only screen and (max-width: 900px) {
    #home-page {
        position: relative;
        width: auto;
        height: auto;
        z-index: 5;
    }

    #home-page .content-wrap {padding: 100px 0;}
    #home-page nav {display: none;}

    #mobile-header {display: block;}

    #main-header nav li {display: block; margin: 0.25em 0;}
    #main-header nav li::after {display: none;}

    #main-header {
        width: 100vw;
        height: 100vh;
        left: -100vw;
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -ms-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }

    #main-header nav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 100%;
        font-size: 1.15em;
    }

    #main-header.show {
        left: 0;
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -ms-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }

    .close-button {display: inline-block;}

    .question-wrap .gradient-icon svg, .answer-wrap .gradient-icon svg {
        width: 1.5em; 
        height: 1.5em;
        padding: 0.25em;
    }

    .question {padding-left: 1em;}
    .answer {padding-right: 1em;}
}