@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1.063em/1.3em "Segoe UI", Calibri, sans-serif;
    color: #00263a;
    background: url('../images/bg.jpg') no-repeat fixed;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    max-width: 740px;
    -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
    padding: 15px;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.822em;
    line-height: 1.1em;
    font-weight: 600;
    text-align: center;
}

h1 span {
    font-size: 0.7em;
    display: block;
}

h2 {
    font-size: 1.375em;
    line-height: 1.3;
    padding-bottom: 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}

li {
    padding: 0 0 0 16px;
}

ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
    color: #0080c0;
}

.slider {
    position: relative;
}

.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}

.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}

.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}

.slider>img:nth-of-type(3) {
    animation-delay: 12s;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }
}

.logo {
    padding: 10px 50px 20px 50px;
    display: flex;
    justify-content: center;
}

.intro {
    padding: 30px 30px;
    background: #e9e9e9;
    margin: 15px 0;
}

.tasks {
    padding: 30px 30px;
}

.apply {
    text-align: center;
    padding: 30px 0px 25px 0px;
}

a.button {
    color: #ffffff;
    font-size: 16px;
    background: #0080c0;
    padding: 10px 30px 10px 30px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;

}

a.button:hover {
    background: #00263A;
}

footer p {
    padding: 30px 30px;
    background: #00263a;
    color: #fff;
    text-align: center;
}
strong{
    font-weight: 600;
}
img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:739px) {
    body{
        font-size: 1em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p {
        text-align: left;
    }
    h1{
        font-size: 1.6em;
        line-height: 1.3;
    }

    p :is(span, a) {
        display: inline-block;
    }
    .logo{
        padding: 1rem;
    }
    .intro,.tasks{
        padding: 1rem;
    }
}