html {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
	font-weight: 300;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html, body, ul, ol, li, form, fieldset, legend {
    margin: 0;
    padding: 0;
}


h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}

fieldset, img {
    border: 0;
}

legend {
    color: #000;
}

li {
    list-style: none;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th, td {
    text-align: left;
    vertical-align: top;
    font-weight: normal;
}

input, textarea, select {
    font-size: 110%;
    line-height: 1.1;
}

abbr, acronym {
    border-bottom: .1em dotted;
    cursor: help;
}

/* PACE */
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace.pace-inactive .pace-progress {
    display: none;
}

.pace .pace-progress {
    position: fixed;
    z-index: 2000;
    top: 50%;
    left: 50%;
    height: 80px;
    width: 160px;
    -webkit-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
}

.pace .pace-progress:after {
    text-align: center;
    display: block;
    content: attr(data-progress-text);
    font-weight: 100;
    font-size: 72px;
    line-height: 80px;
    color: #121212;
}

/* STYLE */
.page-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 8000;
    background-color: #fafafa;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    transition-delay: 0.1s;
	border:10px solid #1e9aa0;
}
.page-container:before {
	position:absolute;
	display:block;
	content:'';
	border:10px solid #e6e6e6;
	height:100%;
	width:100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.pace-done .page-container {
    visibility: visible;
    opacity: 1;
}

.slideshow .slide {
    display: block;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-container .logo {
    position: absolute;
    top: 40px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    transform: translateY(10%);
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    transition-delay: 0.5s;
}

.pace-done .page-container .logo {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
}

.page-container .logo img {
    display: inline-block;
    max-width: 80%;
    height: auto;
}

.footer {
    position: fixed;
    z-index: 9000;
    bottom: 40px;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    color: #121212;
    font-size: 14px;
    line-height: 1.6;
}
.footer h1 {
	font-size: 130%;
}
.footer a {
    color: #121212;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #1e9aa0;
}

@media screen and (min-width: 768px) {
    .page-container .logo {
        top: 50%;
        left: 20%;
        right: 20%;
        transform: translateY(-30%);
        -webkit-transform: translateY(-30%);
        -ms-transform: translateY(-30%);
    }

    .pace-done .page-container .logo {
        transform: translateY(-65%);
        -webkit-transform: translateY(-65%);
        -ms-transform: translateY(-65%);
    }
}

@media screen and (min-width: 1200px) {
    .page-container .logo {
        left: 35%;
        right: 35%;
    }
}