/**
 * httpdocs/css/landing.css
 *
 * @version 1.0
 * @package ds80.nl
 * @author  A.J. de Vries
 * @description
 *
 * Copyright (c) BenedenBoven / Malibomba
 * IT IS NOT ALLOWED TO USE OR MODIFY ANYTHING OF
 * THIS CODE, WITHOUT THE PERMISION OF THE AUTHOR.
 */
/*<![CDATA[*/
@import "./reset.css";
@import "./defaults.css";

body {
    margin: 0;
    padding: 0;
    /*background: #00828f url(/pics/bg_snel-veilig.jpg) center left fixed;*/
    background-color: #f7f6f5;
    font-family: 'Avenir Next', sans-serif;
    color: #878787;
}

h1 {
    color: #1d1d1b;
    font-size: 1.5rem;
    line-height: 1.188;
    margin: 0 0 20px 0;
    font-weight: 600;
    text-align: left;
}


.wrapper {
    background-color: #fff;
    min-width: 364px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;

    -webkit-box-shadow: 0px 0px 25px -9px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 25px -9px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 25px -9px rgba(0, 0, 0, 0.75);
}

.content_container {
    width: 100%;
    margin: 0;
    float: left;
    text-align: center;
}

#logo {
    padding: 30px 0;
    width: 200px;
    display: inline-block;
    vertical-align: center;
}

#about {
}

hr.in-between {
    border: 0;
    height: 0;
    margin: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mr20 {
    margin-right: 20px;
    margin-top: 15px;
}

.section {
    margin-top: 32px;
    padding: 32px 32px 30px 32px;
    line-height: 1.8;
    font-size: 15px;
    text-align: justify;
    position: relative;
}

.section.bg-secondary {
    background-color: #f7f6f5;
}


em {
    font-size: 10px;
    color: #878787;
    font-style: italic;
}

strong {
    font-weight: bold;
    color: #008296;
}

a:link, a:visited {
    color: #008296;
}


.navigation {
    background-color: #338294;
    width: 100%;
    display: block;
    font-weight: bold;
    color: #fff;
    padding: 13px;
    margin: 0 28px 0 0;
    font-size: 15px;
    text-transform: uppercase;
}

img {
    max-width: 100%;
}

.navigation a {
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    margin: 0 0 0 10px;
    text-transform: uppercase;

    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.navigation a:first-child {
    margin: 0;
}

.navigation a.selected {
    background: #006C7D;
    text-transform: uppercase;
}

.navigation a:hover {
    background: #006C7D;
    text-transform: uppercase;
}


/*]]>*/