@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500&display=swap');
*
/*//////////////////////Generelle Einstellung////////////////////*/
*{
    margin: 0;
    padding: 0;
    
}
/*////////////////////HEADER HAUPTSEITE ///////////////////////*/
.header{
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.11), rgba(4,9,20,0.7)), url(bild-firma_1.jpg);
    background-position: center;
    background-size: cover;
    position: relative;

}
/*///////////////////lINKS NORMALE SEITE ///////////////////*/
nav
{
    display:flex;
    padding:2% 6%;
    justify-content: space-between;
    align-items: center;

}
nav img
{
    width:150px;
    
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display:inline-block;
    padding: 8px 12px;
    position: relative;

}
.nav-links ul li a{
    color:white;
    text-decoration: none;
    font-size: 25px;
    font-family: 'Poppins, sans-serif';
}
.nav-links ul li::after{
    content:"'";
    width: 0%;
    height: 2px;
    background: rgb(153, 27, 27);
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width:100%;
}
/*////////////////ÜBERSCHRIFT HAUPTSEITE////////////////*/
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

}
.text-box h1{
    font-size: 80px;
}
.text-box p{
    margin:10 0 40px;
    font-size: 60px;
    color:white;


}
/*//////////////BUTTON HEADER HAUPTSEITE///////////////*/
.hero-btn{
    display:inline-block;
    text-decoration: none;
    color:white;
    border: 1px solid white;
    margin-top: 40px;
    padding:12px 14px;
    font-size: 20px;
    background: transparent;
    position:relative;
    cursor:pointer;
}
.hero-btn:hover{
    border:1px solid beige;
    background:rgb(148, 45, 45);
    transition: 1s;

}
/*///////////////////lINKS NORMALE SEITE ///////////////////*/
nav .fa{
    display: none;
}
/*////////////////////////////////////HEADER ANPASSUNGEN KLEINERE BILDSCHIRME////////////////*/
@media(max-width:800px){
    .header{
        max-height:80vh;
        min-height:75vh;
    }
    .nav-links ul li a{
        font-size:17px;
        
    }
    .nav-links ul{
        margin-top:45px;
        right: -200px;
    }
    .text-box h1{
        font-size:45px;

    }
    .text-box p{
        font-size:35px;

        
    }
    .text-box{
        margin-top:45px;

    }
}
@media(max-width: 720px){
    .text-box h1{
        font-size: 40px;
    }
    .text-box p{
        font-size: 25px;
    }
    .nav-links ul{
        right: -200px;
    }
}
@media(max-width: 700px){
    .header{
        overflow-x:hidden;
    }
    .text-box h1{
        font-size: 30px;
    }
    .text-box p{
        font-size: 15px;
    }
    .nav-links ul li{
        display:block;
    }
    .nav-links {
        position:absolute;
        background: #f44336;
        height: 100vh;
        width: 150px;
        top:0;
        right:-200px;
        text-align: left;
        z-index: 2;
        transition:1s;

    }
    nav .fa{
    display: block;
    color:#fff;
    margin:10px;
    font-size: 22px;
    cursor:pointer;
    }
    .nav-links ul{
        padding: 30px;

    }
}
@media(max-width:600px){
    .header{
        min-width:55vh;
        max-width:60vh;
    }
    .nav-links ul{
        right: -200px;
    }
}
@media(max-width:500px){
    .hero-btn{
        color:white;
        border: 1px solid white;
        margin-top: 40px;
        padding:10px 14px;
        font-size: 20px;
    }
    .nav-links ul{
        right: -200px;
    }
}
@media(max-width:400px){
    .hero-btn .bw{
        color:white;
        border: 1px solid white;
        margin-top: 40px;
        padding:10px 14px;
        font-size: 15px;
    }
    .nav-links ul{
        right: -200px;
    }
}
/*///////////////////////////////////////////////////////
////////////////BODY HAUPSEITE /////////////////////////
/////////////////////////////////////////////////////*/

/*/////////////////////Schrift Bewerbungen///////////////////////////////*/
.course{
    width: 80%;
    margin:auto;
    text-align: center;
    padding-top: 35px;


    
}
h1{
    font-weight: 600;
    font-size:40px;
    font-family:'Poppins', sans-serif;
}
h2{
    color:grey;
    font-family:'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 22px;
    padding:10px;
    text-align: left;
}
p{
    color:black;
    font-family:'Poppins', sans-serif;;
    font-size:  18px;
    font-weight: 300;
    line-height: 25px;
    padding:10px;
    text-align:left;
    
}
/*////////////////////////////////////////////////////////////////////////////////////
//////////Kleinere Bildschirme Schrift//////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////*/
@media(max-width:400px){
    .course h1{
        font-size: 30px;
    }

}

/*/////////////////////////////////////IMPRESSUM VERLINKUNG///////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////ALLE WEBSITES////////////////////////////////////////////////////////////////////////////*/
.impressumlink a{
    color: black;
    margin-bottom:50px;
}
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////TEILSEITE BEWERBUNG///////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*///////////////////////////////////////HEADER BEWERBUNGEN//////////////////////////////////////////////////////////////////////*/
.header_bewerbungen{
    width:100%;
    min-height:50vh;
    max-height: 70vh;
    background-image: linear-gradient(rgba(4, 9, 30, 0.11), rgba(4,9,20,0.7)), url(hintergrund2.jpg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow:hidden;
}
.header_bewerbungen h1{
    color: white;
    min-height: 40vh;
    
    margin:auto;
    text-align: center;
    padding-top: 5px;
    padding-left: 20px;
    font-size:35px;
    
}
.header_bewerbungen h2{
    color: white;
    min-height: 20vh;
    
    margin:auto;
    text-align: center;
    padding-top: 0px;
    padding-left: 20px;
    margin-bottom: 40px;
    font-size: 35px;
    align-items: top;
    
}

/*////////////////////////////////////HEADER BEWERBUNG ANPASSUNG AN KLEINERE BILDSCHIRME/////////////////////////////////////////*/


@media(max-width:2560px){
    .header_bewerbungen h1{
        margin-top:85px;
    }
}
@media(max-width:2000px){
    .header_bewerbungen h1{
        margin-top:45px;
    }
}
@media(max-width:1440px){
    .header_bewerbungen h1{
        margin-top:80px;
    }
}


@media(max-width:800px){
    .header_bewerbungen h1{
        margin-top:125px;
        font-size:24px;
    }
    .course h1{
        font-size:22px;
    }
    .course p{
        font-size:18px;
        line-height:20px;
    }
}
@media(max-width: 700px){
    .header_bewerbungen{
        overflow:hidden;
    }
    .header_bewerbungen h1{
        margin-top:180px;
    }

    .nav-links ul li{
        display:block;
    }
    .nav-links{
        position:absolute;
        background: #f44336;
        height: 70vh;
        width: 150px;
        top:0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition:1s;

    }
    nav .fa{
        display: block;
        color:#fff;
        margin:10px;
        font-size: 22px;
        cursor:pointer;
    }
    .nav-links ul{
        padding: 5px;

    }
}

@media(max-width: 426px){
    .header_bewerbungen{
        overflow: hidden;
    }
    .header_bewerbungen h1{
        font-size:20px;
    }
    .nav-links ul{
        right:-200px;
    }
    .course h1{
        font-size:20px;
    }
    .course p{
        font-size:16px;
        line-height:18px;
    }
}
@media(max-width: 350px){
    .header_bewerbungen{
        overflow:hidden;
    }
    .header_bewerbungen h1{
        font-size:20px;
        margin-top:180px;
    }
    .course h1{
        font-size:20px;
    }
    .course p{
        font-size:16px;
        line-height:18px;
    }
}

/*///////////////////////////////////Bild WirBieten///////////////////////////////////////////*/
.WirBieten{
    margin-top:60px;
    padding-bottom:10px;
    min-height: 60vh;
    max-height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.11), rgba(4,9,20,0.7)), url(2020_Leitermann_37_bearbeitet.png);
    background-position: center;
    background-size: cover;
    position: relative;
}
.WirBieten h1{
    color:white;
    text-align:center;
    padding-top:10px;
    padding-bottom:20px;
}


.WirBieten table{
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color:white;
    margin-left:2%;
    margin-right:2%;
}

.WirBieten table tr{
    padding-top:15px;
}
/*////////////////ANPASSUNG KLEINERE BILDSCHIRE`ME/////////////////////////////////////////////////////////////////////////////////////////////*/
@media(max-width:2560px){
    .WirBieten{
        min-height:30vh;
        max-height:50vh;
    }
    .WirBieten table{
        margin-left:20%;
        margin-right:20%;
        font-size:24px;
    }

}
@media(max-width:2000px){
    .WirBieten table{
        margin-left:5%;
        margin-right:5%;
    }
}
@media(max-width:1800px){
    .WirBieten{
        min-height:70vh;
        max-height:90vh;
    }
}
@media(max-width:1440px){
    .WirBieten{
        font-size:20px;
    }
}
@media(max-width:1230px){
    .WirBieten{
        min-height:60vh;
        max-height:70vh;
    }
}
@media(max-width:900px){
    .WirBieten{
        min-height:70vh;
        max-height:90vh,

    }
    .WirBieten table{
        font-size:12px;
        margin-left: 20px;
        margin-right:20px,
        
    }

    .WirBieten table td{
        padding-right:5px;
    }
}
@media(max-width:800px){
    .WirBieten{
        min-height:60vh;
        max-height:80vh,

    }
    .Wirbieten table{
        font-size:12px;
    }
}
@media(max-width:500px){
    .WirBieten {
        min-height:70vh;
        max-height:90vh;
    }
    .WirBieten h1{
        font-size:20px;
    }
    .WirBieten table tr{
        flex-direction: row;
    }
}
@media(max-width:400px){
    .WirBieten table{
        font-size:8px;
    }
    .WirBieten{
        min-height: 40vh;
        max-height:60vh;
    }
    .WirBieten h1{
        font-size:20px;
    }
}



/*///////////////////////////////BERWERBUNGEN VERFÜGBARE JOBS/////////////////////////////*/
.bewerbungen_cards{

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background:white;
    
}
.content_bewerbung{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1500px;
    flex-wrap: wrap;
}
.content_bewerbung .card_bewerbung{
    position:relative;
    width: 450px;
    padding: 5px;
    margin: 5px;
    background:rgba(193, 193, 211, 0.664);

}
.content_bewerbung .card_bewerbung::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border: 20px solid transparent;
    border-top: 20px solid darkblue;
    border-right: 20px solid darkblue;
    
}
.content_bewerbung .card_bewerbung.active::before{
    border-top: 20px solid pink;
    border-right: 20px solid pink;
}
.content_bewerbung .content_card{
    position: relative;
    height: 215px;
    overflow:hidden;
}
.content_bewerbung .content_card h3{
    color: black;
    font-size: 1.4em;
    font-family:'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}
.content_bewerbung .content_card p{
    font-weight: 300px;
    color: black;
}
.content_bewerbung .card_bewerbung.active .content_card{
    height: auto;
}
.content_bewerbung .card_bewerbung.active .content_card::before{
    display:none;
}
.content_bewerbung .card_bewerbung .more{
    position:relative;
    padding: 10px 15px;
    margin-left: 40%;
    background: darkblue;
    margin-top: 15px;
    display:inline-block;
    cursor:pointer; 
    text-transform: uppercase;
    color:white;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 14px;
    font-family:'Poppins', sans-serif;
}
.content_bewerbung .card_bewerbung.active .more{
    background:pink;
    color: white;
}
.content_bewerbung .card_bewerbung .more::before{
    content: 'Mehr lesen';

}
.content_bewerbung .card_bewerbung.active .more::before{
    content:'Weniger lesen';
}
/*/////////////////////////////////////////////////////
///////KONTAKTINFORMATION//////////////////////////////
/////////////////////////////////////////////////////*/
.Info h1{
    color: black;
    font-size:40px;
    margin:auto;
    text-align: center;
    padding-top: 20px;
    padding-left: 20px;

}
.Info h2{
    color:black;
    font-size:  18px;
    font-weight:600;
    line-height:25px;
    padding-bottom:40px;
    text-align: left;
    margin-left: 35%;
    

}
.Info h3{
    color:black;
    font-family: 'Poppins', sans-serif;
    font-size:  18px;
    font-weight: 300;
    line-height: 25px;
    padding-bottom:50px;
    text-align: center;
    font-weight: 600; 
    padding-left: 75px;

}
/*////////////////////////////////////////////BEWERBUNG VERFÜGBARE JOBS////////////////////////////*/
/*///////////////////////////////////////////ANPASSUNG AN KLEINERE BILDSCHIRME/////////////////////*/

@media(max-width:700px){
    .content_bewerbung .card_bewerbung{ 
        width: 80%;
    }
    .content_bewerbung .card_bewerbung .more{
        margin-left: 25%;

    }
}
@media(max-width:600px){

    .content_bewerbung .card_bewerbung .more{
        margin-left: 30%;

    }
}
@media(max-width:300px){

    .content_bewerbung .card_bewerbung .more{
        
        margin-left:-15px;

    }
}
@media(max-width:420px){
    .content_bewerbung .content_card h3{
        font-size: 1.1em;
        font-weight: 600px;

    }

}
@media(max-width:800px){

    .content_bewerbung .card_bewerbung .more{
        margin-left: 30%;

    }
}
/*HIER IST AUCH INFO DABEI*/
@media(max-width:1050px){

    .content_bewerbung .card_bewerbung .more{
        margin-left: 35%;

    }
    .Info h2{
        margin-left:30%;
    }

}
@media(max-width:800px){
    .Info h2{
        margin-left: 20%;
    }
}
@media(max-width:700px){
        .Info h2{
        line-height:25px;
        font-size:18px;
        margin-left:5%;
    }

}
@media(max-width:400px){
    .Info h1{
        font-size:25px;
        font-weight: 600;
    }
    .Info h2{
        line-height:25px;
        font-size:18px;
        margin-left:5%;
    }
    .Info h3{
        text-align:left;
        margin-left:0%;
    }
}
@media(max-width:290px){
    .Info p{
        font-size:5px;
    }
}
/*/////////////////////////////////////IMPRESSUM VERLINKUNG///////////////////////////////////////////////////////////////////////////////////////
*/
.impressumlink a{
    color: black;
    margin-bottom:50px;
    font-family:'Poppins', sans-serif;
}

.comment h4{
    margin-bottom:25px;
    margin-top: 60px;
    font-weight:600;
    font-size: 25px;
    

}
.comment{
    align-items: center;
    text-align: center;
}
.icons .fa{
    color:#f44336;
    margin: 0 13px;
    cursor:pointer;
    padding: 10px 0;
    
}
.impressumlink p{
    color: black;
    text-align: center;
    font-size:24px;
    font-weight:300;
}
/*//////////////////////////////////////////////////IMPRESSUMLINK ANPASSUNG BILDSCHIRME/////////////////////////////////////////////*/
@media(max-width:800px){

    .comment h4{
        padding-bottom:0px;
        margin-bottom:0px;
    }

}
@media(max-width:450px){
    .comment{
        padding-left:5px;
    }
    .comment h4{
        font-size:20px;
        padding-bottom:0px;
        margin-bottom:0px;
    }
    .impressumlink a{
        color: black;
        margin-bottom:20px;
        font-size:20px;
    }
}

@media(max-width:400px){
    .comment{
        padding-left:5px;
    }
    .comment h4{
        font-size:15px;
        padding-bottom:0px;
        margin-bottom:0px;
    }
    .impressumlink a{
        color: black;
        margin-bottom:20px;
        font-size:15px;
    }
}
@media(max-width:320px){
    .comment{
        padding-left:20px;
    }
    .comment h4{
        font-size:15px;
        padding-bottom:0px;
        margin-bottom:0px;
    }
    .impressumlink a{
        color: black;
        margin-bottom:20px;
        font-size:15px;
    }
}


