@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Arial', sans-serif;
    font-size: .937rem;
    font-weight: 400;
    line-height: 1.5rem;
    background: #ebebeb;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    color: #96bf0d;
    font-size: 1.812rem;
    line-height: 120%;
    margin: 1rem 0;
}

h1 span {
    font-size: 1.187rem;
    line-height: 1.3;
    display: block;
    padding-top: .3rem;
}

h2 {
    color: #96bf0d;
    font-size: 1.375rem;
    line-height: 120%;
    margin: 0 0 1rem;
}

h3 {
    font-size: 1.2rem;
    color: #96bf0d;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

header {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 2rem 1.5rem 1.5rem;
}

.info {
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.info :is(.fas, .far) {
    margin-right: 0.625rem;
}

article p {
    margin: .5rem 0;
}

section {
    background: #fff;
    margin: 0 0 .5rem;
    padding: 1rem 1.5rem;
}

ul {
    margin: .5rem 0 0 1rem;
    list-style: none;
}

ul li {
    padding-left: 2.3rem;
}

ul li ul {
    margin: 0
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: .312rem;
    height: .312rem;
    background: #96bf0d;
    margin-left: -.937rem;
    top: .5rem;
}

.flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
}

.button {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 .5rem;
}

.button a.apply {
    color: #fff;
    background: #96bf0d;
    font-size: 1.1rem;
    text-align: center;
    border: solid .125rem #96bf0d;
    padding: .7rem 2rem;
    width: 14.375rem;
}

a.apply:hover {
    background: #fff;
    color: #96bf0d;
}

.section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: 1.5rem;
    width: 50%;
}

.fa-solid {
    font-size: 3.2rem;
}

.details p {
    margin: 0;
}

.margin {
    margin: 0.5rem 0;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

footer {
    background: #fff;
    padding: 1rem;
    margin-top: .5rem;
}

footer p {
    text-align: center;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: .5rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    header {
        padding: 1rem
    }
}

@media only screen and (max-width: 48rem) {
    header {
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
        gap: 1rem
    }

    header>div:first-of-type {
        width: auto
    }

    header h2 {
        text-align: center;
    }

    .info {
        align-items: center;
        gap: 0.5rem;
    }

    .info p {
        align-items: center;
    }
}

@media only screen and (max-width: 38rem) {
    a.wrap {
        white-space: normal;
    }

    ul li {
        padding-left: 0;
    }

    ul li:before {
        margin-left: -1rem;
    }

    h1 {
        font-size: 1.6rem;
        text-align: center
    }

    h1 span {
        font-size: 1rem;
    }

    h1 br {
        display: none;
    }

    h2 {
        text-align: center
    }

    .details :is(h4, p) {
        text-align: center;
    }

    :is(.flex, .section) {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: .625rem;
    }

    section,
    .section {
        width: 100%;
        padding: 1rem;
    }

    footer {
        padding: 1rem 0;
    }
}