@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 0.937rem;
    line-height: 1.4;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 72.5rem;
    margin: 1rem auto;
    overflow: hidden;
}

p {
    margin: 0 0 1.25rem;
}

p span {
    white-space: nowrap;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.text_small {
    font-size: 0.8125rem;
}

a:hover {
    opacity: 0.6;
}

a.link {
    color: #8396a1;
}

ul {
    margin: 0 0 0.625rem;
    padding: 0;
    list-style: none;
}

ul li {
    padding: 0 0 0 2.5rem;
}

ul li:before {
    content: "\2022";
    font-size: 1.125rem;
    position: relative;
    display: block;
    float: left;
    bottom: 2px;
    margin: 0 0 0 -0.937rem;
}

h1 {
    font-size: 1.8rem;
    padding: 0.9375rem;
    line-height: 1.2;
    background: #ffffff99;
    color: #333;
    font-weight: 900;
    text-align: center;
    margin: -5.3rem auto 2rem;
    position: relative;
    width: fit-content;
}

h2 {
    font-size: 1.3125rem;
    margin: 0 0 0.9375rem;
    line-height: 1.4;
    font-weight: 900;
}

h3 {
    font-size: 1rem;
    padding: 0.625rem 0.9375rem;
    font-weight: 400;
    border: 1px solid #e7ecf1;
}

header {
    background-color: #000;
    margin: 0 0 1.25rem;
    padding: 0.9375rem;
}

.image {
    position: relative;
    margin: 0 0 0.625rem;
}

.flex {
    display: flex;
    justify-content: space-between;
}

article {
    width: 65%;
    margin-bottom: 7.5rem;
}

.column {
    width: 33%;
}

.column p {
    hyphens: auto;
}

.section {
    border: 0.0625rem solid #e7ecf1;
    background-color: #F0F0F0;
    margin: 0 0 1.25rem;
    padding: 1.25rem 0.9375rem;
}

.section p:last-child {
    margin-bottom: 0;
}

.details p {
    margin: 0 0 0.625rem;
}

.kontakt {
    display: flex;
    gap: 1rem
}

.kontakt p {
    margin-bottom: 0.187rem;
}

a.email {
    font-size: 0.75rem;
}

a.email>span {
    width: 6.25rem;
    background-color: #EC6128;
    padding: 0.125rem 0.3125rem;
    border-radius: 0.5rem;
    color: #fff;
    font-weight: 700;
}

footer {
    position: absolute;
    bottom: 1%;
}

a.btn {
    color: #fff;
    background-color: #EC6128;
    font-size: 1.125rem;
    text-align: center;
    font-weight: 900;
    padding: 0.625rem 1rem;
    text-decoration: none;
    display: inline-block;
    border: 0.0625rem solid #EC6128;
    transition: all 0.2s ease;
}

.btn_right {
    width: 100%;
    margin: 0 0 0.625rem;
}

.socials {
    display: flex;
    align-items: center;
    column-gap: 25px;
    margin-top: 1.25rem;
}

.socials p {
    margin: 0;
}

.socials i {
    font-size: 1.562rem;
    color: #000;
}

.column .socials {
    padding-left: 1rem;
    margin-top: .625rem;
}

a.wrap {
    white-space: normal;
}

@media only screen and (max-width: 72.437rem) {
    #wrapper {
        padding: 0 1rem 1rem;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    ul li {
        padding-left: 0.937rem;
    }
}

@media only screen and (max-width: 60rem) {
    header {
        display: flex;
        justify-content: center;
    }

    .flex {
        flex-direction: column;
    }

    article,
    .column {
        width: 100%;
    }

    article {
        margin: 0;
    }

    footer {
        position: static;
    }

    h1 {
        width: 100%;
        margin: 0;
    }
}

@media only screen and (max-width: 37.5rem) {
    #wrapper {
        padding: 0 .5rem 1rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.125rem;
    }

    a.btn {
        width: 100%;
    }
}