@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700|Roboto:400,400i&display=swap');

:root {
    --dark: #1D1D1B;
    --green: #789904;
    --orange: #FFB71B;
    --green-rgb: 120, 153, 4;
    --orange-rgb: 255, 183, 27;
}


body {
    color: var(--green);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto Slab', serif;
    line-height: 1.5;
    background: #ffffff url(img/body-bg.png) repeat;
}

a,
button {
    text-decoration: none;
    transition: all 0.2s;
    color: inherit;
}

a:hover {
    color: color: var(--green);
    text-decoration: none;
}

p {
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

p:last-child {
    margin-bottom: 0;
}

dl,
ol,
ul {
    padding-left: 1.5rem;
}

.bg-green {
    background: rgba(var(--green-rgb), 0.1);
}

.bg-orange {
    background: rgba(var(--orange-rgb), 0.2);
}

.text-green {
    color: var(--green);
}

.text-orange {
    color: var(--orange);
}

.text-dark {
    color: var(--dark);
}

.ls-sm {
    letter-spacing: .5px;
}

.small {
    font-size: 14px;
}

/* Navbar */
.navbar {
    padding: 2rem 0 0;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand .logo {
    width: 200px;
}

.navbar-nav {
    margin-top: 85px;
}

.navbar-nav a {
    color: var(--orange);
    padding: .5rem;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.navbar-nav .active a,
.navbar-nav a:hover {
    color: var(--green);
}

/* Section header */
.section-heading {
    letter-spacing: .5px;
}


/* Footer */
.footer-widget .logo {
    width: 150px;
}

.footer-widget h6 {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.footer-widget address,
.footer-widget p,
.footer-widget a {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    color: #000;
}

.footer-addition {
    text-align: center;
    font-size: 0.8rem;
    margin-bottom: 40px;
    background: #fff7e3;
    padding: 5px;
    letter-spacing: 0.10rem;
}

.map-widget {
    position: relative;
    z-index: 1;
    padding-left: 40px;
}

.map-widget::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, transparent, white, transparent);
}

.map img {
    width: 100%;
}


/* Welcome page */
.img-bg {
    background: url(img/img-bg.png) no-repeat center center / 100%;
}

.img-bg img {
    width: 500px;
}

/* Services page */

/* Leistungen */
.service-card {
    padding-bottom: 30px;
}



.s-card-header {
    height: 300px;
    margin-bottom: 1rem;
}

.card-border {
    position: relative;
    z-index: 1;
}

.card-border::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid rgba(255, 255, 255, 0.5);
}

.s-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.s-card-header h3 {
    position: absolute;
    z-index: 1;
    bottom: 10px;
    left: 10px;
    padding: 5px 15px;
    margin: 0;
    line-height: 1;
    border-radius: 0 15px 0 0;
    max-width: 90%;
    color: var(--orange);
    background: rgba(255, 255, 255, 0.8);
}

/* Practice page */
.practice-card {
    height: 200px;
    margin-bottom: 30px;
}

.practice-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About pages */
.about-img {
    width: 200px;
    height: 300px;
}
.about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-logos a {
    display: inline-block;
}

.about-logos a:hover {
    opacity: 0.8;
}

.about-logos a:not(:last-child) {
    margin-right: 3rem;
}

.about-logos img {
    max-height: 105px;
}

#cookiedingsbums div {
    padding: 13px;
    padding-right: 13px;
    padding-right: 50px;
}

#cookiedingsbums {
    text-align: left;
    padding-right: 60px;
	color: #000;
	background: #ffb71b;
    position: fixed;
    bottom: 0px;
    z-index: 10000;
    width: 100%;
    font-size: 12px;
    line-height: 16px;
}

#cookiedingsbumsCloser {
    color: #494948;
    font: 13px/100% arial, sans-serif;
    position: absolute;
    right: 5px;
    text-decoration: none;
    top: 5px;
    cursor: pointer;
    border-radius: 5px;
    padding: 8px;
    background: #fff;
}

.btn-group-sm > .btn, .btn-sm {
    padding: .11rem .25rem;
    font-size: .85rem;
    line-height: 1.2;
    border-radius: .2rem;
}
