@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Cabin';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/cabin-v34-latin-regular.eot');
    src: url('../fonts/cabin-v34-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/cabin-v34-latin-regular.woff2') format('woff2'),
        url('../fonts/cabin-v34-latin-regular.woff') format('woff'),
        url('../fonts/cabin-v34-latin-regular.ttf') format('truetype'),
        url('../fonts/cabin-v34-latin-regular.svg#Cabin') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Cabin';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/cabin-v34-latin-500.eot');
    src: url('../fonts/cabin-v34-latin-500.eot?#iefix') format('embedded-opentype'),
        url('../fonts/cabin-v34-latin-500.woff2') format('woff2'),
        url('../fonts/cabin-v34-latin-500.woff') format('woff'),
        url('../fonts/cabin-v34-latin-500.ttf') format('truetype'),
        url('../fonts/cabin-v34-latin-500.svg#Cabin') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Cabin';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/cabin-v34-latin-600.eot');
    src: url('../fonts/cabin-v34-latin-600.eot?#iefix') format('embedded-opentype'),
        url('../fonts/cabin-v34-latin-600.woff2') format('woff2'),
        url('../fonts/cabin-v34-latin-600.woff') format('woff'),
        url('../fonts/cabin-v34-latin-600.ttf') format('truetype'),
        url('../fonts/cabin-v34-latin-600.svg#Cabin') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Cabin';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/cabin-v34-latin-700.eot');
    src: url('../fonts/cabin-v34-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/cabin-v34-latin-700.woff2') format('woff2'),
        url('../fonts/cabin-v34-latin-700.woff') format('woff'),
        url('../fonts/cabin-v34-latin-700.ttf') format('truetype'),
        url('../fonts/cabin-v34-latin-700.svg#Cabin') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #576167;
    font-family: "Cabin", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 1160px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: rgb(87, 97, 103);
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    color: #e6010d;
    border-bottom: 1px solid rgba(230, 1, 13, 1);
}

a.no_hover:hover {
    text-decoration: none;
    border-bottom: none;
}

p {
    margin: 0 0 16px;
    text-align: justify;
    hyphens: auto;
}

span {
    white-space: nowrap;
}

strong {
    font-weight: 600;
}

.center {
    text-align: center
}

h1, h2 {
    text-transform: uppercase;
    color: #e6010d;
    font-size: 19px;
}

h1 {
    margin: 15px 0 0;
}

h1 small {
    font-size: 16px;
}

h2 {
    letter-spacing: 1px;
    margin: 0;
    font-weight: normal;
}

hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, rgba(230, 1, 13, 1), rgba(230, 1, 13, 0));
    margin: 8px 0;
}

ul {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

ul li {
    padding: 0 0 6px 18px
}

ul li:before {
    content: "\25CF";
    float: left;
    margin-left: -18px;
    font-size: 10px;
    line-height: 2.2;
    color: #e6010d;
}

header {
    padding: 40px 80px;
}

.flex {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 12px;
}

.col {
    width: 33%;
    background: #f4f4f4;
    padding: 35px;
}

.bild_top {
    width: 67%;
    background: url(../images/industriegebaeude.jpg) no-repeat center center;
    background-size: cover;
}

.bild_unten {
    width: 67%;
    background: url(../images/designerstuehle.jpg) no-repeat center center;
    background-size: cover;
}

.bild_top img, .bild_unten img {
    display: none;
}

.bewerberbutton {
    margin: 45px auto 40px;
    text-align: center;
}

.bewerberbutton a {
    background: #e6010d;
    color: #fff;
    padding: 20px 60px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    border: 1px solid #e6010d;
}

.bewerberbutton a:hover {
    background: #ddd;
    color: rgba(230, 1, 13, 1);
    border: 1px solid rgb(87, 97, 103);
    border-bottom: 1px solid rgba(230, 1, 13, 1);
    text-decoration: none;
}

.logo_unten {
    margin: 40px auto 0;
    display: block
}

 

@media only screen and (max-width: 1160px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    
    p {
        text-align: left;
    }
    
    .col {
        padding: 16px;
    }
}

@media only screen and (max-width: 950px) {
    h1 {
        text-align: center
    }
    header {
        padding: 16px;
        display: flex;
        justify-content: center;
    }
    
    .flex {
        flex-direction: column;
    }
    
    .col, .bild_top, .bild_unten {
        width: 100%;
    }

    .bild_top img, .bild_unten img {
    display: block;
}
}