/* Standard styling */

h1, h2, h3, h4, h5, h6 {

    font-family: 'Titillium Web', sans-serif;
}

p, a, span, b, strong, label, input, select, textarea, li, ol, ul {
    font-family: 'Titillium Web', sans-serif;
}

h1 {
    font-size: 40px;
    line-height: 60px;
    font-weight: bold;
}

h2 {
    font-size: 35px;
    line-height: 35px;
    color: #FF9D2F;
}

h3 {
    font-size: 32px;
    font-weight: 600;
    color: #FF9D2F;
    line-height: 35px;
}

h4 {
    font-size: 26px;
    line-height: 25px;
}

h5 {
    font-size: 16px;
    line-height: 25px;
}

h6 {
    font-size: 16px;
    line-height: 25px;
}

p a {
    font-family: 'Titillium Web', sans-serif;
}

a {
    text-decoration: none;
    color: #404040;
}

a:hover {
    text-decoration: none;
    color: #FF9D2F;
}

/* Standard styling end */

a.full-link-btn {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    z-index: 4;
    border-radius: 2px;
}

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.flex-container-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
}

/* Topbar */

.topbar {
    width: 100%;
    height: 40px;
    background-color: #FF9D2F;
    color: #fff;
    text-align: right;
}

.iban {
    display: flex;
    justify-content: flex-end;
    padding: 8px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

/* Topbar end */

/* Postheader styling */

.post-header-bg {
    height: 360px;
    width: 100%;
    background-size: cover;
    background-position: center 33%;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: inset 700px -459px 93px 0 rgba(0,0,0,0.25);
    display: flex;
    justify-content: center;
}

.post_header_content_inner {
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}

.intro_title.postheader {
    text-align: center;
    color: #FFFFFF;
}

.intro_title.postheader h2 {
    color: #FFFFFF;
}

.intro_title.postheader a {
    text-align: center;
    color: #FFFFFF;
}

/* Postheader styling end */

/*Navbar styling*/

.navbar-brand img {
    width: 160px;
    height: auto;
}

.navbar-nav {
    width: 100%;
    height: 85px;
    position: relative;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.navbar-toggler {
    padding: 0;
}

.navbar-toggler:focus {
    outline: none;
}

a.nav-link {
    color: #404040;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-align: right;
    float: right;
    position: relative;
}

ul.navbar-nav.ml-auto {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 58%;
    padding-left: 25px;
}

.large-menu-btn a {
    height: 55px;
    width: fit-content;
    padding: 0 15px 0 15px;
    border-radius: 10px;
    background-color: #FF9D2F;
}

.large-menu-btn a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-bg {
    height: 768px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.overlay {
    position: absolute;
    background-color: #00000030;
    width: 100%;
    height: 100%;
}

.navbar.open .navbar-collapse {
    display: block;
}
.navbar.closed .navbar-collapse {
    display: none;
}

.navbar-nav.ml-auto {
    color: #FF9D2F;
    display: flex;
    flex-direction: column;
}
/*Navbar styling end*/

.header-container,
.header-container .row,
.header-container .col-md-12 {
    height: 100%;
}

.header_content_inner {
    position: relative;
    color: #FFFFFF;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header_content_inner h1 {
    margin-bottom: 20px;
}

.home_header .buttons .button:first-of-type {
    margin-right: 16px;
}



/* Button styling */

.main-btn {
    height: 50px;
    width: fit-content;
}

.button {
    display: inline-block;
    background-color: #ffa433;
    border-radius: 5px;
    height: 50px;
    min-width: 150px;
    position: relative;
    border: 3px solid transparent;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}

.button a {
    text-decoration: none;
    border: 0!important;
    color: #FFFFFF!important;
    font-size: 16px;
    width: 100%;
    height: 100%;
    display: block;
    font-weight: 500;
    line-height: 44px;
    text-align: center;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.button:hover {
    background: white;
    border: 3px solid #ffa433;
}

.button.home-orange:hover {
    background: white;
    border: 3px solid #ffffff;
}

.button:hover a {
    color: #ffa433!important;
}

.button.white {
    border: 3px solid white;
    background: transparent;
}

.button.white:hover {
    border: 3px solid #ffa433;
}

.button.white:hover a {
    color: white!important;
}

.inschrijfblok {
    border-radius: 5px;
    padding: 50px 70px 50px 50px;
    height: auto;
}

.inschrijfblok-title b {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 600;
    font-family: 'Titillium Web', sans-serif;
}


.inschrijfblok-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 400;
    font-family: 'Titillium Web', sans-serif;
}

.inschrijfblok-tekst {
    margin-top: 25px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Titillium Web', sans-serif;
}

.inschrijfblok-knop {
    height: 50px;
    width: fit-content;
    background-color: #f4f0f8;
    border-radius: 5px;
    padding: 12px;
    margin-top: 30px;
}

.inschrijfblok-knop a {
    text-decoration: none;
    color: #f7931e;
    padding: 15px;
}

/* Button styling end */

/*Foto galerij styling*/

.gallery_container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.foto_container {
    position: relative;
}

.foto_container:nth-child(1) img {
    width: 31.5%;
    height: auto;
    border-radius: 5px;
    float: left;
    margin-bottom: 15px;
}

.foto_container:nth-child(2) img {
    width: 31.5%;
    height: auto;
    border-radius: 5px;
    float: left;
}

.foto_container:nth-child(3) {
    width: 67%;
    height: 100%;
    border-radius: 5px;
    position: absolute;
    right: 0;
    top: 0;
}

.images {
    display: flex;
    flex-flow: row wrap;
}

/*Foto galerij styling end*/

/*Section standaard styling*/

.section-container {
    position: relative;
}

.section-container .carousel-inner .carousel-item {
    height: 300px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.overlay-sectie-title {
    top: 0;
    z-index: 0 !important;
    width: 100%;
    height: 100%;
    position: absolute;
}

.section-container .plate--container {
    z-index: 1 !important;
    position: relative !important;
}

/*Section standaard styling end*/

/* Projecten styling */


.project-titel h3 {
    margin-bottom: 50px;
}

.project-titel.overzicht {
    margin-bottom: 25px;
}

.project-titel.overzicht {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.link-naast-titel:hover a {
    border-bottom: 1px solid black;
}

.link-naast-titel a {
    color: #0C1F20;
    font-weight: 400;
    border-bottom: 1px solid transparent;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.link-naast-titel a:after {
    content: '\f054';
    font-size: 12px;
    margin-left: 8px;
    font-family: FontAwesome;
    color: #0C1F20;
}

.project-outer {
    position: relative;
    width: 32%;
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 30px #00000030;
    margin: 0 2% 35px 0;

    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.project-outer:nth-child(3n) {
    margin-right: 0;
}

.project-outer:hover {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-box-shadow: 0 5px 15px #0000001a;
    -moz-box-shadow: 0 5px 15px #0000001a;
    box-shadow: 0 5px 15px #0000001a;
}

.project-inner {
    padding: 30px;
    background-color: #FFFFFF;
}

.project-afbeelding {
    height: 350px;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    top: 0;
    left: 0;
}

.projectinfo-inner {
    margin: 10px 10px 0 0;
}

.project-icons {
    height: 15px;
    width: 15px;
    color: #FF9D2F;
}

.project {
    padding: 50px 0;
}

.project .section-container .plate--column {
    padding-left: 0;
    padding-right: 0;
}

/* Projecten styling end */

/* Contactenoverzicht */

.adres-blok {
    border-radius: 5px;
    border: #707070 4px solid;
    background: #ffffff;
    width: 100%;
    height: 200px;
}

.adres {
    flex: 1;
    overflow: hidden;
    padding: 20px;
    display:inline-block;
    width: 100%;
    height: 100%;
}

/* Contactenoverzicht end */

/* Contactpagina */

form {
    background-color: #F7F7F7;
    padding: 30px;
    border-radius: 5px;
    width: 100%;
    position: relative;
}

form input[type="text"] {
    width: 100%;
    background-color: #ffffff;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    color: #404040;
}

form textarea {
    width: 100%;
    min-height: 240px;
    background-color: #ffffff;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    color: #404040;
}

form input[type="text"]::placeholder {
    color: #404040;
    font-family: 'Titillium Web', sans-serif;
}

form textarea::placeholder {
    color: #404040;
    font-family: 'Titillium Web', sans-serif;
}

input[type="submit"] {
    background-color: #FF9D2F;
    border-radius: 5px;
    text-decoration: none;
    color: #FFFFFF;
    padding: 15px 30px 15px 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Titillium Web', sans-serif;
    border: none;
}


.contacttitel h3 {
    margin-bottom: 25px;
}

/* Contactpagina end */


/* Footer styling */

.footer h6{
    font-size: 20px;
    font-family: 'Titillium Web', sans-serif;
}

.footer img {
    width: 40px;
    border-radius: 5px;
    filter: contrast(165%);
}

.footercontent {
    height: auto;
    width: 100%;
    background-color: #222222;
    color: #FFFFFF;
    padding: 90px 0;
}

.bedrijfgegevens {
    height: 70px;
    width: 100%;
    background-color: #171717;
    color: #FFFFFF;
    position: relative;
}

.bedrijfgegevens-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright a {
    color: #FFFFFF;
    width: 49%;
    height: 70px;
    font-size: 14px;
}

.bedrijfsnaam {
    color: #FFFFFF;
    float: right;
    width: 49%;
    height: 70px;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
}

/* Footer styling end */

/* Ledenoverzicht */

.lidfoto {
    width: 100%;
    height: 325px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    border-radius: 5px;
}

.lidnaam p{
    color: #FF9D2F;
    text-align: center;
    margin: 3px;
}

.lidfunctie p{
    color: #404040;
    text-align: center;
    margin: 3px;
}

/* Ledenoverzicht end */

/*Fotogalerijen styling*/

.gallery3 {
    position: relative;
    right: 0;
    top: 0;
    height: 100%;
}

.gallery3 img {
    object-fit: cover;
    width: 97.7%;
}

.foto {
    margin: 25px 0 20px 0;
}

.maand h4 {
    text-transform: capitalize;
    margin: 5px 0 10px 0;
}

.foto-album-row {
    margin-bottom: 50px;
}

.foto-gallerij-wrapper {
    display: flex;
    width: 100%;
    flex-flow: column wrap;
    position: relative;
}

.image-wrapper {
    width: 32%;
    height: auto;
    position: relative;
}

.gal-image {
    height: 235px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.foto-album-row-inner {
    width: 32%;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    /* margin: 1%; */
    margin-bottom: 25px;
    margin-right: 2%;
}

.foto-album-row-inner:nth-child(3n) {
    margin-right: 0;
}

.foto-album-outer, .foto {
    position: relative;
    width: 100%;
}

.foto-album, .foto {
    position: relative;
    width: 31%;
    margin-right: 1%;
}

.foto-album-container {
    position: relative;
    width: 100%;
    margin-right: 2%;
}

.foto-album-outer:nth-child(3n),
.foto:nth-child(3n) {
    margin-right: 0;
}

.foto-album-title {
    width: 100%;
}

.foto-album-inner {
    position: relative;
    height: auto;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.foto-album-inner .image,
.foto .image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 325px;
    width: 100%;
}

/* Fotogalerijen end styling */

/* Hamburger menu */

*,
*:before,
*:after {
    box-sizing: border-box;
}

.hamburger {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    position: relative;
    display: block;
    height: 68px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.burger-main {
    position: relative;
    padding: 20px 16px;
    float: right;
}

.burger-inner {
    position: relative;
    height: 28px;
    width: 36px;
}

.burger-main span {
    position: absolute;
    display: block;
    height: 4px;
    width: 36px;
    border-radius: 2px;
    background: #FF9D2F;
}

.top {
    top: 0;
    transform-origin: 34px 2px;
}

.bot {
    bottom: 0;
    transform-origin: 34px 2px;
}

.mid {
    top: 12px;
}

.svg-main {
    position: absolute;
    top: 0;
    left: 0;
}

.circle {
    width: 68px;
    height: 68px;
}

.path {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    stroke-linejoin: round;
}

.hamburger.open .path {
    animation: dash-in 0.6s linear normal;
    animation-fill-mode: forwards;
}

.hamburger.closed .path {
    animation: dash-out 0.6s linear normal;
    animation-fill-mode: forwards;
}

.hamburger.open .top {
    animation: close-top-out 0.6s linear normal;
    animation-fill-mode: forwards;
}

.hamburger.open .bot {
    animation: close-bot-out 0.6s linear normal;
    animation-fill-mode: forwards;
}

.hamburger.closed .top {
    animation: close-top-in 0.6s linear normal;
    animation-fill-mode: forwards;
}

.hamburger.closed .bot {
    animation: close-bot-in 0.6s linear normal;
    animation-fill-mode: forwards;
}

.hamburger.open .mid {
    animation: burger-fill-out 0.6s linear normal;
    animation-fill-mode: forwards;
}

.hamburger.closed .mid {
    animation: burger-fill-in 0.6s linear normal;
}

.path-burger {
    position: absolute;
    top: 0;
    left: 0;
    height: 68px;
    width: 68px;
    -webkit-mask: url(#mask);
    mask: url(#mask);
    -webkit-mask-box-image: url(http://dev.awsm.in/codepen/mask.svg);
}

.animate-path {
    position: absolute;
    top: 0;
    left: 0;
}

.path-rotation {
    height: 34px;
    width: 34px;
    margin: 34px 34px 0 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.path-rotation:before {
    content: '';
    display: block;
    width: 30px;
    height: 34px;
    margin: 0 4px 0 0;
    background: #FF9D2F;
}

.hamburger.open .animate-path {
    animation: circle-in 0.6s linear normal;
    animation-fill-mode: forwards;
}

.hamburger.closed .animate-path {
    animation: circle-out 0.6s linear normal;
    animation-fill-mode: forwards;
}

@-webkit-keyframes dash-in {
    0% {
        stroke-dashoffset: 240;
    }

    40% {
        stroke-dashoffset: 240;
    }

    100% {
        stroke-dashoffset: 0;
    }

}

@keyframes dash-in {
    0% {
        stroke-dashoffset: 240;
    }

    40% {
        stroke-dashoffset: 240;
    }

    100% {
        stroke-dashoffset: 0;
    }

}

@-webkit-keyframes dash-out {
    0% {
        stroke-dashoffset: 0;
    }

    40% {
        stroke-dashoffset: 240;
    }

    100% {
        stroke-dashoffset: 240;
    }

}

@keyframes dash-out {
    0% {
        stroke-dashoffset: 0;
    }

    40% {
        stroke-dashoffset: 240;
    }

    100% {
        stroke-dashoffset: 240;
    }

}

@keyframes close-top-out {
    0% {
        left: 0;
        top: 0;
        transform: rotate(0deg);
    }

    20% {
        left: 0;
        top: 0;
        transform: rotate(15deg);
    }

    80% {
        left: -5px;
        top: 0;
        transform: rotate(-60deg);
    }

    100% {
        left: -5px;
        top: 1px;
        transform: rotate(-45deg);
    }

}

@keyframes close-bot-out {
    0% {
        left: 0;
        transform: rotate(0deg);
    }

    20% {
        left: 0;
        transform: rotate(-15deg);
    }

    80% {
        left: -5px;
        transform: rotate(60deg);
    }

    100% {
        left: -5px;
        transform: rotate(45deg);
    }

}

@keyframes close-top-in {
    0% {
        left: -5px;
        bot: 0;
        transform: rotate(-45deg);
    }

    20% {
        left: -5px;
        bot: 0;
        transform: rotate(-60deg);
    }

    80% {
        left: 0;
        bot: 0;
        transform: rotate(15deg);
    }

    100% {
        left: 0;
        bot: 1px;
        transform: rotate(0deg);
    }

}

@keyframes close-bot-in {
    0% {
        left: -5px;
        transform: rotate(45deg);
    }

    20% {
        left: -5px;
        transform: rotate(60deg);
    }

    80% {
        left: 0;
        transform: rotate(-15deg);
    }

    100% {
        left: 0;
        transform: rotate(0deg);
    }

}

@keyframes burger-fill-in {
    0% {
        width: 0;
        left: 36px;
    }

    40% {
        width: 0;
        left: 40px;
    }

    80% {
        width: 36px;
        left: -6px;
    }

    100% {
        width: 36px;
        left: 0px;
    }

}

@keyframes burger-fill-out {
    0% {
        width: 36px;
        left: 0px;
    }

    20% {
        width: 42px;
        left: -6px;
    }

    40% {
        width: 0;
        left: 40px;
    }

    100% {
        width: 0;
        left: 36px;
    }

}
@keyframes circle-out {
    0% {
        transform: rotate(0deg);
    }

    40% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }

}


@keyframes circle-in {
    0% {
        transform: rotate(360deg);
    }

    40% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(0deg);
    }

}

/* Hamburger menu end */

/* Responsive nav styling */

.navigation, .navigation .navbar {
    height: 100px;
}
​
.mobile_call, .mobile_social_media {
    display: none;
}
​
.nav-item {
    margin: 0 16px;
}
​
.navbar-brand {
    position: absolute;
    left: -30px;
}
​
ul.navbar-nav li.dropdown .dropdown-menu.open {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    display: block !important;
}
​
ul.navbar-nav li.dropdown .dropdown-menu {
    transform: translateY(24px);
    display: block;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
​
.dropdown-item:active {
    background-color: #009be9;
}
​
li.nav-item a {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
​
li.nav-item:hover a {
    color: #FF9D2F;
}

li.nav-item:last-child a {
    color: white;
}
​
.dropdown-menu {
    border: 0;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
​
.dropdown-toggle::after {
    position: relative;
    top: 3px;
}

svg.svg-circle {
    width: 70px;
}

/* Responsive nav styling end */

ul.navbar-nav li.dropdown .dropdown-menu.open {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

ul.navbar-nav li.dropdown .dropdown-menu {
    transform: translateY(24px);
    display: block;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.dropdown-item:active {
    background-color: #009be9;
}

li.nav-item a {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

li.nav-item:hover a {
    color: #FF9D2F;
}

li.nav-item:last-child a {
    color: white;
}

.dropdown-menu {
    border: 0;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.dropdown-toggle::after {
    position: relative;
    top: 3px;
}

.photo-gallery {
    padding: 90px 15px;
}

.project-padding {
    padding: 90px 0;
}

/*EVEN CONTAINERS*/
@media screen and (max-width: 1400px){
    ul.navbar-nav.ml-auto {
        width: 70%;
    }
}

@media screen and (max-width: 1200px){
    ul.navbar-nav.ml-auto {
        width: 80%;
    }
}



@media screen and (max-width: 1000px){
    .project-outer {
        width: 100%;
    }
    iframe {
        width: 100%;
    }
    .header-bg {
        height: 400px;
    }
    .foto-album-row-inner {
        width: 48%;
    }
    .foto-album-row-inner:nth-child(3n) {
        margin-right: 2%;
    }
    .foto-album-row-inner:nth-child(2n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 992px) {
    .footercontent, .photo-gallery {
        padding: 50px 15px;
    }
    .project-padding {
        padding: 50px 0;
    }

    ul.navbar-nav.ml-auto {
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 30px 0;
    }

    ul.navbar-nav .button {
        margin-top: 10px;
    }

    ul.navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    .footercontent .plate--column {
        margin-bottom: 25px;
    }

    .bedrijfgegevens {
        height: 100px;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .bedrijfgegevens-inner {
        display: block;
        justify-content: flex-start;
        align-items: center;
    }

    .bedrijfsnaam {
        color: #FFFFFF;
        float: right;
        width: 100%;
        height: 25px;
        position: relative;
        align-items: center;
        display: flex;
        justify-content: flex-start;
        font-size: 14px;
    }
}


@media screen and (max-width: 780px){
    .foto-album-row-inner {
        width: 100%;
    }
    .foto-album-row-inner:nth-child(3n) {
        margin-right: 0;
    }
    .foto-album-row-inner:nth-child(2n) {
        margin-right: 0;
    }

    .foto-album, .foto {
        width: 100%;
        margin-right: 0
    }
    .flex-container.images {
        flex-flow: column wrap;
    }

    .lidfoto {
        background-position: center center;
    }

}

@media screen and (min-width: 768px) {
    .container, .plate--container {
        width: 100%;
        max-width: 1090px;
    }
}

@media screen and (min-width: 992px) {
    .container, .plate--container {
        width: 100%;
        max-width: 1100px;
    }
}

@media screen and (min-width: 1400px) {
    .container, .plate--container {
        width: 100%;
        max-width: 1350px;
    }
}

@media (min-width: 1530px) {
    .container, .plate--container {
        max-width: 1470px;
    }
}

