/* Other */
body {
    font-family: 'Open Sans', sans-serif;
    background: whitesmoke;
    color: rgb(25, 26, 28);
}

main {
    padding-top: 60px;
}

.color-smooth {
    /* Firefox */
    -moz-transition: all 0.1s ease-in;
    /* WebKit */
    -webkit-transition: all 0.1s ease-in;
    /* Opera */
    -o-transition: all 0.1s ease-in;
    /* Standard */
    transition: all 0.1s ease-in;
}

.hidden {
    display: none !important;
}

/* Tekst elementen */
.text-soft {
    opacity: .5;
}

/* Grid System */
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.row-2 {
    justify-content: space-around;
}

.col {
    display: flex;
    flex-direction: column;
    margin: 10px;
    min-width: 30%;
}

p {
    max-width: 620px;
}

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

/* Navigation */
header {
    overflow: hidden;
    background: rgb(8, 82, 254);
    position: fixed;
    top: 0;
    width: 100%;
}

nav a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    margin: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

#nav-name {
    float: left;
}

#nav-links a {
    float: right;
}

.nav-active {
    font-weight: 600;
}

.link-border {
    border: 1px solid rgba(255, 255, 255, 200);
    border-radius: 8px;
    padding: 9px 11px;
    margin: 5px 5px;
}

.link-border:hover {
    background: rgba(25, 26, 28, 230);
}

/* Nav tab */
.nav-tabs {
    display: flex;
    flex-flow: row nowrap;
    border-bottom: 2px solid rgba(233, 233, 233, 0.5);
}

.nav-tabs-link {
    /* margin: 0; */
    color: black;
    padding: 9px 6px;
    opacity: 0.6;
    font-weight: 600;
    height: 24px;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all .18s cubic-bezier(.55,0,.1,1);
}

.nav-tabs-link:hover {
    -webkit-box-shadow: inset 0 -2px rgb(8, 82, 254);
    box-shadow: inset 0 -2px rgb(8, 82, 254);
    z-index: 1;
    position: static;
}

.nav-tabs-active {
    -webkit-box-shadow: inset 0 -2px blue;
    box-shadow: inset 0 -2px blue;
    z-index: 2;
    position: static;
}

/* Panel */
.panel {
    background: white;
    border-radius: 7px;
    box-shadow:rgba(127, 127, 127, 0.05) 0px 3px 3px -2px, rgba(127, 127, 127, 0.035) 0px 3px 4px 0px, rgba(127, 127, 127, 0.06) 0px 1px 8px 0px;
}

.panel-header {
    border-bottom: 1px solid rgba(200, 200, 200, 0.5);
    padding: 20px;
}

.panel-tabs .panel-header {
    border-bottom: none;
    padding-bottom: 0;
}

.panel-title {
    font-size: 1.1em;
    font-weight: 600;
}

.panel-content {
    padding: 20px;
}

.panel-list {
    padding: 0;
}

.panel-image {
    min-width: 0;
}

.list-item {
    display: flex;
    padding: 15px 50px;
}

.list-item-prefix {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    margin-right: 30px;
}


.list-item-caption > * {
    display: block;
}

.panel-list a {
    text-decoration: none;
    color: black;
}

a .list-item:hover {
    background: rgba(233, 233, 233, 0.8);
}

/* Projecten */

#projecten {
    justify-content: center;
}

.project-image {
    max-width: 500px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    height: auto;
    width: 100%;
    display: block;
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.project-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .4s ease;
    background-color: rgb(8, 82, 254);
    overflow: scroll;
}

.project-info {
    color: white;
    font-size: 1.3em;
    position: absolute;
    text-align: center;
    width: 100%;
}

.project-info-content {
    margin: 20px;
}

.project-title {
    font-weight: 600;
}

.project-info p {
    font-size: 0.8em;
}

.project-links {
    margin-top: 10px;
}

.project-links a {
    font-size: 1.4em;
    color: white;
    text-decoration: none;
}