@font-face {
    font-family: 'fabfeltscriptbold';
    src: url('../fonts/fabfeltscript-bold.eot');
    src: url('../fonts/fabfeltscript-bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/fabfeltscript-bold.woff2') format('woff2'),
        url('../fonts/fabfeltscript-bold.woff') format('woff'),
        url('../fonts/fabfeltscript-bold.ttf') format('truetype'),
        url('../fonts/fabfeltscript-bold.svg#fabfeltscriptbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

:root {
    --main-color: rgba(124, 32, 58, 1);
    --main-color-90: rgba(124, 32, 58, .9);
    --main-color-60: rgba(124, 32, 58, .6);
    --main-accent: rgba(237, 177, 114, 1);
    --main-accent-2: rgba(201, 139, 73, 1);
    --main-accent-2-60: rgba(201, 139, 73, .6);
}

::selection {
    background: var(--main-accent-2);
    color: #fff;
    /* WebKit/Blink Browsers */
}

::-moz-selection {
    background: var(--main-accent-2);
    color: #fff;
    /* Gecko Browsers */
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--main-color-90);
}

.tooltip-arrow,
.tooltip-inner {
    background-color: var(--main-color);
}

html {
    font-size: 1rem;
}

body {
    background-color: rgba(243, 243, 243, 0.322);
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--main-color);
}

h1,
.handwritten {
    font-family: fabfeltscriptbold;
}

.bigFont {
    font-size: 2rem;
}

h2 {
    font-size: 1.3rem;
}

a {
    color: var(--main-color);
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: var(--main-accent);
}

.button {
    border: none;
    background: var(--main-color);
    border-radius: 8px;
    color: #fff;
    padding: 17px;
    font-size: 1.1rem;

}

.button:hover,
.button:active,
.button:focus {
    background: var(--main-color-90);
    color: #fff;
}


.breadcrumb {
    font-size: .7rem;
    padding: 10px 0 0 0;
    background: none;
}

/* .teaserboxIntro {

} */

.teaserboxIntro a {
    font-weight: bold;
    color: white;
}

/* ***********************************************************
* #global-nav
* *********************************************************** */
.open #global-nav {
    z-index: 1002;
    visibility: visible;
}

#global-nav {
    visibility: hidden;
    position: fixed;
    color: #fff;
    top: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    font-size: 16px;

}

#global-nav ul {
    vertical-align: middle;
    list-style: none;
    padding: 30px;
    margin: 0;
}

#global-nav ul li ul {
    padding: 0 0 25px 0;
    margin: 0 !important;
}

#global-nav ul li ul li a {
    padding: 0 !important;
}

#global-nav ul a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}

.contactData a {
    color: #fff;
}

.navContainer {
    margin: 0;
    padding: 0;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ***********************************************************
* nav-list
* *********************************************************** */


#global-nav ul li {
    font-size: 1.5em;
    display: block;
    position: relative;
    opacity: 0;
    -webkit-transform: scaleX(0) translateX(-260px);
    transform: scaleX(0) translateX(-200px);
}

.submenu {
    font-size: .6rem;
    color: #fff;
    margin-top: 1rem;
    display: none;
}


#global-nav ul li {
    cursor: pointer;
}

#global-nav ul li:hover .zoom {
    transform: scale(1.1);
    transition: all ease-in-out 500ms;
}


.open #global-nav ul li,
.open .contactData,
.open .navFooter {
    opacity: 1;
    -webkit-transform: scaleX(1) translateX(0);
    transform: scaleX(1) translateX(0);

    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;

    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}

.open #global-nav ul li:nth-child(2) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.open #global-nav ul li:nth-child(3) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.open #global-nav ul li:nth-child(4) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

.open #global-nav ul li:nth-child(5) {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
}

.open .navFooter {
    -webkit-transition-delay: .5s;
    transition-delay: .6s;
}

/* ***********************************************************
* #nav-bg
* *********************************************************** */
#nav-bg {
    content: "";
    width: 60px;
    height: 60px;
    top: 15px;
    right: 15px;
    display: block;
    position: fixed;
    background: var(--main-color);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 1000;
}

.open #nav-bg {
    -webkit-transform: scale(80);
    transform: scale(80);
    -webkit-transition: all .6s ease-out;
    transition: all .6s ease-out;
}

/* ***********************************************************
* #nav-toggle
* *********************************************************** */
#nav-toggle {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1003;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#nav-toggle div {
    position: relative;
    top: 50%;
    right: 50%;
    display: flex;
    flex-direction: column;
}

#nav-toggle span {
    height: 2px;
    background: #fff;
    zoom: 1;
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    margin: 4px 0;
}

#nav-toggle span:nth-child(1) {
    width: 60%;
    top: 0;
}

#nav-toggle span:nth-child(2) {
    width: 80%;
    top: 8px;
}

#nav-toggle span:nth-child(3) {
    width: 100%;
    top: 16px;
}

#burgerContainer:hover .burgerSpan {
    width: 100%;
}

.open {
    height: 100vh;
    overflow: hidden;
}

.open #nav-toggle {
    background: transparent;
}

.open #nav-toggle span {
    background: #fff;
}

.open #nav-toggle span:nth-child(1) {
    width: 100%;
    top: 9px;
    -webkit-transform: translateY(10px) rotate(-135deg);
    transform: translateY(10px) rotate(-135deg);
    zoom: 1;
}

.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}

.open #nav-toggle span:nth-child(3) {
    top: 9px;
    -webkit-transform: translateY(-10px) rotate(135deg);
    transform: translateY(-10px) rotate(135deg);
    zoom: 1;
}


/* ***********************************************************
* Logobereich
* *********************************************************** */


section.fullscreenIntro {
    /* background-image: url('https://source.unsplash.com/random'); */
    background: var(--main-accent-2);
    background: radial-gradient(circle, var(--main-accent-2-60) 0%, var(--main-accent-2) 100%);
    /* background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%; */
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

section.fullscreenIntro #logo {
    width: 80px;
    height: 80px;
    position: fixed;
    z-index: 999;
}

section.fullscreenIntro #logo img {
    width: 100%;
    height: auto;
    transform: translate(-50%, 0);
}

section.fullscreenIntro a.quickaccess {
    font-size: 1rem;
    max-width: 100%;
}

section.fullscreenIntro img.quickaccess {
    margin: 0 auto;
    width: 100%;
    max-width: 70px;
    height: 8vh;
}

.teaserboxIntro {
    display: flex;
    justify-content: center;
}


section.intro {
    margin: 0;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-repeat: no-repeat;
    background-position: center 20%;
    height: 30vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: space-between;
    padding: 15px;
}

section.intro #logo {
    width: 80px;
    height: 80px;
    position: fixed;
    z-index: 999;
}

section.intro img {
    width: 100%;
    height: auto;
}


/* ***********************************************************
* Parallax
* *********************************************************** */

.parallax {
    background-image: url('../../img/teamtraining-parallax.jpg');
    height: 400px;
    background-position-x: center;
    background-position-y: 30%;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallaxOverlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #00000060;
    font-size: 1.5rem;
    color: #fff;
}





/* ***********************************************************
* Footerbereich
* *********************************************************** */

footer {
    background: var(--main-accent-2);
}

footer .menu {
    padding: 10vh 0;
    color: #fff;
}

footer .copyright {
    background: var(--main-color);
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.menuList {
    list-style-type: none;
    padding: 0;
}

.menuList li {
    padding: 5px 0;
}

.menuList a {
    color: #fff;
}

.menuList a:hover {
    text-decoration: underline;
}

.list-spacer li {
    padding: .8rem 0;
    position: relative;
}

/* .list-spacer li:not(:first-child) {
        padding: .8rem 0;
        border-top: 1px solid var(--main-color);

    } */

.list-spacer li:not(:last-child):after {
    content: "";
    background: var(--main-color);
    position: absolute;
    bottom: 0;
    left: 37.5%;
    height: 1px;
    width: 25%;

}



/* ***********************************************************
* Background-Colors
* *********************************************************** */

.bg-main {
    background: var(--main-color);
    color: white !important;
}


/* ***********************************************************
* Skews
* *********************************************************** */

.skew {
    margin: 10vh 0;
    padding: 25vh 0;
    transform: skewY(4deg);
}

.skew div * {
    transform: skewY(-4deg);
}

#portraitContainer {
    min-height: 400px;
    background-image: url('../../img/portrait-birgit-baumeister.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.topIcon {
    height: 40px;
}
