*{
    box-sizing: border-box;
}

html,
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background-color: #fff;
}

.header{
    display: block;
    padding: 30px 0;
    background-color: #fff;
    margin: 0;
}

.container {
    margin: auto;
    padding: 0 15px 0 15px;
}

@media (min-width: 768px){
    .container{
        width: 750px;
    }
}

@media (min-width: 992px){
    .container{
        width: 970px;
    }
}

.intro{
    position: relative;
    padding: 5px 0 30px 0;
}

.intro::before{
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #1d192c;
    opacity: .8;
}

.intro>*{
    position: relative;
    color: #fff;
}
.intro *{
    color: #fff;
}

.intro p{
    font-size: 15px;
}

.intro h1{
    padding-top: 20px;
    font-weight: 300;
}

.home .intro{
    /* Photo by Bayu jefri from Pexels */
    background-image: url(/images/ocean-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% -200px;
    padding: 120px 0 200px;
    height: auto;
    text-align: center;
}

.home .intro p{
    font-size: 18px;
    line-height: 27px;
}   

.lang {
    float: right;
    text-transform: uppercase;
}
.lang *{
    display: inline-block;
    margin: 0 0 0 10px;
}

.header .navbar a {
    color: #5c5c5c;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 20px;
    text-decoration: none;
    outline: 0;
}


h1 {
    color: #009FD4;
    text-transform: uppercase;
    font-size: 2em;
}

h1 span {
    color: darkgrey;
}

h4 {
    color: #666;
}

.footer{
    background-color: #f5f5f5;
    padding: 50px 0 50px 0;
    margin-top:50px;
}