@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #525557;
    line-height: 1.25rem;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 2px solid #71ac46;
    overflow: hidden;
    background-color: #fff;
}

header {
    margin: 1rem 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

header p {
    font-weight: bold;
    font-size: 22px;
    line-height: 1;
    margin: 0;
    letter-spacing: 1px;
}

footer {
    background: #71ac46;
    color: #FFF;
    padding: 1rem;
}

footer p {
    margin: 0;
    text-align: center;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
}

h2 {
    font-size: 18px;
    margin: 1rem 0;
    line-height: 22px;
}

h3 {
    font-size: 20px;
    margin: 0;
    line-height: 1.5rem;
    background: url(../images/arrow.jpg) no-repeat 0 77px;
    padding: 0 0 40px;
}

h3 span {
    color: #71ac46;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.25rem;
}

.text {
    background: #71ac46;
    color: #FFF;
    padding: 6px 2rem;
}

.content {
    padding: 1rem 2rem;
}

.button {
    display: flex;
    margin: 25px 0;
    justify-content: center;
}

.button a {
    display: inline-block;
    padding: 14px 2rem;
    background: #71ac46;
    color: #fff !important;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

.button a:hover {
    opacity: 0.9;
}

.apply {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.link {
    letter-spacing: 3px;
}

p span {
    white-space: nowrap;
}

@media all and (max-width:799px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    .content {
        padding: 1rem;
    }

    .button {
        margin: 0 0 1rem;
    }

    .link {
        white-space: normal;
        letter-spacing: 0;
    }

    br:not(footer br, h3 br) {
        display: none;
    }
}

@media all and (max-width:440px) {
    h3 {
        background: url(../images/arrow-mobile.jpg) no-repeat 20px 88px;
        padding: 0 0 50px;
        text-align: center;
    }

    footer a {
        white-space: normal !important;
    }

    .apply {
        flex-direction: column-reverse;
    }
}