/*
    Theme-Name: Runde Glüsing Baune
    Author: MOLECO GmbH
    Author URI: http://www.moleco.de
    Description: Runde Glüsing Baune WordPress Theme
    Version: 1.0
*/

:root{
    --white: #ffffff;
    --black: #000000;
    --grey: #6B6A69;
    --red: #B71928;
}

body,html,*{font-family: 'Poppins';font-size: 16px;line-height: 2;font-weight: normal;color: var(--black);}
html{scroll-behavior: smooth;}
body{overflow-x: hidden;}

.container{max-width: 1650px;}

a{color: var(--red);text-decoration: none;font-size: 100%;transition: all .3s ease;}
a:hover{text-decoration: none;color: var(--red);transition: all .3s ease;}
a:focus{border:none;outline: none;}
*:focus-visible {outline: none;}

li{position: relative;}

img{max-width: 100%;height: auto;}

.headlinebox{margin-bottom: 40px;}
.topline{display: flex;align-items: center;gap: 10px;font-size: 100%;line-height: 1;font-weight: normal;color: var(--red);margin-bottom: 20px;position: relative;}
.topline::before{content: '';background-color: var(--red);width: 50px;height: 2px;}
.headline{display: block;font-size: 300%;font-weight: 400;line-height: 1.2;margin-bottom: 20px;max-width: fit-content;position: relative;}
.headline::after{content: '';background-color: #F5F5F5;height: 30px;width: 350px;position: absolute;left: 0;bottom: 0;z-index: -1;}

.button{margin-top: 30px;}
.btn{position: relative;padding: 0;font-weight: normal;color: var(--black);transition: all .3s ease;line-height: 1;display: flex;align-items: center;justify-content: flex-end;flex-direction: row-reverse;gap: 10px;max-width: max-content;}
.btn::before{content: '';background: url('media/icons/pfeil.svg')no-repeat;background-size: 100%;width: 32px;height: 32px;}
.btn:hover{gap: 15px;color: var(--red);}

strong{font-weight: 600;font-size: 100%;}

.accordion-button:focus{border: none!important;outline: none;color: unset;background-color: unset;box-shadow: unset;}
.accordion-button:not(.collapsed){color: unset;box-shadow: unset;background-color: unset;}

.swiper-pagination-bullet-active{background: var(--red)!important;}

/*---HEADER-------------------------------------------------------------------------------------------------------------*/

#page-header{position: absolute;top: 0;right: 0;left: 0;padding: 30px 0;z-index: 999;background-color: #fff;}

#page-header .logo{display: flex;justify-content: flex-start;}
#page-header .logo svg{width: 100%;height: auto;max-height: 60px;display: block;}

#page-header .navigation{display: flex;align-items: center;justify-content: flex-end;}

#page-header .menu{padding: 0;margin: 0;display: flex;gap: 80px;}
#page-header .menu li{list-style: none;}
#page-header .menu li a{position: relative;color: var(--black);}
#page-header .menu li a:hover{color: var(--red);}
#page-header .menu li a::before{content: '';position: absolute;width: 100%;height: 1.5px;border-radius: 5px;background-color: var(--red);bottom: -3px;left: 0;transform-origin: right;transform: scaleX(0);transition: transform .3s ease-in-out;}
#page-header .menu li a:hover::before{transform-origin: left;transform: scaleX(1);}
#page-header .menu .current_page_item a{color: var(--red);}
#page-header .menu .current_page_item a::before{content: '';position: absolute;width: 100%;height: 2.5px;border-radius: 5px;background-color: var(--red);bottom: -3px;left: 0;right: 0;transform: none;}

#page-header.bottom{box-shadow: 0px 0px 15px -3px rgba(0,0,0,0.3);padding: 20px 0;position: fixed;top: 0;left: 0;right: 0;background: #fff; -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */ -moz-animation: fadein 2s; /* Firefox < 16 */-ms-animation: fadein 2s; /* Internet Explorer */-o-animation: fadein 2s; /* Opera < 12.1 */animation: fadein 2s;z-index:999;}

@keyframes fadein {
    from { top: -100px; }
    to   { top: 0; }
}
@-moz-keyframes fadein {
    from { top: -100px; }
    to   { top: 0; }
}
@-webkit-keyframes fadein {
    from { top: -100px; }
    to   { top: 0; }
}
@-ms-keyframes fadein {
    from { top: -100px; }
    to   { top: 0; }
}

#page-header.bottom{background: rgba(255, 255, 255, 0.44);box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);backdrop-filter: blur(15px);-webkit-backdrop-filter: blur(15px);}
#page-header.bottom .logo svg{max-height: 50px;}

/*---FOOTER-------------------------------------------------------------------------------------------------------------*/

#page-footer{background-color: #F5F5F5;padding: 50px 0 20px 0;position: relative;}

#page-footer a{position: relative;color: var(--black);}
#page-footer a::before{content: '';position: absolute;width: 100%;height: 2px;border-radius: 5px;background-color: var(--red);bottom: -3px;left: 0;transform-origin: right;transform: scaleX(0);transition: transform .3s ease-in-out;}
#page-footer a:hover::before{transform-origin: left;transform: scaleX(1);}
#page-footer a:hover{color: var(--red);}

#page-footer .logo{display: flex;justify-content: space-between;align-items: center;}
#page-footer .logo img{max-width: 20%;margin-bottom: 40px;}
#page-footer .anschrift{display: flex;align-items: baseline;gap: 10px;}

#page-footer .socialmedia{display: flex;justify-content: flex-end;align-items: center;}
#page-footer .socialmedia li{list-style: none;margin-bottom: 0;}
#page-footer .socialmedia img{max-width: 70%;}
#page-footer .socialmedia a:hover::before{display: none;}

#page-footer .kontakt li{margin-bottom: 10px;list-style: none;display: flex;align-items: center;gap: 10px;}

#page-footer .copyright{display: flex;justify-content: space-between;align-items: center;margin-top: 30px;padding-top: 20px;border-top: solid 1px var(--black);}
#page-footer .copyright p{margin-bottom: 0;}
#page-footer .copyright ul{display: flex;gap: 30px;margin: 0;padding: 0;}
#page-footer .copyright li{list-style: none;}

/*---ACF----------------------------------------------------------------------------------------------------------------*/

section{margin-bottom: 150px;position: relative;}

.inhaltsbloecke{margin-top: 110px;}

.flx_headerblock{margin-bottom: 100px!important;}
.flx_headerblock .header-image{width: 100%;height: 60vh;object-fit: cover;object-position: top;display: block;}
.flx_headerblock .spruch-wrapper{position: absolute;top: 50px;right: 50px;}
.flx_headerblock .spruch-wrapper img{width: 200px;}

.flx_textblock .text{display: flex;align-items: center;}
.flx_textblock .inner{padding-left: 30px;}
.flx_textblock .headlinebox p{max-width: 80%;}

.flx_leistungen .leistungen_uebersicht{margin-top: 50px;position: relative;}
.flx_leistungen .leistung{margin-bottom: 30px;}
.flx_leistungen .inner{background-color: #F5F5F5;padding: 40px;}
.flx_leistungen .inner .headline{font-size: 150%;margin-bottom: 10px;}
.flx_leistungen .inhaltliches p{min-height: 160px;}
.flx_leistungen .icon{margin-bottom: 20px;}
.flx_leistungen .icon svg{width: 50px;height: 50px;}
.flx_leistungen .spruch-wrapper{position: absolute;top: -50px;right: -70px;}
.flx_leistungen .spruch-wrapper img{width: 180px;}

.flx_beratungsteam .headline_box{display: block;margin-bottom: 10px;line-height: 1;font-size: 140%;font-weight: 500;}
.flx_beratungsteam img{margin: 30px 0;}
.flx_beratungsteam #two{margin-top: 0;}
.flx_beratungsteam .contentlinks{padding-right: 25px;}
.flx_beratungsteam .contentrechts{padding-left: 25px;}

.flx_stimmenblock .stimme{background-color: #F5F5F5;padding-right: 0;}
.flx_stimmenblock .stimme .inner{padding: 70px 60px;}
.flx_stimmenblock svg{width: auto;max-height: 70px;}
.flx_stimmenblock .inhalt{margin-top: 20px;}
.flx_stimmenblock .inhalt .headline{font-size: 200%;}
.flx_stimmenblock .bild{padding-left: 0;position: relative;}
.flx_stimmenblock .glasbox{position: absolute;left: 40px;bottom: 40px;max-width: 50%;}
.flx_stimmenblock .glasbox h3, .flx_stimmenblock .glasbox p{color: var(--white);}
.flx_stimmenblock .glasbox p{margin: 0;}
.flx_stimmenblock .glasbox .inner{background: rgba(255, 255, 255, 0.42);box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);backdrop-filter: blur(14.2px);-webkit-backdrop-filter: blur(14.2px);padding: 20px 25px;}

.flx_karriere_teaser .text{display: flex;align-items: center;}
.flx_karriere_teaser .contentoben{margin-bottom: 30px;}
.flx_karriere_teaser .benefits{display: flex;align-items: center;padding-left: 30px;}
.flx_karriere_teaser .benefit{margin-bottom: 30px;}
.flx_karriere_teaser .benefit:nth-child(3), .flx_karriere_teaser .benefit:nth-child(4){margin-bottom: 0;}
.flx_karriere_teaser .benefit .icon{margin-bottom: 10px;}
.flx_karriere_teaser .benefit .icon svg{width: auto;max-height: 60px;}
.flx_karriere_teaser .benefitbezeichnung{display: block;font-size: 120%;font-weight: 500;}

.flx_kontaktformular .formular{padding-right: 100px;}
.flx_kontaktformular .wpcf7-form{margin-top: 30px;}
.flx_kontaktformular .kontaktmoeglichkeit{display: flex;align-items: center;}
.flx_kontaktformular .kontaktmoeglichkeit .inner{padding-left: 100px;border-left: solid 2px #F5F5F5;}
.flx_kontaktformular .kontaktmoeglichkeit .headline{font-size: 150%;margin-bottom: 10px;}
.flx_kontaktformular .kontaktmoeglichkeit .headline::after{display: none;}
.flx_kontaktformular .anrufen{margin-bottom: 50px;}
.flx_kontaktformular .telefon{position: relative;border: solid 2px var(--red);border-radius: 50px;padding: 0 20px 0 45px;display: block;max-width: fit-content;margin-bottom: 15px;}
.flx_kontaktformular .telefon:hover{background-color: var(--red);color: var(--white);}
.flx_kontaktformular .telefon:hover::before, .flx_kontaktformular .ort:hover::before{filter: brightness(0) invert(1);}
.flx_kontaktformular .telefon::before{content: '';background: url('media/icons/phone-call.svg')no-repeat;background-size: 100%;width: 20px;height: 20px;position: absolute;top: 7px;left: 15px;}
.flx_kontaktformular .email{position: relative;border: solid 2px var(--red);border-radius: 50px;padding: 0 20px 0 45px;display: block;max-width: fit-content;}
.flx_kontaktformular .email::before{content: '';background: url('media/icons/mail.svg')no-repeat;background-size: 100%;width: 20px;height: 20px;position: absolute;top: 7px;left: 15px;}
.flx_kontaktformular .email:hover{background-color: var(--red);color: var(--white);}
.flx_kontaktformular .email:hover::before, .flx_kontaktformular .ort:hover::before{filter: brightness(0) invert(1);}
.flx_kontaktformular .ort{list-style: none;border: solid 2px var(--red);border-radius: 50px;padding: 0px 20px 0px 45px;margin-bottom: 15px;max-width: fit-content;display: block;position: relative;}
.flx_kontaktformular .ort:hover{background-color: var(--red);color: var(--white);}
.flx_kontaktformular .ort::before{content: '';background: url('media/icons/pin.svg')no-repeat;background-size: 100%;width: 20px;height: 20px;position: absolute;top: 6px;left: 15px;}
.flx_kontaktformular .ansprechperson{position: relative;}
.flx_kontaktformular .name{font-size: 120%;font-weight: 400;position: absolute;bottom: 30px;left: 30px;padding: 10px 20px;background: rgba(255, 255, 255, 0.42);box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);backdrop-filter: blur(14.2px);-webkit-backdrop-filter: blur(14.2px);}

.flx_textblock.reverse .row{flex-direction: row-reverse;}
.flx_textblock.reverse .accordion{padding-left: 30px;}
.flx_textblock .accordion-button{padding-left: 0;}
.flx_textblock .accordion-button::after{content: '';background: url('media/icons/plus-lg.svg')no-repeat;background-size: 100%;}
.flx_textblock .accordion-button:not(.collapsed)::after{content: '';background: url('media/icons/dash-lg.svg')no-repeat;background-size: 100%;}
.flx_textblock .accordion-body{padding: 0;}
.flx_textblock .accordion-button span{font-size: 110%;font-weight: 400;}

.flx_timeline{margin-bottom: 150px;}
.flx_timeline h1, .flx_timeline h2{margin-bottom: 80px;}
.flx_timeline #timeline{overflow-x: hidden;position: relative;min-height: 250px; width: max-content;overflow: visible;left: 50px;
-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}
/* .flx_timeline .flx_timelineeffekt::before{content: '';display: block;position: absolute;top: -100px;bottom: 50px;right: 0;width: 25%;z-index: 1;background: #ffffff;
background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%);
background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%);
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=1);} */
.flx_timeline1 .timeline.active{
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}
.flx_timeline #timeline .line{position: absolute;left:50%;transform: translate(-50%,-50%);border: 1px solid #EBEBEB;width: 1000%;}
.flx_timeline #timeline .timline-container{position: absolute;left: 0;transform: translate(0,-50%);width: 100%;display: flex; padding-left: 100px;}

.flx_timeline #timeline .timline-container .item{position: absolute;width: 330px;top: 50px;}
.flx_timeline #timeline .timline-container .item time{display: block;font-weight: 300;line-height: 1;font-size: 180%;color: var(--red);margin-bottom: 15px;}
.flx_timeline #timeline .timline-container .item span{word-wrap: break-word;}
.flx_timeline #timeline .timline-container .item p{line-height: 1.4;}
.flx_timeline #timeline .timline-container .time{position: relative;display: inline-block;list-style-type: none;width: 275px;overflow: visible;padding: 0 275px 0 0;}

.flx_timeline #timeline .timline-container .time::before{content: '';position: absolute;top: 50%;left: 0;transform: translateY(-50%);border-radius: 50%;width: 20px;height: 20px;background-color: var(--red);border-radius: 50%;box-shadow: 0 0 12px rgba(177, 19, 34, 0.8), 0 0 20px rgba(177, 19, 34, 0.4);}
.flx_timeline #timeline .timline-container .time:nth-child(odd)::after{bottom: 0;}

.flx_timeline{margin-bottom: 150px;}
.flx_timeline .timeline{white-space: nowrap;overflow-x: hidden;position: relative;min-height: 600px;}

.flx_timeline .timeline ol{font-size: 0;width: 100vw;padding: 250px 0;transition: all 1s;}
.flx_timeline .timeline ol li{position: relative;display: inline-block;list-style-type: none;width: 160px;height: 2px;background: #f2f2f2;}
.flx_timeline .timeline ol li:last-child {width: 280px;}
.flx_timeline .timeline ol li:not(:first-child) {margin-left: 14px;}
.flx_timeline .timeline ol li::after {content: '';position: absolute;top: 50%;left: calc(100% + 1px);bottom: 0;width: 12px;height: 12px;transform: translateY(-50%);border-radius: 50%;background: #E6224E;}
.flx_timeline .timeline ol li::before{content: '';position: absolute;top: 40px;left: -33px;width: 50px;height: 2px;border: dashed 1px #121212;transform: rotate(90deg);}
.flx_timeline .timeline ol li:nth-child(2n)::before{content: '';position: absolute;top: -40px;left: -33px;width: 50px;height: 2px;border: dashed 1px #121212;transform: rotate(90deg);}
.flx_timeline .timeline ol li div{position: absolute;left: calc(100% + 7px);width: 300px;padding: 10px;font-size: 1rem;white-space: normal;border: solid 2px #f2f2f2;}
.flx_timeline .timeline ol li:nth-child(odd) div{top: -80px;transform: translateY(-100%);}
.flx_timeline .timeline ol li:nth-child(even) div{top: calc(100% + 80px);}
.flx_timeline .timeline time{display: block;font-size: 14px;font-weight: bold;margin-bottom: 8px;}
.flx_timeline .timeline p{font-size: 14px;}
.flx_timeline .timeline .arrows{display: flex;justify-content: center;margin-bottom: 20px;cursor: pointer;}
.flx_timeline .timeline .arrows .arrow__prev{margin-right: 20px;}
.flx_timeline .timeline .arrows .arrow__prev img{transform: rotate(180deg);}
.flx_timeline .timeline .arrows img{width: 45px;height: 45px;}

.flx_timeline #timeline { overflow: hidden; position: relative; cursor: grab; white-space: nowrap; padding-top: 30px;} 
.flx_timeline #timeline:active { cursor: grabbing; } 
.flx_timeline #timeline .timline-container { display: flex; flex-direction: row; gap: 200px; padding: 50px 100px; position: relative; align-items: flex-start; width: max-content; } 
.flx_timeline #timeline .time { flex: 0 0 auto; width: 300px; position: relative; } 
.flx_timeline #timeline .time::before { content: ''; position: absolute; top: -20px; left: 0; width: 20px; height: 20px; background: var(--red); border-radius: 50%; box-shadow: 0 0 12px rgba(177, 19, 34, 0.8); } 
.flx_timeline #timeline .item p { white-space: normal; word-break: break-word; max-width: 100%; line-height: 1.4; }
.flx_timeline #timeline .item time { display: block; font-size: 1.5rem; font-weight: bold; color: var(--red); margin-bottom: 10px; }

.flx_team .person span{display: block;}
.flx_team .person{margin-bottom: 50px;}
.flx_team .name{display: block;font-size: 130%;font-weight: 500;line-height: 1;margin: 20px 0 10px;color: var(--red);}
.flx_team .position{font-weight: 500;}
.flx_team .modal-title{font-size: 170%;margin: 0;color: var(--red);}
.flx_team .modal-dialog{max-width: 750px;}
.flx_team .modal-body h4{font-weight: 400;}
.flx_team .close{border: unset;padding: 0 10px;border-radius: 50%;background-color: var(--red);}
.flx_team .close span{color: var(--white);}

.flx_bilderblock .text{display: flex;align-items: center;}
.flx_bilderblock .text .inner{padding: 0 120px;}
.flx_bilderblock .grid-container{display: grid;grid-template-columns: repeat(4, 1fr);grid-template-rows: repeat(8, 200px);gap: 20px;max-width: 1625px;margin: auto;}
.flx_bilderblock .gallery-item{position: relative;overflow: hidden;}
.flx_bilderblock .gallery-item img{width: 100%;height: 100%;object-fit: cover;transition: transform 0.3s ease;}
.flx_bilderblock .gallery-item:hover img{transform: scale(1.05);}
.flx_bilderblock .item-1{ grid-column: 1 / 3; grid-row: 1 / 4;}
.flx_bilderblock .item-2{ grid-column: 3 / 5; grid-row: 1 / 3;}
.flx_bilderblock .item-3{ grid-column: 4 / 5; grid-row: 3 / 6;}
.flx_bilderblock .item-4{ grid-column: 3 / 3; grid-row: 3 / 6;}
.flx_bilderblock .item-5{ grid-column: 1 / 3; grid-row: 7 / 4;}
.flx_bilderblock .item-6{ grid-column: 3 / 5; grid-row: 6 / 9;}
.flx_bilderblock .item-7{ grid-column: 1 / 3; grid-row: 9 / 7;}

.flx_berufe .beruf{margin-bottom: 25px;}
.flx_berufe .beruf .inner{padding: 30px;background-color: #F5F5F5;border-radius: 10px;}
.flx_berufe .beruf-title{font-size: 130%;min-height: 65px;}

#karriere-single{margin: 150px 0 50px;}

#karriere-single .job-title{font-size: 170%;margin: 20px 0;max-width: 80%;}

#karriere-single .jobinfos{padding-right: 100px;}
#karriere-single .jobinfos .job-title span{display: block;}

#karriere-single .bewerbung .inner{padding: 30px;border: solid 1px #EBEBEB;}
#karriere-single .bewerbung .ansprechperson{margin-bottom: 30px;}
#karriere-single .bewerbung .ansprechperson .headline{font-size: 130%;}
#karriere-single .bewerbung .ansprechperson .headline::after{display: none;}
#karriere-single .bewerbung .ansprechperson img{width: 120px;height: 120px;object-fit: cover;border-radius: 50%;border: solid 2px #F5F5F5;}
#karriere-single .bewerbung .person{display: flex;align-items: center;gap: 20px;}
#karriere-single .bewerbung .person .name{font-weight: 400;}

/*-------------------------------------------------------------------------------------------*/
@media (min-width:2561px){

    .flx_timeline #timeline .timline-container{padding-left: 850px!important;}
}
/*-------------------------------------------------------------------------------------------*/
@media (min-width:1921px){

    .flx_headerblock video{height: 60vh!important;}

    .flx_timeline #timeline .timline-container{padding-left: 415px;}
}
/*-------------------------------------------------------------------------------------------*/
@media (max-width:1480px){

    body, html, *{font-size: 15px;}

    section{margin-bottom: 100px;}

    .container{padding: 0 30px;}

    .flx_leistungen .inner{padding: 30px;}
    .flx_leistungen .spruch-wrapper{right: -20px;}
    .flx_leistungen .spruch-wrapper img{width: 150px;}

    .flx_stimmenblock .stimme .inner{padding: 40px 30px;}

    .flx_bilderblock .grid-container{max-width: 1145px;}

}
/*-------------------------------------------------------------------------------------------*/
@media (max-width:1199px){

    body, html, *{font-size: 14px;}

    .flx_timeline #timeline .timline-container{padding-left: 75px;}

    .flx_headerblock .spruch-wrapper{top: unset;bottom: -80px;}
    .flx_headerblock .spruch-wrapper img{width: 170px;}
}
/*-------------------------------------------------------------------------------------------*/
@media (max-width:991px) {

    body, html, *{font-size: 14px;}
    html{overflow-x: hidden;}

    section{margin-bottom: 70px;}

    .headline{font-size: 250%;}

    #page-header .menu{display: none;}
    #page-header .menu.open{display: flex;gap: 20px;flex-direction: column;position: fixed;top: 110px;right: 0;width: 100%;height: 100vh;background-color: var(--white);padding: 30px;border-top: solid 2px var(--red);}
    #page-header .menu.open li a{font-size: 130%;}

    #page-header.bottom .logo svg{max-height: 40px;}
    #page-header.bottom .menu.open{top: 80px;}

    .hamburger{z-index: 1;}
    .hamburger .line{width: 35px;height: 2px;background-color: var(--black);display: block;margin: 6px auto;-webkit-transition: all 0.3s ease-in-out;-o-transition: all 0.3s ease-in-out;transition: all 0.3s ease-in-out;}
    .hamburger:hover{cursor: pointer;}
    #hamburger-1.is-active .line:nth-child(2){opacity: 0;}
    #hamburger-1.is-active .line:nth-child(1){-webkit-transform: translateY(10px) rotate(45deg);-ms-transform: translateY(10px) rotate(45deg);-o-transform: translateY(10px) rotate(45deg);transform: translateY(10px) rotate(45deg);}
    #hamburger-1.is-active .line:nth-child(3){-webkit-transform: translateY(-6px) rotate(-45deg);-ms-transform: translateY(-6px) rotate(-45deg);-o-transform: translateY(-6px) rotate(-45deg);transform: translateY(-6px) rotate(-45deg);}

    .flx_textblock .text{margin-top: 30px;}
    .flx_textblock .inner{padding-left: 0;}

    .flx_textblock.text-accordion-bild .bild{margin-top: 30px;}
    .flx_textblock.reverse .accordion{padding-left: 0;}

    .flx_karriere_teaser .text{margin-bottom: 30px;}

    .flx_leistungen .inner .headline::after{display: none;}

    .flx_kontaktformular .formular{padding-right: 30px;}
    .flx_kontaktformular .kontaktmoeglichkeit .inner{padding-left: 30px;}

    .flx_bilderblock .text{margin-bottom: 30px;}
    .flx_bilderblock .text .inner{padding: 0;}
    .flx_bilderblock .grid-container{max-width: 710px;}

    .flx_timeline #timeline{padding-top: 75px;}
    .flx_timeline #timeline .timline-container{padding-left: 35px;}

    #page-footer .logo img{max-width: 40%;}

    #karriere-single .jobinfos{padding-right: 10px;margin-bottom: 30px;}
    #karriere-single .bewerbung .ansprechperson .headline{margin-bottom: 20px;}

}
/*-------------------------------------------------------------------------------------------*/
@media (max-width:767px) {

    section{margin-bottom: 50px;}

    .headline{font-size: 220%;}

    #page-header.bottom .menu.open{top: 75px;}

    .flx_headerblock{margin-bottom: 50px!important;}
    .flx_headerblock .header-image{height: 40vh;}
    .flx_headerblock .spruch-wrapper img{width: 150px;}

    .flx_beratungsteam .contentrechts{padding-left: 10px;transform: unset!important;}

    .flx_karriere_teaser .benefits{padding-left: 10px;margin-top: 30px;}

    .flx_timeline h1, .flx_timeline h2{margin-bottom: 0;}

    .flx_bilderblock .headlinebox{margin-bottom: 0;}
    .flx_bilderblock .grid-container{max-width: 540px;grid-template-rows: repeat(8, 100px);}

    .flx_textblock .headlinebox{margin-bottom: 0;}

    .flx_berufe .beruf-title{min-height: unset;}

    .flx_stimmenblock .stimme .inner{padding: 30px 20px;}
    .flx_stimmenblock .glasbox{left: 20px;bottom: 20px;max-width: 80%;}
    .flx_stimmenblock .glasbox .inner{padding: 10px 15px;}

    .flx_timeline .flx_timelineeffekt::before{display: none;}

    #page-footer .logo img{max-width: 50%;}
    #page-footer .copyright{flex-direction: column;gap: 10px;}

}
/*-------------------------------------------------------------------------------------------*/
@media (max-width:600px) {

    .btn::before{width: 27px;height: 27px;}

    .topline{line-height: 1.3;}

    .headline{font-size: 180%;}
    .headline::after{width: 180px;bottom: -5px;}

    #page-header .logo{max-width: 70%;}

    #page-header .navigation{max-width: 30%;}

    .flx_headerblock .header-image{height: 30vh;}
    .flx_headerblock .spruch-wrapper{bottom: -50px;right: 40px;}
    .flx_headerblock .spruch-wrapper img{width: 110px;}

    .flx_headerblock video{height: 40vh!important;}

    .flx_stimmenblock .inhalt .headline{font-size: 150%;}

    .flx_karriere_teaser .benefit{margin-bottom: 30px!important;}

    .flx_textblock .headlinebox p{max-width: 100%;}

    .flx_team .person{margin-bottom: 30px;}

    .flx_bilderblock .grid-container{max-width: 345px;grid-template-rows: repeat(10, 80px);}
    .flx_bilderblock .item-3{grid-column: 1 / 5;grid-row: 11 / 9;}
    .flx_bilderblock .item-4{grid-column: 3 / 5;}

    .flx_kontaktformular .telefon::before{width: 16px;height: 16px;}
    .flx_kontaktformular .ort::before{width: 16px;height: 16px;}

    .flx_berufe .beruf-title{font-size: 120%;}

    .flx_timeline #timeline .timline-container{padding-left: 25px;}
    .flx_timeline #timeline .timline-container .time{width: 200px; padding-right: 200px;}
    .flx_timeline #timeline .timline-container .item{width: 200px;}

    .flx_leistungen .spruch-wrapper img{width: 130px;}

    .flx_beratungsteam .headline_box{line-height: 1.3;}

    #karriere-single{margin: 100px 0 50px;}
    #karriere-single .job-title{font-size: 140%;max-width: 100%;}

    #page-footer .logo img{max-width: 70%;}

}
/*-------------------------------------------------------------------------------------------*/
@media (max-width:400px) {

    .container{padding: 0 25px;}

    .flx_kontaktformular .kontaktmoeglichkeit .headline{font-size: 140%;}
    .flx_kontaktformular .kontaktmoeglichkeit .inner{padding-left: 20px;}
    .flx_kontaktformular .ort{padding: 0 10px 0 40px;}

    .flx_timeline #timeline .timline-container{padding-left: 0px;}

}