@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Fira Sans Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fira-sans-condensed-v10-latin-regular.eot');
    src: url('../fonts/fira-sans-condensed-v10-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/fira-sans-condensed-v10-latin-regular.woff2') format('woff2'), url('../fonts/fira-sans-condensed-v10-latin-regular.woff') format('woff'), url('../fonts/fira-sans-condensed-v10-latin-regular.ttf') format('truetype'), url('../fonts/fira-sans-condensed-v10-latin-regular.svg#FiraSansCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Fira Sans Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/fira-sans-condensed-v10-latin-700.eot');
    src: url('../fonts/fira-sans-condensed-v10-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/fira-sans-condensed-v10-latin-700.woff2') format('woff2'), url('../fonts/fira-sans-condensed-v10-latin-700.woff') format('woff'), url('../fonts/fira-sans-condensed-v10-latin-700.ttf') format('truetype'), url('../fonts/fira-sans-condensed-v10-latin-700.svg#FiraSansCondensed') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #6A6D70;
    font-family: 'Fira Sans Condensed', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 4px #AE7F59;
}

h1 {
    font-size: 48px;
    line-height: 0.8;
    margin: 0;
    background: rgb(175, 129, 91);
    background: linear-gradient(90deg, rgba(175, 129, 91, 1) 0%, rgba(187, 148, 110, 1) 29%, rgba(192, 156, 118, 1) 50%, rgba(192, 156, 118, 1) 74%, rgba(175, 129, 91, 1) 100%);
    color: #fff;
    padding: 20px 2.187rem;
    font-weight: 700
}

h1 span {
    font-size: 32px;
    font-weight: normal;
}

h1 small {
    font-size: 32px;
}

.klein {
    font-size: 24px;
}

h2 {
    font-size: 1rem;
    color: #B8906A;
    margin: 0 0 .187rem
}

h3 {
    font-size: 1.875rem;
    color: rgb(175, 129, 91);
    margin-bottom: -1.812rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 16px;
}

.justify {
    text-align: justify;
}

ul {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    width: 90%
}

ul li {
    padding: 0 0 0 10px
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -10px;
    font-size: 1.125rem;
    line-height: 1.5;
}

header > img {
    display: block
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem auto
}

.box {
    width: fit-content;
    padding: 5px 10px;
    transform: rotate(3deg);
    position: absolute;
    right: 3rem;
    top: 9%;
    line-height: 1.3;
    background: linear-gradient(to right, #B98C60, #CAA67C, #B98C60);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: .937rem;
}

.box p {
    font-size: 1.5rem;
    margin: 0;
}

article {
    padding: 1rem 2.187rem
}

footer .flex {
    background: rgb(175, 129, 91);
    background: linear-gradient(90deg, rgba(175, 129, 91, 1) 0%, rgba(187, 148, 110, 1) 29%, rgba(192, 156, 118, 1) 50%, rgba(192, 156, 118, 1) 74%, rgba(175, 129, 91, 1) 100%);
    color: #fff;
    display: flex;
    align-items: flex-start;
    padding: 5px 2rem;
}

footer .flex p {
    font-size: 1.125rem;
    line-height: 1.8;
    width: 50%;
    margin: 0
}

a.btn {
    text-align: center;
    color: #fff;
    background: rgb(175, 129, 91);
    background: linear-gradient(90deg, rgba(175, 129, 91, 1) 0%, rgba(187, 148, 110, 1) 29%, rgba(192, 156, 118, 1) 50%, rgba(192, 156, 118, 1) 74%, rgba(175, 129, 91, 1) 100%);
    margin: 30px auto;
    padding: 8px 10px;
    font-size: 17px;
    width: 200px;
    display: block;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        line-height: 1;
        padding: 1rem
    }

    h3 {
        font-size: 23px;
        margin: 1.875rem 0 0
    }

    ul {
        width: 100%
    }

    header > img {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto
    }

    .box {
        right: 10px;
        top: 10%
    }

    article,
    footer .flex {
        padding: 1rem
    }

    .margin {
        margin: 0 0 1rem
    }
}

@media only screen and (max-width: 600px) {
    .box {
        width: 100%;
        transform: rotate(0deg);
        position: static;
        text-align: center;
        margin: 0;
        background: rgb(175, 129, 91);
        background: linear-gradient(90deg, rgba(175, 129, 91, 1) 0%, rgba(187, 148, 110, 1) 29%, rgba(192, 156, 118, 1) 50%, rgba(192, 156, 118, 1) 74%, rgba(175, 129, 91, 1) 100%);
    }

    .box {
        flex-direction: column;
        gap: 16px;
    }

    .box br {
        display: none;
    }

    h1 {
        text-align: center;
        font-size: 37px;
    }

    h1 small {
        font-size: 25px;
    }

    .klein {
        font-size: 20px;
    }
}

@media only screen and (max-width: 540px) {
    footer .flex {
        display: block
    }

    footer .flex p {
        line-height: 1.5;
        width: 100%
    }

    footer .flex p:first-of-type {
        margin: 0 0 1rem
    }

    h1,
    h3,
    footer .flex p {
        text-align: center
    }
}
