@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333;
    font: 0.938em/1.5em Segoe, "Segoe UI", Arial, sans-serif;
    background: #EEEEEE;
}
#wrapper {
    position: relative;
    max-width: 1140px;
    margin: 1rem auto;
    border: 2px solid #333;
    background: #fff;
    overflow: hidden;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .05);
}
:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
}
a.underline {
    color: #888888;
    text-decoration: underline;
}
a:hover {
    color: #0056b3;
    text-decoration: underline;
}
a.apply {
    background: #F6B600;
    text-decoration: none;
    color: #ffffff;
    display: block;
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
    text-align: center;
}
p {
    padding-bottom: 1rem;
}
p a.color {
    color: #800007;
    text-decoration: none;
}
:is(p.center, h1) {
    text-align: center;
}
h1, h2 {
    color: #003064;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 2em;
    line-height: 1.3;
    font-weight: 600;
}
h2 {
    font-size: 2.2em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    font-weight: 400;
    font-family: Calibri, sans-serif;
}
h3 {
    font-size: 1.5em;
    line-height: 1.2;
    margin-bottom: 2rem;
}
ul {
    padding: 0 0 1.25rem;
    list-style: none;
}
li {
    padding: 0 0 0 0.6rem;
    position: relative;
}
li:before {
    content: "›";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: -1px;
    color: #888;
}
img {
    max-width: 100%;
    height: auto;
}
hr {
    border: none;
    background: #003064;
    height: 6px;
    margin: 1.5rem 0;
}
hr:last-of-type {
    margin-bottom: 3rem;
}
.line {
    background: #283659;
    padding: 1rem 0;
    margin: 0 -25px 1rem;
}
.background {
    background-color: #EFF1F7;
    border-bottom: solid 3px #283659;
    padding: 0 25px 25px;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0 0 1rem;
    flex-wrap: wrap;
}
.title {
    padding-bottom: 2rem;
}
.left {
    width: 62%;
}
.row {
     display: flex;
    justify-content: space-between;
}
.col1, .col2 {
    width: 46%;
}
.right {
    width: 28%;
}
#red-youtube {
    color: #DA4335;
    font-size: 1.375em;
}
#red-youtube:hover {
    color: #DA4335;
}
header {
    margin: 2rem 1rem 0;
}
article {
    padding: 1rem 1rem;
}
article p a.ins {
    text-decoration: none;
    box-shadow: 0 1px #808080;
}
.right :is(h3, p) {
        padding-left: 1.5rem;
    }
footer {
    padding: 1.2rem 1rem 0;
    background: #003064;
    display: flex;
    justify-content: center;
    justify-items: center;
}
footer ul li:before {
    content: "";
}
footer ul li {
    list-style-type: none;
    display: inline-block;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}
footer i {
    margin: 0.5rem 0.3rem 0 0;
    padding: 0.5rem;
    color: #FFF;
    border: 1px solid #FFF;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    text-align: center;
}
@media only screen and (max-width:1139px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header {
        margin-top: 1rem;
    }
    .left {
        width: 68%;
    }
    
}
@media only screen and (max-width:780px) {
    .left, .right {
        width: 100%;
    }
    .right :is(h3, p) {
        text-align: center;
        padding-left: 0;
    }
    figure {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) { 
    .row {
        flex-direction: column;
    }
    .col1, .col2 {
        width: 100%;
    }
}