@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v42-latin-regular.eot');
    src: url('../fonts/noto-sans-v42-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v42-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-regular.svg#NotoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v42-latin-700.eot');
    src: url('../fonts/noto-sans-v42-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-700.woff') format('woff'), url('../fonts/noto-sans-v42-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-700.svg#NotoSans') format('svg');
}

:root {
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: 'Noto Sans', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    background-color: #F5F5F5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.25rem;
}

.nowrap {
    white-space: nowrap;
}

.margin_bottom {
    margin: 0 0 1.25rem;
}

.no_margin_bottom {
    margin: 0;
}

.color {
    color: #009640;
}

a.logo:hover {
    opacity: 0.6;
}

a.link {
    color: #009640;
    text-decoration: underline 0.0625rem dotted #009640;
}

a.link:hover {
    color: #333;
    text-decoration: underline 0.0625rem solid #009640;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul li {
    margin: 0 0 0.3125rem;
    padding: 0 0 0 1rem;
}

ul li:before {
    content: "";
    background-color: #333;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    position: relative;
    display: block;
    float: left;
    top: 0.5rem;
    margin: 0 0 0 -0.937rem;
}

h1 {
    color: #009640;
    font-size: 1.625rem;
    margin: 1.25rem 0;
}

h1+p {
    margin: 0;
}

h2 {
    color: #009640;
    background-color: #E6E6E6;
    font-size: 1.25rem;
    margin: 0;
    padding: 1.0625rem 1.625rem;
}

header {
    display: flex;
    background-color: #fff;
    margin: 0 0 1rem;
    padding: 1.0625rem 1.625rem;
    border: 0.0625rem solid rgba(0, 0, 0, 0.125);
    box-shadow: 0 0 1.625rem rgba(0, 0, 0, .125);
}

.image {
    border: 0.0625rem solid rgba(0, 0, 0, 0.125);
    box-shadow: 0 0 1.625rem rgba(0, 0, 0, .125);
    margin: 0 0 1rem;
}

.image img {
    display: block;
}

.container {
    border: 0.0625rem solid rgba(0, 0, 0, 0.125);
    box-shadow: 0 0 1.625rem rgba(0, 0, 0, .125);
    margin: 0 0 1rem;
}

.text {
    background-color: #fff;
    padding: 1.625rem;
}

footer {
    padding: 1.875rem 1.625rem 3.75rem;
    display: flex;
    justify-content: center;
}

a.apply {
    color: #fff;
    background-color: #009640;
    border: 0.125rem solid #009640;
    font-size: 1.125rem;
    font-weight: 700;
    width: 20rem;
    height: 2.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.1875rem;
    transition: all 0.3s ease;
}

a.apply:hover {
    color: #009640;
    background-color: transparent;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.125rem;
        padding: 0.625rem 1rem;
    }

    header {
        padding: 1rem;
        justify-content: center;
    }

    .text {
        padding: 1rem;
    }

    footer {
        padding: 1rem;
    }
}

@media only screen and (max-width: 23.438rem) {
    h1 {
        font-size: 1.25rem;
    }

    a.apply {
        width: 100%;
    }
}