@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #313131;
    font: 400 1em/1.5em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 865px;
    margin: 1rem auto;
    border: 1px solid #313131;
    background: #fff;
    overflow: hidden;
    padding: 2rem;
}
strong {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1, h2, h3, h4 {
    font-family: "Roboto Slab", sans-serif;
}
h1, h2, h3 {
    font-weight: 500;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.9em;
    line-height: 1.2;
    color: #019898;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1.5em;
    line-height: 1.2;
    color: #8ECE31;
    margin: 0.5rem 0;
}
h3 {
    font-size: 1.45em;
    line-height: 1.3;
    color: #8ECE31;
    margin: 0.5rem 0 1.5rem;
}
h4 {
    font-size: 1em;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
ul {
    padding: 0 0 1rem 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.25rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.big {
    font-size: 1.25em;
    line-height: 1.3;
}
.info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
}
.info p {
    width: fit-content;
    border: 2px solid #E3E3E3;
    border-radius: 5px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8em;
    line-height: 1.3;
}
.info p span {
    margin-right: 1rem;
}
.button {
    background: #8ECE31;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 5px;
    width: fit-content;
    margin: 1rem auto 3rem;
    box-shadow: 3px 3px 11px 2px #ECECEC;
    text-align: center;
}
header {
    padding: 0 0 1rem;
}
.contact {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem 2rem;
}
@media only screen and (max-width:864px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 1.7em;
    }
    h2 {
        font-size: 1.313em;
    }
    h3 {
        font-size: 1.25em;
    }
    ul {
        padding-left: 0;
    }
}