* {
    box-sizing: border-box;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f9f9f9;
}

article {
    margin: 1rem auto;
    max-width: 900px;
    line-height: 1.5em;
}
h2 {
    background: #fff;
    color: black;
    margin: 0 0 0;
    padding: 2rem 1rem;
}
p {
    margin: 0;
}
p + p {
    margin-top: 1rem;
}
a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}
a:visited {
    text-decoration: none;
    color: #000;
}
a:hover {
    color: #1c9dd9;
}

section {
    background: rgb(255, 255, 255);
    border: 1px solid #e3e5e8;
}
section:nth-child(3) {
    border: none;
}
section .contentWrapper {
    padding: 1rem;
    text-align: justify;
}
section .contentWrapper > * + * {
    margin-top: 1rem;
}
section.introduction {
    border-top: 1px solid #e3e5e8;
}
section + section {
    margin: 1rem 0 0 0;
}
section h3 {
    font-size: 1rem;
    font-weight: bold;
    color: rgb(212, 5, 17);
    background: #f5f5f5;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e3e5e8;
    margin: 0;
    text-transform: uppercase;
}
section ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style: none;
}
section li {
    position: relative;
    padding: 0 0 0 1rem;
}
section li::before {
    content: "›";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1rem;
}
section.header {
    padding: 0;
    position: relative;
    border: none;
}
section.header .logoWrapper {
    padding: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
}
section.header .headerWrapper img, section.header .logoWrapper img {
    display: block;
    width: 100%;
    height: auto;
}
section.header .logoWrapper img {
    width: 100px;
}
section.introduction p {
    text-align: justify;
}
section.video-section {
    line-height: 0;
}
section > iframe {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 420px;
}
section.applywrapper {
    background: none;
    border: none;
    text-align: center;
}

.apply-btn {
    display: inline-block;
    padding: 0.5rem 3rem;
    color: #fff;
    background: rgb(212, 5, 17);
    text-align: center;
}
body.post section h3 {
    color: black;
}
body.post .apply-btn {
    color: black;
    background: #ffcc00;
}
.logo {
    text-align: right;
    padding: 1rem;
}
h2 img {
    text-align: left;
    vertical-align: middle;
    padding: 0.5em 0;
}

@media screen and (max-width: 1160px) {
    main {
        max-width: 100%;
    }
    article {
        max-width: 720px;
        margin-bottom: 1rem;
    }
}
@media screen and (max-width: 500px) {
    section.header .logoWrapper img {
        width: 50px;
    }
    article {
        margin: 0;
    }
    main {
        margin: 0;
    }
    section + section {
        margin: 0;
        border-top: none;
    }
    section.applywrapper {
        margin-top: 1rem;
        padding-bottom: 1rem;
    }
}