@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fira-sans-v17-latin-regular.eot');
    src: url('../fonts/fira-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/fira-sans-v17-latin-regular.woff2') format('woff2'), url('../fonts/fira-sans-v17-latin-regular.woff') format('woff'), url('../fonts/fira-sans-v17-latin-regular.ttf') format('truetype'), url('../fonts/fira-sans-v17-latin-regular.svg#FiraSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: #000;
    font-family: "Fira Sans", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
#wrapper {
    position: relative;
    max-width: 51.875rem;
    margin: 1rem auto;
    border: none;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    margin: 0 0 1.5rem
}
:is(h1, h2, h3, ) {
    margin: 0 0 1.5rem;
    font-size: 1.25em;
    line-height: 1.3;
}
ul {
    padding: 0 0 3rem 1rem;
    list-style: none;
}
ul li {
    padding: 0 0 0 1rem;
    position: relative;
}
ul li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Arial", sans-serif;
}
header {
    border: .062rem solid rgba(220, 223, 226, 0.8);
}
.logo {
    display: flex;
    margin-bottom: 1.5rem;
}
.h-content {
    padding: 0.8rem 1.5rem 0;
}
.info {
    max-width: 27.812rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 1rem;
    margin-bottom: 1.25rem;
}
.info p {
    margin: 0 0 .625rem
}
.info i {
    text-align: center;
    width: 20px;
    margin: 0 5px 0 0
}
article {
    padding: 1.5rem 1.5rem 0;
}
footer {
    padding: 2rem 0 0;
}
.apply {
    display: flex;
    justify-content: end;
    padding: 0 1.5rem 1.5rem;
}
.apply a {
    text-align: center;
    padding: 0.625rem 1.5rem;
    font-size: 1.25em;
    line-height: 1.3;
    border: .062rem solid #000;
}
.apply a:hover {
    background: #D4E2D4;
    border-color: #fff;
    color: #fff;
}
.social {
    background: #A8BAB2;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0 1.5rem;
}
.social a {
    color: #fff;
    font-size: 1.25rem;
}
@media only screen and (max-width:51.812rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}
@media only screen and (max-width:30rem) {
    ul {
        padding: 0 0 1rem;
    }
    .logo {
        border: none;
        justify-content: center;
    }
    h1,
    h2 {
        text-align: center;
    }
    h3 {
        margin-bottom: .625rem;
    }
    .h-content {
        padding: 0.8rem 1rem 0;
    }
    article {
        padding: 1rem 1rem 0;
    }
    footer p {
        text-align: center;
    }
    .social {
        justify-content: center;
        padding: 1rem;
    }
    .apply {
        justify-content: center;
    }
}