@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    font-size: 16px;
}
*, figure {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #222;
    font: 400 1em/1.5em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1024px;
    margin: 1rem auto;
    border: none;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 5px #999;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
:is(h1, h2, h3, .color, a.color) {
    color: #0082B9;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.1em;
    line-height: 1.1;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    margin-top: 0.5rem;
}
ul {
    padding: 0 0 1em;
    list-style: none;
}
ul ul{
    padding-bottom: 0;
}
li {
    padding: 0 0 0 0.8rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #8db3e2;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
article > p {
    font-size: 1.265em;
    line-height: 1.3;
}
.text {
    color: #0082B9;
    padding-bottom: 1rem;
}
.text-right {
    text-align: right;
}
.logo {
    width: 75px;
}
.apply {
    color: #fff;
}
.apply a {
    display: inline-block;
    background: #5E5A5B;
    padding: 0.5rem 2rem;
    border-radius: 5px;
    text-transform: uppercase;
}
article {
    padding: 3rem 3rem 0;
}
article .flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 2rem;
}
article .flex .box {
    width: 48%;
}
.box-bg {
    background: #fff url('bg.jpg') no-repeat;
    background-size: cover;
    padding: 2rem 2rem 0;
}
.flex1 {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}
footer {
    padding: 2rem 0 0 1rem;
}
footer section {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
    position: absolute;
    right: 3rem;
    bottom: 1rem;
}
footer section img{
    width: 100px;
}
footer p {
    color: #fff;
    padding-bottom: 0;
    font-size: 0.875em;
    line-height: 1.3;
}
@media only screen and (max-width:1023px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .hide_m {
        display: none;
    }
    h1 span {
        display: inline-block;
    }
}
@media only screen and (max-width:930px) {
    article {
        padding: 2rem 2rem 0;
    }
}
@media only screen and (max-width:780px) {
    article .flex {
        display: block;
    }
    article .flex .box {
        width: 100%;
    }
    footer {
        padding: 3rem 0 0;
    }
    footer section {
        position: static;
        background: #0081BA;
        padding: 2rem;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem 1rem 0;
    }
    article > p {
        font-size: 1.125em;
        line-height: 1.3em;
    }
    ul {
        padding-bottom: 1.5rem;
    }
    h1 {
        font-size: 1.6em;
    }
    .box-bg {
        padding: 1.5rem 1rem 1rem;
    }
    .text {
        font-size: 1.125em;
    }
}