:root {
    --color-main-background: white;
    --color-text-main: black;
    --color-text-secondary: #7a8799;
    --color-text-light: white;
    --color-background-dark: white;
    --color-grey: rgba(190, 197, 203, 1);
    --color-shortsey-blue: #006aff;
    --color-shortsey-orange: #FF4500;
    --color-shortsey-violet: #006aff;
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-main-background: white;
        --color-text-main: black;
        --color-text-secondary: #8e8e93;
        --color-text-light: white;
        --color-background-dark: white;
        --color-grey: rgba(190, 197, 203, 1);
        --color-shortsey-blue: #006aff;
        --color-shortsey-orange: #FF4500;
        --color-shortsey-violet: #006aff;
    }
}

@font-face {
    font-family: Realistica;
    src: url("../fonts/Realistica.woff") format("woff"), url("../fonts/Realistica.ttf") format("truetype");
}

* {
    border: 0px;
    font-style: inherit;
    font-variant-caps: inherit;
    font-weight: inherit;
    font-width: inherit;
    line-height: inherit;
    font-family: inherit;
    font-size-adjust: inherit;
    font-kerning: inherit;
    font-variant-alternates: inherit;
    font-variant-ligatures: inherit;
    font-variant-numeric: inherit;
    font-variant-east-asian: inherit;
    font-variant-position: inherit;
    font-variant-emoji: inherit;
    font-feature-settings: inherit;
    font-optical-sizing: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    vertical-align: baseline;
    margin: 0px;
}

html, body {
    background-color: var(--color-main-background);
    color: var(--color-text-main);
    text-rendering: optimizelegibility;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

main {
    min-height: 100vh;
    overflow: hidden;
}

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

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.25em;
}

p {
    line-height: 1.75em;
    font-size: 1em;
}

@media only screen and (max-width: 330px) {
    h1 {
        font-size: 1.75em;
    }

    h2 {
        font-size: 1.25em;
    }

    h3 {
        font-size: 1em;
    }

    p {
        line-height: 1.5em;
        font-size: 0.9em;
    }
}

a, li, ul {
    text-decoration: none;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

img, picture {
    width: 100%;
    height: auto;
}

p a {
    color: var(--color-shortsey-violet);
}

a:hover {
    cursor: pointer;
}

.bottom-space {
    margin-bottom: 0.5em;
}

.top-space {
    margin-top: 0.5em;
}

header {
    width: 100%;
    background-color: white;
}

.header-content {
    display: flex;
    flex-direction: row;
    place-content: center space-between;
    width: 85%;
    margin: auto;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    align-items: center;
}

.header-left {
    display: flex;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
}

.header-left-text h1 {
    color: var(--color-shortsey-orange);
    font-weight: 400;
    font-family: Realistica, serif;
    width: 4em;
    margin-right: 0em;
}

header nav ul {
    display: flex;
    flex-direction: row;
    margin: 1em auto;
    justify-content: flex-end;
    font-weight: 400;
    font-size: 1em;
}

header nav a {
    color: black;
    padding-left: 0.5em;
}

a[href^="mailto:"]:hover {
    color: var(--color-shortsey-orange);
}

header nav a:hover {
    color: var(--color-shortsey-orange);
}

@media only screen and (min-width: 414px) {
    header {
        width: 100%;
        align-items: center;
        height: auto;
    }

    .header-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        place-content: center space-between;
        width: 90%;
    }

    .header-left {
        display: flex;
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        align-items: center;
        position: static;
    }

    .header-left-img {
        width: 5em;
        margin-right: 0em;
    }

    .header-right {
        display: flex;
        flex-direction: row;
        place-content: center flex-end;
        align-items: center;
        position: static;
    }

    header nav {
        width: 100%;
        display: flex;
        flex-direction: row;
        margin: auto;
        justify-content: space-between;
        font-weight: 500;
        font-size: 1.2em;
    }

    header nav a {
        margin-left: 1em;
    }
}

.subtitle-all {
    text-align: center;
    width: 100%;
}

.subtitle-all h2 {
    margin: 0.5em auto 0em;
    font-size: 2.3em;
    font-weight: 600;
    padding-left: 16px;
    padding-right: 16px;
}

.subtitle-all p {
    color: var(--color-text-secondary);
    margin: 0.5em auto 1em;
    font-size: 1.25em;
    line-height: 1.35em;
    font-weight: 300;
    width: 85%;
}

.app-store-buttons {
    padding-left: 16px;
    padding-right: 16px;
}

.hero-subtitle-mobile {
  display: none;
}

.hero-subtitle-desktop {
  display: block;
}

@media only screen and (max-width: 600px) {
  .hero-subtitle-mobile {
    display: block;
  }

  .hero-subtitle-desktop {
    display: none;
  }
}

@media only screen and (min-width: 550px) {
    .subtitle-all {
        width: 100%;
        margin: 4em auto 1em;
    }

    .subtitle-all p {
        width: 70%;
    }
}

@media only screen and (min-width: 768px) {
    .subtitle-all p {
        width: 60%;
    }
}

@media only screen and (min-width: 1000px) {
    .subtitle-all p {
        width: 60%;
    }
    .subtitle-all h2 {
        font-size: 50px;
    }
}

@media only screen and (min-width: 1400px) {
    .subtitle-all p {
        width: 40%;
    }
    .subtitle-all h2 {
        font-size: 50px;
    }
}

.hero-img {
    object-fit: cover;
    height: auto;
    margin-top: 2em;
    width: 100%;
}

@media only screen and (min-width: 700px) {
    .hero-img {
        height: 65vh;
        object-fit: contain;
    }
}

.subtitle-support-pages {
    text-align: center;
    width: 100%;
    margin: auto;
    padding: 2em 0px 0px;
}

.subtitle-support-pages h2 {
    width: 85%;
    margin: auto;
    padding-top: 1em;
}

.subtitle-support-pages p {
    width: 85%;
    padding-bottom: 3em;
    padding-top: 1em;
    margin: auto;
}

@media only screen and (min-width: 550px) {
    .subtitle-support-pages h2 {
        width: 70%;
        font-size: 2.25em;
    }

    .subtitle-support-pages p {
        width: 70%;
        padding-bottom: 4em;
        background-color: red;
    }
}

@media only screen and (min-width: 1000px) {
    .subtitle-support-pages h2 {
        width: 50%;
    }

    .subtitle-support-pages p {
        width: 50%;
    }
}

.background-dark {
    background-color: var(--color-background-dark);
    width: 100%;
    color: black;
}

.get-shortsey {
    width: 100%;
    padding: 5em 0px;
    text-align: center;
}

.get-shortsey h2 {
    width: 80%;
    margin: auto;
    color: black;
    font-size: 1.5em;
    line-height: 1.5em;
}

.get-shortsey p {
    padding: 1em 0px 1.5em;
    margin: auto;
    color: black;
    font-size: 1.25em;
    line-height: 1.25em;
    font-weight: 300;
}

.download-container {
    display: block;
    width: 50%;
    margin: auto;
}

.download-button img {
    height: 64px;
    width: 197px;
}

.subtitle-yellow {
    color: var(--color-shortsey-orange);
}

@media only screen and (min-width: 600px) {
    .button-element {
        padding: 4em 0px;
    }

    .button-element p {
        padding: 1em 0px 1.5em;
        width: 35%;
    }

    #subtitle-yellow {
        margin-bottom: 2em;
    }

    .download-button div {
        margin: 0px;
    }
}

.feature-image-all {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    margin: 2em auto;
}

.feature-image-item {
    margin: 1em auto;
}

.feature-image-item img {
    margin: 0px auto 0.5em;
    object-fit: contain;
    height: 30em;
}

.feature-image-item div h2 {
    font-size: 2.2em;
    padding: 0.25em 0px;
}

.feature-image-item div h3 {
    margin-bottom: 0.5em;
    font-size: 1.5em;
}

.feature-image-item div p {
    margin-bottom: 2.5em;
}

#feature-image-item-second-desktop, #feature-image-item-second-desktop-1 {
    display: none;
}

.feature-smaller-title {
    font-size: 1.7em;
    margin-bottom: 0.5em;
    line-height: 1.2em;
}

@media only screen and (min-width: 64em) {
    .feature-image-all {
        width: 80%;
        margin: 2em auto;
    }

    .feature-image-item {
        display: flex;
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .feature-image-item div {
        display: flex;
        flex-direction: column;
        width: 40%;
        text-align: left;
        justify-content: center;
    }

    .feature-image-item div h2 {
        font-size: 1.75em;
        line-height: 1em;
    }

    .feature-image-item div h3 {
        font-size: 1.5em;
    }

    .feature-image-item picture {
        margin: 0px;
        max-width: 50%;
    }

    #feature-second {
        text-align: right;
    }

    #feature-image-item-second-desktop, #feature-image-item-second-desktop-1 {
        display: flex;
        margin-left: 2em;
    }

    #feature-image-item-second-desktop div, #feature-image-item-second-desktop-1 div {
        margin-right: 5em;
        margin-left: 0px;
    }

    #feature-image-item-second-mobile, #feature-image-item-second-mobile-1 {
        display: none;
    }
}

@media only screen and (min-width: 1000px) {
    .feature-image-all {
        width: 75%;
    }
}

.features-no-image-all {
    margin: auto;
    text-align: left;
    width: 80%;
}

.feature-no-image-item {
    margin: 3em auto;
}

.feature-no-image-item h3 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

@media only screen and (min-width: 700px) {
    .features-no-image-all {
        display: grid;
        justify-content: center;
        grid-template-columns: 33% 33% 33%;
        grid-template-rows: auto;
        gap: 0.5em 1em;
        width: 80%;
        text-align: left;
        margin: 2em auto;
    }
}

@media only screen and (min-width: 1000px) {
    .features-no-image-all {
        width: 75%;
    }
}

.user-feedback-all {
    padding: 1em 0px 3em;
}

.user-feedback-title {
    width: 70%;
    text-align: center;
    margin: auto;
    padding: 2em 0px;
}

.user-feedback-title h2 {
    padding: 0px 0px 0.5em;
    color: black;
}

#user-feedback-title-yellow {
    color: var(--color-shortsey-orange);
}

.user-feedback-grid {
    background-color: var(--color-background-dark);
}

.user-feedback-grid-item {
    margin-bottom: 3em;
}

.user-feedback-grid-item p {
    color: black;
    text-align: center;
    font-size: 1.2em;
    line-height: 120%;
}

.user-feedback-grid-item h5 {
    color: black;
    text-align: center;
    font-weight: normal;
}

.user-feedback-grid-divider {
    border: 1px solid var(--color-shortsey-orange);
    width: 20%;
    margin: 1.5em auto 1em;
}

.index-one-all {
    display: grid;
    grid-template-columns: 85%;
    grid-template-rows: auto;
    gap: 2em 1em;
    margin: auto;
    padding-top: 3em;
    padding-bottom: 1em;
    justify-content: center;
    text-align: center;
}

.index-one-text {
    width: 85%;
    margin: auto;
    align-self: center;
    color: var(--color-text-light);
}

.index-one-text h2 {
    font-size: 2em;
    line-height: 1.25;
    color: black;
}

.index-one-text p {
    padding: 0.5em 0px 1.5em;
    font-size: 1.45em;
    color: var(--color-text-secondary);
    font-weight: 200;
}

.index-one-img {
    width: 10em;
    margin: auto;
}

.hero {
    background-color: var(--color-background-dark);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 5em;
}

@media only screen and (min-width: 600px) {
    .index-one-all {
        display: grid;
        grid-template-columns: 45% 45%;
        column-gap: 1em;
        margin: auto;
        text-align: left;
        padding: 4em 0px;
    }

    .index-one-all {
        place-self: center;
    }

    .index-one-img {
        width: 15em;
        margin: auto;
    }

    .index-one-text h2 {
        font-size: 2em;
        line-height: 1.5;
    }

    .index-one-text p {
        font-size: 1.2em;
    }
}

@media only screen and (min-width: 1000px) {
    .index-one-text {
        margin: 0px 0px 0px 8em;
    }

    .index-one-text h2 {
        font-size: 2.25em;
        line-height: 1.5;
    }

    .index-one-text p {
        font-size: 1.25em;
    }
}

.index-last-all {
    display: none;
}

.mailchimp-signup-all {
    display: none;
}

@media only screen and (min-width: 650px) {
}

@media only screen and (min-width: 1000px) {
    .index-one-text {
        margin: 0px 0px 0px 8em;
    }

    .index-one-text h2 {
        font-size: 2.25em;
        line-height: 1.5;
    }

    .index-one-text p {
        font-size: 1.25em;
    }
}

.awards-by {
    color: var(--color-text-secondary);
}

.awards-all {
    display: grid;
    justify-content: center;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    row-gap: 2em;
    width: 85%;
    margin: auto;
    padding: 1em 0px 4em;
    text-align: center;
}

.awards-all a {
    transition: 0.2s;
}

.awards-all a:hover {
    transform: translateY(-4px) translateX(1px);
    transition: 0.2s;
}

.awards-all-item {
    border: 1px solid rgba(188, 197, 210, 0.75);
    background-color: black;
    border-radius: 0.5em;
    padding: 2em 1em;
    overflow: hidden;
}

.awards-all-item img {
    width: 25%;
    height: 50%;
}

@media only screen and (min-width: 550px) {
    .awards-all {
        width: 70%;
    }
}

@media only screen and (min-width: 750px) {
    .awards-all {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-rows: auto;
        column-gap: 2em;
        text-align: left;
        justify-content: center;
        width: 85%;
        padding: 2em 0px 4em;
    }

    .awards-all-item {
        display: grid;
        grid-template-columns: 30% 70%;
        grid-template-rows: auto;
    }

    .awards-all-item img {
        width: 80%;
        height: auto;
        margin-bottom: 1em;
    }
}

@media only screen and (min-width: 1000px) {
    .awards-all {
        grid-template-columns: 40% 40%;
    }
}

.blog-overview {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    gap: 2em;
    width: 80%;
    margin: auto;
    padding: 2em 0px;
}

.blog-overview-post {
    padding-bottom: 3em;
}

.blog-overview-post-img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: contain;
    padding-bottom: 1em;
}

.blog-overview-post-title {
    margin: 0.5em auto;
}

.blog-overview-post-title:hover {
    color: var(--color-shortsey-violet);
}

.blog-overview-post-readmore {
    color: var(--color-shortsey-violet);
}

.blog-overview-post-info {
    display: flex;
    flex-flow: row;
    align-items: center;
    font-size: 0.9em;
    margin-top: 1em;
}

.blog-overview-post-info div {
    display: flex;
    flex-flow: column;
}

.blog-overview-post-author-img {
    width: 3em;
    height: 3em;
    margin-right: 1.5em;
}

.blog-overview-post-date {
    margin-right: 1em;
    color: var(--color-text-secondary);
}

.blog-overview-post-tags {
    display: flex;
    flex-direction: row;
}

.blog-overview-post-tags a::before {
    content: "#";
    color: var(--color-shortsey-blue);
}

.blog-overview-post-tags a {
    color: var(--color-shortsey-blue);
    padding-right: 0.5em;
}

.blog-overview-post-seperator {
    border-bottom: solid var(--color-shortsey-violet) 2px;
    width: 35%;
    text-align: center;
    margin: auto;
    padding: 2em 0px;
}

.blog-overview-post-seperator:last-of-type {
    display: none;
}

@media only screen and (min-width: 850px) {
    .blog-overview {
        width: 50%;
    }
}

.blogpost-all {
    width: 80%;
    margin: auto;
    padding: 3em 0px;
}

#blogpost-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2em;
    margin-top: 1.5em;
}

.blogpost-author-img {
    width: 3em;
    height: 3em;
    margin-right: 1.5em;
}

.blogpost-date {
    color: var(--color-text-secondary);
    margin-bottom: 0.5em;
    font-size: 0.9em;
}

.blogpost-hero-img {
    margin: 1em auto;
    max-height: 25em;
}

.blogpost-all p img {
    margin: 1em auto;
    max-height: 25em;
}

.blogpost-nav {
    margin: auto;
    padding: 1em 0px 0px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-top: 1px solid var(--color-background-dark);
}

.blogpost-nav a {
    color: var(--color-shortsey-blue);
}

.blogpost-nav img {
    width: 30px;
}

.blogpost-nav-prev {
    text-align: left;
}

.blogpost-nav-next {
    text-align: right;
}

@media only screen and (min-width: 500px) {
    .blogpost-all {
        width: 70%;
        padding: 6em 0px;
    }

    .blogpost-all p img {
        margin: 2em auto;
    }

    .blogpost-all p {
        padding-bottom: 2em;
    }

    .blogpost-nav {
        margin: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        border-top: 1px solid var(--color-background-dark);
    }
}

.crew-member {
    width: 90%;
    margin: 3em auto;
    text-align: center;
}

.crew-member > img {
    border-radius: 100%;
    width: 6em;
    height: 6em;
    padding-bottom: 0.25em;
    object-fit: cover;
}

.crew-social img {
    width: 1.75em;
    height: 1.75em;
    margin: auto;
    padding: 0.35em;
}

.crew-social img:hover {
    transform: translateY(-1px);
    transition: 0.2s;
}

@media only screen and (min-width: 40em) {
    .crew-all {
        max-width: 50%;
        margin: 2em auto;
        display: grid;
        justify-content: center;
        grid-template-columns: 40% 40%;
        grid-template-rows: auto;
        gap: 4em 3em;
    }

    .crew-member {
        margin: 0px auto;
    }
}

@media only screen and (min-width: 64em) {
    .crew-all {
        max-width: 80%;
        margin-top: 4em;
        margin-bottom: 2em;
        display: flex;
        justify-content: center;
        grid-template-columns: 22% 22% 22% 22%;
        grid-template-rows: auto;
    }

    .crew-member {
        margin: 0px auto;
    }
}

.button-container {
    margin-top: 6em;
    margin-bottom: 4em;
}

.center {
    text-align: center;
}

.button {
    background-color: var(--color-shortsey-violet);
    border-radius: 0.4em;
    color: var(--color-text-light);
    padding: 1em 4em;
    text-align: center;
    border-color: var(--color-shortsey-violet);
    border-width: 1px;
    border-style: solid;
}

.button:hover {
    background-color: var(--color-text-light);
    color: white;
    transition: 0.2s;
    border-color: var(--color-shortsey-violet);
}

@media only screen and (min-width: 64em) {
    .mail-button {
        padding: 1em 3em;
    }
}

.contact-all {
    width: 90%;
    margin: auto;
    padding: 0px 0px 4em;
}

.contact-all h1 {
    padding-top: 2em;
    padding-bottom: 0.25em;
    color: var(--color-shortsey-orange);
}

.contact-all h2 {
    padding-top: 2em;
    padding-bottom: 0.5em;
}

.contact-all h3 {
    font-size: 1.75em;
    color: var(--color-text-secondary);
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.contact-all h4 {
    margin: 1em auto 0px;
    padding-bottom: 0.5em;
    font-weight: 600;
    font-size: 1.1em;
    border-bottom: 1px solid var(--color-grey);
}

.contact-all p {
}

.contact-all a {
    color: var(--color-text-main);
    text-decoration: underline;
}

.contact-all a:hover {
    color: var(--color-shortsey-violet);
}

.social-link {
    display: flex;
    justify-content: start;
    flex-direction: row;
    align-items: center;
    margin-top: 0.5em;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5em;
}

.help-group-titles {
    margin-top: 1.5em;
}

.help-topics h2 {
    margin-bottom: 0.5em;
}

.help-topics p {
    margin: 0px 1em;
}

.help-topics a {
    color: var(--color-text-main);
    text-decoration: underline;
    text-decoration-color: var(--color-shortsey-orange);
}

.help-all p {
    padding-top: 1em;
    padding-bottom: 2em;
    width: 90%;
    margin: 0px;
}

.no-spacing {
    padding: 0px !important;
}

@media only screen and (min-width: 550px) {
    .contact-all {
        width: 65%;
        padding-bottom: 5em;
    }
}

.support-all {
    width: 90%;
    margin: 4em auto;
}

.support-all p {
    margin: 0.5em auto 2em;
}

@media only screen and (min-width: 550px) {
    .support-all {
        width: 65%;
    }
}

footer {
    display: flex;
    flex-direction: column;
    font-size: 0.75em;
    background-color: var(--color-background-dark);
}

.footer-top-part {
    display: flex;
    flex-direction: row;
    padding-top: 3em;
    padding-bottom: 3em;
    justify-content: space-around;
    width: 95%;
    margin: auto;
}

.footer-top-part h4 {
    font-weight: bold;
    padding-bottom: 0.8em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.footer-top-part p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    color: var(--color-text-secondary);
}

.footer-top-part p:hover {
    color: var(--color-shortsey-orange);
}

.footer-bottom-part p {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 2em;
    margin-bottom: env(safe-area-inset-bottom);
    color: var(--color-text-secondary);
}

@media only screen and (min-width: 64em) {
    footer {
        font-size: 0.85em;
    }

    .footer-top-part {
        justify-content: space-between;
        max-width: 36em;
    }
}

.flags a {
    border: 0px;
}

.flags a img {
    width: auto;
}
