/* GENERAL */
html,
body {
    font-family: "Open Sans", sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* font-size: .95rem; */
}

body {
    padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

h1,
h2 {
    /* text-transform: uppercase; */
    font-family: "Architects Daughter", cursive;
}

h1 {
    font-size: 1.75rem;
    color: var(--primary);
}

h2 {
    font-size: 1.5rem;
    color: var(--primary);
}

h3 {
    font-size: 1.1rem;
}

h4,
h5,
h6 {
    font-size: 1rem;
}

hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.font-family-h {
    font-family: "Architects Daughter", cursive !important;
}

.font-semi-bold {
    font-weight: 600;
}

.hover-border {
    transition: border-color 0.25s;
}

.hover-border.hover-border-primary:hover {
    border-color: var(--primary) !important;
}

.rounded-lg {
    border-radius: 15px !important;
}

/* TOP NAV */
#top-nav {
    padding-left: 0px;
    padding-right: 0px;
    height: 80px;
    border-bottom-width: 2px !important;
}

#top-nav .navbar-brand {
    margin-left: 0;
}

@media (max-width: 1199px) {
    #top-nav .navbar-brand {
        margin-left: 1em;
        padding-top: 0;
        padding-bottom: 0;
    }

    #top-nav .navbar-toggler {
        margin-right: 1em;
    }

    #top-nav .navbar-brand img {
        height: 60px;
    }

    .top-nav-social {
        margin-left: 1em;
    }

    #top-nav .dropdown-menu {
        border: none;
        padding-left: 2em;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (min-width: 1200px) {
    #top-nav .navbar-brand {
        position: absolute;
        width: 170px;
        top: 5px;
        transition: transform 0.25s;
        transform-origin: top left;
    }

    #top-nav .navbar-brand.scaled {
        transform: scale(0.49);
    }
}

#top-nav .nav-link,
#top-nav .dropdown-item {
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.5rem .75rem;
    color: var(--dark);
}

#top-nav .nav-item.active .nav-link,
#top-nav .nav-link:hover,
#top-nav .dropdown-item:hover,
#top-nav .dropdown-item.active {
    color: var(--primary);
    background-color: transparent;
}

#top-nav .dropdown-toggle::after {
    display: none;
    /* position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    color: var(--primary); */
}

#top-nav .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

#top-nav .nav-item.dropdown>.dropdown-menu {
    margin-top: -1px;
}

#top-nav-navbar {
    background-color: #fff;
}

#top-nav-navbar.show {
    border-bottom: solid 2px var(--primary);
}

/**
* PARALLAX
*/
.parallax {
    /* The image used */
    /* background-image: url('../img/parallax-bg-demo.jpg'); */

    /* Set a specific height */
    height: 500px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;

    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.parallax-inner {
    /* background-image: url('../img/parallax-silhouette-demo.png'); */
    height: 500px;

    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 105%;

    position: absolute;
    bottom: -2px;
    left: 0px;
    right: 0px;
    width: 100%;
}

/** CONTENT **/

#startseite-inhalt-oben-rechts .card {
    height: 100%;
}

#content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.3rem;
}

.card {
    border-radius: 15px;
}

.card-header {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    background-color: transparent;
}

.card-header h2 {
    margin: 0px;
}

.card-footer {
    background-color: transparent;
}

.card.border-0 .card-footer,
.card.border-0 .card-header,
.card.border-0 .card-body {
    border: none;
}

.card .card-body p:last-child {
    margin-bottom: 0;
}

.card.hover-effect-1 {
    border: solid 1px transparent !important;
    transition: border-color 0.25s;
}

.card.hover-effect-1:hover {
    border-color: var(--primary) !important;
}

.card-rasse,
.card-person {
    transition: border-color 0.25s;
}

.card-rasse:hover,
.card-person:hover {
    border-color: var(--primary) !important;
}

.card-rasse img,
.card-person img {
    border-radius: 0 !important;
    border-top-left-radius: 14px !important;
    border-top-right-radius: 14px !important;
}

.card-rasse .card-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-rasse .card-body h3 {
    margin: 0;
    font-family: "Architects Daughter";
    text-align: center;
    font-size: 1.4rem;
}

.card-rasse .card-body a:hover {
    text-decoration: none !important;
}

table {
    border-color: #dee2e6;
}

.row-werbepartner .col-12 {
    align-self: center;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
}


/** CALL 2 ACTION **/
#call-2-action {
    background-color: #ededee !important;
}

#call-2-action h4 {
    text-transform: uppercase;
    font-size: 1.75rem;
}

/** FOOTER **/
footer {
    background-image: url("/assets/img/rauten-bg-01.png");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
}

footer * {
    color: var(--light);
}

footer h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
}

footer ul {
    margin-bottom: 0px;
}

footer a {
    font-size: 0.9rem;
    color: var(--light) !important;
}

/** SCROLL TOP BUTTON **/
#button-to-top .btn {
    width: 38px;
    height: 38px;
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 900;
}

/** img gallery **/
a.gallery-img img {
    border: solid 1px transparent;
    transition: border-color .5s, transform .5s, box-shadow .5s;
}

a.gallery-img:hover img {
    border-color: var(--primary);
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
    transform: translateY(-5px);
}

/** shariff share **/
.shariff ul {
    padding-left: 0;
    list-style: none;
}

.shariff ul li {
    display: inline-block;
}

.shariff ul li:not(:last-child) {
    margin-right: 0.5rem;
}

.shariff ul li a {
    color: var(--secondary) !important;
    transition: all .5s;
}

.shariff ul li:hover a {
    color: var(--primary) !important;
}