@charset "utf-8";
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/inter-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/inter-v20-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/inter-v20-latin-regular.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/inter-v20-latin-regular.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/inter-v20-latin-regular.svg#Inter') format('svg');
    /* Legacy iOS */
}
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v20-latin-700.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/inter-v20-latin-700.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/inter-v20-latin-700.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/inter-v20-latin-700.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/inter-v20-latin-700.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/inter-v20-latin-700.svg#Inter') format('svg');
    /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.6em 'Inter', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1030px;
    margin: 1rem auto;
    background: #fff;
    overflow: hidden;
    border: 1px solid #000;
}
h1 {
    margin: 0 0 2.5rem;
    font-size: 2.375em;
    line-height: 1.3;
}
h1 span {
    font-weight: 400;
    display: block;
}
h2 {
    font-size: 1.875em;
    line-height: 1.3em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
li {
    padding: 0 0 0.125rem 0.875rem;
}
ul li:before {
    content: "\25A0";
    font-size: 1.1em;
    float: left;
    margin: -1px 0 0 -0.875rem;
}
.logo {
    display: flex;
    justify-content: end;
    margin: 1.5rem 4rem -229px;
}
.banner {
    margin: -1rem -1rem 1rem;
}
article p {
    padding-bottom: 2.25rem;
}
article {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.right {
    width: 49%;
    padding: 299px 1rem 90px 1rem;
}
.left {
    width: 49.5%;
    background: #231F20;
    padding: 1rem 1rem 0;
}
.left p {
    text-align: justify;
}
.left :is(h2, ul, p) {
    color: #fff;
}
footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    bottom: 0;
    left: 1rem;
}
.mail {
    font-size: 2.3em;
    text-align: center;
    background: #fff;
    padding: 1.5rem 0.7rem 1.5rem;
    color: #000;
    font-family: Calibri, sans-serif;
}
.mail span {
    display: block;
    font-size: 2.3em;
    line-height: 1.1;
    font-weight: 700;
}
.responssive {
    display: none;
}
footer p {
    color: #fff;
}
header img {
    display: block;
}
@media only screen and (max-width: 1029px) {
    #wrapper {
        margin: 0 auto;
        background: #fff;
    }
    h1 {
        font-size: 1.85em;
    }
    h2 {
        font-size: 1.6em;
    }
    .left p {
        text-align: left;
    }
    .right {
        margin: 0;
    }
    footer {
        position: static;
        background: #231F20;
        justify-content: space-between;
        padding: 1rem;
    }
    .banner, .logo {
        display: none;
    }
    .banner{
        margin: 0;
    }
    .responssive {
        display: block;
    }
}
@media only screen and (max-width: 870px) {
    .left, .right {
        width: 100%;
    }
    article {
        flex-direction: column;
    }
    .right {
        padding: 1rem;
    }
    article br {
        display: none;
    }
    ul, article p {
        padding-bottom: 1rem;
    }
}
@media only screen and (max-width: 525px) {
    footer {
        flex-direction: column;
    }
    footer p {
        text-align: center;
    }
    .mail {
        font-size: 1.45em;
    }
    h1 {
        font-size: 1.5em;
    }
    h2 {
        font-size: 1.375em;
    }
}