@charset "utf-8";

html,
body {
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

.container {
    z-index: 99;
}

/* ------------------------- FONTS ------------------------- */

h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    line-height: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #fbfbfb;
}

h2 {
    font-family: 'Sacramento', cursive;
    font-size: 3rem;
}

h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
}

h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

p {
    margin: 0;
    padding: 0;
    padding-bottom: 2rem;
    line-height: 2rem;
    font-family: 'Bitter', serif;
    font-size: 1.25rem;
}

a {
    color: #d96c06;
}

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

.list-group-item-action:hover {
    color: #d96c06;
    text-align: inherit;
}

.h2-nav {
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-transform: uppercase;
    color: #fbfbfb;
}

a:not([href]) {
    color: #fbfbfb;
}

.h2-quote {
    font-family: 'Bitter', serif;
    font-weight: 500;
    font-size: 1.25rem;
}

.h2-quote {
    font-family: 'Raleway', sans-serif;
    font-size: 1.125rem;
}

.text-shadow {
    text-shadow: 0 0 4px #000, 0 0 3px #000, 0 0 2px #000, 0 0 1px #000;
}

.swing {
    animation: mymove 20s infinite ease-in-out;
}

@keyframes mymove {
    0% {
        opacity: 75%;
        transform: rotateY(25deg) rotateX(-25deg);
    }

    85% {
        opacity: 50%;
        transform: rotateY(-25deg) rotateX(25deg);
    }

    50% {
        opacity: 100%;
        transform: rotateY(-25deg) rotateX(-25deg);
    }

    85% {
        opacity: 30%;
        transform: rotateY(25deg) rotateX(25deg);
    }

    100% {
        opacity: 75%;
        transform: rotateY(25deg) rotateX(-25deg);
    }
}


/* ------------------------- Text FadeIn ------------------------- */

.fade {
    opacity: 1;
}

/* ------------------------- BACKGROUNDS ------------------------- */

.bg_000 {
    background-image: url("../img/bg/bg_001.jpg");
}

.bg_001 {
    background-image: url("../img/bg/bg_002.jpg");
}

.bg_002 {
    background-image: url("../img/bg/bg_003.jpg");
}

.bg_003 {
    background-image: url("../img/bg/bg_004.jpg");
}

.bg_004 {
    background-image: url("../img/bg/bg_005.jpg");
}

.bg_005 {
    background-image: url("../img/bg/bg_006.jpg");
}

.bg_006 {
    background-image: url("../img/bg/bg_007.jpg");
}

.bg_007 {
    background-image: url("../img/bg/bg_008.jpg");
}

.bg_008 {
    background-image: url("../img/bg/bg_009.jpg");
}
 
.bg_fix {
    background-attachment: fixed;
    /* Fixiert den Hintergrund */
    background-size: cover;
    /* Stellt sicher, dass das Hintergrundbild den gesamten Bildschirm abdeckt */
    background-position: center;
    /* Positioniert das Hintergrundbild in der Mitte */
    background-repeat: no-repeat;
    /* Verhindert, dass das Hintergrundbild sich wiederholt */
    margin: 0;
    /* Entfernt den Standardabstand des Body */
    height: 100%;
    /* Setzt die Höhe des Body auf 100% der Viewport-Höhe */
}

@supports (-webkit-touch-callout: none) {

    /* CSS specific to iOS devices */
    .bg_fix {
        background-attachment: scroll;
    }
}

@supports not (-webkit-touch-callout: none) {

    /* CSS for other than iOS devices */
    .bg_fix {
        background-attachment: fixed;
    }
}

/* ------------------------- NAVBAR TOP ------------------------- */
.color-1 {
    color: #d96c06;
}

/* ------------------------- NAVBAR TOP ------------------------- */

header {
    transition-duration: 500ms;
    z-index: 9999;
}

header.bg-dark {
    transition-duration: 500ms;
}

header nav#navbar-top {
    height: 5rem;
    padding: 1rem 1rem 1rem 1rem;
    align-items: flex-start;
}

header nav#navbar-top div.d-flex ul li a.nav-link {
    padding: 0 1rem;
    transition-duration: 500ms;
}

header nav#navbar-top div.d-flex ul li a.nav-link:hover {
    color: #d96c06;
    transition-duration: 500ms;
}

header nav#navbar-top div.d-flex ul li a.nav-link.active {
    font-weight: bold;
}

header nav#navbar-top div a.navbar-brand {
    display: none;
    margin: 0;
    padding: 0;
}

header nav#navbar-top div.d-flex svg.fullscreenBtn {
    padding: 3px;
    width: 23px;
    height: 23px;
    margin-left: 0.5rem;
    cursor: pointer;
    fill: none;
}

header nav#navbar-top div.d-flex svg.fullscreenBtn .cls-1 {
    stroke: #fbfbfb;
    stroke-width: 4px;
    fill-rule: evenodd;
    transition-duration: 500ms;
}

header nav#navbar-top div.d-flex svg.fullscreenBtn:hover .cls-1 {
    stroke: #d96c06;
}

header nav#navbar-top div.d-flex #toggle-nav {
    cursor: pointer
}

.toggler-resp {
    display: none;
}

/* ------------------------- NAV RESP ------------------------- */

header nav#nav-resp {
    display: flex;
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    top: -110vh;
    height: 100vh;
    transition-duration: 1s;
}

header nav#nav-resp::after {
    content: "";
    position: absolute;
    transform: skewY(-3deg);
    height: 15vh;
    width: 100%;
    background-color: inherit;
    bottom: 0;
    right: 0;
    transform-origin: right bottom;
}

header nav#nav-resp.show {
    top: 0;
    transition-duration: 1s;
}

header nav#nav-resp ul li {
    list-style-type: none;
}

header nav#nav-resp ul li a.nav-link {
    list-style-type: none;
    transition-duration: 500ms;
}

header nav#nav-resp ul li a.nav-link:hover {
    color: #d96c06;
    transition-duration: 500ms;
}

header nav#nav-resp ul li a.nav-link.active {
    font-weight: bold;
}

@media (min-width: 991px) {
    header nav#nav-resp {
        display: none;
        transition-duration: 1s;
    }
}

@media (max-width: 992px) {
    .nav-resp-max {
        display: none;
    }

    .toggler-resp {
        display: block;
    }
}

/* ------------------------- maintenance ------------------------- */
section.maintenance div.logo picture {
    width: 100%;
}

section.maintenance div.logo picture img {
    width: 75%;
}

/* ------------------------- DSGVO Cookie Popup ------------------------- */

#cookie-popup {
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition-duration: 1s;
    box-shadow: 0px 10px 20px #000;
}

#cookie-popup a {
    cursor: pointer;
    text-decoration: underline;
    margin: 10px 0 0 0;
    color: #000;
}

#cookie-popup a:hover {
    cursor: pointer;
    text-decoration: underline;
    color: #d96c06;
}

#cookie-popup.hidden {
    display: none;
    transition-duration: 1s;
    transition-delay: 0.5s;
}

.coockie_text {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.coockie_int {
    max-width: 400px;
    margin: auto;
}

/* ------------------------- BTN SCROLL TOP ------------------------- */
ul#scroll-up {
    position: fixed;
    left: 1.5rem;
    right: 1.5rem;
    margin: 0;
    padding: 0;
    bottom: -3.5rem;
    z-index: 999;
    text-align: center;
    mix-blend-mode: exclusion;
    transition-duration: 0.5s;
    pointer-events: none;
}

.up ul#scroll-up {
    bottom: 3.5rem;
    transition-duration: 0.5s;
}

ul#scroll-up li {
    list-style-type: none;
}

ul#scroll-up li a {
    border-radius: 50%;
    transition-duration: 0.5s;
    opacity: 1;
    margin: 0;
    padding: 0;
    border: 0;
    color: white;
    pointer-events: auto;
}

ul#scroll-up li a img {
    height: 1.75rem;
    width: 1.75rem;
    background-color: #fff;
    border-radius: 50%;
    padding: 2px;
    transition-duration: 0.5s;
    opacity: 0.75;
}

@media (min-width: 768px) {
    ul#scroll-up {
        text-align: left;
        bottom: -3.5rem;
        right: auto;
    }

    .up ul#scroll-up {
        bottom: 1.5rem;
        transition-duration: 0.5s;
    }

    ul#scroll-up li a img {
        height: 1.75rem;
        width: 1.75rem;
    }
}

@media (min-width: 992px) {
    ul#scroll-up li a img {
        height: 2rem;
        width: 2rem;
    }
}

/* ------------------------- TOP PAGE ------------------------- */
section#top_page::before {
    content: "";
    position: absolute;
    transform: skewY(15deg);
    height: 33rem;
    width: 50%;
    background-color: inherit;
    bottom: -33rem;
    left: 0;
    transform-origin: right top;
}

section#top_page::after {
    content: "";
    position: absolute;
    transform: skewY(-15deg);
    height: 33rem;
    width: 50%;
    background-color: inherit;
    bottom: -33rem;
    right: 0;
    transform-origin: left top;
}

section#top_page picture {
    width: 100%;
}

section#top_page picture img {
    width: 75%;
}

section#top_page ul {
    width: 32px;
    height: 42px;
    margin: 0 auto;
    padding: 0;
    padding-bottom: 10px;
    position: relative;
}

section#top_page ul:hover {
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-duration: 0.25s;
    animation-name: scroll_down;
}

@keyframes scroll_down {
    from {
        padding-top: 0px;
        padding-bottom: 10px;
    }

    25% {
        padding-top: 0px;
    }

    45% {
        padding-bottom: 0;
    }

    to {
        padding-top: 10px;
        padding-bottom: 0;
    }
}

section#top_page ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-top: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 16px;
}

section#top_page ul li img {
    width: 100%;
    height: 100%;
    margin: 0 auto 0 auto;
    padding: 0.125rem;
    opacity: 0.25;
    transform: rotate(180deg);
}

/* ------------------------- TOP SUP PAGE ------------------------- */

section#top_sup_page {
    height: 220px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

/* ------------------------- QUOTES ------------------------- */
.img_quote {
    width: 48px;
    height: 48px;
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

.quotes {
    padding: 300px 10% 300px 10%;
}

/* ------------------------- breadcrumb ------------------------- */

a.breadcrumb-color {
    color: #d96c06;
}

a.breadcrumb-color:hover {
    color: #d96c06;
    transition-duration: 1s;
}

/* ------------------------- Pagination ------------------------- */

.page-item .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
    color: #d96c06;
    important background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #d96c06;
    border-color: #d96c06;
}

/* ------------------------- SECTIONS ------------------------- */

section {
    position: relative;
}

section.skewY::before,
section.skewY::after {
    content: "";
    position: absolute;
    transform: skewY(-3deg);
    height: 13rem;
    width: 100%;
    background-color: inherit;
}

section.skewY::before {
    top: 0;
    right: 0;
    margin-top: -13rem;
    transform-origin: right bottom;
}

section.skewY::after {
    bottom: 0;
    left: 0;
    margin-bottom: -13rem;
    transform-origin: left top;
}

/* skewY AFTER */
section.skewY_after::after {
    content: "";
    position: absolute;
    transform: skewY(-3deg);
    height: 13rem;
    width: 100%;
    background-color: inherit;
    bottom: -13rem;
    right: 0;
    transform-origin: left bottom;
}

/* skewY BEFORE */
section.skewY_before::before {
    content: "";
    position: absolute;
    transform: skewY(-3deg);
    height: 13rem;
    width: 100%;
    background-color: inherit;
    top: 0rem;
    right: 0;
    transform-origin: left top;
}

/* ------------------------- ABOUT ME ------------------------- */

#ueber_mich picture img {
    border-radius: 50% 0 50% 50%;
    width: 100%;
    opacity: 0.5;
    transition-duration: 1s;
}

#ueber_mich picture img:hover {
    border-radius: 5%;
    opacity: 1;
    transition-duration: 0.125s;
}

#ueber_mich div.aboutme_text {
    width: 100%;
}

#ueber_mich div.aboutme_text ul {
    margin: 0;
    padding: 0;
}

#ueber_mich div.aboutme_text li {
    width: 48px;
    height: 48px;
    margin: 0.5rem 0;
    transition-duration: 0.5s;
    list-style-type: none;
    display: inline-block;
}

#ueber_mich div.aboutme_text li:hover {
    transition-duration: 0.5s;
    transform: scale(1.3);
}

#ueber_mich div.aboutme_text li img {
    width: 100%;
    height: 100%;
}

/* ------------------------- BLOG ------------------------- */

#blog ul {
    margin: 0;
    padding: 0;
}

#blog ul a {
    margin: 0;
    padding: 0;
    color: #fff;
}

#blog ul a li {
    list-style-type: none;
}

#blog ul a li div.blog-inner {
    position: relative;
    height: 300px;
    width: 300px;
    padding: 0px;
    overflow: hidden;
    -webit-overflow: hidden;
    border: 10px solid #fff;
    transition-duration: 0.5s;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.25);
    z-index: 2;
}

#blog ul a li div.blog-inner:hover {
    transition-duration: 0.5s;
    border-radius: 0%;
    border: 1px solid #fff;

}

#blog ul a li div.blog-inner img {
    border-radius: 0;
    filter: saturate(0);
    -webkit-filter: saturate(0);
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition-duration: 0.5s;
    opacity: 0.5;
    z-index: 1;
}

#blog ul a li div.blog-inner:hover img {
    transition-duration: 0.5s;
    opacity: 1;
    margin: 0;
    filter: saturate(1);
    -webkit-filter: saturate(1);
    -ms-filter: saturate(1);
}

#blog ul a li div.blog-inner h3 {
    position: absolute;
    color: #343a40;
    top: 40%;
    left: 0;
    right: 0;
    height: 300px;
    padding: 0 10px 0 10px;
    transition-duration: 0.5s;
    margin: 0;
}

#blog ul a li div.blog-inner:hover h3 {
    top: 40px;
    transition-duration: 0.5s;
    color: #fff;
    padding: 0 19px 0 19px;
    text-shadow: 0 0 3px #000, 0 0 4px #000;
}

#blog ul a li div.blog-inner h3 hr {
    border: 2px solid #fff;
    color: #fff;
    border-radius: 0px;
    width: 20%;
    transition-duration: 1s;
    margin: 0.5rem auto;
    opacity: 0;
}

#blog ul a li div.blog-inner:hover h3 hr {
    border: 2px solid #d96c06;
    color: #d96c06;
    width: 75%;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    opacity: 1;
}

#blog ul a li div.blog-inner p {
    position: absolute;
    top: 300px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    transition-duration: 0.5s;
    hyphens: auto;
    font-weight: normal;
}

#blog ul a li div.blog-inner:hover p {
    top: 45%;
    transition-duration: 0.5s;
    padding: 0 9px 0 9px;
}

#blog ul a li div.blog-inner p.read_more {
    position: absolute;
    height: auto;
    top: 180px;
    left: 0;
    right: 0;
    transition-duration: 0.5s;
    background-color: #000;
    opacity: 0.25;
}

#blog ul a li div.blog-inner p.read_more::before {
    content: '[';
    color: #000;
    transition-duration: 0.5s;
}

#blog ul a li div.blog-inner p.read_more::after {
    content: ']';
    color: #000;
    transition-duration: 0.5s;
}

#blog ul a li div.blog-inner:hover p.read_more {
    transition-duration: 0.5s;
    top: 219px;
    background-color: #FFF;
    color: #000;
    opacity: 1;
}

#blog ul a li div.blog-inner:hover p.read_more::before {
    margin: 0 20px 0 0;
    transition-duration: 0.5s;
}

#blog ul a li div.blog-inner:hover p.read_more::after {
    margin: 0 0 0 20px;
    transition-duration: 0.5s;
}

/* hashtag */
#blog ul a li div.blog-inner ul {
    position: absolute;
    bottom: -28px;
    left: 0;
    width: auto;
    border-radius: 0 0.5rem 0 0;
    padding: 0 2px 3px 3px;
}

#blog ul a li div.blog-inner:hover ul {
    bottom: 0;
    transition-duration: 1s;
    transition-delay: 0.5s;
}

#blog ul a li div.blog-inner ul li {
    display: inline-block;
    list-style-type: none;
    padding: 0 3px;
}

#blog ul a li div.blog-inner ul li img {
    margin: 0;
    width: 18px;
    height: 18px;
}

/* BLOGPOST, BLOGPOST ARTICLE ARCIV NAV */

#archiv_box {
    position: fixed;
    top: 150px;
    bottom: 50px;
    width: 376px;
    right: -300px;
    z-index: 999;
    transition-duration: 0.5s;
}

#archiv_box.open {
    right: 0px;
    transition-duration: 0.5s;
}

#archiv_box div.link {
    width: auto;
    height: auto;
    margin: 0 0 0 0;
    padding: 4px 10px;
    display: inline-block;
    border-radius: 0.5rem 0 0 0.5rem;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #fdfdfd;
    top: 1rem;
    left: 0;
    position: absolute;
    z-index: 998;
    transition-duration: 0.5s;
}

#archiv_box div.link button.archiv_link {
    border: 0;
    margin: 0;
    padding: 0;
    background-color: inherit;
}

#archiv_box div.link button.archiv_link:focus {
    outline: 0;
}

#archiv_box div.nav {
    background-color: #fdfdfd;
    display: inline-block;
    width: 300px;
    max-height: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-radius: 0.5rem 0 0 0.5rem;
    position: absolute;
    right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 999;
}

#archiv_box div.nav a.category_title {
    text-align: left;
    margin: 0;
    padding: 5px 10px 5px 10px;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-radius: 0;
    color: black;
    display: block;
    background-color: rgba(224, 224, 224, 0.5);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition-duration: 1000ms;
}

#archiv_box div.nav a.category_title:hover {
    background-color: #ccc;
    transition-duration: 250ms;
}

#archiv_box div.nav a.category_title:first-child {
    border-top: 0px solid #ccc;
}

#archiv_box div.nav a.category_title:last-of-type {
    border-bottom: 0px solid #ccc;
}

#archiv_box div.nav ul {
    width: auto;
    margin: 0;
    padding: 0;
    text-align: right;
    list-style-type: none;
}

#archiv_box div.nav ul li {
    width: 100%;
    text-align: left;
    padding: 5px 10px 5px 10px;
    border-bottom: 1px solid #ccc;
    transition-duration: 1000ms;
    text-align: right;
}

#archiv_box div.nav ul li:last-of-type {
    border-bottom: 0;
}

#archiv_box div.nav ul li:hover {
    background-color: #ccc;
    transition-duration: 250ms;
}

#archiv_box div.nav ul li a {
    color: #000;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
}

#archiv_box div.nav ul li:hover a {}

/* ------------------------- BLOGPOST ------------------------- */

.text_prev div {
    display: none;
}

/* ------------------------- BLOGPOST ARTICLE ------------------------- */
/* ARCIV NAV */

.title {
    font-size: 3rem;
    font-family: 'Bitter', sans-serif;
    z-index: 2;
    font-variant: small-caps;
    padding-top: 1rem;
    position: relative;
}

.title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ccc;
}

.date {
    text-align: right;
    margin-bottom: 1rem;
}

.text p {
    hyphens: auto;
}

.text p:first-child::first-letter {
    color: #fff;
    font-size: 250%;
    font-weight: bold;
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}

.text div.gray {
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem 0 0.5rem 0rem;
    background-color: #fdfdfd;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.125);
    -moz-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 0 0.5rem rgba(0, 0, 0, 0.125);
    width: auto;
}

.text ul {
    margin-bottom: 0;
    margin-right: 40px;
    font-size: 2rem;
    line-height: 2rem;
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
}

@media (min-width: 768px) {
    .text ul {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

.text ul li {
    font-size: 1.25rem;
    font-family: 'Raleway', sans-serif;
}

.text h3 {
    color: #000;
    font-size: 2rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.text h4 {
    font-size: 2rem;
    font-family: 'Raleway', sans-serif;
    font-variant: small-caps;
    margin-top: 1.5rem;
}

.text h5 {
    font-size: 1.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

/* BLOG ARTICLE IMG hoch */
div.img_hoch {
    float: left;

    width: 100%;
    height: auto;

    padding: 0.5rem;
    margin: 0 0 1.5rem 0;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 1rem;

    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

@media (min-width: 576px) {
    div.img_hoch {
        width: 180px;
        height: auto;
    }
}

@media (min-width: 768px) {
    div.img_hoch {
        width: 210px;
        height: auto;
    }
}

@media (min-width: 992px) {
    div.img_hoch {
        width: 240px;
        height: auto;
    }
}

@media (min-width: 1200px) {
    div.img_hoch {
        width: 260px;
        height: auto;
    }
}

div.img_hoch img {
    width: 100%;
    height: 150px;
    margin: 0;
    padding: 0;
    object-fit: cover;
    border-radius: 0.5rem;
    border-radius: 0.5rem;
}

@media (min-width: 576px) {
    div.img_hoch img {
        height: 220px;
    }
}

@media (min-width: 768px) {
    div.img_hoch img {
        height: 260px;
    }
}

@media (min-width: 992px) {
    div.img_hoch img {
        height: 300px;
    }
}

@media (min-width: 1200px) {
    div.img_hoch img {
        height: 320px;
    }
}

/* BLOG ARTICLE IMG quer */
div.img {
    float: left;

    width: 100%;
    height: auto;

    padding: 0.5rem;
    margin: 0 0 1.5rem 0;

    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 1rem;

    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

div.img img {
    width: 100%;
    height: 150px;
    margin: 0;
    padding: 0;
    object-fit: cover;
    border-radius: 0.5rem;
    border-radius: 0.5rem;
}

div.img p,
div.img_hoch p {
    padding: 0;
    margin: 0;
    text-align: center;
    margin-top: 0.5rem;
    font-family: 'Gluten', cursive;
    font-weight: 200;
    display: none;
}

@media (min-width: 576px) {
    div.img {
        width: 40%;
        height: auto;
    }

    div.img p,
    div.img_hoch p {
        display: block;
    }

    div.img img {
        height: 160px;
    }
}

@media (min-width: 768px) {
    div.img {
        width: 35%;
        height: auto;
    }

    div.img img {
        height: 190px;
    }
}

@media (min-width: 992px) {
    div.img {
        width: 35%;
        height: auto;
    }

    div.img img {
        height: 220px;
    }
}

@media (min-width: 1200px) {
    div.img {
        width: 35%;
        height: auto;
    }

    div.img img {
        height: 260px;
    }
}

@media (min-width: 576px) {
    .rotate-l {
        transform: rotate(-5deg);
    }
}

@media (min-width: 576px) {
    .rotate-r {
        transform: rotate(5deg);
    }
}

.hover_l:hover {
    transform: rotate(2deg);
}

.hover_r:hover {
    transform: rotate(-2deg);
}

/* BLOG ARTICLE INFO */
.text div.info {
    background-color: #fdfdfd;
    border: 2px solid orange;
    border-radius: 1rem;
    width: 100%;
    max-width: 100%;
    height: 40px;
    overflow: hidden;
    margin: 1rem 0rem 3rem 0rem;
    padding: 0;
    display: inline-block;
    -moz-box-shadow: 0px 5px 20px #ccc;
    -webkit-box-shadow: 0px 5px 20px #ccc;
    box-shadow: 0px 5px 20px #ccc;
}

.text div.info:hover {
    height: auto;
}

@media (min-width: 768px) {
    .text div.info {
        width: auto;
        max-width: 45%;
        height: auto;
        margin: 1rem 0 3rem 0;
    }
}

@media (min-width: 992px) {
    .text div.info {
        max-width: 35%;
    }
}

@media (min-width: 1200px) {
    .text div.info {
        max-width: 30%;
    }
}

.text div.info::before {
    content: 'KLICK FÜR INFO!';
    position: absolute;
    margin: -24px 1rem;
    font-size: 2rem;
    font-weight: light;
    font-family: 'Raleway', sans-serif;
}

@media (min-width: 768px) {
    .text div.info::before {
        content: 'INFO!';
    }
}

.text div.info h3 {
    font-family: 'Raleway', sans-serif;
    padding: 0 2rem;
    padding-top: 2rem;
    margin: 0;
    margin-bottom: -1.5rem;
    font-size: 1.5rem;
}

.text div.info p {
    font-family: 'Raleway', sans-serif;
    padding: 0 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.25rem;
}

/* BLOG ARTICLE TIPP */
.text div.tipp {
    background-color: #fdfdfd;
    border: 2px solid orange;
    border-radius: 1rem;
    width: 100%;
    max-width: 100%;
    height: 40px;
    overflow: hidden;
    margin: 1rem 0rem 3rem 0rem;
    padding: 0;
    display: inline-block;
    -moz-box-shadow: 0px 5px 20px #ccc;
    -webkit-box-shadow: 0px 5px 20px #ccc;
    box-shadow: 0px 5px 20px #ccc;
}

.text div.tipp:hover {
    height: auto;
}

@media (min-width: 768px) {
    .text div.tipp {
        width: auto;
        max-width: 45%;
        height: auto;
        margin: 1rem 3rem 3rem 3rem;
    }
}

@media (min-width: 992px) {
    .text div.tipp {
        max-width: 35%;
    }
}

@media (min-width: 1200px) {
    .text div.tipp {
        max-width: 30%;
    }
}

.text div.tipp::before {
    content: 'KLICK FÜR TIPP!';
    position: absolute;
    margin: -24px 1rem;
    font-size: 2rem;
    font-weight: light;
    font-family: 'Raleway', sans-serif;
}

@media (min-width: 768px) {
    .text div.tipp::before {
        content: 'TIPP!';
    }
}

.text div.tipp h3 {
    font-family: 'Raleway', sans-serif;
    padding: 0 2rem;
    padding-top: 2rem;
    margin: 0;
    margin-bottom: -1.5rem;
    font-size: 1.5rem;
}

.text div.tipp p {
    font-family: 'Raleway', sans-serif;
    padding: 0 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.25rem;
}

.text div.tipp p:last-child {
    padding-bottom: 2rem;
}


.text div.tipp strong {
    font-weight: 500;
}

.text div.tipp ul {
    margin: -2px 0 -2px 0;
    padding: 0;
    list-style-type: none;
    border-top: 1px solid orange;
    border-bottom: 1px solid orange;
    overflow: hidden;
    border-radius: 0;
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
}

.text div.tipp ul li {
    margin: 0;
    padding: 1rem 2rem;
    border-bottom: 1px solid orange;
    border-top: 1px solid orange;
    font-size: 1.25rem;
    font-family: 'Raleway', sans-serif;
    background-color: #fff;
}

.text div.tipp ul li:hover {
    background-color: #f8f9fa;
}


.text img {
    margin-top: 3rem;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
}

* {
    box-sizing: border-box;
}

.item {
    width: 200px;
    height: 200px;
    margin: 50px auto;
    padding-top: 75px;
    background: #ccc;
    text-align: center;
    color: #FFF;
    font-size: 3em;
}

/* ------------------------- BLOGPOST ------------------------- */

.text_prev {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.text_prev::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-image: linear-gradient(to top, hsla(0, 0%, 100%, 1), hsla(0, 0%, 100%, 0));
}

.img_gallery ul {
    display: flex;
    flex-wrap: wrap-reverse;
    margin: -5px;
    padding: 0;

}

.img_gallery li {
    height: 150px;
    flex-grow: 1;
    border-radius: 1rem;
    overflow: hidden;
    margin: 0.5rem;
    list-style-type: none;
    padding: 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 5px 5px -10px, rgba(0, 0, 0, 0.3) 0px 8px 16px -10px;
}

.img_gallery li:hover {
    box-shadow: rgba(50, 50, 93, 0.5) 0px 5px 5px -10px, rgba(0, 0, 0, 0.6) 0px 8px 16px -10px;
}

.img_gallery img {
    max-height: 100%;
    min-width: 100%;
    object-fit: cover;
    vertical-align: bottom;

    filter: grayscale(100%);
    transition-duration: 500ms;
    opacity: 0.75;
}

.img_gallery img:hover {
    filter: grayscale(0);

    transition-duration: 500ms;
    opacity: 1;
}

@media (max-aspect-ratio: 1/1) {
    .img_gallery li {
        height: 100px;
    }
}

@media (max-height: 576px) {
    .img_gallery li {
        height: 100px;
    }
}

@media (max-aspect-ratio: 1/1) and (max-width: 576px) {
    .img_gallery ul {
        flex-direction: row;
    }

    .img_gallery li {
        height: auto;
    }

    .img_gallery img {
        width: 100%;
        height: 100px;
        min-width: 0;
    }
}

.comments {}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* - last_post - */

#last_post ul {
    margin: 0;
    padding: 0;
}

#last_post li {
    list-style-type: none;
    margin: 0;
}

@media (max-width: 991px) {
    #last_post li:nth-child(2) {
        text-align: right;
        flex-direction: row-reverse !important;
    }
}

#last_post li a {
    text-decoration: none;
    transition-duration: 0.25s;
    color: #fff;
}

#last_post li a:hover {
    color: #d96c06;
}

#last_post li:hover a {
    text-decoration: none;
    transition-duration: 0.5s;
}

#last_post li .last_post_pic {
    height: 150px;
    width: 100px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-radius: 1rem;
    z-index: 2;
    transition-duration: 0.25s;

}

#last_post li:hover .last_post_pic {
    transition-duration: 0.5s;
    box-shadow: rgba(50, 50, 93, 0.5) 0px 13px 27px -5px, rgba(0, 0, 0, 6) 0px 8px 16px -8px;
}

#last_post li img {
    margin-left: -5%;
    margin-top: -5%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition-duration: 0.25s;
    z-index: 1;
    transform: scale(1.3);
}

#last_post li:hover img {
    transition-duration: 0.5s;
    transform: scale(1.2);
}

/* -- */

.blogpost_prev_img {
    height: 300px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 1rem;
}

.blogpost_prev_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition-duration: 0.5s;
    border-radius: 1rem;
}

.blogpost_prev:hover img {
    opacity: 1;
    transition-duration: 0.5s;
}

.article_picture {
    border-radius: 1rem;
    height: 150px;
    overflow: hidden;
    transition-duration: 0.25s;
}

@media (min-width: 576px) {
    .article_picture {
        height: 150px;
    }
}

@media (min-width: 992px) {
    .article_picture {
        height: 300px;
    }
}

.article_picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------- CONTACT ------------------------- */

.contact {
    position: relative;
}

.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}

.contact-border {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    width: 1px;
}

.contact-stamp {
    position: absolute;
    top: 30px;
    right: 30px;
    height: 100px;
    width: 100px;
}

.contact-stamp:hover {
    -webkit-transform: scale(1.2) rotate(10deg);
    -moz-transform: scale(1.2) rotate(10deg);
    -ms-transform: scale(1.2) rotate(10deg);
    -o-transform: scale(1.2) rotate(10deg);
    transform: scale(1.2) rotate(10deg);
}

.contact-input {
    width: 100%;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid;
}

.contact-btn {
    width: 100%;
}

.form-check-input {
    position: relative !important;
    margin-top: 0.3rem;
    margin-left: 0 !important;
}

/* ------------------------- MODAL BTN ------------------------- */
a.modal-btn-a {
    text-decoration: none;
    flex: auto;
}

.modal-btn {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 4rem 1.5rem 4rem;
    border: 1px solid #343a40;
    text-align: center;
    transition-duration: 500ms;
}

.modal-btn:hover {
    border-radius: 1rem;
    background-color: #343a40;
    transition-duration: 500ms;
}

.modal-btn p.modal-btn-h1 {
    top: 0;
    left: 0;
    right: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    color: #000;
    text-decoration: none;
    transition-duration: 500ms;
}

.modal-btn:hover p.modal-btn-h1 {
    color: #d96c06;
    transition-duration: 500ms;
}

.modal-btn p.modal-btn-p {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    font-family: 'Bitter', serif;
    font-size: 1rem;
    margin: 0 0 1rem 0;
    color: #000;
    text-decoration: none;
    transition-duration: 500ms;
}

.modal-btn:hover p.modal-btn-p {
    bottom: -10%;
    font-family: 'Bitter', serif;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    transition-duration: 500ms;
}

/* ------------------------- MODAL ------------------------- */

.modal-content {
    border-radius: 0.5rem;
    padding: 2rem 2rem 0 2rem;
    z-index: 100;
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
    padding: 0 0 2rem 0;
    margin: 0;
}

.modal-body {
    padding: 2rem 0 0 0;
    margin: 0;
}

.modal-footer {
    justify-content: center;
}

.modal-content div.img-r {
    width: 100%;
    margin: 0 0 2rem 0;
    float: right;
    border-radius: 1rem;
    overflow: hidden;
}

@media (min-width: 576px) {
    .modal-content div.img-r {
        width: 200px;
        height: auto;
        -ms-transform: skewY(5deg);
        /* IE 9 */
        transform: skewY(5deg);
        margin: 0 -2rem 1rem 2rem;
        border-radius: 1rem 0 0 1rem;
    }
}

@media (min-width: 992px) {
    .modal-content div.img-r {
        width: 300px;
    }
}


.modal-content div.img-l {
    width: 100%;
    margin: 0 0 2rem 0;
    float: left;
    border-radius: 1rem;
    overflow: hidden;
}

@media (min-width: 576px) {
    .modal-content div.img-l {
        width: 200px;
        height: auto;
        -ms-transform: skewY(-5deg);
        /* IE 9 */
        transform: skewY(-5deg);
        margin: 0 2rem 1rem -2rem;
        border-radius: 0 1rem 1rem 0;
    }
}

@media (min-width: 992px) {
    .modal-content div.img-l {
        width: 300px;
    }
}

.modal-content div img {
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 0;
    object-fit: cover;
}

@media (min-width: 576px) {
    .modal-content div img {
        height: 150px;
    }
}

@media (min-width: 992px) {
    .modal-content div img {
        height: 200px;
    }
}

.modal-content em {
    margin-bottom: 2rem;
}

.modal-content .list-group {
    padding-bottom: 2rem;
}

/* ------------------------- FOOTER ------------------------- */

footer {}

.socialmedia-icon-footer {
    width: 48px;
    height: 48px;
    margin: 5px;
    transition-duration: 0.5s;
}

.socialmedia-icon-footer:hover {
    transform: scale(1.5);
    transition-duration: 0.25s;
}

/* ------------------------- Share Btn ------------------------- */

a.facebook-bg,
a.twitter-bg,
a.pinterest-bg,
a.whatsapp-bg,
a.email-bg {
    text-decoration: none;
    opacity: 1;
    position: relative;
    line-height: 16px;
}

a.facebook-bg {
    border: 1px solid #3b5998;
    color: #3b5998;
}

a.facebook-bg:hover {
    color: #e9ecef;
    background-color: #3b5998
}

a.twitter-bg {
    border: 1px solid #1da1f2;
    color: #1da1f2;
}

a.twitter-bg:hover {
    color: #e9ecef;
    background-color: #1da1f2;
}

a.pinterest-bg {
    border: 1px solid #c8232c;
    color: #c8232c;
}

a.pinterest-bg {
    color: #e9ecef;
    background-color: #c8232c;
}

a.whatsapp-bg {
    border: 1px solid #25d366;
    color: #25d366;
}

a.whatsapp-bg:hover {
    color: #e9ecef;
    background-color: #25d366;
}

a.email-bg {
    border: 1px solid #6c757d;
    ;
    color: #6c757d;
}

a.email-bg:hover {
    color: #e9ecef;
    background-color: #6c757d;
    ;
}

/* ------------------------- Captcha ------------------------- */

.grecaptcha-badge {
    z-index: 1000;
}
