* {
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
}

html {
    min-height: 100vh;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    width: 100%;
    padding: 27px 0;

    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

header div.title {
    font-size: 36px;
    line-height: 42px;

    color: #000000;
}

header img.logo {
    float: left;
    margin-right: 14px;
    margin-left: 43px;
}

div.description-wrapper {
    width: 100%;
    height: fit-content;
    padding: 50px 0;

    /* Background */
    background: url(../img/hintergrund.png);
    background-repeat: no-repeat;
    background-size: cover;

    /* Flexbox */
    display: flex;
    flex-direction: row;
    justify-content: center;
}

div.description {
    width: 947px;
    /* height: 147px; */
    padding: 0 20px;

    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 34px;
    line-height: 54px;

    text-align: center;

    color: #ffffff;
}

@media screen and (max-width: 831px) {
    div.description {
        font-size: 4vw;
        line-height: 6vw;
    }
    header div.title {
        font-size: 4vw;
        line-height: 5vw;
    }
    header img.logo {
        font-size: 5vw;
        line-height: 6vw;
        width: 5vw;
        margin-right: 2vw;
    }
}

div.center-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

div.search-wrapper {
    width: 100%;
    max-width: 813px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    margin: 83px 0;
}

div.search-wrapper input {
    width: 100%;
    padding: 10px;
    margin: 0 20px;
    border: 1px solid #78d2ae;
    box-sizing: border-box;
    border-radius: 5px;

    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;

    display: flex;
    align-items: center;
}

div.hospital-wrapper {
    padding: 0 35px;
    max-width: 762px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 35px 33px;
    flex-direction: row;
}

@media screen and (max-width: 831px) {
    div.hospital-wrapper {
        justify-content: center;
    }
}

div.hospital-box {
    flex-basis: 30%;
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    border-radius: 5px;

    min-width: 232px;
    opacity: 0.4;
}

div.hospital-box.hospital-active {
    opacity: 1;

    cursor: pointer;
}

div.hospital-box div.hospital-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #f5f5f5;

    height: 67px;

    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    /* identical to box height, or 137% */

    display: flex;
    align-items: center;
    text-align: center;

    color: #000000;
}

div.hospital-box div.hospital-logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 127px;
    align-items: center;
}

div.hospital-box div.hospital-logo img {
    max-width: 170px;
    max-height: 85px;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;

    margin-top: 128px;

    background: url(../img/hintergrund.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}

.footer-logo {
    position: absolute;
    left: -330px;
    width: fit-content !important;
    cursor: pointer;
}

.footer-logo img {
    width: 178px;
}

@media screen and (max-width: 1461px) {
    .footer-logo {
        position: unset !important;
        width: 100% !important;
        margin-bottom: 30px;
    }
}

footer > div {
    flex-direction: column;
}

footer > div.footer-data {
    width: 762px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 50px 20px;
    position: relative;
}

div.footer-data > div {
    font-size: 18px;
    letter-spacing: 0.8px;
    width: 381px;
}

div.footer-data a {
    color: #ffffff;
    text-decoration: none;
}
div.footer-data a:hover,
div.footer-data a:focus {
    color: #666;
    text-decoration: none;
}

div.footer-data p {
    margin: 0;
    line-height: 25px;
}

@media screen and (max-width: 831px) {
    div.footer-data > div {
        width: 100%;
        margin-bottom: 40px;

        padding: 0 0 40px 0;
        border-bottom: 1px solid #fff;
    }
}
