﻿html, body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
}

body {
    display: grid;
    grid-template-areas:
        "topBar"
        "content"
        "footer";
    grid-template-rows: auto 1fr auto;
    height: 100vh;
}

main {
    grid-area: content;
}

.container {
    margin: 0 5%;
    width: 90%;
}

@media only screen and (min-width: 768px) {
    .container {
        margin-left: auto;
        margin-right: auto;
        width: 1000px;
    }
}


h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
    word-break: break-word;
}

h1.light, h2.light, h3.light, h4.light {
    font-weight: 300;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

h1.title {
    font-size: 42px;
}



@media only screen and (min-width: 768px) {
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 28px;
    }
    h4 {
        font-size: 18px;
    }
    h1.title {
        font-size: 58px;
    }

}

a {
    color: inherit;
    text-decoration: underline;
}

label {
    font-size: 13px;
}

.top-bar {
    display: flex;
    padding: 10px 0;
    justify-content: center;
    grid-area: topBar;
}

.privat .top-bar {
    background: #F7F7F7;
}

.business .top-bar {
    background: #1a1a1a;
}


.top-bar-content {
    align-items: center;
    width: 90%
}

@media (min-width: 768px) {

    .top-bar-content {
    }
}




.btn {
    align-items: center;
    background: black;
    border: 0;
    border-radius: 25px;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.25);
    color: white;
    display: inline-flex;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    height: 50px;
    justify-content: center;
    min-width: 8.4375rem;
    padding: 11px 20px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.4s ease;
    white-space: nowrap;
}

    .btn:hover {
        background: #444;
        color: white;
        cursor: pointer;
    }

    .btn.large {
        height: 50px;
        min-width: 230px;
    }

    .btn.medium {
        height: 40px;
    }

    .btn.small {
        height: 30px;
        padding: 6px 15px;
    }

    

    .btn:disabled, .btn:disabled:hover {
        background-color: #EDEBE6;
        border-color: #EDEBE6;
        cursor: not-allowed;
    }

    .btn.error {
        background-color: #cf3b27;
        border-color: #cf3b27;
    }

        .btn.error:hover {
            background-color: #ff624c;
            border-color: #ff624c;
        }

    .btn.success {
        background-color: #699141;
        border-color: #699141;
    }

        .btn.success:hover {
            background-color: #91bf63;
            border-color: #91bf63;
        }

button.tertiary, button.secondary, button.primaryOutlined, button, button.primary {
    align-items: center;
    border: 0;
    border-radius: 25px;
    color: white;
    display: inline-flex;
    font-family: "Roboto", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    height: 50px;
    justify-content: center;
    min-width: 8.4375rem;
    padding: 11px 20px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

    button:focus, button:focus-visible {
        outline: none;
    }

    button:hover {
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    }

    button.medium {
        height: 40px;
    }

    button.small {
        height: 30px;
        font-size: 0.875rem;
        font-weight: 700;
    }

    button, button.primary {
        background: #1a1a1a;
        color: #fff;
    }

        button:active, button.primary:active {
            background: #666;
        }

        button:disabled, button.primary:disabled {
            background: #e5e5e5;
            color: #999999;
            cursor: not-allowed;
        }

            button:disabled:hover, button.primary:disabled:hover {
                box-shadow: none;
            }

        button.primaryOutlined {
            background: #fff;
            border: 1px solid black;
            border-style: inset;
            color: #000;
        }

            button.primaryOutlined:active {
                background: #B0B0B0;
            }

            button.primaryOutlined:disabled {
                background: #fff;
                border-color: #999;
                color: #999999;
                cursor: not-allowed;
            }

                button.primaryOutlined:disabled:hover {
                    box-shadow: none;
                }

        button.secondary {
            background: #ED6B06;
            color: #000;
        }

            button.secondary:active {
                background: #F58C49;
            }

            button.secondary:disabled {
                background: #e5e5e5;
                color: #999999;
                cursor: not-allowed;
            }

                button.secondary:disabled:hover {
                    box-shadow: none;
                }

        button.tertiary {
            background: #fff;
            color: #000;
        }

            button.tertiary:active {
                background: #d4d4d4;
            }

            button.tertiary:disabled {
                background: #e5e5e5;
                color: #999999;
                cursor: not-allowed;
            }

                button.tertiary:disabled:hover {
                    box-shadow: none;
                }

.formControlInputWrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

    .formControlInputWrapper label {
        background: white;
        color: rgb(117, 117, 117);
        cursor: text;
        font-size: 15px;
        left: 12px;
        padding: 0 2px;
        position: absolute;
        top: 12px;
        z-index: 1000;
        transition: all 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
    }

.active label, .hasContent label {
    cursor: default;
    font-size: 12px;
    top: -8px;
}

.active .inputWrapper, .active .inputWrapper:hover {
    border: 1px solid #2ac3f5;
}

.inputWrapper {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.23);
    border-radius: 4px;
    display: inline-flex;
}

    .inputWrapper:hover {
        border: 1px solid rgb(0, 0, 0);
    }

    .inputWrapper input {
        border-radius: 4px;
        padding: 8.5px 0px 8.5px 14px;
        outline: 0;
        align-items: center;
        border: 0;
        color: rgba(0, 0, 0, 0.87);
        font-weight: 400;
        font-size: 15px;
        letter-spacing: 0.00938em;
        line-height: 1.4375em;
        position: relative;
    }

    .inputWrapper .inputIcon {
        align-items: center;
        color: rgb(117, 117, 117);
        display: flex;
        margin-left: 12px;
        margin-right: 12px;
    }

.inputHelper {
    color: #db1515;
    font-size: 0.75rem;
    margin: 4px 14px 0;
}

/*input[type="text"]*/
input.form-control {
    border: 1px solid #666;
    border-radius: 6px;
    height: 3.125rem;
    line-height: 3.125rem;
    font-size: inherit;
}

    .form-control:hover {
        border-color: #000;
    }

    .form-control:focus, input.form-control:focus-visible {
        border-color: #1976D2;
        box-shadow: none;
        outline: 0;
    }

.frontend-feedback-invalid {
    color: red;
    font-size: 12px;
}




.flexRow {
    display: flex;
    flex-direction: row;
}

.flexColumn {
    display: flex;
    flex-direction: column;
}

.justifyContentCenter {
    justify-content: center;
}

.justifyContentSpaceBetween {
    justify-content: space-between;
}

.justifyContentSpaceAround {
    justify-content: space-around;
}

.justifyItemsCenter {
    justify-items: center;
}

.justifySelfCenter {
    justify-self: center;
}

.alignItemsCenter {
    align-items: center;
}

.textAlignCenter {
    text-align: center;
}






.gap-4 {
    gap: 4px;
}


.gap-8 {
    gap: 8px;
}


.gap-16 {
    gap: 16px;
}

.gap-32 {
    gap: 32px;
}

.gap-64 {
    gap: 64px;
}


.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-64 {
    margin-top: 64px;
}


.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-64 {
    margin-bottom: 64px;
}






.info-container {
    background: white;
    box-shadow: 0 5px 10px #999;
    display: inline-block;
    margin: 0 0 20px 0;
    padding: 0px 30px;
}



#hero-image-top {
    
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.privat #hero-image-top {
    
    background-image: url("../../images/hero/hero_consumer.jpg");
    
}

.business #hero-image-top {
    background-image: url("../../images/hero/hero_business.jpg");
}

@media only screen and (min-width: 768px) {
    #hero-image-top {
        min-height: 440px;
    }
}

.hero-content {
    padding: 32px 0;
}

@media only screen and (min-width: 768px) {
    .hero-content {
        padding: 64px 0;
    }
}

.footer {
    background: #f4f4f4;
    background-size: cover;
    background-image: url("../../images/3WatermarkDesktop.svg");
    min-height: 300px;
    display: flex;
    grid-area: footer;
}

.footerBottom {
    display: flex;
}

.footerInfo {
    border-top: 1px solid rgba(112, 112, 112, 0.8);
    color: #707070;
    font-size: 11px;
    padding: 16px 0;
}

.social-bar {
    display: flex;
    align-self: end;
}

.social-bar svg {
    height: 26px;
    width: 26px;
    fill: gray;
}

.social-bar ul{
    list-style: none;
}

.social-bar ul li {
    display: inline;
    margin-left: 16px;
}

.social-bar a {
    text-decoration: none;
}

address {
    font-style: normal;
}