@keyframes fade {
    0% {
        opacity: 0;
        transform: translate(0, 0.5rem);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .in-view {
        animation: fade 1s 1s both;
    }

    .not-in-view {
        opacity: 0;
    }
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body, .main {
    height: 100%;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
    background-color: #fff;
    color: #3c3c3b;
    /* green: #2fac66; */
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.row {
    width: 100%;
    max-width: 600px;
    padding: 0.8rem 0.8rem;
    margin: 0 auto;
}

.rowheader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    border-bottom: 1px solid #2fac6636;
}

.sub-logo {
    width: 205px;
    height: auto;
}

.backlink {
    display: flex;
    flex-direction: row;
    align-items: center;
    svg {
        color: #2fac66;
    }
    span {
        padding-left: 1rem;
    }
}

.left-arrow {
    margin: 0px 16px;
}

.rowcontent {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /*height: calc(100% - 40px - 40px);*/
}


.start .rowcontent {
    justify-content: center;
    min-height: 600px;
    @media only screen and (max-width: 600px) {
        min-height: 400px;
    }
    @media only screen and (max-width: 400px) {
        min-height: 300px;
    }

    /*h1, div, img {*/
    /*    opacity: 0;*/
    /*}*/
}



.rowfooter {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;

    height: 60px;

    @media only screen and (max-width: 380px) {
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        height: auto;
    }



    font-size: 12px;
    color: #acacac;
    border-top: 1px solid #2fac6636;

    padding-bottom: 1.6rem;
}



.rowfooter .right ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.rowfooter .right ul li {
    display: inline;
    margin-left: 1em;
}

.rowfooter .right ul li:first-child {
    margin-left: 0px;
}


.startheader {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
}

.inner-logo {
    width: 100%;
    height: auto;
}

a {
    color: #acacac;
    text-align: center;
    text-decoration: underline;
}

a:hover, a:active {
    text-decoration: none;
}

.rowfooter .left a {
    text-decoration: none;
    @media only screen and (max-width: 380px) {
        padding: 0.5rem 0.5rem;
    }
}

.rowfooter .right a {

    @media only screen and (max-width: 380px) {
        padding: 0.5rem 0.5rem;
    }
}

