@charset "utf-8";
/* CSS Document */

body {
    font-family: GillSans-Medium,sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #000;
    padding: 0;
    margin: 0;
}

ul {
    margin: 0 0 0 -20px;
}

li {
    margin-bottom: 5px;
}

img {
    width: 100%;
    height: auto;
}

a {
    color: #017B2E;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 24px;
    line-height: 30px;
    margin: 15px 0 7px;
    font-family: GillSans-Medium,sans-serif;
}

.h1-print {
    display: none;
}

.h1-scroll {
    background-color: #017B2E;
    color: #fff;
    font-size: 18px;
    margin: 12px 40px;
    padding: 15px 40px;
    max-width: 1110px;
    width: 100%;
    box-sizing: border-box;
    display: none;
}
#bg-title {
    background-color: #017B2E;
    margin-top: -8px;
    padding: 5px 40px;
    color: #fff;
}
#subtitle {
    font-size: 18px;
    line-height: 20px;
    background-color: #20ac4e;
    padding: 15px 40px 7px;
    color: #fff;
}

h2 {
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 15px 0;
    font-family: GillSans-Medium,sans-serif;
}

#wrapper {
    margin: 0 auto;
}
.wrapper-width {
    width: 1190px;
    max-width: 100%;
    margin: 0 auto;
}

#header {
    position: fixed;
    top:0;
    max-height: 80px;
    float: left;
    width: 100%;
    padding: 10px 0 20px;
    transition: all 0.2s ease-out 0s;
    background: #fff;
    box-sizing: border-box;
    border-bottom: 3px solid #017B2E;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.3);
    z-index: 1500;
}
#logo {
    width: 25%;
    display: inline-block;
    padding-left: 40px;
}
#logo img {
    width: auto;
    height: 50px;
}
#top-text {
    float: right;
    width: 64%;
    text-align: right;
    margin-top: 33px;
    color: #999;
    font-size: 14px;
    padding-right: 40px;
}

#header-img {
    position: relative;
    z-index: -1;
    display: flex;
    align-items: center;
}

#content {
    padding: 80px 40px 140px;
    box-sizing: border-box;
}
#maincontent {
    margin-top: 60px
}
#textzusatz {
    clear: both;
    margin-bottom: 30px;
}

.col_1_of_1{
    width: 100%;
    clear: both;
}
.col_1_of_2 {
    width: calc(50% - 6px);
    padding-right: 5px;
    float: left;
}

.col_2_of_2 {
    width: calc(50% - 10px);
    padding-left: 10px;
    float: right;
}
.flex-box {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-box#kontakt {
    padding-top: 30px;
}
.flex-box .col_1_of_2, .flex-box .col_2_of_2 {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.flex-box h2 {
    margin-top: -80px;
    margin-left: -30px;
}
/* Tätigkeiten und Profil, Orga */

.grey-box {
    background-color: #ebebeb;
    padding: 30px;
    border-top: 3px solid #20AC4E;
    width: 100%;
    margin: 30px 0;
}
.box-content {
    padding-top: 30px;
}
#orga {
    clear: both;
    padding-bottom: 30px;

}

/*------------------- Benefits Flipcard -------------------*/
#benefits {
    clear: both;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
}

.benefits {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
}
.back {
    transition: height 1000ms;
}
.back h2 {
    font-size: 18px;
    line-height: 26px;
    margin: 0;
    padding-top: 25px;
    text-align: center;
    display: grid;
}
.back img {
    display: block;
    margin:-20px auto 0;
}
.back .info {
    width:30px;
    height:30px;
    position: absolute;
    bottom:10px;
    left:50%;
    margin-left:-18px;
    border-radius: 50%;
    transition: all .2s ease;
    box-sizing: border-box;
}
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale3d(0.5, 0.5, 0.5);
        transform: scale3d(0.3, 0.5, 0.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale3d(1.2, 1.2, 1.2);
        transform: scale3d(1.2, 1.2, 1.2);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.in-view {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.flipper.medium_green .back .info * {
    fill:#017B2E;
    width: 200px;
}
.flipper.medium_green .back .info:hover {
    box-shadow: 0 0 0 5px rgba(0,123,64, 0.3);
}
.ui.popup {
    background: #017B2E;
    color: #fff;
    padding: 20px;
    font-size: 16px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 100%!important;
    left: -27px !important;
    width: 200px;
}
.ui.popup:before {
    background:#017B2E!important;
}
.six-grid {
    margin: 40px 0 60px;
    display: inline-block;
    width: calc(100% / 6 - 24px);
    padding: 0 10px;
    position: relative;
    min-height: 130px;
    color: inherit;
    cursor: pointer;
}
.six-grid:last-of-type {
    padding-right: 0;
}
.benefits:after {
    content:"";
    display:table;
    clear:both;
}
#benefits-info {
    margin-top:20px;
}
/* entire container, keeps perspective */
.flip-container {
    perspective: 1000px;
    display: inline-block;
}

/*  flip the pane when hovered */
.flip-container.flipped .back {
    transform: rotateY(0deg);
}
.flip-container.flipped .front {
    transform: rotateY(180deg);
}

.flip-container, .front  {
    width: 100%;
    height:130px;
}

.flip-container, .back {
    height:130px;
}


/* flip speed goes here */
.flipper {
    transition: 0.6s;
    position: relative;
    height:130px;
}

/* hide back of pane during swap */
.front, .back {
    position:absolute;
    top:0;
    left:0;
    transition: 0.6s;
    transform-style: preserve-3d;
}
.front img {
    backface-visibility: visible!important;
}
.front .icon-flip, .back .icon-flip {
    position: absolute;
    top: 82%;
    left: calc(100% / 2 - 20px);
}

/*  front pane, placed above back */
.front {
    z-index: 2;
    transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
    transform: rotateY(-180deg);
    padding: 15px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

#benefits-info p {
    clear: left;
    font-size: 9px;
    line-height: 12px;
}



/* Kontakt */

#kontakt-mobile {
    display: none;
}

#kontakt .box-content {
    padding-top: 15px;
}
.flex-box#kontakt h2 {
    margin-top: -60px;
    margin-left: -10px;
}

.border-box {
    padding: 10px 10px 0;
    width: 100%;
    margin: 20px 0;
    border: 1px solid #20AC4E;
    border-top: 3px solid #20AC4E;
}

hr {
    clear:both;
    border-top: none;
    border-bottom: 1px solid #20AC4E;
}
.green-bg {
    background-color: #017B2E;
    color: #fff;
    padding: 15px;
    width: 48%;
    float: left;
    margin-bottom: 10px;
    min-height: 110px;
    word-break: break-word;
    position: relative;
    z-index: -100;
}
#kontakt .col_1_of_2 {
    width: calc(60% - 6px);
}
#kontakt .col_2_of_2 {
    width: calc(40% - 10px);
}
.zitat {
    width: 60%;
    background: url(../images/bg-zitat.svg);
    background-repeat: no-repeat;
    position: relative;
    min-height: 140px;
    left: 320px;
    z-index: -1;
}

.zitat p {
    position: absolute;
    top: 50%;
    left: 65px;
    text-align: center;
    width: 230px;
    padding: 5px 10px;
    font-size: 13px;
    font-style: oblique;
    color: #017B2E;
    line-height: 15px;
    -webkit-transform: translateY(-52%);
    -moz-transform: translateY(-52%);
    -ms-transform: translateY(-52%);
    -o-transform: translateY(-52%);
    transform: translateY(-52%);
}
#karte .border-box, #karte-mobile .border-box {
    background-color: #ebebeb;
}
iframe {
    border: none;
    width: 100%;
    min-height: 300px;
    height: auto;
}

/* About + Labels */

#about {
    clear: both;
    padding-top: 20px;
}
#labels {
    padding-top: 40px;
    float: left;
    width: 100%;
}
#labels .col_2_of_2 {
    text-align: right;
}
#labels .col_1_of_2 img {
    max-width: 220px;
}
#slogan {
    max-width: 320px;
}

/* Button */
.btn {
    float: right;
    padding-right: 40px;
}

.btn-bewerben {
    background-color: #017B2E;
    border: 0 none;
    border-radius: 2px;
    clear: both;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    float: right;
    height: 32px;
    letter-spacing: 0.03em;
    line-height: 32px;
    padding: 8px 40px 5px;
    text-decoration: none;
    transition: all 0.23s ease-in-out 0s;
    vertical-align: top;
    white-space: nowrap;
}

.btn-bewerben:hover {
    text-decoration: none;
}

#content-apply {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
    margin-bottom: 30px;
    column-gap: 35px;
    row-gap: 20px;
}

@media screen and (max-width: 840px) {
    #content-apply {
        flex-direction: column;
        align-items: flex-start;
    }
}

.boldText {
    font-weight: bold;
}

/* Weitere Stellen */
#weitere-stellen {
    margin-top: 40px;
}
.job.grey-box {
    background-color: #ebebeb;
    padding: 30px;
    border-top: 3px solid #20AC4E;
    margin: 15px 10px;
    width: calc(100% / 3 - 75px);
    float: left;
    min-height: 150px;
}
.job.grey-box:first-of-type {
    margin-left: 0;
}
.job.grey-box:last-of-type {
    margin-right: 0;
}
h3 {
    margin: 0 0 10px 0;
    color: #017B2E;
    font-size: 17px;
    font-weight: normal;
    line-height: 1.1em;
    min-height: 80px;
    font-family: GillSans-Medium,sans-serif;
}
#info {
    color: #000;
}
/* Footer */
#footer {
    float: left;
    width: 100%;
    padding: 20px 0;
    background: #fff;
    z-index: 1500;
    position: fixed;
    bottom: 0;
    border-top: 3px solid #017B2E;
    box-shadow: 1px -1px 15px rgba(0,0,0,0.3);
}

/* Socialicons */
#social-icons {
    float: left;
    width: auto;
    padding-left: 40px;
}

.icon-linkedin, .icon-xing, .icon-send2friend, .icon-print, .icon-facebook {
    float: left;
    margin: 0 5px;
    width: 40px;
    height: 40px;
}

.icon-linkedin {
    background: url(../images/icons/share-linkedin.svg) no-repeat;
}

.icon-xing {
    background: url(../images/icons/share-xing.svg) no-repeat;
}

.icon-send2friend {
    background: url(../images/icons/share-mail.svg) no-repeat;
}

.icon-print {
    background: url(../images/icons/share-print.svg) no-repeat;
}

.icon-facebook {
    background: url(../images/icons/share-fb.svg) no-repeat;
}

/*Socialicons Popup Mobile */
.internal.link {
    display: none;
    float:left;
    margin-left:20px;
}
.internal.link svg {
    width:32px;
    height:32px;
}
.internal.link svg path {
    fill:#017B2E;
}
#social-icons:before {
    display: none;
    background: #fff;
    position: absolute;
    content: '';
    width: .71428571em;
    height: .71428571em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 1px 1px 0 0 #bababc;
    bottom: -5px;
}

.touch-device {
    display: none!important;
}

/* Media Queries */
@media screen and (max-width: 1190px) {
    .h1-scroll {
        margin: 12px 0;
        max-width: 100%;
    }
    #kontakt-mobile .border-box {
        width: initial;
    }
    #kontakt-mobile {
        display: block;
    }
    .flex-box #kontakt-mobile h2 {
        margin:0
    }
    #kontakt-mobile .border-box {
        margin: 20px 0;
    }
    .green-bg {
        width: calc(100% - 30px);
    }
    .zitat {
        display: none;
    }
    #kontakt-mobile .col_1_of_2, #kontakt-mobile .col_2_of_2 {
        width: calc(50% - 28px);
        margin-top: 5px;
    }
    #karte-mobile {
        padding-top: 20px;
    }
    #karte-mobile .box-content {
        padding-top: 0;
    }
}
@media screen and (max-width: 1024px) {
    .touch-device {
        display: block !important;
    }
    #benefits .six-grid {
        display: none;
    }
    #benefits {
        margin: 20px 0;
    }
    #benefits h4 {
        font-size: 22px;
        line-height: 28px;
        margin: 0;
        font-family: GillSans-Medium,sans-serif;
        color: #017B2E;
        display: inline-block;
        position: relative;
        bottom: 32px;
    }
    #benefits p {
        margin-top: 5px;
    }
    #benefits .eight-grid {
        width: calc(100% / 2 - 25px);
        display: inline-block;
    }
    #benefits .eight-grid:nth-of-type(odd){
        padding-right: 30px;
    }
    #benefits .eight-grid img {
        width: 80px;
        height: 80px;
        display: inline-block;
    }
}
@media screen and (max-width: 840px) {
    .job.grey-box {
        width: calc(100% - 60px);
        margin: 15px 0;
        min-height: 90px;
    }
    h3 {
        min-height: 40px;
    }
}
@media screen and (max-width: 767px) {
    #content {
        padding: 80px 20px 120px;
    }
    #logo, #bg-title, #subtitle, #social-icons {
        padding-left: 20px;
    }
    #logo {
        width: 40%;
    }
    #top-text {
        width: 48%;
    }
    .col_1_of_2, #kontakt .col_1_of_2 {
        width: 100%;
        padding-right: 0;
    }

    .col_2_of_2, #kontakt .col_2_of_2 {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }

    #labels .col_1_of_2, #labels .col_2_of_2 {
        width: initial;
        margin-top: 0;
    }
    #labels .col_1_of_2 img {
        max-width: 130px;
        margin-right: 10px;
    }
    #slogan {
        max-width: 220px;
    }
    #karte {
        margin-top: 40px;
    }
    .icon-print {
        display: none;
    }
    .btn, #top-text{
        padding-right: 20px;
    }
    #benefits .eight-grid {
        width: 100%;
        display: inline-block;
        margin: 0;
    }
    #benefits .eight-grid:nth-of-type(odd){
        padding-right: 0;
    }
    #benefits .eight-grid img {
        margin-right: 40px;
    }
}
@media screen and (max-width: 580px) {
    #logo img {
        height: 35px;
    }
    .h1-scroll {
        margin: 7px 0;
    }
    #top-text {
        display: none;
    }
    #header {
        max-height: 60px;
    }
    #labels .col_1_of_2, #labels .col_2_of_2{
        width: 100%;
        text-align: center;
    }
    #labels .col_1_of_2 img {
        max-width: 250px;
        margin-right: 0;
        margin-bottom: 20px;
    }
    #slogan {
        max-width: 320px;
        margin-right: 0;
        margin-top: 30px;
    }
}

@media screen and (max-width: 480px) {
    #footer .btn {
        float: right;
        margin: 0;
    }
    h2 {
        font-size: 24px;
        line-height: 28px;
    }
    iframe {
        min-height: 200px;
    }
    .six-grid {
        width: calc(100% / 2 - 25px);
    }
    .internal.link {
        display:block;
    }
    #social-icons {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        bottom: 65px;
        left: 15px;
        min-width: -webkit-min-content;
        min-width: -moz-min-content;
        min-width: min-content;
        z-index: 1900;
        border: 1px solid #d4d4d5;
        line-height: 1.4285em;
        width: 126px;
        background: #fff;
        padding: .833em 1em;
        font-weight: 400;
        font-style: normal;
        color: rgba(0,0,0,.87);
        border-radius: .28571429rem;
        box-shadow: 0 2px 4px 0 rgba(34,36,38,.12), 0 2px 10px 0 rgba(34,36,38,.15);
    }
    #social-icons.show {
        visibility: visible;
        transition: transform 0.2s;
        opacity: 1;
        z-index: 1000;
        -webkit-transform: scale3d(1, 1, 1);
        -moz-transform: scale3d(1, 1, 1);
        -transform: scale3d(1, 1, 1);
        pointer-events: auto;
    }
    #social-icons.show:before {
        display: block;
    }
    #social-icons.show a {
        margin:5px;
    }
    #benefits .eight-grid h4 {
        font-size: 18px;
    }
    #benefits .eight-grid img {
        margin-right: 0;
        width: 65px;
        height: 65px;
    }
}
.print-only {
    display: none;
}