/* xarc  */

:root {

    --awo-main-content-width: 1240px;
    --awo-color-main-blue: #2E3191;
    --awo-color-main-blue-alternative: #0427FB;

    --awo-color-gray-light: hsl(0 0% 90%);
    --awo-color-gray-middle: hsl(0 0% 80%);
    --awo-color-gray-dark: hsl(0 0% 50%);

}

BODY {
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    /* font-family: "Quicksand", sans-serif; */
    font-family: "Barlow", sans-serif;
    background-color: white;
}

textarea {
    font-family: "Barlow", sans-serif;
}

a {
    text-decoration: none;
    color: var(--awo-color-main-blue);
}

a:hover {
    text-decoration: none;
    color: var(--awo-color-main-blue-alternative);
}

em {
    font-style: italic;
}

STRONG {
    font-weight: bold;
}

#header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(0, 0%, 83%);
    padding-top: 9px;
    padding-bottom: 6px;
    width: 100%;
}

#header .xc-aw-company-logo {
    align-self: center;
    justify-self: start;
}

#header .xc-aw-company-logo IMG {
    height: 28px;
    margin-left: 6px;
}

#header .xc-aw-company-hamburger {
    align-self: center;
    justify-self: end;
    margin-right: 6px;
}

#header .xc-aw-company-hamburger IMG {
    height: 28px;
    margin-left: 6px;
    filter: contrast(.6);
}

FOOTER#footer {
    background-color: rgb(224, 224, 224);
    /* background-color: var(--awo-color-main-blue); */
    /* color: white; */
    margin-top: 3em;
    display: grid;
    /* grid-template-columns: 1fr auto; */
    grid-template-rows: 1fr auto;
    grid-gap: .75em;
    padding: 2em 6px;
    text-align: center;

}

FOOTER#footer #copyright {
    font-weight: 200;
    font-size: .8em;
    margin-top: 24px;
    margin-bottom: 0px;
}

FOOTER#footer #awo-menu-nav-footer-wrapper A {
    font-weight: 200;
    text-decoration: none;
    color: var(--awo-color-main-blue);
    /* color: #8996dd; */
    font-size: 1.15em;
}

.main-project-categories {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1em;
}

#menu-menu-main {
    position: absolute;
    padding: 12px;
    padding-left: 18px;
    border: 1px solid lightgray;
    border-radius: 6px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;
    line-height: 1.75;
    min-width: 120px;

    right: 0;
    left: 0;
    margin-top: 7px;

    background-color: rgba(255, 255, 255, 0.89);
    backdrop-filter: blur(20px) !important;

    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

    font-size: 1.1em;

}

#menu-menu-main a {
    text-decoration: none;
    color: black;
}

.aw-menu-nav-main {
    align-self: center;
    justify-self: end;
}

.menu A:hover {
    font-weight: 800 !important;
}

.menu .current-menu-item A {
    font-weight: 800;
}

.menu .current-menu-item .sub-menu A {
    font-weight: 200;
}

.menu .current-menu-item .sub-menu .current-menu-item A {
    font-weight: 800;
}

.menu .current-menu-item,
.menu .current-menu-item A {
    font-weight: 800;
}

/* .menu-item {
    background-color: yellow;
    width: 100%;
    display: inline-block;
} */

.menu-item a {
    display: inline-block;
    width: 100%;
}

.menu-item A:hover {
    font-weight: 800;
}

.awo-menu-nav-main .sub-menu {
    margin-left: .5em;
}

#menu-menu-footer {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: .5em;
}

.the-main-container {
    /* background-color: yellow; */
    padding: 0;
    margin: 0;
    display: grid;
    margin-top: 0px;
}

BODY #content {
    align-self: stretch;
    justify-self: center;
    background-color: white;
    width: 100%;
    max-width: var(--awo-main-content-width);
    min-height: 86vh;
}

HEADER#header {
    z-index: 100000;
}

FOOTER#footer {
    height: auto;
}



.awo-button {
    border: 1px solid var(--awo-color-main-blue);
    background-color: var(--awo-color-main-blue);
    color: white;
    padding: 6px 12px;
    font-size: 1.2em;
    text-decoration: none;
    text-align: center;
    border-radius: 9px;
    transition: all 250ms ease-in;
}

.awo-button a {
    text-decoration: none;
    color: white;
    letter-spacing: 1px;
    transition: all 250ms ease-in;
}

.awo-button:hover {
    cursor: pointer;
    background-color: var(--awo-color-main-blue-alternative);
    transition: all 250ms ease-in-out;
    letter-spacing: 2px;
    transition: all 250ms ease-out;
}

.awo-button:hover a {
    letter-spacing: 2px;
    transition: all 250ms ease-out;
}

BUTTON.the-awo-button {
    background-color: var(--awo-color-main-blue);
    color: white;
    border: 1px solid var(--awo-color-main-blue);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 1.25em;
    font-weight: 100 !important;
}

BUTTON.the-awo-button:hover {
    background-color: var(--awo-color-main-blue-alternative);
    cursor: pointer;
}

BUTTON.the-awo-button:disabled,
BUTTON.the-awo-button[disabled] {
    background-color: rgb(235, 235, 235);
    color: gray;
    border-color: rgb(188, 188, 188);
    cursor: wait;
}

INPUT,
TEXTAREA {
    border: 1px;
    border-style: solid;
    border-color: lightgray;
}

INPUT:disabled,
INPUT[disabled],
TEXTAREA:disabled,
TEXTAREA[disabled] {
    background-color: lightgray;
    color: gray;
    cursor: wait;
}

.indicator {
    opacity: 0;
    transition: opacity 300ms ease-out;
}

.indicator.loading {
    opacity: 1;
    transition: opacity 300ms ease-in;
}

.loader.awo.default {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
    background: lightgray;
    box-sizing: border-box;
    animation: flipX 1s linear infinite;
}

@keyframes flipX {
    0% {
        transform: perspective(200px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
    }

    100% {
        transform: perspective(200px) rotateX(-180deg) rotateY(-180deg);
    }
}



.post-title {
    display: none;
}

.header-title-wrapper {
    display: none;
}

.entry-content {
    font-size: 1.1em;
    line-height: 1.3;
    font-weight: 350;
    padding: .5em;
}

.entry-content h2 {
    font-weight: 350;
    margin-bottom: .5em;
}

.page-vita .awo-page-content-wrapper {
    margin-top: 18px;
}

.page-imprint .entry-content {
    margin-top: 18px;
}

.page-vita .vita-photo {
    margin-top: 1em;
}


@media (min-width: 1240px) {
    #header {
        padding-left: 12px !important;
    }
}

body .page-contact #awo-contact-form-wrapper {
    margin-top: 1em;
    margin-bottom: 2em;
}

body .page-contact .form-hints {
    margin-bottom: 2em;
    font-weight: 400;
    font-size: .8em;
}

body .page-contact #awo-contact-form-wrapper .form-item {
    display: grid;
    grid-template-rows: auto 1fr;
    margin-bottom: 1em;
}

body .page-contact #awo-contact-form-wrapper .form-item LABEL {
    font-size: .9em;
    margin-bottom: .3em;
    margin-left: 6px;
}

body .page-contact #awo-contact-form-wrapper .form-item .form-input {
    border: 1px solid, lightgray;
    border-radius: 6px;
    font-size: 1em;
    padding: 9px 6px;
    width: 100%;
}

body .page-contact #awo-contact-form-wrapper .form-actions BUTTON.the-awo-button {
    width: 100%;
}

body .page-contact #awo-contact-form-wrapper .form-item .form-item-error {
    font-size: .9em;
    margin-top: .3em;
    font-weight: 500;
    margin-left: 6px;
    color: red;
}

body .page-contact .awo-address-block {
    margin-top: 2em;
    padding-top: 3em;
    margin-bottom: 2em;
    padding-right: .5em;
    border-top: 1px solid rgb(205, 205, 205);
}

body .page-contact .awo-address-block .awo-address-block-details .awo-address-block-item.phone-email {
    margin-top: .5em;
}

#awo-contact-form-wrapper .indicator.loading {
    margin-top: 15vh;
    margin-bottom: 15vh;
    text-align: center;
}

.page-data-privacy h2 {
    margin-top: 2em
}

.page-data-privacy {
    overflow-wrap: break-word;
}

.awo-icon {
    margin-top: 2.5px;
    margin-left: 12px;
    height: 22px;
}

#main-footer .main-footer-wrapper {
    background-color: #e0e0e0;
    display: grid;
    color: #3f3f3f;
    line-height: 1.3;
    font-weight: 200;
    margin-top: 3em;
}

#main-footer .main-footer-inner-wrapper {
    align-self: center;
    justify-self: center;
    display: grid;
    grid-template-rows: auto auto auto;
    width: 100%;
    max-width: var(--awo-main-content-width);
    grid-gap: 1em;
    padding: 12px;
    padding-bottom: 32px;
}

#main-footer .main-footer-inner-wrapper h1,
#main-footer .main-footer-inner-wrapper h2,
#main-footer .main-footer-inner-wrapper strong {
    font-weight: 200;
    font-size: 1.5em;
    margin: 0;
    padding: 0;
    /* background-color: yellow; */
}

#main-footer .main-footer-wrapper .contact h2 {
    margin-bottom: .75em;
}

#main-footer .main-footer-wrapper .company,
#main-footer .main-footer-wrapper .contact,
#main-footer .main-footer-wrapper .links {
    justify-self: center;
    display: grid;
    text-align: center;
    margin-top: 24px;
    padding-bottom: 0;
}

#main-footer .main-footer-inner-wrapper .footer-navigation {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 1em;
    margin-bottom: 24px;
}

#main-footer .main-footer-inner-wrapper #copyright {
    font-size: 12px;
}

@media (max-width: 899px) {

    #main-footer .main-footer-wrapper .company,
    #main-footer .main-footer-wrapper .contact {

        border-bottom: 1px solid rgb(207, 207, 207);
        padding-bottom: 2em;
        width: 100%;
    }

    #main-footer .main-footer-inner-wrapper .company .subheadline {
        display: inline-block;
        font-weight: 200;
        font-size: .75em;
        letter-spacing: 2.5px;
        margin-top: .5em;
        margin-bottom: 2em;
    }
}

@media (min-width: 900px) {

    #header {
        /* background-color: yellow; */
        border-bottom: none;
        padding-top: 24px;
        /* padding-left: 18px; */
        /* padding-left: 0px !important; */
        padding-right: 12px;
        padding-bottom: 24px;
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important; */
    }

    .awo-icon {
        margin-top: 4.5px;
    }

    #header .xc-aw-company-hamburger IMG {
        height: 32px;
    }

    #menu-menu-main {
        width: auto;
        min-width: 156px;
        /* text-align: right; */
        right: 0;
        left: auto;
        margin-top: 6px;
        margin-right: 9px;
        font-size: 1em;
    }

    .header-title-wrapper {
        display: inline-block;
    }

    #main-footer .main-footer-wrapper {
        background-color: #e0e0e0;
        display: grid;
        color: #3f3f3f;
        line-height: 1.3;
        font-weight: 200;
    }

    #main-footer .main-footer-inner-wrapper {
        align-self: center;
        justify-self: center;
        display: grid;
        width: 100%;
        max-width: var(--awo-main-content-width);
        grid-template-rows: 1fr;
        grid-template-columns: 1fr auto auto;
        grid-gap: 6em;
        padding: 12px;
        padding-bottom: 24px
    }

    #main-footer .main-footer-wrapper .company,
    #main-footer .main-footer-wrapper .contact,
    #main-footer .main-footer-wrapper .links {
        text-align: left;
    }

    #main-footer .main-footer-inner-wrapper .company {
        justify-self: start;
    }

    #main-footer .main-footer-inner-wrapper .company strong {
        display: inline-block;
        font-weight: 300;
        font-size: 1.45em;
        /* margin-bottom: .5em !important; */
        /* margin-bottom: -.25em !important; */
        padding-bottom: 0 !important;
    }

    #main-footer .main-footer-inner-wrapper .company .subheadline {
        display: inline-block;
        font-weight: 200;
        font-size: .85em;
        letter-spacing: 2.5px;
        margin-bottom: 2em;
    }

    #main-footer .main-footer-inner-wrapper .contact {
        display: grid;
        grid-template-rows: auto 1f;
        border-left: 1px solid #aeaeae;
        padding-left: 18px;
        align-self: center;
        justify-self: center;
        border-top: none;
        padding-top: none;
    }

    #main-footer .main-footer-inner-wrapper .contact h2 {
        font-weight: 200;
        margin-bottom: .25em
    }

    #main-footer .main-footer-inner-wrapper .links {
        display: grid;
        grid-template-rows: auto 1fr;
        border-left: 1px solid #aeaeae;
        padding-left: 18px;
        border-top: none;
        padding-top: none;
    }

    #main-footer .main-footer-inner-wrapper .links #copyright {
        align-self: end;
        justify-self: start;
        font-size: 80%;
    }

    #main-footer .main-footer-inner-wrapper .footer-navigation {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr !important;
        grid-gap: 0;
    }

    .entry-content {
        padding: .5em;
    }

    .page-vita .awo-page-content-wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-gap: 8em;
    }

    .page-vita .awo-page-content-wrapper h2 {
        margin-top: 0em;
    }

    .page-vita .awo-vita-paragraph {
        margin-bottom: 2em;
    }

    .page-vita .awo-vita-wrapper .awo-columns {
        display: grid;
        grid-template-columns: auto auto;
        grid-gap: 1.5em;
    }

    .page-vita .awo-vita-wrapper .awo-column.right {
        margin-top: 2.5em;
        min-width: 75%;
    }

    body .page-contact .entry-content {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-gap: 5em;
    }

    body .page-contact #awo-contact-form-wrapper .form-actions BUTTON.the-awo-button {
        width: auto;
    }

    body .page-contact .awo-address-block .awo-address-block-details {
        margin-top: 1.75em;
    }

    body .page-contact .awo-address-block {
        margin-top: 1em;
        padding-top: 0;
        border-top: none;
        margin-bottom: 0;
    }

    #awo-contact-form-wrapper .indicator.loading {
        margin-top: 0;
        margin-bottom: 0;
    }

    .vita-works-collection {
        font-size: .9em;
        line-height: 1.45;
    }

}