
.karrier_header{
    padding:0;
    margin:0;
    background-color: #002854;
    color: white;
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
    border-bottom-left-radius: 80px;
}
.karrier_header_left{
    width: 50%;
    min-width: 300px;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
    float: none;
}
.karrier_header_right{
    width: 50%;
    min-width: 300px;
    height: 400px;
    float: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    box-sizing: border-box;
}
.karrier_header_right_content{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: flex-end;
}
.karrier_banner{
    width: 100%;
    height: 300px;
    border-top-left-radius: 80px;
    overflow: hidden;
    object-fit: cover;
    object-position: right;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
    max-width: 100%;
    max-height: 100%;
    border-top:10px solid #0072bc;
}
.karrier_title{
    padding:0 20px 20px 20px;
}
.karrier_title p{
    font-size: 1.3em;
}
.karrier_title .desc_text{
    font-size: 1.2em;
    margin-top: 10px;
    color: #ccc;
}
h2{
    font-size: 3.5em;
    color: white;
    text-transform: uppercase;
    margin:100px 0 0 0;
}
.email{
    width: fit-content;
    padding:20px 30px;
    font-size: 1.2em;
    background-color:#0072bc;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin:auto;
    text-align: center;
}
.email p{
    text-transform: uppercase;
    font-family: avenir_heavy;
    font-size: 1.2em;
    display: flex;
    margin:0 0 10px 0;
}
.email a{
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    display: flex;
}
.karrier_positions_header{
    margin:30px 20px 0 20px;;
}
.karrier_positions{
    display: flex;
    margin-top:50px;
}
.karrier_positions h4{
    display: flex;
    background-color: #002854;
    padding:20px 20px 20px 30px;;
    color:#FFF;
    text-transform: uppercase;
    font-size: 1.2em;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin:0;
}
.position_desc{
    display:flex;

}
.position p{
    padding:0px 20px;
}
.side_title{
    display: flex;
    background-color: #0072bc;
    color:#FFF;
    padding:10px 30px;
    text-transform: uppercase;
    width:fit-content;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    margin:20px 0;
}
.position_body{
    display:flex;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    flex-flow: column nowrap;
    padding:20px 0;
    font-size: 1.1em;
    color: #333;
    padding-right:20px;
}
.parking_desc{
    display: flex; 
    justify-content: center;
    margin: 20px 0 0 0;
}
.parking_desc_text{
    width: 80%;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 30px;
    font-size: 1.1em;
    color: #333;
    text-align:center;
}
/* Reszponzív: kisebb képernyőn egymás alá kerülnek */
@media (max-width: 900px) {
    .karrier_header {
        flex-direction: column;
        min-height: unset;
    }
    .karrier_header_left,
    .karrier_header_right {
        width: 100%;
        min-width: unset;
        height: auto;
    }
    .karrier_banner {
        height: 250px;
        border-top-left-radius: 40px;
    }
    .inner_main{
        padding:  0 0 0 0;
    }
}