@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: 1rem;
    line-height: 1.3;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0 0.312rem 0.937rem;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.nowrap {
    white-space: nowrap;
    color: inherit;
}

p {
    margin: 0 0 0.625rem;
}

p span {
    color: #80BA27;
}

h1 {
    font-size: 1.875rem;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 0.625rem;
    position: absolute;
    top: -13.9rem;
}

h2 {
    font-size: 1.875rem;
    color: #80BA27;
    font-weight: 400;
    margin: 0 0 0.625rem;
}

h2 span {
    font-weight: 700;
}

ul {
    margin: 0 0 1.5rem 1rem;
}

.kontakt {
    position: absolute;
    top: -22rem;
    left: 3rem;
    padding: 1rem 1rem 0.25rem;
    background: rgb(255 255 255 / 90%);
    border-radius: 1rem;
    box-shadow: 0 4px 6px #9c9c9c;
}

.kontakt p {
    font-size: 0.9rem;
}

.green {
    color:#7fb61c;
    font-weight: 700;
    position: absolute;
    top: -8rem;
}
.icon {
    padding: 0.5rem 1rem;
    background: #7FB61C;
    color: #fff;
    border-radius: 0.5rem;
    position: absolute;
    top: -11rem;
}

p.icon img {
    vertical-align: -3px;
}
article {
    padding: 0 2.5rem;
    position: relative;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 3rem 0;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    width: 5rem
}

.box img {
    width: 3rem
}

.box p {
    font-size: 0.8rem;
    text-align: center;
}

footer {
    background: url('../images/footer-bg.png') no-repeat center;
    background-size: 100%;
    padding: 4rem 2.5rem 1rem
}

footer i {
    color: #7fb61c;
    margin-right: 1rem;
    font-size: 2rem;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

.respons {
    display: none;
}

@media only screen and (max-width: 56.187rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1,
    .kontakt,
    .green {
        position: static;
    }

    .resp {
        display: none;
    }

    .respons {
        display: block;
    }

    article {
        padding: 2rem 1rem 1rem;
    }

    .kontakt p {
        font-size: 1rem;
    }

    h1 {
        color: #7fb61c;
        margin: 2rem 0;
    }

    .green {
        margin: 2rem 0;
    }
    .icon {
        position: static;
        width: fit-content;
    }
    footer {
        background: none;
        background-color: #f5f4f4;
    }

    footer p {
        margin-bottom: 1rem;
        text-align: center;
    }
}

@media only screen and (max-width: 42.5rem) {


}

@media only screen and (max-width: 23.5rem) {

}