@font-face{
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Bold.ttf"), url("../fonts/OpenSans-ExtraBold.ttf"),
         url("../fonts/OpenSans-Italic.ttf"), url("../fonts/OpenSans-Regular.ttf"), url("../fonts/OpenSans-Regular.ttf");
}
/*----- Document CSS -----*\
\*------------------------*/

body{
    font-family: "Open Sans", sans-serif;
    font-size: 64.5%;
    padding: 0;
    margin: 0;
    height: 100vh;
}

h1{
    font-size: 10em;
    font-weight: 700;
}

h2{
    font-size: 4em;
    font-weight: 500;
}

h3{
    font-size: 3em;
    font-weight: 400;
}

p{
    font-size: 2em;
    font-weight: 200;
}

.container{
    position: relative;
    margin: auto;
    width: 100%;
}

.banner{
    position: relative;
    width: 100%;
    height: 320px;
}

.banner img{
    width: 100%;
    height: 100% !important;
}

.banner h1{
    position: absolute;
    top: 10%;
    left: 30.5%;
    z-index: 99;
}

nav.menu{
    background-color: #202020;
    height: 50px;
}

nav.menu ul{
    display: block;
    margin: 0;
    padding: 0;
}

nav.menu ul li{
    display: inline-block;
    width: auto;
    margin: 1% 5%;
}

nav.menu ul li:hover{
    background-color: #fff;
}

nav.menu ul li a:link, nav.menu ul li a:visited, nav.menu ul li a:active{
    display: block;
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

nav.menu ul li a:hover{
    color: darkgray;
    transition: all 0.3s ease-in-out;
}


/*----- Paralax Effect -----*\

\*--------------------------*/
section.parallax-tr{
    position: relative;
    
    height: 720px;
    
    background-image: url("../img/parallax_01.jpg");
    
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.parallax-sw{
    position: relative;
    
    height: 720px;
    
    background-image: url("../img/parallax_02.jpg");
    
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.parallax-gt{
    position: relative;
    
    height: 720px;
    
    background-image: url("../img/parallax_03.jpg");
    
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.parallax-tr p, section.parallax-sw p, section.parallax-gt p{
    position: relative;
    font-size: 10em;
    font-weight: 700;
    top: 25%;
    left: 0%;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    line-height: 1.2;
    padding: 1%;
}

section.content-box{
    width: 960px;
    margin: auto;
}

article p{
    text-align: justify;
}

article p img{
    float: left;
    margin-right: 25px;
    margin-bottom: 5px;
}
