@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Light.ttf") format("truetype");
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #F2F2F2;
    font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #373737;
}

.container {
    max-width: 900px;
    margin-top: 50px;
    margin-bottom: 50px;
}

h1, h2, h3, h4 {
    font-weight: 300;
}

h4 {
    font-size: 12pt;
}

.edur-card {
    background-color: #F2F2F2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

.edur-card-body {
    padding-top: 0;
}

.card-title {
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
}

.edur-main-card-header {
    width: 100%;
    height: 380px;
    background-image: url(https://pumps.snr-info.com/assets/epi-cloud-api-frontend/EDUR_Jobs_rechts.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.edur-main-card-header-title {
    background-color: #006283;
    padding: 10px 20px;
    display: block;
    color: white;
    font-size: 2rem;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    position: absolute;
    bottom: 20px;
}

.edur-content-columns {
    display: flex;
    gap: 30px;
}


@media (max-width: 768px) {
    .edur-content-columns {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
}

.edur-content-left {
    flex: 2;
}

.edur-content-right {
    flex: 1;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}
@media(max-width: 768px) {
    .edur-content-right {
        border-left: none;
        padding-left: 0;
        padding-top: 20px;
        border-top: 1px solid #ddd;
    }
}

.edur-pump-infos {
    display: table;
}

.edur-pump-info-row {
    display: table-row;
}

.edur-pump-info-row-title {
    min-width: 150px;
    font-weight: bold;
}

.edur-pump-info-row div {
    display: table-cell;
}

.edur-pump-documents {
    margin-top: 25px;
}

.edur-pump-documents h2 {
    font-size: 28px;
}

.edur-pump-document-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 20px;
    gap: 10px;
}

@media (max-width: 768px) {
    .edur-pump-document-items {
        grid-template-columns: 1fr;
    }
}


.edur-pump-document-item {
    background-color: #006283;
    color: white;
    border: 0;
    border-radius: 5px;
    padding: 13px;
    width: 100%;
}

.edur-card-footer {
    background-color: inherit;
    border-color: #ddd;
    padding: 20px 10px 10px 10px;
    margin: 15px;
    text-align: center;
    font-size: 9pt;
}

.edur-card-footer a {
    color: inherit;
}

.edur-img-lang {
    height: 18px;
}

.edur-contact {
    margin-top: 15px;
}

.edur-contact-button {
    background-color: #7B7C7E;
    color: white;
    padding: 15px 20px;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
    border: 0;
    border-radius: 5px;
}
.edur-contact-button-pipe {
    padding-left: 12px;
    padding-right: 10px;
}

.edur-contact-button .bi {
    font-size: 14pt;
}

.edur-button-small {
    background-color: #006283;
    color: white;
    padding: 7px 15px;
    text-align: center;
    border: 0;
    border-radius: 5px;

}