
/*
GENERAL
*/

*,
*::before,
*::after {
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    font-kerning: auto;
}

html {
    font-size: 100%;
    line-height: 1.15;
}

body {
    color: #000;
    background: rgb(245, 245, 245);
    font-family: 'Lora', serif;
    letter-spacing: 0.5;
    margin: 0;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
}

/*
HEADER
*/

header {
    margin: 0;
    padding: 0;
    background: rgb(245, 245, 245);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

header nav {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

header nav ul {
    margin: 0;
    padding: 0.8rem 0;
    list-style-type: none;
    border-top: 2px solid rgba(105, 105, 105, 0.7);
    border-bottom: 2px solid rgba(105, 105, 105, 0.7);
}

header nav ul li {
    margin: 0;
    padding: 0;
    display: inline-block;
}

header nav ul li a {
    margin: 1rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(105, 105, 105, 0.8);
    text-decoration: none;
    text-align: justify;
}

header nav ul li a:hover {
    color: rgba(237, 28, 36, 0.7);
    text-decoration: none;
}

/*
MAIN
*/

.home, .about {
    height: 70rem;
    background-image: url("../images/slide1.jpg");
    background-size: cover;
    background-position: center;
    filter: grayscale(100);
    opacity: 0.8;
}

.about {
    background-image: url("../images/slide2.jpg");
    text-align: center;
}

.about p {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    position: relative;
    top: 60%;
}

.gallery {
    margin: 0;
    padding: 0;
    width: 100%;
}

.gallery-box {
    margin: 0;
    padding: 0;
    max-width: 33%;
    overflow: hidden;
    display: inline-block;
}

.gallery-box img {
    margin: 0.1rem;
    margin-bottom: -2rem;
    padding: 0;
    width: 100%;
    opacity: 0.8;
    pointer-events: none;
}
.gallery-filter {
    filter: grayscale(100);
    transition: all 0.5s;
    cursor: pointer;
}

.gallery-filter:hover {
    filter: grayscale(0);
}

.gallery-filter:focus {
    filter: grayscale(0);
}

.gallery-filter:active {
    filter: grayscale(0);
}


.break-box {
    margin: 0;
    margin-top: -0.3rem;
    margin-bottom: -0.15rem;
    padding: 0;
    width: 100%;
    height: 2.5rem;
    background-color: rgb(255, 255, 255);
}

.video {
    margin-top: 2.5rem;
    text-align: center;
}

.video-box {
    overflow: hidden;
}

.video-box video {
    width: 100%;
}

.headline {
    width: 100%;
    text-align: center;
}

.headline img {
    width: 30vw;
    position: absolute;
    top: 5rem;
}

.headline h1 {
    height: 0;
    margin: 0;
    padding: 0;
}

.headline h1 a {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 25vw;
    font-weight: 700;
    color: rgba(105, 105, 105, 0.2);
    transition: all 0.5s;
    position: relative;
    text-decoration: none;
}

.headline h2 {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    position: relative;
    right: 20rem;
    top: 60rem;
}

.headline a:hover {
    color: rgba(237, 28, 36, 0.7);
}

#slider img { 
    opacity: 0.8;
}

/*
FOOTER
*/

footer {
    width: 100%;
    background-color: rgb(255, 255, 255);
    position: fixed;
    bottom: 0;
    left: 0;
}

.footer-box p {
    margin: 0;
    padding: 10px 0;
    text-align: center;
    color: rgba(105, 105, 105, 0.4);
}

.footer-box a {
    color: rgba(105, 105, 105, 0.4);
    text-decoration: none;
}

.footer-box p:hover {
    cursor: pointer;
    color: rgba(105, 105, 105, 0.6);
}

.footer-box p {
    transition: all 1.5s;
}




