:root {
    --secondary-color: #818386;
    --button-color: #3B3636;
}

[data-theme="dark"] {
    --secondary-color: #818386;
    --button-color: #818386;
}

* {
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
    font-family: 'Montserrat';
}

body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    background-color: #505050;
}

.header {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 150vw;
    text-align: center;
    background: url("../img/header.jpg") center / cover;
    display: grid;
    place-items: center;
}
.header-imp{
    position: relative;
    width: 100%;
    height: 50%;
    max-height: 150vw;
    text-align: center;
    background: url("../img/header.jpg") center / cover;
    display: grid;
    place-items: center;
}
.nav-link{
    font-weight: 600;
    color:#fff;
}
.navbar-custom{
    background-color: rgba(62, 62, 62, 0.8);
    -webkit-backdrop-filter: blur(3px);
}
.impressum a{
    color:white;
}
.image-seperator {
    width: 100%;
    perspective: 2px;
    padding-top: 0;
}
.service-icon i{
    font-size: 5em !important;
    padding-bottom: .4em;
}

.separator-img {
    height: 100vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    display: flex;
}

.content-center{
    
    display: grid;
    place-items: center;
}
.navbar-toggler-icon{
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.seperator-title{
    font-size: 3em;
    font-weight: 900;
    color: #fff;
}
.color-white{
    color:#fff
}
.title img{
    height: 11em;
    max-width: 80vw;
}

.separator-img-wrapper {
    height: 400px;
    width: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

h1,
label,
button,
.description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1rem;
}

h1 {
    color: var(--h1-color);
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
    font-weight: 300;
}

.fa-paragraphs:before {
    font-weight: bold;
    content: '§';
}
.file-euro:after{
    font-family: 'Montserrat';
    font-weight: 800;
    position: relative;
    left: -1.2em;
    bottom: 0.2em;
    font-size: .5em;
    content: '€';
}
.file-euro{
    position: relative;
    left: 0.2em;
}

label,
.description {
    text-transform: uppercase;
    font-size: 0.625rem;
}

form {
    position: relative;
    margin-top: 2rem;
    padding: 1rem 0;
}

input,
textarea,
label {
    width: 100%;
    display: block;
}

p,
placeholder,
input,
textarea {
    font-family: 'Montserrat', sans-serif;
}

input::placeholder,
textarea::placeholder {
    color: var(--primary-color);
}

input,
textarea {
    color: var(--primary-color);
    font-weight: 500;
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    outline: none;
    background-color: transparent;
}

textarea {
    resize: none;
}

button {
    text-transform: uppercase;
    font-weight: 300;
    background: var(--button-color);
    color: white;
    width: 10rem;
    height: 2.25rem;
    border: none;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

input:hover,
textarea:hover,
button:hover {
    opacity: 0.5;
}

button:active {
    opacity: 0.8;
}


.description {
    margin-left: 1.25rem;
}

#error,
#success-msg {
    width: 40vw;
    margin: 0.125rem 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.separator {
    z-index: 3;
    margin-top: calc(5vw * -1);
    position: relative;
    top: 1px;
}

#success-msg {
    transition-delay: 3s;
}

@media only screen and (max-width: 950px) {
    h1 {
        font-size: 1.75rem;
    }

    p {
        font-size: 0.7rem;
    }

    input,
    textarea,
    button {
        font-size: 0.65rem;
    }

    .description {
        font-size: 0.3rem;
        margin-left: 0.4rem;
    }

    button {
        width: 7rem;
    }
    .separator-img{
        background-attachment: initial;
    }
}