.map {
    width: 100vw;
}

header {
    height: 70vh;
}

main {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    height: fit-content;
    padding: 0 0 5vh 0;
}

.kontakt-container {
    width: 100vw;
    height: fit-content;

    display: flex;
    justify-content: center;
}

.form-kontakt {
    background-color: #FAFAFA;
    width: 60vw;
    min-height: 60vh;
    height: fit-content;

    padding: 30px 0 30px 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-kontakt h1,
.map-container h1 {
    color: #57A7B3;

    font-size: 50px;
    text-align: center;
}

.form-kontakt div {
    width: 50%;
    height: 100%;
}

.field {
    position: relative;
    margin-bottom: 30px;
    width: 100% !important;
}

.field input,
textarea {
    width: 100%;

    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #57A7B3;
    background: none;

    padding: 10px 10px 5px 0;
    outline: none;

    resize: none;
}

label {
    position: absolute;
    pointer-events: none;
    top: 2px;
    transition: all .1s ease-in-out;
    font-size: 15px;
    opacity: .7;
    color: #57A7B3;
}

input:focus~label,
textarea:focus~label {
    top: -10px;
    font-size: 12px;
    transition: all .1s ease-in-out;
}


#contact-form button {
    background-color: transparent !important;
    border: 1px solid #57A7B3;
    color: #57A7B3;
    width: fit-content;
    padding: 10px 40px 10px 40px;
}

#contact-form button:hover {
    background-color: #57A7B3 !important;
    border: 1px solid #57A7B3;
    color: white;
    cursor: pointer;
}



.kontakt-info {
    background-color: #57A7B3;

    width: 18vw;
    padding: 40px 30px 40px 30px;
    height: 50vh;

    position: relative;
    transform: translate(30%, 25%);
}

.kontakt-info h2 {
    color: white;
}

.kontakt-info p {
    color: white;
    font-size: 14px;
}

.map-container {
    display: none;
}

.buero-container {
    width: 100vw;
    height: 60vh;
    padding: 35vh 0 5vh 0;

    display: flex;
    flex-direction: column;
}

.buero-container hr{
    margin: 0 0 30px 0;
    width: 0vw;

    position: absolute;
    right: 0;
    transform: translateY(-6vh);
    background-color: #57A7B3;
    border: 0;
    height: 2px;
}

.buero-img {
    background-image: url('../img/buero.jpg');
    background-position: center 600px;
    background-size: cover;

    flex: 0;
    height: 100%;

    transition-duration: .6s;
}

.buero-container h1 {
    width: 40px;
    font-size: 120px;
    color: #57A7B3;
    position: absolute;
    left: 5vw;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 3px #57A7B3;
}