

/*
    FONT - VP
*/

@charset "utf-8";

@font-face {
    font-family: 'geo-light';
    src: url('font/geomanist-light-webfont.eot'); /* IE9 Compat Modes */
    src: url('font/geomanist-light-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('font/geomanist-light-webfont.woff') format('woff'), /* Pretty Modern Browsers */
    url('font/geomanist-light-webfont.ttf') format('truetype'), /* Safari, Android, iOS */
    url('font/geomanist-light-webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}

@font-face {
    font-family: 'geo-reg';
    src: url('font/geomanist-regular-webfont.eot'); /* IE9 Compat Modes */
    src: url('font/geomanist-regular-webfontd41d.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('font/geomanist-regular-webfont.woff') format('woff'), /* Pretty Modern Browsers */
    url('font/geomanist-regular-webfont.ttf') format('truetype'), /* Safari, Android, iOS */
    url('font/geomanist-regular-webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}

@font-face {
    font-family: 'geo-med';
    src: url('font/geomanist-medium-webfont.eot'); /* IE9 Compat Modes */
    src: url('font/geomanist-medium-webfontd41d.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('font/geomanist-medium-webfont.woff') format('woff'), /* Pretty Modern Browsers */
    url('font/geomanist-medium-webfont.ttf') format('truetype'), /* Safari, Android, iOS */
    url('font/geomanist-medium-webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}


/*
    CSS - Variables
*/
:root {
    --color-background: #ffffff;
    --color-backgraund-two: #f2f2f2;
    --color-design-element: #63c3d0;
    --color-font-white: #ffffff;
    --color-font-türkis: #63c3d0;
    --color-font-dark: #010101;
    --h1-font-size: 5em;
    --h2-font-size: 3em;
    --h3-font-size: 1.75em;
    --p-font-size: 1.3em;
    --h1-font-size-500: 3.5em;
    --p-font-size-768: 1em;
}



/*
    CSS - Allgemeiner Style
*/

body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--color-background);
    font-family: 'geo-reg',Arial,sans-serif;
    /* overflow-x: hidden; */
}

header,
nav,
main,
section,
figure,
footer {
    position: relative;
}

.main {
    max-width: 1200px;
    width: calc(100% - 20px);
    margin: 0 auto;
}

h1,
h2,
h3,
p {
    line-height: 120%;
}

h1 {
    font-size: var(--h1-font-size);
    text-align: center;
    font-family: 'geo-med', Arial, sans-serif;
}

h2 {
    font-size: var(--h2-font-size);
    text-align: center;
    color: var(--color-font-türkis);
    font-family: 'geo-med', Arial, sans-serif;
}

h3 {
    font-size: var(--h3-font-size);
    text-align: center;
}

p {
    font-size: var(--p-font-size);
}

a {
    text-decoration: none;
    color: var(--color-font-dark);
    cursor: pointer;
}

ul {
    list-style: none;
}

figcaption p {
    margin: 10px;
}

.uppercase {
    text-transform: uppercase;
}

.design-element {
    display: block;
    margin: 0 auto;
    width: 70px;
    height: 5px;
    background-color: var(--color-design-element);
}

.header {
    height: auto;
    margin: 0;
    display: flex;
    justify-content: center;
}

.header-hero-img {
    height: 100%;
    width: 100%;
    max-width: 1400px;
    display: block;
    z-index: 100000;
}

.header-logo-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    /* width: 100%; */
    padding: 0;
    top: 0;
    position: absolute;
}

.logo {
    /* border-radius: 50%;
    background-color: #fff; */
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    margin-top: 10px;
    margin-left: 30px;
}


.header-blog {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto;
}




/*
    -> MOBILE Navigation
*/
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: var(--h2-font-size);
    color: var(--color-font-white);
    display: block;
    transition: 0.3s;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: var(--h1-font-size-500);
}


/*
    -> DESKTOP Navigation
*/
.nav-desktop ul,
.nav-desktop-blog ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    width: 500px;
    padding: 0;
    margin-right: 10px;
}

    .nav-desktop ul li:nth-child(4),
    .nav-desktop-blog ul li:nth-child(4),
    .overlay-content a:nth-child(4) {
        padding: 5px 10px;
        background-color: #63c3d0;
        color: #ffffff !important;
        border-radius: 3px;
        transition: 0.75s;
        -webkit-transition: 0.75;
        -moz-transition: 0.75;
        -ms-transition: 0.75;
        -o-transition: 0.75;
    }

        .nav-desktop ul li:nth-child(4):hover,
        .nav-desktop-blog ul li:nth-child(4):hover {
            transform: scale(1.2);
            -webkit-transform: scale(1.2);
            -moz-transform: scale(1.2);
            -ms-transform: scale(1.2);
            -o-transform: scale(1.2);
        }

    .nav-desktop ul li .hover-underline-animation {
        display: inline-block;
        position: relative;
        /* color: var(--color-font-white); */
        letter-spacing: 2px;
        font-weight: 700;
    }

    .nav-desktop-blog ul li .hover-underline-animation {
        display: inline-block;
        position: relative;
        color: var(--color-font-dark);
        letter-spacing: 2px;
        font-weight: 700;
    }

        .nav-desktop ul li .hover-underline-animation:after,
        .nav-desktop-blog ul li .hover-underline-animation:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: -5px;
            left: 0;
            background-color: #ffffff;
            transform-origin: bottom right;
            -webkit-transform-origin: bottom right;
            -moz-transform-origin: bottom right;
            -ms-transform-origin: bottom right;
            -o-transform-origin: bottom right;
            transition: transform 0.25s ease-out;
            -webkit-transition: transform 0.25s ease-out;
            -moz-transition: transform 0.25s ease-out;
            -ms-transition: transform 0.25s ease-out;
            -o-transition: transform 0.25s ease-out;
            transform: scaleX(0);
            -webkit-transform: scaleX(0);
            -moz-transform: scaleX(0);
            -ms-transform: scaleX(0);
            -o-transform: scaleX(0);
        }

        .nav-desktop ul li .hover-underline-animation:hover:after,
        .nav-desktop-blog ul li .hover-underline-animation:hover:after {
            transform: scaleX(1);
            -webkit-transform: scaleX(1);
            -moz-transform: scaleX(1);
            -ms-transform: scaleX(1);
            -o-transform: scaleX(1);
            transform-origin: bottom left;
            -webkit-transform-origin: bottom left;
            -moz-transform-origin: bottom left;
            -ms-transform-origin: bottom left;
            -o-transform-origin: bottom left;
        }

.header-headlines-container {
    position: relative;
    top: 50%;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

    .header-headlines-container h1,
    .header-headlines-container h2 {
        margin: 0;
    }

    .header-headlines-container h2 {
        /* color: var(--color-font-türkis) !important; */
    }

    .header-headlines-container h1,
    .header-headlines-container h2,
    .header-headlines-container h3 {
        color: var(--color-font-white);
        text-shadow: 4px 3px 7px rgba(0,0,0,0.6);
    }

    .header-headlines-container a {
        display: block;
        margin: 0 auto;
        width: 250px;
        text-align: center;
        padding: 10px 20px;
        background-color: #63c3d0;
        color: #ffffff !important;
        border-radius: 3px;
        letter-spacing: 2px;
        font-family: 'geo-med', Arial, sans-serif;
        font-size: 1.5em;
        transition: 0.75s;
        -webkit-transition: 0.75;
        -moz-transition: 0.75;
        -ms-transition: 0.75;
        -o-transition: 0.75;
    }

.nav-mobile-container {
    display: none;
}


/*
    Sagen was ist
*/
.sec-my-imaginations {
    padding: 40px 0;
}

.sec-my-imaginations-content-container {
    width: 100%;
    max-width: 1000px;
    display: block;
    margin: 40px auto;
}

    .sec-my-imaginations-content-container > .design-element {
        margin: 20px 0 0 0;
        width: 100px;
    }

.flex-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}


.sec-latest-articles,
.sec-subscribe {
    /* background-color: var(--color-backgraund-two); */
}

.sec-latest-articles {
    /* padding-bottom: 100px; */
}

.sec-content-container_vid {
}

.sec-latest-article-container {
    display: flex;
    /* align-items: center; */
    justify-content: flex-start;
    gap: 10px;
    height: auto;
    padding: 0;
    flex-wrap: wrap;
}

.sec-latest-article-no-image-container {
    display: none;
}

.smallTeaser-a {
    background-color: var(--color-background);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.smallTeaserText {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    flex-direction: column;
}

.smallTeaserText p {
    font-size: 18px;
}

    .sec-newest-article-container a,
    .sec-latest-article-container a,
    .sec-latest-article-no-image-container a,
    .sec-latest-articles-read-more img {
        /* height: 100%; */
        width: 290px;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
    }

        .sec-newest-article-container a:hover,
        .sec-latest-article-container a:hover,
        .sec-latest-article-no-image-container a:hover,
        .sec-latest-articles-read-more img:hover {
            transform: scale(1.02);
            -webkit-transform: scale(1.02);
            -moz-transform: scale(1.02);
            -ms-transform: scale(1.02);
            -o-transform: scale(1.02);
        }

figure {
    height: 100%;
    margin: 0;
    background-color: var(--color-background);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

    figure img {
        width: 100%;
        height: auto;
    }

.sec-latest-article-container a:nth-child(1) figure > img,
.sec-latest-article-container a:nth-child(3) figure > img {
    display: block !important;
}

figcaption {
    /* height: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    flex-direction: column;
}

    figcaption p {
        text-align: left;
        font-size: 18px;
    }

.sec-latest-articles-read-more {
    /* position: absolute;
    bottom: 0;
    right: 0; */
    display: flex;
    width: 100%;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
    padding: 5px;
    color: var(--color-design-element);
}

    .sec-latest-articles-read-more img:hover {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }


/*  SECTION | About */
.sec-about {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 0px;
}

.sec-about-content {
    padding: 0 5%;
}

.sec-subscribe {
}

.footer {
    display: flex;
    justify-content: space-between;
}

.sm_wrapper {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5%;
}


    .sm_wrapper ul {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        padding: 0;
    }





/*
    BLOG
*/

.copyright {
    font-size: 0.8em;
    position: absolute;
    bottom: 10px;
    right: 6px;
    background: rgba(255, 255, 255, 0.7);
    padding: 0px 3px;
    border-radius: 4px;
}

.blog-main {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    height: auto;
}

    .blog-main .sec-subscribe {
        background-color: var(--color-background);
    }

.sec-blog {
    height: auto;
    padding: 0 10px;
}

.blog-h2-title {
    font-family: 'geo-med',Arial,sans-serif;
    text-align: left;
}

.sec-blog a {
    color: var(--color-font-türkis);
    text-decoration: underline;
}

blockquote {
    border-left: 8px solid var(--color-design-element);
    margin: 0 30px 30px;
    padding: 30px;
}

.enumeration-container ul {
    list-style-type: decimal;
}

    .enumeration-container ul li {
        font-size: var(--p-font-size);
    }


.btn-show-more {
    border: 2px solid var(--color-design-element);
    font-family: 'geo-med';
    font-size: var(--p-font-size);
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    width: 70%;
    text-align: center;
    padding: 20px 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: var(--color-design-element);
    ;
}

.sec-newest-article-wrapper {
    display: flex;
    gap: 50px;
}




/*
    MEDIA-QUERIES 1400 | 1200 | 1024 | 768 | 500 | 320
*/

@media only screen and (max-width: 1400px) {

    .blog-image-large {
        width: 820px;
        height: auto;
    }
}

@media only screen and (max-width: 1200px) {

    .sec-about {
        flex-direction: column-reverse;
        margin-bottom: 50px;
    }

    .sec-about-img {
        width: 90vw;
        display: block;
    }

        .sec-about-img img {
            width: 100%;
            height: auto;
        }

    .blog-image-large {
        width: 820px;
        height: auto;
    }
}

@media only screen and (max-width: 1024px) {

    .blog-image-large {
        width: 100%;
        height: auto;
    }

    .sec-newest-article-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sec-latest-article-container {
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {

    .header-hero-img {
        width: 100%;
    }

    .logo img {
        width: 40px;
    }

    .nav-desktop,
    .nav-desktop-blog {
        display: none;
    }

    .nav-mobile-container {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px
    }

    .nav-mobile-bars-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 40px;
        width: 40px;
        cursor: pointer;
        padding: 5px;
        border-radius: 2px;
    }


        .nav-mobile-bars-container > span {
            display: block;
            width: 30px;
            height: 3px;
            background-color: var(--color-font-dark);
            margin: 3px;
        }

    .overlay-content a:nth-child(4) {
        margin-top: 50px;
    }

    .sec-my-imaginations {
        padding: 40px 20px;
    }

    .sec-latest-articles, .sec-subscribe {
        /* background-color: var(--color-backgraund-two); */
        padding: 0;
        margin-bottom: 30px;
    }

    .sec-latest-article-container a {
        width: calc(50% - 20px);
    }

    figcaption p {
        font-size: var(--p-font-size-768);
    }

    .sec-about-img {
        width: 95vw;
    }

    .sm_wrapper {
        flex-direction: column;
    }

    #imgHeader {
        display: none !important;
    }

    #imgHeaderMobile {
        display: block !important;
    }
}

@media only screen and (max-width: 600px) {

    .sec-content-container_vid {
        flex-direction: column !important;
    }

    .sec-newest-article-container {
        padding: 0 10px;
    }

        .sec-newest-article-container a {
            width: 100% !important;
        }

    .sec-latest-article-container {
        justify-content: center;
    }

    h1 {
        font-size: 3em;
    }

    .btn-cookie-dec {
        right: 15px !important;
    }
}

@media only screen and (max-width: 500px) {

    /* h1 {
        font-size: var(--h1-font-size-500);
    } */

    .header {
        margin: 0;
        height: auto;
    }

    .header-hero-img {
        /* background-position-x: -266px; */
    }

    .overlay-content a:nth-child(4) {
        margin-top: 50px;
    }

    .sec-latest-article-container {
        padding: 0;
    }

    .sec-about {
        margin-bottom: 0px;
    }

    .sm_wrapper ul:nth-child(2) {
        flex-direction: column;
    }

    .sec-subscribe-iframe-sib-form iframe {
        min-height: 1000px !important;
    }

    .blog-image-large,
    .blog-image {
        width: 100%;
        height: auto;
    }

    .sec-blog img {
        width: 100% !important;
        height: auto !important;
        margin: 10px 0px 10px 0px !important;
    }
}
