@font-face {
    font-family: 'proza_libre';
    src: url('fonts/ProzaLibre-Medium.woff2') format('woff2'),
    url('fonts/ProzaLibre-Medium.woff') format('woff'),
    url('fonts/ProzaLibre-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'proza_libre';
    src: url('fonts/ProzaLibre-Regular.woff2') format('woff2'),
    url('fonts/ProzaLibre-Regular.woff') format('woff'),
    url('fonts/ProzaLibre-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
body {
    background: #ffffff;
    width: 100%;
    font-family: "proza_libre", serif;
    margin: 0;
    position: relative;
    color: #4B0102;
}
.o-hidden {
    overflow: hidden;
}
.container {
    max-width: 2500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    z-index: 1;
}
.background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.wrapper {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
}
.logo {
    margin: 0 auto 100px;
    height: auto;
    width: 40px;
    display: block;
    padding-top: 50px;
}
.logotyp {
    width: 100%;
    height: auto;
    max-width: 80vw;
}
.content__wrapper {
    position: relative;
    max-width: 100%;
    margin: 0;
    background: transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.row {
    display: flex;
    align-content: center;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
    gap: 80px;
    justify-content: center;
}
.contact {
    margin-top: 100px;
    padding-bottom: 50px;
}
.contact_headline {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: -0.029em;
    text-align: center;
}
.contact_link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: .2s ease-in-out;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.521px;
    &:hover {
        text-decoration-color: inherit;
    }
}



@media (max-width: 1660px){
    h1 {
        font-size: 90px;
        max-width: 1250px;
    }
    .contact {
        margin-top: 60px;
    }
}
@media (max-width: 950px){
    .contact {
        margin-top: 40px;
    }
    .contact_headline {
        font-size: 3vw;
    }
    .row {
        gap: 40px;
    }
}
@media (max-width: 600px){
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row {
        padding-top: 15px;
    }
    .logo {
        padding-top: 0;
        margin-bottom: 40px;
        width: 30px;
    }
    .col {
        flex-basis: 100%;
    }
    .contact_headline {
        font-size: 20px;
    }
    .logotyp {
        width: 100%;
        height: auto;
        max-width: calc(100vw - 30px);
    }
}
@media (max-width: 460px){
    .row {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        gap: 10px;
        text-align: center;
    }
    .contact {
        margin-top: 25px;
    }
}