@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: 60vh;
    max-height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.11), rgba(4,9,20,0.7)), url(AltroAuto2.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: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 /////////////////////////
/////////////////////////////////////////////////////*/


/*//////////////////UNSERE DIENSTLEISTUNGEN////////////////
//////////////////AUCH VERWENDET BEI BEWERBUNGSTEILSEITE///*/
.course{
    width:80%;
    margin:auto;
    text-align: center;
    padding-top: 100px;
    
    
    
}
h1{
    font-size: 35px;
    font-weight: 600;
}
h2{
    color:grey;
    font-size: 17px;
    font-weight: 300;
    line-height: 22px;
    padding:10px;
    text-align: left;
}
p{
    color:grey;;
    font-size:  24px;
    font-weight: 300;
    line-height: 22px;
    padding:10px;
    
}
.row{
    margin-top: 5%;
    display:flex;
    justify-content:space-between;
}
.course-col{
    width:80%;
    flex-direction: column;
    background: #fff3f3;
    border-radius: 10px;
    padding:  20px 12px;
    margin-bottom: 5%;
    box-sizing: border-box;
    transition:0.5s;
    margin-left: 10%;

}
h3{
    text-align: center;
    font-weight: 500;
    margin: 10px 0;
}
.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
/*/////////////////////////////////////Campus /////////////////////////////////////////////////////////////////////////*/
.campus{
    width: 80%;
    margin:auto;
    text-align:center;
    padding-top: 50px;

}
.campus h1{
    font-size:35px;
}
.campus p{
    font-size:18px;
    line-height:25px;
    font-weight:300;
    color:black;
    margin-left:10%;
    margin-right:10%;
    text-align:left;
    
}
@media(max-width:600px){
    .campus p{
        margin-left:5%;
        margin-right:0%;
        font-size:12px;

    }
}
@media(max-width:325px){
    .campus h1{
        font-size:25px;
    }
}

/*/////////////////////////////////////////////////Unsere Projekte Schriftanpassung///////////////////////////////////////////////////*/
.campus .projects p{
    margin-left:0%;
    margin-right:0%;
    text-align:center;
}
/*/////////////////////////////////////////////////////////////Campus Schrift////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////über uns////////////////////////////////////////////////////////////////////*/

.campus-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow:hidden;
}
.campus-col img{
    width:100%;
    height: 100%;
    display:block;
}
.layer{
    background: transparent;
    position:absolute;
    height: 100%;
    width: 100%;
    top:0;
    left:0;
    transition:0.5s;

}
.layer:hover{
    background: rgba(226,0,0,0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform:translateX(-50%);
    position: absolute;
    opacity:0;
    transition: 0.5s;

}
.layer:hover h3{
    bottom:49%;
    opacity: 1;
}
.layer a{
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform:translateX(-50%);
    position: absolute;
    opacity:0;
    transition: 0.5s;

}
.layer:hover a{
    bottom:49%;
    opacity: 1;
}
/*////////////////////////////////////////UNSERE UNTERNEHMEN//////////////////////////////////////////////////////////////////////*/
.facilities{
    width:80%;
    margin:auto;
    text-align: center;
    padding-top: 100px;
    
}
.facilities h3{
    color: black;
    font-weight: 300;
    font-size: 18px;
    margin-left:15%;
    margin-right:15%;
    text-align: left;

}
.facilities-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow:hidden;
}
.facilities-col img{
    width:100%;
    display:block;
}
@media(max-width:500px){
    .facilities h1{
        font-size:30px;
    }
}
/*/////////////////////////////////////////////////////FEEDBACK////////////////////////////////////////////////////////////////*/
.testimonials{
    width: 80%;
    margin:auto;
    text-align: center;
    padding-top: 100px;
}
.testimonials h1{
    padding-bottom: 15px;
}
.testimonial-col{
    margin-top: 40px;
    flex-basis: 44%;
    border-radius:10px;
    margin-bottom:5%;
    text-align: left;
    background:#fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
    
}
.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;

}
.testimonial-col h3{
    margin-top: 15px;
    text-align: left;  
}
.testimonial-col p{
    font-size: 20px;
}
.testimonial-col .fa{
    color:red;

}
/*///////////////////////////////////////////////////FEEDBACK KOMMENTAR////////////////////////////////////////////////////////*/
.comment{
    width:100%;
    text-align:center;
    padding:30px;
}
.comment h4{
    margin-bottom:25px;
    margin-top: 60px;
    font-weight:600;
    font-size: 25px;

}
.icons .fa{
    color:#f44336;
    margin: 0 13px;
    cursor:pointer;
    padding: 10px 0;
}
.comment-box{
    border: 2px solid rgb(44, 43, 43);
    margin: 50px 0;
    padding: 15px 20px;
}
.comment-form input, .comment-form textarea{
    width: 85%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border:none;
    outline:none;
    background: lightgrey;

}
comment-form button{
    margin: 10px 0;
    padding:5px;

}
.comment-col input, .comment-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    border:1px solide #ccc;
    outline:none;
}
.Kommentar{
    padding-bottom: 30px;
}
.red-btn{
    border:1px solid rgb(148, 45, 45);
    background:transparent;
    color: rgb(148, 45, 45);

}
.red-btn:hover{
    color:white;

}
/*///////////////////////////////////////////////VERLINKUNG ZUR BEWERBUNG//////////////////////////////////////////////////////////////////*/
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(teamwork.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align:center;
    padding: 100px 0;
}
.cta h1{
    color:beige;
    margin-bottom: 40px;
    padding: 0;
    font-size: 40px;
}
.cta h2{
    color:beige;
    font-size:30px;
    position:center;
}
.cta h4{
    color:beige;
    font-size:30px;
    position:center;

}
.cta p{
    color:white;
    font-size:20px;
    padding: 15px;
}
/*////////////////////////////////////COURSE ROW CAMPUS FACILITIES TESTIMONIALS CTA COMMENT ANPASSUNGEN KLEINERE BILDSCHIRME////////////////*/
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
@media(max-width: 400px){
    .course h1{
        font-size:23px;
        font-weight:600;
    }
    .campus h1{
        font-size: 23px;
        font-weight:600;
    }
    .facilities h1{
        font-size: 23px;
        font-weight:600;
    }
    .facilities p{
        font-size:18px;
        font-weight:600;
    }
    .testimonials h1{
        font-size: 33px;
        font-weight:600;
    }
    .testimonials p{
        font-size:20px;
        font-weight:600;
    }
}
@media(max-width: 800px){

    .row{
        flex-direction: column;
    }
}
@media(max-width:700px){
    .testimonial-col img{
        
        margin-left: 0px;
        margin-right: 15px;
    }

    
}
@media(max-width: 700px) {
    .cta h1{
        font-size: 24px;
    }
    .cta p{
        color:white;
        font-size:14px;
    }
    
}
/*//////////////////////////////////////SPÄTERE ZUSÄTZE//////////////////////////////////////////////////////////////////////////*/

/*/////////////////////////////////////BLUE///////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////AUCH VERWENDET BEI////////////////////////////////////////////////////////////////////////////*/
.blue{
    background-color:rgba(193, 193, 211, 0.664);
    
    
    
}
.blue h2{
    color:rgb(32, 31, 31);
}
.blue h3{
    font-weight: 800;
}
.Abstandt{
    padding-left:10px;
}
/*/////////////////////////////////////ALIGNTOO///////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////AUCH VERWENDET BEI////////////////////////////////////////////////////////////////////////////*/
.aligntoo p{
    text-align: left;
    font-size: 15px;
}
/*/////////////////////////////////////IMPRESSUM VERLINKUNG///////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////ALLE WEBSITES////////////////////////////////////////////////////////////////////////////*/
.impressumlink a{
    color: black;
    margin-bottom:50px;
}
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////TEILSEITE BEWERBUNG///////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*///////////////////////////////////////HEADER BEWERBUNGEN//////////////////////////////////////////////////////////////////////*/
.header_bewerbungen{
    width:100%;
    height:40%;
    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;
}
.header_bewerbungen h1{
    color: white;
    min-height: 40vh;
    width:100%;
    margin:auto;
    text-align: center;
    padding-top: 5px;
    padding-left: 20px;
    font-size:35px;
    
}
.header_bewerbungen h2{
    color: white;
    min-height: 20vh;
    width:100%;
    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:1050px){
    .header_bewerbungen h1{
        margin-top:185px;
    }
}

@media(max-width:800px){
    .header_bewerbungen h1{
        margin-top:75px;
    }
}
@media(max-width: 700px){
    .header_bewerbungen{
        overflow:hidden;
    }
    .header_bewerbungen h1{
        margin-top:50px;
    }

    .nav-links ul li{
        display:block;
    }
    .nav-links{
        position:absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        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: 420px){
    .header_bewerbungen{
        overflow: hidden;
    }
    .header_bewerbungen h1{
        font-size:25px;
    }
}
@media(max-width: 350px){
    .header_bewerbungen{
        overflow:hidden;
    }
    .header_bewerbungen h1{
        font-size:20px;
        margin-top:50px;
    }
}
/*///////////////////////////////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-weight: 600px;
    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;

}
.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;
    min-height: 10vh;
    width:100%;
    margin:auto;
    text-align: center;
    padding-top: 40px;
    padding-left: 20px;

}
.Info h2{
    color:grey;;
    font-size:  24px;
    font-weight: 300;
    line-height: 22px;
    padding-bottom:100px;
    text-align: center;
    margin-left: 50px;

}
.Info h3{
    color:black;;
    font-size:  24px;
    font-weight: 300;
    line-height: 22px;
    padding-bottom:100px;
    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{
        line-height:45px;
        font-size:30px;
    }

}
@media(max-width:700px){
    .Info h1{
        font-size:25px;
        font-weight: 600;
    }
    .Info h2{
        line-height:35px;
        font-size:20px;
    }
}
@media(max-width:400px){
    .Info h1{
        font-size:25px;
        font-weight: 600;
    }
    .Info h2{
        line-height:25px;
        font-size:15px;
    }
}
@media(max-width:290px){
    .info p{
        font-size:5px;
    }
}
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////TEILSEITE KONTAKT///////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*/////////////////////////////////////////////HEADER KONTAKT////////////////////////////////////////////////////////////////////*/
.header_contact{
    width:100%;
    min-height: 60vh;
    height:100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.11), rgba(4,9,20,0.7)), url(Hand.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.header_contact h1{
    color: white;
    font-size: 70px;
    min-height: 10vh;
    width:100%;
    margin:auto;
    text-align: center;
    padding-top: 40px;
    padding-left: 20px;

}
/*/////////////////////////////////////////////HEADER KONTAKT ANPASSUNG AN KLEINERE BILDSCHIRME////////////////////////////////////////////////////////////////////*/
@media(max-width:400px){
    .header_contact h1{
        font-size:20px;
        font-weight:600;
    }

}
@media(max-width:300px){
    .header_contact h1{
        font-size:10px;
        font-weight:280;
        padding-left:15px;
    }

}
/*///////////////////////////////////////////// VERLINKUNG ZU GOOGLE MAPS////////////////////////////////////////////////////////////////////////////////////////*/
.location{
    width:80%;
    margin-left:140px;
    padding: 45px 0;
    align-items: center;
}
.location iframe{
    width: 100%;
}
.location h1{
    color: black;
    font-size: 40px;
    min-height: 10vh;
    width:100%;
    margin:auto;
    text-align: center;
    padding-top: 40px;
    padding-left: 20px;
    margin-bottom: 25px;

}
/*///////////////////////////////////////////// VERLINKUNG ZU GOOGLE MAPS ANPASSUNG KLEINERE BILDSCHIRME////////////////////////////////////////////////////////////////////////////////////////*/
@media(max-width: 700px){
    .location{
        width:80%;
        margin-left:50px;
        padding: 45px 0;
        align-items: center;
    }
    .location iframe{
        width: 100%;
    }

}
@media(max-width: 800px){
    .location{
        width:80%;
        margin-left:10%;
        padding: 45px 0;
        align-items: center;
    }
    .location iframe{
        width: 100%;
    }

}

/*///////////////////////////////////////////////////////SPÄTERE ZUSÄTZE////////////////////////////////////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////BROWN/////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////AUCH VERWENDET BEI////////////////////////////////////////////////////////////////////////////////////*/
.brown p{
    font-size: 30px;
    color:black;
    text-align: center;
    padding:20px;
    margin-top: 50px;
    line-height: 42px ;

}

.row2{
    margin-top: 1%;
    display:flex;
    justify-content:space-between;
}
.course-col2{
    flex-basis: 32%;
    background: #fff3f3;
    border-radius: 10px;
    padding:  20px 12px;
    margin-bottom: 5%;
    box-sizing: border-box;
    transition:0.5s

}
.course-col2:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
.course p{
    font-size: 15px;
    color:black;
}

.header_news{
    width:100%;
    height:50%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.11), rgba(4,9,20,0.7)), url(newsbg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.header_news h1{
    color: white;
    min-height: 25vh;
    width:100%;
    margin:auto;
    text-align: center;
    padding-top: 5px;
    padding-left: 20px;
    
}
.new{
    margin-left:25px;
    margin-top: 5%;
    display:flex;
    justify-content:space-between;
}
.new img{
    width:80%;
    max-height:60vh;
    margin-left: 20px;
    margin-top: 10px;
}
.new h6{
    
    font-weight: 600;
    font-size:35px;
}
.new p{
    font-size: 25px;
    font-weight:500;
    color:grey;
    line-height: 30px;
    text-align:left;
    padding-top: 10px;
}
.dark{
    color:white;
    background:#331903a2;

}
.dark p{
    color:white;
}
.header_aboutus{
    width:100%;
    height:50%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.11), rgba(4,9,20,0.7)), url(teamwork.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 50vh;
    
}
.header_aboutus h1{
    text-align: center;
    color: white;


}
@media(max-width: 700px){
    .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;

    }
}
/*/////////////////////////////////////////////ÜBER UNS//////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.überuns01{
    padding: 35px;

}
.überuns01 h1{
    text-align:center;
    margin-bottom:15px;
    font-size:25px;
    color: black;
    font-weight:600;
}
.überuns01 p{
    text-align:center;
    color:grey;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 18px;
}
.aboutus{
    padding: 20px;
    text-align: left;
    padding-left: 20 px;
    margin-left: 50px;
    color:darkgrey;
    font-size: 35px;
    font-weight: 300;
    
}
.aboutusimg{
    margin-left: 20px;
    max-height: 100%;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 15px;
    align-items: left;
    margin-top: -200px;
}


.container{
    color:white;
    position: relative;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-rows:minmax(300px, auto);
    margin:40px;
    grid-auto-flow: dense;
    grid-gap: 10px;
}
.container .box{
    color: white;
    background: #333;
    padding: 20 px;
    display:grid;
    font-size: 20px;
    place-items: center;
    text-align: center;
    color: #fff;
    transition: 0.5s;
}
.container .box:hover{
    background: #042b27;

}
.container .box img{
    position: relative;
    max-width:100px;
    margin-bottom: 10px;
}
.container .box:nth-child(1){
    grid-column: span 2;
    grid-row: span 3;
}
.container .box:nth-child(2){
    grid-column: span 1;
    grid-row: span 2;
}
.container .box:nth-child(4){
    grid-column: span 1;
    grid-row: span 2;
}
.container .box:nth-child(2){
    grid-column: span 3;
    grid-row: span 1;
}
@media(max-width:700px){
    .container{

    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
    grid-template-rows:minmax(auto, auto);
}
    .container .box{
        grid-column: unset !important;
        grid-row: unset !important;
    }
}
@media(max-width:800px){
    .header_aboutus h1{
        padding-top:60px;
    }
}
@media(max-width:1440px){
    .header_aboutus h1{
        padding-top:60px;
        font-size:50px;
    }
}
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.s3{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    background:#112d42;


}
.s3::before{
    content:'';
    position:absolute;
    top: 0;
    left: 0;
    width:50%;
    height:100%;
    background: tomato;

}
.containercontact{
    position:relative;
    min-width: 1100px;
    min-height: 550px;
    display:flex;
    z-index: 100;
}
.containercontact .contactinfo{
    position: absolute;
    top: 40px;
    width: 350px;
    height: calc(100% - 80px);
    background:wheat;
    z-index: 1;
    padding: 40px;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);


}
.containercontact .contactinfo h2{
    color:white;
    font-size: 24px;
    font-weight: 500,
}
.containercontact .contactinfo .info{
    position: relative;
    margin: 20px 0;

}
.containercontact .contactinfo .info li{
    position:relative;
    list-style: none;
    display:flex;
    margin: 20px 0;
    cursor:pointer;
    align-items: flex-start;
}
.containercontact .contactinfo .info li span:nth-child(1){
    width: 30px;
    min-width: 30px;

}
.containercontact .contactinfo .info li span:nth-child(1) img{
    width: 30px;
    min-width: 30px;

}
.containercontact .contactinfo .info li span:nth-child(1){
    max-width: 100%;
    filter: invert(1);
    opacity:0.5;


}
.containercontact .contactinfo .info li span:nth-child(2){
    color:white;
    margin-left: 10px;
    font-weight:300;
    opacity:0.5s;
    

}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////ImageSlider///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.Imageslider{
    margin-top:0px;
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins", sans-serif;

}
.container{
    
    display:flex;
    justify-content: center;
    align-items:center;
    background:white;

}
.slider{
    position: relative;
    background: #000116;
    width: 800px;
    min-height: 500px;
    margin: 20px;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .slider .slide{
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 0%, 0 1%, 0 50%, 0 100%, 0% 100%);
  }
  
  .slider .slide.active{
    clip-path: polygon(0% 0%, 100% 0, 100% 53%, 100% 100%, 0 100%);
    transition: 2s;
  }
  
  .slider .slide img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  

  
  .navigation{
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .slider:hover .navigation{
    opacity: 1;
  }
  
  .prev-btn, .next-btn{
    z-index: 999;
    font-size: 2em;
    color: #222;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    cursor: pointer;
  }
  
  .prev-btn{
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  
  .next-btn{
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
  }
  
  .navigation-visibility{
    z-index: 999;
    display: flex;
    justify-content: center;
  }
  
  .navigation-visibility .slide-icon{
    z-index: 999;
    background: rgba(255, 255, 255, 0.5);
    width: 20px;
    height: 10px;
    transform: translateY(-50px);
    margin: 0 6px;
    border-radius: 2px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }
  
  .navigation-visibility .slide-icon.active{
    background:crimson;
  }
  
  @media (max-width: 900px){
    .slider{
      width: 100%;
    }
  
    .slider .slide .info{
      position: relative;
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  @media (max-width: 500px){
    .slider .slide .info h2{
      font-size: 1.8em;
      line-height: 40px;
    }
  
    .slider .slide .info p{
      font-size: 0.9em;
    }
  }
  @media(max-width:320px){
      .slider .slide .info h2{
          font-size: 1.2em;
      }
  }
  /*/////////////////////////////////////////////Anpassung Abstand ImageSLider zu Rand/////////////////////////////////*/
  @media(max-width:350px){
      .container{
          padding-left:40px;
      }
  }


/*//////////////////////////////////////Test Dick///////////////////////////////////*/
.bold p{
    font-weight:600;
    font-size:22px;
}
/*///////////////////////////////////Bild WirBieten///////////////////////////////////////////*/
.WirBieten{
    margin-top:60px;
    padding-bottom:40px;
    min-height: 75vh;
    max-height: 75vh;
    margin-left:10%;
    width: 80%;
    background-image: linear-gradient(rgba(9, 9, 9, 0.295), rgba(17, 17, 17, 0.892)), url(altro7.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    border-radius:40px;

}
.WirBieten h1{
    color:white;
    text-align:center;
    padding-top:40px;
    padding-bottom:20px;
} 
.WirBieten p{
    color:white;
    margin-right:10%;
    margin-left:20%;
    padding-top:20px;
}


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

.WirBieten table tr{
    padding-top:15px;
}
.WirBieten table td{
    width:45%;

}
.WirBieten .ul2{
    list-style: none;
    color:white;
    text-align:left;
    padding-top:20px;
    margin-left:25%;
    margin-right:20%;
    
}
@media(max-width:320){
    .WirBieten .ul2{

        padding-top:20px;
        margin-left:5%;
        margin-right:2%;
    }

}
/*////////////////ANPASSUNG KLEINERE BILDSCHIRME/////////////////////////////////////////////////////////////////////////////////////////////*/
@media(max-width:2560px){
    .WirBieten{
        min-height: 50vh;
        max-height:70vh;
    }
}
@media(max-width:1230px){
    .WirBieten{
        min-height:50vh;
        max-height:70vh;
    }
    .WirBieten td{
        font-size: 20px;
    }

}
@media(max-width:900px){
    .WirBieten{
        min-height:70vh;
        max-height:90vh,

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

    .WirBieten table tr{
        padding-right:5px;
        font-size:20px;
        color:white;
        text-align: left;
    }
}
@media(max-width:800px){
    .WirBieten{
        min-height:50vh;
        max-height:70vh,

    }
    .WirBieten table td{
        font-size:18px;
    }
    .WirBieten h1{
        font-size:22px;
    }
}
@media(max-width:500px){
    .WirBieten {
        min-height:60vh;
        max-height:75vh;
    }
    .WirBieten h1{
        font-size:10px;
    }
    .WirBieten p{
        font-size:10px;
    }

    .WirBieten .table .tr{
        flex-direction: row;
        font-size:10px;
        text-align:left;
        color:white;
    }
}
@media(max-width:400px){
    .WirBieten table{
        font-size:8px;
    }
    .WirBieten{
        min-height: 70vh;
        max-height:120vh;
    }
    .WirBieten p{
        font-size:10px;
    }
}
@media(max-width:325px){
   .course .course-col .blue.aligntoo{
       width:90%;
       margin-right:0;
   }
    .WirBieten p{
        font-size:8px;

    }
    .course .course-col .blue .aligntoo h3{
        font-size:8px;
    }
    .course .course-col .blue .aligntoo p{
        font-size:6px;
    }
    
}
/*////////////////////////////////////////////////////
//////////////Farben und Schrift Altro////////////////////////////*/
.altro1{
    background-color:rgba(248, 248, 26, 0.548);   
}
.altro1 h3{
    font-weight:800;
    font-size:26px;
}
.altro1 p{
    font-size:18px;
}
.altro2{
    background-color: rgba(243, 167, 25, 0.604);
}
.altro2 h3{
    font-weight:800;
    font-size:26px;
}
.altro2 p{
    font-size:18px;
}
.altro3{
    background-color: #a5372f78;
}
.altro3 h3{
    font-weight:800;
    font-size:26px;
}
.altro3 p{
    font-size:18px;
}
.blue h3{
    font-weight:800;
    font-size:26px;
}
.blue p{
    font-size:18px;
}
/*///////////////////////////////////////
//Anpassung Schrift/////////////////////*/
@media(max-width:500px){
    .altro1 p{
        font-size:14px;
    }
    .altro1 h3{
        font-size:16px;
    }
    .altro2 p{
        font-size:14px;
    }
    .altro2 h3{
        font-size:16px;
    }
    .altro3 p{
        font-size:14px;
    }
    .altro3 h3{
        font-size:16px;
    }
    .blue p{
        font-size:14px;
    }
    .blue h3{
        font-size:16px;
    }
}
@media(max-width:385px){
    .altro1 p{
        font-size:12px;
    }
    .altro1 h3{
        font-size:14px;
    }
    .altro2 p{
        font-size:12px;
    }
    .altro2 h3{
        font-size:14px;
    }
    .altro3 p{
        font-size:12px;
    }
    .altro3 h3{
        font-size:14px;
    }
    .blue p{
        font-size:12px;
    }
    .blue h3{
        font-size:14px;
    }
}
@media(max-width:325px){
    .altro1 p{
        font-size:12px;
    }
    .altro1 h3{
        font-size:14px;
    }
    .altro2 p{
        font-size:12px;
    }
    .altro2 h3{
        font-size:14px;
    }
    .altro3 p{
        font-size:12px;
    }
    .altro3 h3{
        font-size:14px;
    }
    .blue p{
        font-size:12px;
    }
    .blue h3{
        font-size:14px;
    }
}
/*/////////////////////////////////////////////TEAMBILD/////////////////////////////////////////////////////////////////////////*/
.teamcontainer{
    display:flex;
    justify-content: center;
    align-items:center;
    background:white;
    position: relative;
    background: #000116;
    width: 800px;
    min-height: 500px;
    margin: 20px;
    margin-left: 23.5%;
    overflow: hidden;
    border-radius: 10px;

}
.teamcontainer img{
    position: relative;
    width:100%;
}
.Bewerbungsschrift p{
    font-size:18px;
    color:black;
    line-height:25px;
    font-weight:400;
    text-align:center;
}
.Bewerbungsschrift a{
    color:darkred;
}
@media(max-width:2560px){
    .teamcontainer{
        margin-left:auto;
        margin-right:auto;
    }
}
@media(max-width:2100px){
    .teamcontainer{
        margin-left:auto;
        margin-right:auto;
    }
}
@media(max-width:800px){
    .teamcontainer{
        width:600px;
        min-height:300px;
    }
}
@media(max-width:500px){
    .teamcontainer{
        width:300px;
        min-height:150px;
    }

}
/*////////////////////////////////////////TEAMSEITE//////////////////////////////////////////////////////*/




