/**
 * Copyright (C) 2021 SearchFor j.wyrwich@searchfor.eu
 * 
 * This file is part of SearchFor.
 * 
 * SearchFor can not be copied and/or distributed without the express
 * permission of SearchFor.
 * 
 * @author Jonathan Wyrwich
 * @company SearchFor
 * @copyright SearchFor
 * @date 23.03.2021
 * @version 1.0
*/
/* SearchFor General Settings*/
:root {
    --sf-blue-dark: #0d4677;
    --sf-blue: #105c9e;
    --sf-orange-dark:#8c6b0e;
    --sf-orange:#9e7910;
    --sf-purple-dark:#d60276;
    --sf-purple:#e6007e;
    --sf-red-dark: #770d0d;
    --sf-red: #9e1010;
    --sf-green-dark: #42a046;
    --sf-green: #4CAF50;
    --sf-white-grey:#f6f6f6;
    --sf-white:#fefefe;
    --sf-white-blue:#dbe2eb;
    --sf-dark-light-light: #555555;
    --sf-dark-light: #444444;
    --sf-dark: #333333;
    --sf-dark-dark: #222222;
    --sf-grey-light:#eeeeee;
    --sf-grey-dark: #b7b7b7;
    --sf-grey: #cccccc;
    --sf-black:#000000;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--sf-dark);
    text-align: left;
    background-color: var(--sf-white);
    width: 100%;
    height: 100%;
    float: left;
    min-width: 300px;
}

.logo{
    height: 70px;
    top: 30px;
    left: 30px;
    max-width: 100%;
    position: absolute;
    line-height: 70px;
    font-size: 60px;
    font-weight: 100;
    color: var(--sf-blue) !important;
    text-decoration: none !important;
}
.banner-img{
    margin: 0px auto;
    height: 400px;
    margin-top: 100px;
    display: block;
    max-width: 100%;
}
.maintance-title{
    text-align: center;
    font-size: 45px;
    font-weight: 400;
    margin-top: 20px;
}
.impressum{
    color: var(--sf-dark) !important;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.content[type="impressum"]{
    float: left;
    width: 80%;
    height: max-content;
    margin: 125px 10% 0px 10%;
}
.content[type="impressum"]>.title{
    font-size: 40px;
    color: var(--sf-blue);
    font-weight: 300;
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.content[type="impressum"]>.text{
    float: left;
    margin-left: 20px;
    width: calc(100% - 20px);
    margin-bottom: 20px;
    font-size: 18px;
}
.content[type="impressum"]>.text>.text{
    float: left;
    margin-left: 20px;
    width: calc(100% - 20px);
    margin-bottom: 20px;
    font-size: 18px;
}
.content[type="impressum"]>.text>.title{
    float: left;
    width: 100%;
    margin-bottom: 0px;
    color: var(--sf-dark);
    font-size: 20px;
    font-weight: 500;
}
.content[type="impressum"]>.text>.sf-title{
    margin-top: 15px;
    float: left;
    width: 100%;
    margin-bottom: 0px;
    font-size: 25px;
}
.content[type="impressum"]>.text>.sf{
    float: left;
    font-size: 25px;
    color: var(--sf-blue);
    font-weight: 100;
    margin-left: 10px;
    width: calc(100% - 10px);
}
.content[type="impressum"]>.text>.sf>a{
    font-size: 15px;
    color: var(--sf-dark);
    font-weight: 400;
}
@media only screen and (max-width: 950px) {
    .maintance-title{
        font-size: 32px;
    }
}
@media only screen and (max-width: 700px) {
    .logo{
        text-align: center;
        left: 0px;
        right: 0px;
        margin: 0px auto;
    }
    .banner-img{
        height: unset;
        width: 100%;
        margin-top: 150px;
    }
}
@media only screen and (max-width: 400px) {
    .maintance-title{
        font-size: 22px;
    }
}