@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    font-family: "Arial", sans-serif;
    font-size: 15px;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    background: rgb(0, 62, 81);
    background: linear-gradient(180deg, rgba(0, 62, 81, 1) 22%, rgba(142, 190, 33, 1) 100%);
}

h1 {
    font-size: 1.937rem;
    line-height: 1.1;
    margin: 0 0 2rem;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

h1 span {
    font-weight: normal;
}

h1 small {
    white-space: nowrap;
    font-style: italic;
    font-size: 1.25rem;
}

h2 {
    font-size: 6.5rem;
    font-style: italic;
    text-transform: uppercase;
    line-height: .9;
    margin: 0 0 .625rem
}

h2 span {
    color: #91BF2D
}

h3 {
    font-size: 1.125rem;
    font-style: italic;
    margin: 1rem .75rem 1rem
}

h4 {
    font-size: 1.25rem;
    font-style: italic;
    text-transform: uppercase;
    margin: 0 0 .625rem;
}

h4 img {
    width: 1.25rem;
    position: relative;
    top: .187rem
}

h5 {
    font-size: 1rem;
    font-style: italic;
    margin: 0 0 1rem
}

h5 span {
    color: #91BF2D
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 16px;
}

ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

ul li {
    padding-left: 24px;
    margin-bottom: .312rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -16px;
    font-size: 18px;
    line-height: 1.1;
}

.logo {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10
}

.img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1
}

.info p {
    font-size: 20px;
    margin-left: 0;
}

.info i {
    width: 20px
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 2rem
}

.section {
    width: 50%
}

.flex_bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 2rem
}

.flex_bottom .section {
    width: 50%
}

.section_right {
    margin: 2rem 0 0;
    width: 50%
}

.box {
    padding: 1rem 2rem
}

.margin {
    margin: 0 0 1.5rem
}

a.apply {
    display: block;
    background: #EC9C22;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 12px 1rem;
    border-radius: 20px;
    width: fit-content;
    margin: 0
}

footer {
    background: rgba(63, 113, 62, 0.89);
    padding: 1rem 2rem;
    margin: 0 2rem 2rem
}

.flex_green {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1rem;
}

.flex_green p {
    width: 70%
}

.nomargin {
    margin: 0
}

@media only screen and (max-width: 56.188rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }

    h2 {
        font-size: 5.5rem;
    }

    h3 {
        margin: 0 0 1rem;
    }

    .logo {
        top: 1rem;
        right: 1rem;
    }

    .flex,
    .flex_bottom {
        column-gap: 1rem;
    }

    .box {
        padding: 1rem 0;
    }

    .margin {
        margin: 0 0 1rem;
    }

    footer {
        padding: 1rem;
        margin: 0;
    }

    .img {
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 1;
        width: 50%;
    }

    .nobr {
        display: none;
    }
}

@media only screen and (max-width: 48rem) {
    h1 {
        width: 70%;
        font-size: 28px;
    }

    h2 {
        font-size: 4rem;
        width: 54%
    }

    h2 br {
        display: none;
    }

    .flex,
    .flex_bottom {
        display: block;
    }

    .section,
    .flex_bottom .section {
        width: 100%
    }

    .flex_bottom .section ul {
        margin: 0;
    }

    .section_right {
        margin: 0;
    }

    .flex_green {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .flex_green p {
        width: 100%;
    }

    .info p {
        margin: 0;
    }
}

@media only screen and (max-width: 43.75rem) {
    h1 {
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 3rem;
    }

    .img {
        display: none;
    }

    .logo {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h1,
    h2,
    h3 {
        text-align: center;
        width: 100%
    }

    .info p {
        text-align: center;
    }
}

@media only screen and (max-width: 23.5rem) {
    a.apply {
        width: 100%;
    }
}