/* Hier kommen alle CSS-Angaben für das spezielle Projekt hinein */

/* Sonstige Hinweise und Anmerkungen
Angabe der Schriftgröße: Dies wird zukünftig in % durchgeführt 100% = 10px
*/

/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages
Opensource-Fonts können über die folgenden Seite beschafft werden:
http://www.theleagueofmoveabletype.com
http://www.fontsquirrel.com/fontface/
http://kernest.com/
http://www.google.de/webfonts
Über den folgenden Link können ttf-Schriften einfach in ein komplettes Fontpacket mit
CSS konvertiert werden
http://www.fontsquirrel.com/fontface/generator
*/
body { font:10px sans-serif; *font-size:small; *font:x-small; line-height:1.22; }
table { font-size:inherit; font:100%; }
select, input, textarea { font:99% sans-serif; }

/* Somit wird gründsätzlich ein Scrollbalken eingeblendet, und die Seite springt nicht mehr
zwischen kurzen und langen Seiten*/
html { overflow-y: scroll; }

/* bicubic resizing for non-native sized IMG:
code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0px;
    height: 0px;
    font-size:1px;
}

/* Style für Captcha Auswertung per JS */

img.captchaImg{
    display: block;
    margin-bottom: 10px;
}

input.sendCode{
    width: 145px !important;
    margin-right: 10px !important;
}

input[type=submit].disabled {
    cursor: not-allowed;
    background:#e6e6e6 !important;
    color: #bfbfbf !important;
}


/* Ab hier kommt dann der eigentliche CSS Code*/

/*###USERSPECIFICCODE###*/
/* ALLGEMEIN */
body {
    position: relative;

    font-family: 'Frutiger VR',Arial,sans-serif;
    font-weight: 400;
    font-size: 100%;
    line-height: normal;
    color: #333;
}
button {
    outline: none;
    font-family: 'Frutiger VR',Arial,sans-serif;
}
h1 {
    color: #003463;
    font-weight: bold;
}
h1 > span {
    color: rgb(255,102,0);
}
h2 {
    font-weight: bold;
    color: rgb(255,102,0);
    font-size: 2.8rem;
}
h1,h2,h3,h4,h5 {
    font-family: 'Frutiger VR',"Segoe UI",sans-serif;
    word-wrap: break-word;
    word-break: break-word;
}
a {
    word-wrap: break-word;
    word-break: break-word;
}


.container {
    padding: 0 15px 0 60px;
    margin: 0 auto;
}
.row {
    margin-left: -15px;
    margin-right: -15px;

    display: flex;
    flex-wrap: wrap;
}
.column {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .container {
        max-width: 1080px;
        padding: 0 15px;
    }
}

.uk-sticky-placeholder {
    height: 0 !important;
}

p {
    line-height: 138%;
    word-wrap: break-word;
    word-break: break-word;
}

/* FONTS */
@font-face {
    font-family: 'Frutiger VR';
    src: url('../fonts/vr_bold.eot');
    src: url('../fonts/vr_bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/vr_bold.woff2') format('woff2'),
    url('../fonts/vr_bold.woff') format('woff'),
    url('../fonts/vr_bold.ttf') format('truetype'),
    url('../fonts/vr_bold.svg#frutiger_vrbold') format('svg');
    font-weight: bold;
    font-style: normal;

}




@font-face {
    font-family: 'Frutiger VR';
    src: url('../fonts/vr_bold_italic.eot');
    src: url('../fonts/vr_bold_italic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/vr_bold_italic.woff2') format('woff2'),
    url('../fonts/vr_bold_italic.woff') format('woff'),
    url('../fonts/vr_bold_italic.ttf') format('truetype'),
    url('../fonts/vr_bold_italic.svg#frutiger_vrbold_italic') format('svg');
    font-weight: bold;
    font-style: italic;

}




@font-face {
    font-family: 'Frutiger VR';
    src: url('../fonts/vr_default.eot');
    src: url('../fonts/vr_default.eot?#iefix') format('embedded-opentype'),
    url('../fonts/vr_default.woff2') format('woff2'),
    url('../fonts/vr_default.woff') format('woff'),
    url('../fonts/vr_default.ttf') format('truetype'),
    url('../fonts/vr_default.svg#frutiger_vrregular') format('svg');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'Frutiger VR';
    src: url('../fonts/vr_italic.eot');
    src: url('../fonts/vr_italic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/vr_italic.woff2') format('woff2'),
    url('../fonts/vr_italic.woff') format('woff'),
    url('../fonts/vr_italic.ttf') format('truetype'),
    url('../fonts/vr_italic.svg#frutiger_vritalic') format('svg');
    font-weight: normal;
    font-style: italic;

}

/* HEADER */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 137px;
}
@media (min-width: 1230px) {

}

#main-nav-wrap {
    position: relative;
}

.btn-menu {
    display: flex;
    border: none;
    background: transparent;
    padding: 2px;
    cursor: pointer;
    align-items: center;
}
@media (max-width: 1230px) {
    .btn-menu {
        margin-left: 15px;
    }
}
@media (max-width: 767px) {
    .btn-menu {
        margin-left: 60px;
    }
}

.btn-back {
    font-size: 13px;
    color: #333;
}
.btn-back:hover {
    color: #000;
    text-decoration: none;
}

.menu-icon {
    width: 27px;
    margin-right: 10px;
}
.menu-icon::before,
.menu-icon::after {
    content: "";
    width: 100%;
    height: 3px;
    display: block;
    background: #333;
}
.menu-icon > .stripe {
    width: 100%;
    height: 3px;
    display: block;
    background: #333;
    margin: 4px 0;
}

.btn-menu:hover .menu-icon::before,
.btn-menu:hover .menu-icon::after,
.btn-menu:hover .menu-icon > .stripe,
.btn-menu.uk-open .menu-icon::before,
.btn-menu.uk-open .menu-icon::after,
.btn-menu.uk-open .menu-icon > .stripe {
    background: #000;
}

.menu-icon-back::before {
    content: "";
    display: inline-block;
    border-bottom: 2px solid #333;
    border-left: 2px solid #333;
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    margin-right: 8px;
    margin-top: 5px;
}
.btn-menu:hover .menu-icon-back::before {
    border-color: #000;
}


#main-nav {
    position: absolute;
    top: 0 !important;
    left: -1200px !important;
    margin: 0;
    background: #fff;
    padding: 15px;
    display: flex !important;
    flex-direction: column;
    transition: left 0.4s ease-in-out;
}
#main-nav.uk-open {
    left: 0 !important;
}

#main-nav .btn-wrap {
    width: 100%;
    text-align: right;
}

#main-nav button {
    margin-left: auto;
    color: #333;
}
#main-nav button:hover {
    color: #000;
}
#main-nav button > span {
    margin-right: 5px;
    font-size: 0.7rem;
}
#main-nav ul {
    list-style: none;
    padding: 20px 10px;
    margin: 0;
}
#main-nav ul > li {
    border-bottom: 1px solid #ababab;
}
#main-nav ul > li > a {
    color: #333;
    display: flex;
    align-items: center;
    margin: 4px 0;
}
#main-nav ul > li > a:hover {
    color: #000;
    text-decoration: none;
}
.menu-circle {
    display: inline-block;
    border: 1px solid rgb(255,102,0);
    border-radius: 11px;
    width: 22px;
    height: 22px;
    text-align: center;
    margin-right: 10px;
    color: #003463;
    font-size: 1.2rem;
    line-height: 121%;
}


#logo-wrap {
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
}
#logo-wrap .item {
    padding: 10px;
    height: 117px;
    width: 117px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#logo-wrap .item:first-of-type {
    background: rgb(255,102,0);
    color: #fff;
    text-align: center;
    font-size: 1.3rem;
}
#logo-wrap .item:last-of-type {
    background: #fff;
}
@media (max-width: 767px) {
    #logo-wrap .item {
        padding: 10px;
        height: 70px;
        width: 70px;
    }
    #logo-wrap .item:first-of-type {
        font-size: 0.9rem;
    }
}

/* SIDE NAV */
#side-nav {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px !important;
    z-index: 2001;
    visibility: hidden;
}
#side-nav.uk-sticky-fixed {
    left: 0;
    margin-top: 135px !important;
    visibility: visible;
    position: fixed;
}
@media (min-width: 768px) {
    #side-nav {
        width: 75px !important;
    }
    #side-nav.uk-sticky-fixed {
        left: auto;
        right: 0;
    }
    .side-nav-list {
        padding-left: 30px;
        padding-right: 0;
    }
    .side-nav-list > li > div {
        right: -500px;
        transition: right 0.4s ease;
    }
    .side-nav-list > li > div > a {
        margin-right: 10px;
    }
    #side-nav.uk-sticky-fixed .side-nav-list > li > div {
        right: 0;
    }
}
@media (max-width: 767px) {
    .side-nav-list > li > div {
        left: -500px;
        transition: left 0.4s ease;
    }
    #side-nav.uk-sticky-fixed .side-nav-list > li > div {
        left: 0;
    }
}
@media (min-width: 992px) {
    #side-nav.uk-sticky-fixed {
        left: auto;
        right: 0;
        margin-top: 155px !important;
    }
}
.side-nav-list {
    list-style: none;
    overflow: hidden;
    padding-right: 0;
    padding-left: 12px;
}
.side-nav-list > li {
    position: relative;
    height: 38px;
}
.side-nav-list > li > div {
    position: absolute;
}
.side-nav-list > li > div > a{
    display: inline-block;
    border: 1px solid #003463;
    border-radius: 15px;
    width: 31px;
    height: 31px;
    text-align: center;
    margin-right: 5px;
    color: #003463;
    font-size: 1.3rem;
    line-height: 160%;
    transition: border-color 0.2s ease;
    background: #fff;
}
.side-nav-list > li > div > a:hover {
    text-decoration: none;
    border-color: rgb(255,102,0);
}
.side-nav-list > li.uk-active > div > a {
    border-color: rgb(255,102,0);
}
#side-nav:not(.uk-sticky-fixed) .side-nav-list > li > div {
    transition-delay: 0s !important;
}
#to-top {
    padding: 0;
    background: #003463;
    color: #fff;
    line-height: 90%;
    transition: border-color 0.2s ease, background 0.2s ease;
    position: relative;
}
#to-top::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(45deg);
    top: 13px;
    left: 11px;
}
.to-top {
    padding: 0;
}
.to-top > svg {
    display: none;
}
#to-top:hover {
    background: rgb(255,102,0);
}
@media (min-width: 900px) {
    #side-nav {
        width: 125px !important;
    }
    .side-nav-list > li {
        height: 43px;
    }
    .side-nav-list > li > div > a {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        line-height: 156%;
        border-radius: 18px;
    }
    #to-top::after {
        top: 15px;
        left: 13px;
    }
}
@media (min-width: 1200px) {
    .side-nav-list > li {
        height: 58px;
    }
    .side-nav-list > li > div > a {
        width: 46px;
        height: 46px;
        border-width: 2px;
        border-radius: 32px;
        font-size: 2.4rem;
        line-height: 129%;
        margin-right: 30px;
    }
    #to-top::after {
        border-width: 2px;
        width: 16px;
        height: 16px;
        top: 18px;
        left: 14px;
    }
}
@media (min-width: 1500px) {
    .side-nav-list > li {
        height: 80px;
    }
    .side-nav-list > li > div > a {
        width: 64px;
        height: 64px;
        border-width: 2px;
        border-radius: 32px;
        font-size: 3.2rem;
        line-height: 130%;
        margin-right: 30px;
    }
    #to-top::after {
        border-width: 2px;
        width: 16px;
        height: 16px;
        top: 26px;
        left: 24px;
    }
}



#sidenav-logo {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2001;
    visibility: hidden;
    overflow: hidden;
    height: 91px !important;
    width: 100% !important;
}
#sidenav-logo.uk-sticky-fixed {
    visibility: visible;
    position: fixed;
}
#sidenav-logo .logo-wrap {
    position: relative;
}
#sidenav-logo .logo {
    position: absolute;
    padding: 10px;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    top:0;
    box-shadow: 0 0 2px #c7c7c7;
    -webkit-box-shadow: 0 0 2px #c7c7c7;
    -moz-box-shadow: 0 0 2px #c7c7c7;
}
#sidenav-logo.uk-sticky-fixed .logo {
    right: 0;
}

@media (max-width: 767px) {
    #sidenav-logo .logo {
        left: -500px;
        transition: left 0.4s ease-in-out;
    }

    #sidenav-logo.uk-sticky-fixed .logo {
        left: 0;
    }
}

@media (min-width: 768px) {
    #sidenav-logo {
        height: 121px !important;
        width: 121px !important;
    }
    #sidenav-logo .logo {
        height: 98px;
        width: 98px;
        right: -500px;
        transition: right 0.4s ease-in-out;
    }
    #sidenav-logo.uk-sticky-fixed .logo {
        right: 0;
    }
}
@media (min-width: 992px) {
    #sidenav-logo {
        height: 140px !important;
        width: 140px !important;
    }
    #sidenav-logo .logo {
        height: 117px;
        width: 117px;
        right: -500px;
        transition: right 0.4s ease-in-out;
    }
    #sidenav-logo.uk-sticky-fixed .logo {
        right: 0;
    }
}

/* MODUL-IMG */
.modul-img,
.modul-img-wrap {
    position: relative;
}
@media (max-width: 767px) {
    .modul-img h1 {
        padding: 0 15px 0 60px;
        z-index: 1;
        font-size: 1.85rem;
        margin-top: 30px;
        text-transform: uppercase;
    }
}
@media (max-width: 355px) {
    .modul-img h1 {
        font-size: 1.6rem;
    }
}
.modul-img-wrap::after {
    content: "";
    background-image: linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 100%);
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    max-height: 30%;
}

@media (min-width: 768px) {
    .modul-img h1 {
        position: absolute;
        left: 40%;
        top: 50%;
        text-transform: uppercase;
    }
}

/* MODUL-TLBR */
.modul-tlbr {
    padding-top: 80px;
    padding-bottom: 80px;
}
.modul-tlbr h2 {
    font-size: 1.4rem;
    font-weight: normal;
    color: #003463;
    margin-top: 40px;
}
.modul-tlbr .signature {
    display: flex;
}
.modul-tlbr .signature > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.modul-tlbr .signature > div:first-of-type {
    margin-right: 30px;
}
.modul-tlbr .signature img {
    margin-bottom: 10px;
    max-width: 130px;
}
@media (min-width: 768px) {
    .modul-tlbr {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .modul-tlbr h2 {
        font-size: 2rem;
    }
    .modul-tlbr .signature > div:first-of-type {
        margin-right: 80px;
    }
}
@media (max-width: 400px) {
    .modul-tlbr .signature {
        flex-wrap: wrap;
    }
    .modul-tlbr .signature > div:first-of-type {
        margin-right: 0;
        margin-bottom: 40px;
    }
}
/* MODUL-VBHC */
.modul-vbhc {
    padding-top: 40px;
    padding-bottom: 0;
    margin-top: 1px;
}
.modul-vbhc:last-of-type {
    padding-bottom: 40px;
}
.modul-vbhc .container {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}
.modul-vbhc h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    text-align: left;
}
.modul-vbhc h2>.number {
    display: inline-block;
    margin-right: 8px;
}
.modul-vbhc h2>.number>i {
    border: 2px solid rgb(255,102,0);
    border-radius: 30px;
    height: 38px;
    width: 38px;
    line-height: 130%;
    text-align: center;
    font-weight: normal;
    font-size: 2rem;
    color: #003463;
    display: inline-block;
    font-style: normal;
}

.modul-vbhc p {
    margin: 0 auto 15px;
    text-align: left;
}
.modul-vbhc p > strong {
    color: #003463;
}
.modul-vbhc .vid-info p > strong {
    color: rgb(255,102,0);
}

@media (max-width: 767px) {
    .modul-vbhc h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        justify-content: flex-start;
    }
}
@media (min-width: 768px) {
    .modul-vbhc {
        padding-top: 100px;
        padding-bottom: 0;
    }
    .modul-vbhc h2>.number {
        margin-right: 15px;
    }
    .modul-vbhc h2>.number>i {
        font-size: 3.2rem;
        border-radius: 30px;
        height: 60px;
        width: 60px;
        line-height: 122%;
    }
    .modul-vbhc p {
        max-width: 500px;
        margin: 0 auto 30px;
        text-align: center;
    }
}


.media-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.img-wrap {
    margin-bottom: 15px;
    text-align: left;
}
.img-wrap img {
    width: 66.666666%;
}

.modul-vbhc:nth-child(odd) .vid-wrap + .img-wrap {
    order: 2;
}
.modul-vbhc:nth-child(odd) .vid-wrap {
    order: 1;
}
.modul-vbhc:nth-child(even) .vid-wrap + .img-wrap {
    order: 1;
}
.modul-vbhc:nth-child(even) .vid-wrap {
    order: 2;
}

.vid-cnt {
    border: 10px solid #003463;
    border-radius: 25px;
    position: relative;
    padding: 15px;
}

.vid-info {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.vid-icon {
    width: 60px;
    margin-right: 10px;
}
.vid-info > p {
    flex: 1;
    text-align: left;
    margin-left: 0;
}
@media (min-width: 768px) {
    .media-wrap {
        margin-top: 20px;
    }
    .img-wrap {
        text-align: center;
    }
    .img-wrap img {
        width: auto;
    }
    .vid-info {
        flex-direction: row;
        margin-left: 110px;
        margin-top: 20px;
        max-width: 500px;
    }
    .vid-cnt::after {
        content: "";
        width: 0;
        height: 0;
        -webkit-transform:rotate(360deg);
        border-style: solid;
        border-width: 0 65px 65px 0;
        border-color: transparent #003463 transparent transparent;
        position: absolute;
        display: block;
        bottom: -71px;
        left: 2px;
    }

    .modul-vbhc:nth-child(odd) .vid-wrap + .img-wrap {
        order: 2;
        padding-left: 30px;
    }
    .modul-vbhc:nth-child(odd) .vid-wrap {
        order: 1;
    }
    .modul-vbhc:nth-child(even) .vid-wrap + .img-wrap {
        order: 1;
        padding-right: 30px;
    }
    .modul-vbhc:nth-child(even) .vid-wrap {
        order: 2;
    }
}

.modul-vbhc:nth-child(odd) .vbhc-acc {
    background: rgb(255,102,0);
}
.modul-vbhc:nth-child(even) .vbhc-acc {
    background: #003463;
}
.vbhc-acc {
    padding-top: 18px;
    padding-bottom: 20px;
    display: none;
    position: relative;
    width: 100%;
    margin-top: 0;
    top: 0 !important;
}
.vbhc-acc.open {
    display: block;
}

.modul-vbhc:nth-child(odd) .btn-vbhc-acc {
    background: rgb(255,102,0);
}
.modul-vbhc:nth-child(even) .btn-vbhc-acc {
    background: #003463;
}
.btn-vbhc-acc {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    position: relative;
    padding: 10px 15px 12px;
    font-size: 100%;
    cursor: pointer;
    margin-bottom: 10px;
    color: #fff;
}
.btn-vbhc-acc::after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 10px;
    margin-bottom: 2px;
}

.btn-vbhc-acc.uk-open::after {
    border-right: none;
    border-bottom: none;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    margin-bottom: -4px;
}
.vbhc-acc p {
    text-align: left;
    color: #fff;
}

@media (min-width: 768px) {
    .vbhc-acc {
        padding-top: 30px;
        padding-bottom: 30px;
        margin-top: 40px;
        display: block !important;
    }
    .btn-vbhc-acc {
        display: none;
        padding: 10px 15px;
        text-align: center;
        margin-top: 20px;
    }
}

.modul-vbhc .vbhc-acc .btn-wrap {
    margin: 0 auto 30px;
    text-align: left;
    max-width: 500px;
}


.modul-vbhc:nth-child(odd) .vbhc-acc .btn-vbh {
    background: #003463;
}
.modul-vbhc:nth-child(even) .vbhc-acc .btn-vbh {
    background: rgb(255,102,0);
}
.modul-vbhc:nth-child(odd) .vbhc-acc .btn-vbh:hover,
.modul-vbhc:nth-child(odd) .vbhc-acc .btn-vbh:focus {
    background: rgb(255,102,0);
    text-decoration: none;
}
.modul-vbhc:nth-child(even) .vbhc-acc .btn-vbh:hover,
.modul-vbhc:nth-child(even) .vbhc-acc .btn-vbh:focus {
    background: #003463;
    text-decoration: none;
}
.modul-vbhc .vbhc-acc .btn-vbh {
    color: #fff;
    padding: 10px 15px;
    border: 1px solid #fff;
    transition: background 0.2s ease-in-out;
    display: inline-block;
}
.modul-vbhc .vbhc-acc .btn-vbh > .inner {
    display: flex;
    align-items: center;
}

.modul-vbhc .vbhc-acc .btn-vbh > .inner::after {
    content: "";
    display: inline-block;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 5px;

}

/* MODUL-VBHTXT */
.modul-vbhtxt h2 {
    margin-top: 30px;
    font-size: 26px;
    color: #003463;
}


/* FOOTER */
footer {
    padding: 30px 0 50px;
    color: #003463;
}
footer .top-row {
    margin-bottom: 10px;
}
footer .top-row > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer .top-row > ul>li {
    display: inline-block;
    margin-right: 20px;
}
footer .top-row > ul>li:last-of-type {
    margin-right: 0;
}
footer .top-row > ul > li >span {
    color: #000;
    text-decoration: underline;
}
footer .bottom-row {
    font-size: 0.8rem;
}
footer a {
    color: #003463;
}
footer a:hover {
    color: #000;
}
@media (max-width: 768px) {
    footer .top-row > ul>li {
        margin-right: 10px;
    }
}
@media (min-width: 768px) {
    footer {
        padding: 80px 0;
        text-align: center;
    }
}
/*###USERSPECIFICCODE###*/