* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: #ececed;
    font-family: "Source Sans 3", Arial, sans-serif;
    color: #009ee0;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
}
#wrapper .bold{
    font-weight: 600;
}
#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    padding: 0;
}

#wrapper article {
    padding: 30px 40px;
}

#wrapper footer {
    padding: 0 40px 20px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 600;
}

#wrapper h1 {
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 600;
    color: #eb680a;
    text-align: center;
}

#wrapper h1 span {
    color: #009ee0;
    font-size: 28px;
}

#wrapper h2 {
    font-size: 41px;
    font-weight: 600;
    line-height: 1.1;
    color: #eb680a;
    padding: 25px 40px;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    color: #eb680a;
}

#wrapper .h3 {
    color: #009ee0;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #009ee0;
    text-decoration: none;
}

#wrapper ul {
    margin: 0;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
}

#wrapper ul li:before {
    content: "\002022";
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper .color {
    color: #eb680a;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#wrapper a:hover {
    color: #eb680a;
    text-decoration: underline;
}

#wrapper .apply a {
    background-color: #eb680a;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.5s ease;
    display: inline-block;
    padding: 12px 60px;
    font-weight: 700;
    text-decoration: none !important;
}

#wrapper .apply a:hover {
    background-color: #009ee0;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 30px 16px;
    }

    #wrapper footer {
        padding: 0 16px 20px;
    }

    #wrapper h2 {
        padding: 25px 16px;
    }
}

@media (max-width: 699px) {
    #wrapper .flex {
        display: block;
    }

    #wrapper h2 {
        font-size: 5.5vw;
    }
}