@charset "utf-8";

:root {
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #6b696b;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: 0.0625rem solid #D4D4D4;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 16px;
}

.nowrap {
    white-space: nowrap;
}

a.email:hover {
    text-decoration: underline;
}

.nomargin {
    margin: 0
}

.margin_bottopm_big {
    margin-bottom: 60px;
}

ul {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

ul li {
    padding: 0 0 0 16px;
}

ul li:before {
    content: "";
    background-color: transparent;
    border-radius: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.375rem 0 0.375rem 0.4375rem;
    border-color: transparent transparent transparent #B1B0B1;
    transform: rotate(0deg);
    position: relative;
    display: block;
    float: left;
    top: 3.5px;
    margin: 0 0 0 -16px;
}

h1 {
    font-size: 24px;
    margin: 0 0 12px;
    width: calc(100% - 7.5rem);
}

h2 {
    font-size: 1.125rem;
    margin: 0 0 16px;
}

h3 {
    font-size: 1.125rem;
    margin: 19px 0;
}

h4 {
    font-size: 1.1875rem;
    margin: 18px 0;
}

h4+p {
    margin: 0 0 40px;
}

header img {
    display: block;
}

.title {
    border-top: 0.0625rem solid #D4D4D4;
    border-bottom: 0.0625rem solid #D4D4D4;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    border: 1px solid #D4D4D4;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 0 16px 3px;
}

.section {
    padding: 1rem;
    border-bottom: 0.0625rem solid #D4D4D4;
}

footer {
    padding: 1rem;
}

footer>p:last-of-type {
    margin: 0;
}

@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    ul li {
        margin: 0 0 0.3125rem;
    }

    .margin_bottopm_big {
        margin-bottom: 1.25rem;
    }
}

@media only screen and (max-width: 500px) {
    h1 {
        width: 100%;
        text-align: center
    }

    .title {
        flex-direction: column-reverse;
        align-items: center;
        gap: 1.25rem;
    }
}