/* - - - - Fonts - - - - */

/* Webfont: Adapter-Regular */
@font-face {
    font-family: 'Adapter';
    src: url('../fonts/Adapter/Adapter_Regular.woff2') format('woff2'),
        /* Modern Browsers */
        url('../fonts/Adapter_Regular.otf') format('opentype');
    /* Safari, Android, iOS */
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

/* Webfont: Adapter-Bold */
@font-face {
    font-family: 'Adapter';
    src: url('../fonts/Adapter/Adapter_bold.woff2') format('woff2'),
        /* Modern Browsers */
        url('../fonts/AdapterAdapter_bold.otf') format('opentype');
    /* Safari, Android, iOS */
    font-style: normal;
    font-weight: bold;
    text-rendering: optimizeLegibility;
}

/* - - - - Reset - - - - */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;

    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

/* page layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}

main {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    justify-content: flex-start;
}

/* text selection */

::-moz-selection {
    /* Code for Firefox */
    color: #000000;
    background: #E5E5E5;
}

::selection {
    color: #000000;
    background: #E5E5E5;
}

/* - - - - Variables - - - - */
:root {
    --green: #03953E;
    --dark-green: #146D49;
    --light-green: #B8BE24;
    --violet: #581845;
    --purple: #3c2f85;
    --light-purple: #98628C;
    --turquoise: #13A7BB;
    --yellow: #FFBA00;
    --red: #eb5816;
    --ocean-blue: #0B42D6;
    --light-grey: #E3E3E3;
    --dark-grey: #969696;
    --beige: #F6F6EE;
    --black: #000000;
    --white: #FFFFFF;
}

/* - - - - Typography - - - - */
html,
body {
    font-family: "Adapter", sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 200;
    line-height: 135%;
    font-variant-ligatures: discretionary-ligatures;
    color: var(--black);
}

a {
    font-weight: bold;
    color: var(--turquoise);
    text-decoration: none;
    transition: all .1s ease-out;
}

a:hover {
    text-decoration: underline;
    color: #000;
}

.headline-big {
    font-size: 2.3rem;
    line-height: 105%;
    font-weight: bold;
}

.text-medium {
    font-size: 1.2rem;
    line-height: 135%;
}

.text-medium p {
    margin-bottom: 0.8rem;
}

p strong {
    font-weight: bold;
}

p.turquoise {
    color: var(--turquoise);
}

/* - - - - Layout - - - - */
.container-fluid {
    padding-left: max(1.5rem, 5%) !important;
    padding-right: max(1.5rem, 5%) !important;
}

/* - - - - Utitlities - - - - */

/* hide completely */
.hide {
    display: none !important;
}

/* colors */
.green {
    background-color: var(--green);
}

.dark-green {
    background-color: var(--dark-green);
}

.light-green {
    background-color: var(--light-green);
}

.violet {
    background-color: var(--violet);
}

.red {
    background-color: var(--red);
}

.yellow {
    background-color: var(--yellow);
}

.blue {
    background-color: var(--ocean-blue);
}

.purple {
    background-color: var(--purple);
}

.turquoise {
    background-color: var(--turquoise);
}

.beige {
    background-color: var(--beige);
}

.dark-grey {
    background-color: var(--dark-grey);
}

.light-grey {
    background-color: var(--light-grey);
}

.black {
    background-color: var(--black);
}

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

/* number */
.number {
    display: flex;
    padding-top: 0.1rem;
    width: 2.5ch;
    height: 2.5ch;
    background: var(--turquoise);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.numbered-headline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

/* zoom on hover */
.zoom {
    -webkit-transition: transform 0.2s ease-out;
    -moz-transition: transform 0.2s ease-out;
    -o-transition: transform 0.2s ease-out;
    -ms-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out !important;
}

.zoom:hover {
    transform: scale(1.1);
}

/* line */
hr {
    margin: 3rem 0;
    border-top: 4px solid var(--light-grey);
    opacity: 1;
}

/* rounded */
.round-corners {
    border-radius: 0.7rem;
}

/* rounded outline buttons */
.rounded {
    border-radius: 2rem !important;
    padding: 0.3rem 0.7rem;
    color: var(--white);
    font-size: 94%;
}

/* outline buttons */
.outline-button {
    width: fit-content;
    height: fit-content;
    padding-top: 0.05rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0rem;
    border: 2px solid #000;
    border-radius: 2rem;
    color: #000;
    font-size: 1rem;
    text-decoration: none;
    transition: all .1s ease-out;
}

/* hover */
.outline-button:hover {
    text-decoration: none;
}

/* dark button */
.outline-button:hover,
.outline-button.dark {
    background: #000;
    color: #fff;
}

.outline-button.dark:hover {
    background: var(--turquoise);
    border: 2px solid var(--turquoise);
}

/* green button */
.outline-button.green {
    background: var(--turquoise);
    border: 2px solid var(--turquoise);
    color: #fff;
}

.outline-button.green:hover {
    background: #fff;
    color: var(--turquoise);
    border: 2px solid var(--turquoise);
}

/* red button */
.outline-button.red {
    background: var(--red);
    border: 2px solid var(--red);
    color: #fff;
}

.outline-button.red:hover {
    background: #fff;
    color: var(--red);
    border: 2px solid var(--red);
}

/* big button */
.outline-button.big {
    font-weight: bold;
    padding: 0.15rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

button.outline-button.big:hover,
input.outline-button.big:hover,
.outline-button.big:hover {
    color: #000;
    background: #fff;
    border: 2px solid #000;
}

/* large button */
.outline-button.large {
    font-weight: bold;
    padding: 0.5rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

button.outline-button.large:hover,
input.outline-button.large:hover,
.outline-button.large:hover {
    color: #000;
    background: #fff;
    border: 2px solid #000;
}

/* small icons */
.icon-small {
    height: 1.3rem;
    width: auto;
}

.icon-small.arrow {
    height: 0.7rem !important;
    width: auto;
}

.outline-button.big .icon-small {
    height: 1rem;
    width: auto;
    margin-bottom: 0.09rem;
}

.outline-button.big:hover .icon-small,
.outline-button.large:hover .icon-small {
    filter: invert(1);
}

/* big icons */
.icon-big {
    height: 3rem;
    width: auto;
}

/* line */
.line {
    border-top: 3px solid var(--light-grey);
}

/* forms */
.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.button-input {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.button-input .field,
.text-field {
    min-width: 60%;
    max-width: 100%;
    height: 2.5rem;
    background: #fff;
    color: var(--turquoise);
    border: 2px solid #000;
    border-right: none !important;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    border-radius: 1rem 0 0 1rem;
}

.text-field {
    border-radius: 1rem;
    border: 2px solid #000 !important;
}

.button-input .field:focus-visible,
.button-input .field:focus {
    outline: none;
    border: 2px solid var(--turquoise);
    border-radius: 1rem 0 0 1rem !important;
}

.text-field:focus-visible,
.text-field:focus {
    outline: none;
    border: 2px solid var(--turquoise);
    border-radius: 1rem !important;
}

input::placeholder {
    color: var(--dark-grey);
}

input::-ms-input-placeholder {
    color: var(--dark-grey);
}

.button-input .button {
    height: 2.5rem;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 0.5rem 1rem;
    border-radius: 0 1rem 1rem 0;
    font-weight: bold;
    transition: all .1s ease-out;
}

.button-input .button:hover {
    color: #fff;
    background: var(--turquoise);
    border: 2px solid #000;
}

.text-success {
    color: var(--green) !important;
}

.alert {
    padding-left: 0;
}

.alert li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.alert li p {
    margin: 0;
}

/* collabsible */
.collapse-trigger {
    text-decoration: underline;
}

/* - - - - Navigation - - - - */

nav {
    position: fixed !important;
    top: 0;
    background: transparent;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .login-wrapper {
    display: flex;
    gap: 0.5rem;
}

nav .path-wrapper {
    display: flex;
    flex-direction: row;
    gap: 0.3rem;
    align-items: center;
}

nav .homebutton {
    width: 1.1rem;
    margin-top: -0.2rem;
    margin-right: 0.2rem;
}

nav a {
    pointer-events: auto;
}

nav span {
    height: fit-content;
    font-size: 1.2rem;
}

/* - - - - Footer - - - - */

/* contact section */
.contact {
    color: var(--white);
}

.contact h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact .icon-wrapper {
    position: relative;
    aspect-ratio: 5 / 2;
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.contact .icon-wrapper img {
    width: 100%;
    max-width: 80px;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

/* legal section */
footer {
    background-color: #000;
    color: #fff;
    margin-top: auto;
    font-weight: bold;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: var(--turquoise);
    text-decoration: none;
}

.copy-sign {
    font-weight: normal;
}

.insta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.insta span {
    margin-top: 0.2rem;
}

/* - - - - Page: home - - - - */

/* slides section */
.home .slides {
    height: 75vh;
    min-height: unset;
}

.home .slides>div {
    min-height: unset;
}

.home .slides .image-wrapper {
    padding: 2rem;
}

.home .slides h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.home .slides h2 {
    font-size: 1.6rem;
    margin: 0;
}

/* intro text section */
.intro-text {}

/* quote section */
.quote {}

.portrait-image {
    display: block;
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 50%;
    border: 7px solid var(--white);

    /* testen, manchmal braucht man height: fit-content */
    /* height: fit-content; */

    overflow: hidden;
}

.portrait-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.quote-wrapper {
    position: relative;
}

.quote-left-symbol {
    position: absolute;
    top: 41%;
    left: -0.5rem;
    width: 3.5rem;
    height: auto;
    z-index: 0;
}

.quote-bottom-symbol {
    position: absolute;
    top: 91%;
    left: 6.5rem;
    width: 1.8rem;
    height: auto;
    z-index: 0;
}

blockquote {
    margin-left: 2rem;
    margin-bottom: 0;
    width: fit-content;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1.5rem;
    font-size: 1.8rem;
    line-height: 120%;
}

.quote-wrapper.dark blockquote {
    background: var(--black);
    color: var(--white);
}

blockquote strong {
    font-weight: normal;
    text-decoration: underline;
}

blockquote p:last-child {
    margin-bottom: 0;
}


/* text section */
.text {}

/* - - Page: courses - - */
img {
    width: 100%;
    height: auto;
}



/* - - - - Page: login / sign-up - - - - */
.slides {
    width: 100%;
    height: 100vh;
    min-height: fit-content;
    max-width: 100%;
    padding: 0;
    display: flex;
    background-color: #F6F6EE;
}

.slides>div {
    width: 50%;
    min-height: fit-content;
}

.slides .text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: max(1.5rem, 5%) !important;
}

.slides .text-wrapper .text-medium p {
    margin: 0;
}

.slides .text-wrapper .logo {
    max-width: 120px;
}

.slides .text-wrapper h1 {
    font-weight: bold;
    line-height: 100%;
}

.slides .text-wrapper p strong {
    font-weight: bold;
    text-decoration: none;
}

.sign-up-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sign-up-wrapper .icon-small {
    margin-right: 0.5rem;
}

.sign-up-wrapper p {
    margin: 0;
}

.slides .image-wrapper {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slides .image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    max-height: 90vh;
}

.slides .image-wrapper.turquoise {
    background-color: var(--turquoise);
}

.sign-up-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* - - - - Page: Dashboard - - - - */
.dashboard {
    background-color: var(--beige);
    min-height: 100vh;
}

.dashboard .icon-big {
    width: 7rem;
    height: auto;
}

.dashboard blockquote {
    font-weight: bold;
    font-size: 1.5rem;
    padding: 1.1rem 1.3rem;
}

.dashboard ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}


.course-card {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.course-card .image-wrapper {
    position: relative;
    display: block;
    border-radius: 1.2rem;
    aspect-ratio: 3 / 2.2;
    width: 100%;
    overflow: hidden;
}

.course-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.course-card .tag {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    padding: 0rem 0.5rem;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    border-radius: 2rem;
    font-weight: normal;
    font-size: 0.9rem;
    z-index: 1;
}

.course-card h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 120%;
    color: var(--black);
}

/* - - - - Page: Course / Talk - - - - */

.course h1 {
    line-height: 105%;
}

.iframe-wrapper {
    overflow: hidden;
    background-color: var(--turquoise);
}

.detail .headline-wrapper {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}

.detail h2 {
    margin: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.fullwidth-wrapper.beige {
    background: var(--beige);
}

h2.outline-button {
    font-size: 1.5rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    padding-top: 0.1rem;
    padding-bottom: 0;
}

.course.fullwidth-wrapper h2 {
    margin-bottom: 2rem;
}

.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* - - - - R E S P O N S I V E - - - - */


.mobile {
    display: none;
}


/* M O B I L E  &  T A B L E T */

@media (max-width: 991.98px),
/* include all devices in landscape mode */
only screen and (max-width: 1199px) and (orientation: landscape) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
}


/* P H O N E  only */

@media (max-width: 767.98px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    /* page layout */
    section.container,
    section.container-fluid,
    footer.container,
    footer.container-fluid,
    .slides .text-wrapper {
        padding-left: max(2rem, 5%) !important;
        padding-right: max(2rem, 5%) !important;
    }

    .headline-big {
        font-size: 1.8rem;
    }

    /* page: login / sign-up */
    .slides {
        flex-direction: column-reverse;
        justify-content: flex-end;
    }

    .slides .image-wrapper {
        height: 45vh;
        min-height: unset;
    }

    .home .slides {
        height: auto;
    }

    .home .slides .image-wrapper {
        height: 45vh;
    }

    .slides .image-wrapper img {
        width: 75%;
        object-fit: cover;
        /* object-position: left center; */
    }

    .slides>div {
        width: 100%;
    }

    .home .slides h1 {
        font-size: 2.2rem;
    }

    .home .slides .text-wrapper .logo {
        max-width: 100px;
    }

    .home .slides .image-wrapper img {
        width: 80%;
    }

    /* Quote section */
    .quote .container .row {
        flex-direction: column-reverse;
    }

    .quote-left-symbol {
        transform: scaleX(-1) rotate(-90deg);
        top: unset;
        bottom: -41px;
        left: unset;
        right: 20%;
    }

    blockquote {
        margin-left: 0;
        margin-bottom: 1.5rem;
    }

    /* Footer */
    footer {
        /* padding-top: 2rem !important;
        padding-bottom: 2rem !important; */
    }

    .contact .icon-wrapper {
        height: 100px;
    }

    .contact .icon-wrapper img {
        max-width: 100px;
    }
}


/* P H O N E  landscape only */
@media (max-width: 1023px) and (orientation: landscape) {}


/* T A B L E T  only */

@media (min-width: 768px) and (max-width: 991.98px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
}


/* T A B L E T  landscape only */
@media (min-width: 1024px) and (max-width: 1199px) and (orientation: landscape) {}


/* S C R E E N */

@media (min-width: 992px) and (max-width: 1199.98px) {}

/* T O U C H */
@media (hover: none) {}