/*GENERAL ---------------------------------------------------------------------------------------------------------*/
/*ICON*/
.icon {
    position: fixed;
    z-index: 900;
    left: 35px;
    top: 30px;
    width: 35px;
    display: none;
}
/*SIDEBAR*/
.sidebar {
    width: 400px;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    position: fixed;
    top: 0;
    right: -400px;
    z-index: 999;
    background: #00354e;
    color: #fff;
    transition: all .5s ease-in-out;
    box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.5);
    text-align: left;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sidebar.active {
    right: 0;
}
/*MENU ELEMENTS*/
.menu_elements {
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
}
.sidebar ul li a {
    display: block;
    padding: 10px 65px 10px 0px;
    border: 0;
    color: #fff;
    text-align: right;

}
.sidebar ul li {
    position: relative;

}
.menu_arrow {
    display: block;
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%)  rotate(180deg);
}
.sidebar ul li a[aria-expanded="true"] svg.menu_arrow{
      transform: translateY(-50%) rotate(0deg);
}
.menu_line {
    height: 2px;
    background-color: white;

    margin: 20px 65px 20px 0px;

}
.dropdown-toggle::after {
    display: none;
}
.sidebar ul li a:hover,
.sidebar ul li a:focus,
.sidebar ul li.active > a:hover,
.sidebar ul li.active > a:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
}
.sidebar ul li.active > a {
    color: #fff;
}
.sidebar a[data-toggle="collapse"] {
    position: relative;
}
/*OVERLAY*/
.overlay {
    visibility: hidden;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(51, 51, 51, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all .5s ease-in-out;
}
.overlay.active {
    visibility: visible;
    opacity: 1;
}
/*FONTS*/
.menu_link {

    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-size: 23.4px;
    color: #ffffff;

}
.menu_link_submenu {

    font-family: proxima-nova, sans-serif;
    font-weight: 500;
    font-size: 16.2px;
    color: #ffffff;
    opacity: 0.75;
    padding: 5px 65px 5px 0px !important;

}
/*OPEN MENU BUTTON*/
.open-menu {
    position: fixed;
    top: 35px;
    right: 35px;
    width: 35px;
    z-index: 998;
    cursor: pointer;
}
.open-menu2 {
    position: fixed;
    top: 37px;
    right: 35px;
    width: 35px;
    z-index: 900;
    cursor: pointer;
    display: none;
}
.open-menu2 g path {
    fill: #00354e;
}
/*CLOSE*/
.dismiss {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 24px;
    right: 24px;
    transition: all .3s;
    text-align: center;
    cursor: pointer;
    z-index: 999;
    background-color: #00354e;
}
.dismiss:hover,
.dismiss:focus {
    color: #fff;
}
/*HEADER IMAGE AND GRADIENT*/
header {
    height: 100vh;
    width: 100vw;
    margin: 0;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 930;
}
header.job {
    height: 50vh;
    width: 100vw;
    margin: 0;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 930;
}
header::before {
    z-index: 940;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    mix-blend-mode: hard-light;
    display: block;
    background: linear-gradient(135deg, rgba(0,53,78,1) 0%, rgba(208, 198, 189, 1) 100%);
    opacity: 60%;
}
header::after {
    z-index: 950;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    mix-blend-mode: multiply;
    display: block;
    background: linear-gradient(135deg, rgba(0,53,78,1) 0%, rgba(208, 198, 189, 1) 100%);
}
.header_quote {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 960;
}
.logo_header {
    position: absolute;
    width: 200px;
    z-index: 960;
    left: 50%;
    transform: translate(-50%);
    top: 35px;
}
.logo_header_mobile {
    display: none;
    position: absolute;
    z-index: 960;
    left: 32px;
    top: 32px;
    height: 22px;
}
.icon_header {
    position: absolute;
    z-index: 951;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: overlay;
    max-height: 40vw;
}
.scroll {
    font-family: proxima-nova, sans-serif;
    position: absolute;
    z-index: 960;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.15em;
    text-decoration: none;
    font-weight: 100;
}
.scroll:hover {
    color: #ffffff;
    text-decoration: none;
}
/*GENERAL ROW SETTINGS*/
.flex_content_row {
    display: flex;
    align-items: center;
}
.flex_content_row_lg {
    display: flex;
    align-items: center;
}
.image_row {
    width: calc(50vw - 15px);
}
.flex_content_row.left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
/*THREE COLS MORE PADDING*/
.home_three_cols > div:first-child {
    padding-right: 45px;

}
.home_three_cols > div:nth-child(2) {
    padding-right: 30px;
    padding-left: 30px;
}
.home_three_cols > div:nth-child(3) {
    padding-left: 45px;
}
/* QUOTE CHAMPAGNE*/
.quote {
    background-color: #D0C6BD;
    height: 350px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.quote > svg {
    height: 130%;
    opacity: 0.14;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.quote > .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/*SLIDER*/
.slick-slide img {
    display: block;
    width: 100%;
    padding: 15px;
}
/*FADER*/
#fader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999999;
pointer-events: none;
background: linear-gradient(135deg, rgba(0,53,78,1) 0%, rgba(208, 198, 189, 1) 100%);
animation-duration: 800ms;
animation-timing-function: ease-in-out;
}
/*KEYFRAMES*/
@keyframes fade-out {
    from { opacity: 1 }
      to { opacity: 0 }
}
@keyframes fade-in {
    from { opacity: 0 }
      to { opacity: 1 }
}
#fader.fade-out {
    opacity: 0;
    animation-name: fade-out;
}
#fader.fade-in {
    opacity: 1;
    animation-name: fade-in;
}
/*HOME ---------------------------------------------------------------------------------------------------------*/
/*LEISTUNGEN*/
.image_home_leistungen {
    width: 100%;
}
.div_image_home_leistungen {
    position: relative;
}
.div_image_home_leistungen::before {
    z-index: 2;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    mix-blend-mode: multiply;
    display: block;
    background: linear-gradient(135deg, rgba(0,53,78,1) 0%, rgba(208, 198, 189, 1) 100%);
}
.image_home_leistungen_overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(208, 198, 189, 1);
    z-index: 3;
    padding: 12%;
    display: flex;
    align-items: center;
}
.image_home_leistungen_overlay p{
    color: white !important;
    margin-bottom: 0px !important;
}
.div_image_home_leistungen:hover > div.image_home_leistungen_overlay {
    opacity: 1;
}
.svg_home_leistungen {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: overlay;
    height: 30%;
    width: 100%;
}
.hide_text_on_desktop {
    display: none;
}
/*FAQ*/
.card_font_collapse {
    font-family: proxima-nova, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    letter-spacing: 0em;
    line-height: 1.2;
    cursor: pointer;
}
.card_font_collapse p, .job_headline{
    font-family: proxima-nova, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    letter-spacing: 0em;
    line-height: 1.2;
    cursor: pointer;
}
.job_headline{
    margin-bottom: 0px !important;
}
p.p_collapse p{
    margin-bottom: 0px;
}
p.p_collapse{
    margin-bottom: 0px;
}
p.p_collapse p{
    margin-bottom: 0px;
}
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
    border-radius: none;
    margin-bottom: 20px;

}
.card-body {
    padding: 1.25rem 1.25rem 0rem 1.25rem;
}
.card-header:first-child {
    border-radius: unset;
}
.card-header {
    padding: .75rem 1.25rem .75rem 3rem;
    margin-bottom: 0;
    background-color: #D0C6BD;
    border-bottom: unset;
    cursor: pointer;
    position: relative;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.card-header.card_category {
    padding: 0 0 0 3rem;
    margin-bottom: 0;
    background-color: white;
    border-bottom: unset;
    cursor: pointer;
    position: relative;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 15px;
}
.card-header:hover {
    background-color: #c3bab2;
}
.card-header.card_category:hover {
    background-color: white;
}
div.card-header button.btn.text-white:focus {
    box-shadow: none;
}
.headline_collapse_home {
    cursor: pointer;
}
.headline_collapse_home button {
    width: 100%;
    text-align: left;
}
.arrow_faq {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 18px;
    width: 27px;
}
button.faq_toggle.collapsed > svg.arrow_faq {
    transform: rotate(180deg);
    transform-origin: 14px 5px;
}
/*DIE MENSCHEN HINTER SCHNEEWEISS*/
.image_home_menschen {
    width: 100%;
}
.div_image_home_menschen {
    position: relative;
}
.div_image_home_menschen::before {
    z-index: 2;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    mix-blend-mode: multiply;
    display: block;
    background-color: #D0C6BD;
}
/*KONTAKT*/
.form-control {
    border: unset;
    border-radius: 0px;
    transition: unset;
    border-bottom: 2px solid #D0C6BD;
    padding: 0px;
}
.form-control.login {
    border: unset;
    border-radius: 0px;
    transition: unset;
    border-bottom: 2px solid white;
    padding: 0px;
    background-color: transparent;
    color: white;
}
.form-control.is-valid,
.was-validated .form-control:valid {
    padding-right: unset;
}
.form-control::placeholder {
    font-family: proxima-nova, sans-serif;
    font-weight: Semibold;
    font-size: 16.2px;
    color: #d0c6bd;
    letter-spacing: 0em;
    line-height: 1.6666666666666667;

}
.form-control.login::placeholder {
    font-family: proxima-nova, sans-serif;
    font-weight: Semibold;
    font-size: 16.2px;
    color: #ffffff;
    letter-spacing: 0em;
    line-height: 1.6666666666666667;

}
.privacy_consent_form {
    font-size: 14.4px;
    hyphens: auto;
}
.form-check-input.is-invalid~.form-check-label, .was-validated .form-check-input:invalid~.form-check-label a{
        color: #dc3545 !important;
    text-decoration: underline;
}
input.form-control:focus,
textarea.form-control:focus {
    box-shadow: none !important;
    border-bottom-color: #00354e;
}
.compensation + p{
    text-align: center !important;
    margin-bottom: 0 !important;
}
/*KONTAKT INFORMATION*/
.contact_information_grid {
    padding-left: 30px;
    background-color: #D0C6BD;
    max-height: calc(16.6666667% - 8.5px);
    flex: 0 0 16.6666667%;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
a.contact_information_grid:hover {
    color: white;
    text-decoration: none;
    background-color: #c3bab2;
}
a.contact_information_grid p:hover {
    cursor: pointer;
}
.contact_information_grid:last-child {
    margin-bottom: 0px;
}
/*FOOTER*/
.footer {
    height: 75px;
    width: 100%;
    background-color: #D0C6BD;
}
.footer .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
/*BUTTONS*/
.btn {
    min-width: 145px !important;
    max-width: fit-content !important;
}
.btn.btn-primary {
    font-weight: 400;
    color: #ffffff;
    background-color: #00354e;
    text-align: center;
    vertical-align: middle;
    border: 2px solid #00354e;
    padding: 0.6rem 2rem;
    border-radius: 0px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btn.btn-primary.login {
    font-weight: 400;
    color: #00354e;
    background-color: #ffffff;
    text-align: center;
    vertical-align: middle;
    border: unset;
    padding: 0.6rem 2rem;
    border-radius: 0px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btn.btn-outline-secondary {
    font-weight: 400;
    color: #00354e;
    background-color: #ffffff;
    text-align: center;
    vertical-align: middle;
    border: 2px solid #00354e;
    padding: 0.5rem 1.9rem;
    border-radius: 0px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 0px;
}
.btn.btn-primary:hover {
    border: 2px solid #004C71;
    background-color: #004C71;
}
.btn.btn-primary.login:hover {
    border: unset;
    background-color: #dcdcdc;
}
.btn.btn-outline-secondary:hover {
    border: 2px solid #004C71;
    color: #004C71;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #004C71;
    background-color: white;
    border-color: #004C71;
}
.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
    box-shadow: none;
}
/*DOWNLOAD PAGE*/
.download_button {
    position: relative;
    height: 100px;
    width: 100px;
    background-color: #d0c6bd;
}
.arrow_download {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 27px;
    transform: translate(-50%, -50%);
}
.arrow_download._degreed {
    transform: translate(-50%, -50%) rotate(270deg);
}
.download_grid div.col-xl-6.mb-5:last-child,
.download_grid div.col-xl-6.mb-5:nth-last-child(2) {
    margin-bottom: 0px !important;
}
input#image_karriere[type=file]::file-selector-button,
::-webkit-file-upload-button {
    visibility: hidden;
    display: none !important;

}
#image_karriere {
    pointer-events: none;
}
.job_button {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 100%;
    background-color: #d0c6bd;
    padding: 25px;
}
.arrow_job {
    width: 27px;
    transform: rotate(-90deg);
}
/*COOKIE BOT*/
div#CybotCookiebotDialog{
  font-family: proxima-nova, sans-serif !important;  
}
#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.active {
border: none !important;
color: #00354e !important;
}
#CybotCookiebotDialogTabContent input:checked+.CybotCookiebotDialogBodyLevelButtonSlider {
background-color: #00354e !important;
}
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
background-color: #00354e !important;
border-color: #00354e !important;
color: #ffffff !important;
}
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection {
background-color: transparent;
border-color: #00354e !important;
color: #00354e !important;
}
#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover {
color: #000000 !important;
}
h2#CybotCookiebotDialogBodyContentTitle{
    font-family: 'Lora', serif !important;
    font-weight: 500 !important;
    font-size: 30.5px !important;
    color: #00354e !important;
    line-height: 1.2857142857142858 !important;
}
#CybotCookiebotDialogBodyContentText{
    font-family: proxima-nova, sans-serif !important;
    font-weight: 500 !important;
    font-size: 16.2px !important;
    color: #484747 !important;
    letter-spacing: 0em !important;
    line-height: 1.6666666666666667 !important;
    margin-bottom: 20px !important;
}
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
    border-color: #00354e !important;
    color: #00354e !important;
}
img#CybotCookiebotDialogPoweredbyImage{
    display: none !important;
}
/*MEDIA QUERY*/
@media (max-width: 1199px) {
    .flex_content_row {
        display: block;
    }
    /*THREE COLS MORE PADDING*/
    .home_three_cols > div:first-child {
        padding-right: 15px;

    }
    .home_three_cols > div:nth-child(2) {
        padding-right: 15px;
        padding-left: 15px;
    }
    .home_three_cols > div:nth-child(3) {
        padding-left: 15px;
    }
    /*SPACER*/
    .spacer_200,
    .spacer_250 {
        height: 150px;
    }
    /*ROW SPACER VERTICAL*/
    .row_spacer_1199 {
        height: 150px;
        display: block;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .row_spacer_1199_25 {
        height: 25px;
        display: block;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    /*DISPLAY NONE*/
    .display_none_1199 {
        display: none !important;
    }
    .contact_information_grid {
        max-height: none;
        min-height: 20%;
    }
    /*CONTACT*/
    .map_container {
        min-height: 50vh !important;
    }
    /*SPACER*/
    .spacer_120.compensation {
        height: 270px;
    }
    .download_grid div.col-xl-6.mb-5:last-child {
        margin-bottom: 0px !important;
    }
    .download_grid div.col-xl-6.mb-5:nth-last-child(2) {
        margin-bottom: 3rem !important;
    }
}
@media (max-width: 991px) {
    /*THREE COLS MORE PADDING*/
    .home_three_cols > div:first-child,
    .home_three_cols > div:nth-child(2),
    .home_three_cols > div:nth-child(3) {
        padding-right: 15px;
        padding-left: 15px;
    }
    /*SPACER*/
    .spacer_120 {
        height: 100px;
    }
    .spacer_120.compensation {
        height: 250px;
    }
    .spacer_150,
    .spacer_200,
    .spacer_250,
    .row_spacer_1199 {
        height: 100px;
    }
    .row_spacer_991 {
        height: 50px;
        display: block;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    /*HOME LEISTUNGEN*/
    .hide_text_on_desktop {
        display: block;
    }
    .hide_text_on_desktop p{
    text-align: center;
    }
    .div_image_home_leistungen:hover > div.image_home_leistungen_overlay {
        opacity: 0;
    }
    .hide_below_991 {
        display: none;
    }
}
@media (max-width: 767px) {
    .home_three_cols > div:first-child,
    .home_three_cols > div:nth-child(2) {
        margin-bottom: 50px;
    }
    /*FOOTER*/
    .footer {
        height: 200px;
        padding: 35px;

    }
    .footer .container {
        flex-direction: column;
    }
    /*SPACER*/
    .spacer_120 {
        height: 75px;
    }
    .spacer_120.compensation {
        height: 235px;
    }
    .spacer_200,
    .spacer_250,
    .row_spacer_1199 {
        height: 75px;
    }
    /*LOGO HEADER*/
    .logo_header {
        display: none;
    }
    .logo_header_mobile {
        display: block;
    }
    .card_font_collapse {
        font-size: 14px;
    }
    .card_font_collapse p, .job_headline{
        font-size: 14px;
    }
    .scroll {
        font-size: 12px;
    }
    .icon_header {
        left: 22%;
        max-height: none;
    }
    .icon_header.extra {
        left: 0%;
        max-height: none;
    }
    .sidebar {
        width: 300px;
    }
    form.needs-validation div.d-flex.justify-content-between {
        /*flex-direction: column;
        align-items: left;*/
    }
    form.needs-validation div.d-flex.justify-content-between div {
        display: flex;
        flex-direction: column;
        align-items: left;

    }
}
@media (max-width: 450px) {
    .download_button {
        position: relative;
        height: 65px;
        width: 65px;
        background-color: #d0c6bd;
    }
    .download_grid .col-3 {
        margin-top: 7px;
    }
}