﻿/*Generell*/
html, body, div {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    src: url(../../assets/fonts/Montserrat-Regular.ttf) format('truetype');
}

.text {
    color: #DFE4EC;
    font-family: Montserrat;
}

.subtext {
    color: #989A9E;
    font-family: Montserrat;
}

a {
    text-decoration: none;
}

.link {
    color: #DFE4EC;
    font-family: Montserrat;
    transition: 0.7s ease all;
    text-decoration: none;
    margin-right: 25px;
    padding: 0;
}

    .link:hover {
        color: #5482DB;
        transform: scale(1.02);
        transition: 0.5s ease all;
        cursor: grab;
    }

.mlink {
    color: #DFE4EC;
    font-family: Montserrat;
    transition: 0.7s ease all;
    text-decoration: none !important;
    margin-right: 25px;
    padding: 0;
    display: block;
    margin-bottom: 3%;
}

    .mlink i {
        color: white;
    }

    .mlink:first-child {
        margin-top: 5%;
    }

    .mlink:hover {
        color: #5482DB;
        transform: scale(1.02);
        transition: 0.5s ease all;
        cursor: grab;
    }

/*Header*/
/*Generell*/
header {
    background-color: #1A1A1B;
    padding: 1.3% 0 1.3% 0;
}

#header_logo {
    margin-left: 15px;
}

#logo_text p {
    margin: 0;
    padding: 0;
}

/*Main*/
#wrapper_introduction {
    background-color: #2643A5;
    padding: 0 0 1.3% 0;
    margin: 0 0 2% 0;
    text-align: center;
}

#wrapper_text {
    width: 80%;
    margin: 0 auto;
}

._link {
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    padding: 0.5%;
    background-color: #1c3ca5;
}

.brhelper {
    display: none;
}

    #kontakt_link:hover {
        box-shadow: 2px 2px 15px #1A1A1B;
    }

#products{
    overflow: auto;
}

.categorie {
    text-align:center;
    color: #1A1A1B;
    padding-top: 0 !important;
}
.product {
    border: 2px solid #00265D;
    border-radius: 5px;
    width: 70%;
    overflow: auto;
    text-align: center;
    margin: 1% auto 2% auto;
}
.product:hover{
    box-shadow: 2px 2px 15px #222222;
    cursor: pointer;
}
    .product p {
        color: #24262e;
    }
    .product .productcaption {
        background-color: #092A9D;
        margin: 0 0 1% 0;
        padding: 1% 0;
        color: whitesmoke;
    }
.product img{
    float: right;
    max-width: 25%;
    max-height: 400px;
    margin: 3% 1% 3% 0;
}

.productinfo {
    width: 70%;
    text-align: center;
    float: left;
}

.features {
    width: 70%;
    text-align: center;
    float: left;
    background-color: #0243A2;
    border-radius: 0 10px 10px 0;
    border: 1px solid #347cff;
}
    .features:hover {
        box-shadow: 2px 2px 15px #1562D3;
    }

.features p{
    color: whitesmoke;
}

.feature {
    border-top: 1px solid #347cff;
    display: table;
    vertical-align: central;
    width:100%;
}
    .feature:hover {
        background-color: #4069EC;
    }
    .feature p:first-child {
        width: 40%;
        display: table-cell;
        vertical-align: middle;
        padding: 2% 1%;
        text-align: left;

    }

    .feature p:last-child{
        width: 56%;
        display: table-cell;
        vertical-align: middle;
        text-align: right;
        padding: 2% 1%;
    }


/*Footer*/
footer {
    background-color: #28292A;
    padding-top: 15px;
    padding-bottom: 15px;
    overflow: auto;
    text-align: center;
    color: #1F2123;
}

    footer p, a, i, span {
        color: #AAADAF;
    }

        footer p:first-child {
            margin-top: 0;
            padding-top: 0;
        }

        footer p:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            color: #6D7073;
        }


/*Handy und kleine Bildschirme*/
@media only screen and (min-width : 320px) and (max-width: 767px) {
    /*Texte*/
    .title {
        font-size: 1.1rem;
        margin: 0;
        padding: 0;
    }

    .subtitle {
        font-size: 0.9rem;
        margin: 0;
        padding: 0;
    }

    .caption {
        font-size: 1.0rem;
        margin: 0;
        padding-top: 2%;
        text-decoration: underline;
    }

    .text-size-big {
        font-size: 1rem;
    }

    .text-size-normal {
        font-size: 0.8rem;
    }

    .text-size-small {
        font-size: 0.7rem;
    }

    /*Header*/
    /*Header*/
    nav {
        position: fixed;
        top: 0px;
        z-index: 10000;
    }

        nav.mobile {
            width: 100%;
            margin: 0;
            padding: 0;
            background-color: rgba(7, 6, 6, 0.91);
        }

            nav.mobile #links {
                display: none;
                text-align: center;
            }

                nav.mobile #links a {
                    margin: 0 !important;
                    padding-bottom: 6%;
                    box-sizing: padding-box;
                }

            nav.mobile #navicon {
                font-size: 1.7rem;
                cursor: pointer;
                clear: both;
                position: fixed;
                right: 15px;
                top: 12px;
                z-index: 10001;
            }

                nav.mobile #navicon:hover {
                    color: #5482DB;
                }

        nav.desktop {
            display: none;
        }

    #logo {
        width: 40px;
        height: auto;
        float: left;
        margin: 0;
        padding: 0;
        padding-right: 3px;
    }

    #header_logo {
        width: 80%;
    }

    .brhelper {
        display: inline-block;
    }
    
    .product {
        width: 95%;
    }

        .product img {
            max-width: 20%;
            max-height: 150px;
        }

    .features {
        width: 99%;
        border-radius: 0;
    }
}

/*Tablet*/
@media only screen and (min-width : 768px) and (max-width: 1023px) {
    /*Texte*/
    .title {
        font-size: 1.9rem;
        margin: 0;
        padding: 0;
    }

    .subtitle {
        font-size: 1.64rem;
        margin: 0;
        padding: 0;
    }

    .caption {
        font-size: 1.4rem;
        margin: 0;
        padding-top: 2%;
        text-decoration: underline;
    }

    .text-size-big {
        font-size: 1.3rem;
    }

    .text-size-normal {
        font-size: 1.1rem;
    }

    .text-size-small {
        font-size: 0.95rem;
    }

    /*Header*/
    nav {
        position: fixed;
        top: 0px;
        z-index: 10000;
    }

        nav.mobile {
            width: 100%;
            margin: 0;
            padding: 0;
            background-color: rgba(7, 6, 6, 0.91);
        }

            nav.mobile #links {
                display: none;
                text-align: center;
            }

                nav.mobile #links a {
                    margin: 0 !important;
                }

            nav.mobile #navicon {
                font-size: 2rem;
                cursor: pointer;
                clear: both;
                position: fixed;
                right: 30px;
                top: 28px;
                z-index: 10001;
            }

                nav.mobile #navicon:hover {
                    color: #5482DB;
                }

        nav.desktop {
            display: none;
        }

    #logo {
        width: 75px;
        height: auto;
        float: left;
        margin: 0;
        padding: 0;
    }

    #header_logo {
        width: 80%;
    }

    /*Main*/
    .product {
        width: 80%;
    }

    .product img {
        max-width: 25%;
        max-height: 340px;
    }

    .features {
        width: 70%;
    }
}

/*Tablet Quer*/
@media screen and (min-width: 1024px) and (max-width: 1599px) {
    /*Texte*/
    .title {
        font-size: 2.1rem;
        margin: 0;
        padding: 0;
    }

    .subtitle {
        font-size: 1.6rem;
        margin: 0;
        padding: 0;
    }

    .caption {
        font-size: 1.6rem;
        margin: 0;
        padding-top: 2%;
        text-decoration: underline;
    }

    .text-size-big {
        font-size: 1.5rem;
    }

    .text-size-normal {
        font-size: 1.3rem;
    }

    .text-size-small {
        font-size: 1.1rem;
    }

    /*Header ANFANG*/
    nav {
        position: fixed;
        top: 0px;
        z-index: 10000;
    }

        nav.mobile {
            width: 100%;
            margin: 0;
            padding: 0;
            background-color: rgba(7, 6, 6, 0.91);
        }

            nav.mobile #links {
                display: none;
                text-align: center;
            }

                nav.mobile #links a {
                    margin: 0 !important;
                }

            nav.mobile #navicon {
                font-size: 2rem;
                cursor: pointer;
                clear: both;
                position: fixed;
                right: 30px;
                top: 30px;
                z-index: 10001;
            }

                nav.mobile #navicon:hover {
                    color: #5482DB;
                }

        nav.desktop {
            display: none;
        }

    #logo {
        width: 80px;
        height: auto;
        float: left;
        margin: 0;
        padding: 0;
    }

    #header_logo {
        width: 80%;
    }
    /*Header ENDE*/
    /*Main*/
    .product img {
        float: right;
        max-width: 25%;
        max-height: 380px;
        margin: 3% 1% 3% 0;
    }
}

/*Dekstop*/
@media screen and (min-width: 1600px) and (max-width: 1919px) {
    /*Texte*/
    .title {
        font-size: 2.3rem;
        margin: 0;
        padding: 0;
    }

    .subtitle {
        font-size: 1.8rem;
        margin: 0;
        padding: 0;
    }

    .caption {
        font-size: 1.8rem;
        margin: 0;
        padding-top: 2%;
        text-decoration: underline;
    }

    .text-size-big {
        font-size: 1.5rem;
    }

    .text-size-normal {
        font-size: 1.3rem;
    }

    .text-size-small {
        font-size: 1.1rem;
    }

    /*Header ANFANG*/
    nav.desktop {
        clear: both;
        position: absolute;
        right: 30px;
        top: 35px;
        margin: 0;
        padding: 0;
    }

    nav.mobile {
        display: none;
    }


    #logo {
        width: 90px;
        height: auto;
        float: left;
        margin: 0;
        padding: 0;
    }

    #header_logo {
        width: 50%;
    }
    /*Header ENDE*/
    .product img {
        float: right;
        max-width: 22%;
        max-height: 350px;
        margin: 3% 1% 3% 0;
    }
}

/*Dekstop Big*/
@media screen and (min-width: 1920px) {
    /*Texte*/
    .title {
        font-size: 2.5rem;
        margin: 0;
        padding: 0;
    }

    .subtitle {
        font-size: 2rem;
        margin: 0;
        padding: 0;
    }

    .caption {
        font-size: 2rem;
        margin: 0;
        padding-top: 2%;
        text-decoration: underline;
    }

    .text-size-big {
        font-size: 1.7rem;
    }

    .text-size-normal {
        font-size: 1.4rem;
    }

    .text-size-small {
        font-size: 1.2rem;
    }

    /*Header Anfang*/
    nav.desktop {
        clear: both;
        position: absolute;
        right: 30px;
        top: 40px;
        margin: 0;
        padding: 0;
    }

    nav.mobile {
        display: none;
    }

    #logo {
        width: 90px;
        height: auto;
        float: left;
        margin: 0;
        padding: 0;
    }

    #header_logo {
        width: 50%;
    }
    /*Header Ende*/
}
