* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Open Sans", Arial, sans-serif;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
    border: 4px solid #1e3266;
    background-color: #fff;
    overflow: hidden;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    11.11% {
        opacity: 1;
    }

    33.33% {
        opacity: 1;
    }

    44.44% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#wrapper .slideshow>img {
    animation: opacity 3s forwards;
}

#wrapper .slideshow {
    position: relative;
}

#wrapper .slideshow img {
    vertical-align: bottom;
}

#wrapper .slideshow>img:nth-of-type(1) {
    position: relative;
}

#wrapper .slide img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 9s linear 0s infinite normal forwards;
}

#wrapper .slide img:nth-child(2) {
    animation-delay: 3s;
}

#wrapper .slide img:nth-child(3) {
    animation-delay: 6s;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    padding: 0;
}

#wrapper article {
    padding: 0 40px;
}

#wrapper footer {
    padding: 0 40px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 0 -40px 20px;
    padding: 20px;
    font-size: 24px;
    font-weight: 700;
    background: #1e3266;
    color: #fff;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 700;
    color: #1e3266;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #1e3266;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px 26px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 22px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 23px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -1px;
    line-height: 1;
    left: 0;
    color: #1e3266;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper .job {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 10px;
}

#wrapper .job li::before {
    content: '';
    top: 1px;
    left: 0;
    bottom: 0;
    right: 0;
}

#wrapper .job .location {
    padding-left: 16px;
}

#wrapper .job li {
    margin-bottom: 10px;
}

#wrapper .job .location::before {
    background: url(location.png) no-repeat left top / auto 18px;
}

#wrapper .job .time::before {
    background: url(time.png) no-repeat left top / auto 18px;
}

#wrapper .job .start::before {
    background: url(start.png) no-repeat left top / auto 18px;
}

#wrapper .job .remote::before {
    background: url(remote.png) no-repeat left top / auto 18px;
}

#wrapper .job li:not(:last-child) {
    padding-right: 15px;
    margin-right: 15px;
}

#wrapper .job li:not(:last-child)::after {
    content: '';
    border-left: 1px solid #333;
    position: absolute;
    top: 3px;
    right: 0;
    bottom: 3px;
}

#wrapper header .logo {
    padding: 16px 40px;
}

#wrapper .apply {
    width: fit-content;
    margin: 30px auto;
}

#wrapper .apply a {
    background: #b30000;
    color: #fff;
    display: block;
    padding: 13px 15px;
    font-size: 18px;
    border-radius: 10px;
}
#wrapper .apply a:hover{
    opacity: 0.8;
}
@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 0 16px;
    }

    #wrapper footer {
        padding: 0 16px;
    }

    #wrapper ul {
        margin-left: 16px;
    }

    #wrapper h1 {
        margin: 0 -16px 20px;
    }
}