﻿:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 16px;
    font-size: 12px;
    font-family: "Kanchenjunga", sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #C5DCD7;
}

header {
    padding: 1rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

article {
    margin: 0;
    display: flex;
    justify-content: space-between;
}

footer {
    padding: 1rem;
    display: flex;
    justify-content: space-between;

}

h5 {
    font-size: 11px;
    line-height: 16px;
    margin: 0 0 10px;
}

.text {
    width: 60%;
    font-size: 10px;
    color: #00664F;
}

.text a {
    color: #00664F !important;
}

.kontakt {
    width: 270px;
    display: flex;
    justify-content: space-between;
}

.kontakt p {
    font-weight: bold;
    text-align: right;
    margin: 0;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 0 0 6px;
    font-size: 13px;
    line-height: 18px;
    text-align: left;
    color: #00664F;
}

h2 {
    font-size: 13px;
    width: 200px;
    line-height: 18px;
}

.padding {
    padding: 1rem 0 0;
}

.img {
    width: 121px;
}

.logo {
    display: flex;
    gap: 30px;
}

h3 {
    font-size: 19px;
    color: #00664F;
    text-align: right;
    line-height: 1.25rem;
}

h3 small {
    font-size: 13px;
    display: block;
}

h3 span {
    font-size: 23px;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 1rem;
    list-style: none;
}

ul li {
    padding-left: 9px;
    margin: 0 0 5px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 15px;
    text-indent: -9px;
}

.left {
    width: 37%;
    background: #FFF;
    padding: 12px 1rem;
}

.mid {
    width: 33%;
    background: #FFF;
    padding: 12px;
}

.right {
    width: 29%;
    background: #FFF;
    padding: 12px 12px 0;
}

.box {
    border-bottom: 4px solid #C5DCD7;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.logo-partner {
    margin: 0 0 0 10px;
}

@media all and (max-width:749px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        hyphens: auto;

    }


    br {
        display: none;
    }

    footer br {
        display: inline;
    }
}

@media all and (max-width:660px) {

    .left,
    .mid,
    .right {
        width: 100%;
    }

    article {
        flex-direction: column;
    }

    header {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    footer {
        flex-direction: column;
    }

    .text {
        width: auto;
    }

    .kontakt {
        width: 290px;
        margin: 0 auto;
    }
}