/* ------------------------------------------------------------------------------
	Template Name: Flosix
	Author: Designstub
	Author URI: http://www.designstub.com
	License: GNU General Public License version 3.0
	License URI: http://www.gnu.org/licenses/gpl-3.0.html
	Version: 1.0

/* ------------------------------------------------------------------------------
	Typography
-------------------------------------------------------------------------------*/

@import url(//fonts.googleapis.com/css?family=Cutive%20Mono:400&display=swap);

p {
    font-size: 14px;
    line-height: 22.4px;
    color: #6c7279;
}

h1 {
    font-size: 28px;
    color: #2d3033;
}

h2 {
    font-size: 27px;
    color: #2d3033;
}

h3 {
    font-size: 28px;
    color: #2d3033;
    font-weight: 300;
}

h4 {
    font-size: 22px;
    color: #2d3033;
    font-weight: 400;
}

h5 {
    font-size: 14px;
    font-weight: 700;
    line-height: 22.4px;
    color: #6c7279;
}

.btn {
    background-color: #333;
    margin: 40px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0px;
    padding: 3%;
    display: inline-block;
    text-transform: uppercase;
}

.btn:hover,
.btn:focus {
    background-color: #000;
    color: #fff;
}

.btn-large {
    padding: 15px 40px;
}

/* ------------------------------------------------------------------------------
	Global Styles
-------------------------------------------------------------------------------*/
a {
    color: #e84545;
}

a:hover,
a:focus {
    text-decoration: none;
    -moz-transition: background-color, color, 0.3s;
    -o-transition: background-color, color, 0.3s;
    -webkit-transition: background-color, color, 0.3s;
    transition: background-color, color, 0.3s;
}

body {
    font-family: "Cutive Mono";
    font-weight: 400;
    color: #fff;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

.section {
    padding: 15px 0;
}

.sectionheader {
    padding: 50px 0;
}

.no-padding {
    padding: 0;
}

.no-gutter [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.extra-padding {
    margin: 60px 0 0 100px;
}

/* ------------------------------------------------------------------------------
	 Header
-------------------------------------------------------------------------------*/
#header {
    position: fixed;
    width: 100%;
    z-index: 999;
}

#header a {
	cursor: pointer;
}

#header .header-content {
    margin: 0 auto;
    padding: 60px 10%;
    width: 100%;
    -moz-transition: padding 0.3s;
    -o-transition: padding 0.3s;
    -webkit-transition: padding 0.3s;
    transition: padding 0.3s;
    margin: 0;

}

#header .logo {
    float: left;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#header .logo #img1 {
    display: block;
}

#header .logo #img2 {
    display: none;
}

#header.fixed {
    /*background-color: rgba(255, 255, 255, 1);*/
    background-color: white;
}

#header.fixed .header-content {
    border-bottom: 0;
    padding: 25px 10%;
}

#header.fixed .nav-toggle,
#img2 {
    top: 18px;
}

.navigation.open {
    opacity: 0.9;
    visibility: visible;
    -moz-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.navigation {
    float: right;
}

.navigation li {
    display: inline-block;
}

.navigation,
.navigation a {
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    margin-left: 40px;
    letter-spacing: -1px;
}

.navigation a:hover,
.navigation a.active {
    color: #000;
}

.nav-toggle {
    display: none;
    height: 44px;
    overflow: hidden;
    position: fixed;
    right: 5%;
    text-indent: 100%;
    top: 32px;
    white-space: nowrap;
    width: 44px;
    z-index: 99999;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-toggle:before,
.nav-toggle:after {
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
}

.nav-toggle:before {
    background-color: #333;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.nav-toggle:after {
    background-color: #000;
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -moz-transition-duration: 0s;
    -o-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.nav-toggle span {
    background-color: #fff;
    bottom: auto;
    display: inline-block;
    height: 3px;
    left: 50%;
    position: absolute;
    right: auto;
    top: 50%;
    width: 18px;
    z-index: 10;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.nav-toggle span:before,
.nav-toggle span:after {
    background-color: #fff;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.nav-toggle span:before {
    -moz-transform: translateY(-6px) rotate(0deg);
    -ms-transform: translateY(-6px) rotate(0deg);
    -webkit-transform: translateY(-6px) rotate(0deg);
    transform: translateY(-6px) rotate(0deg);
}

.nav-toggle span:after {
    -moz-transform: translateY(6px) rotate(0deg);
    -ms-transform: translateY(6px) rotate(0deg);
    -webkit-transform: translateY(6px) rotate(0deg);
    transform: translateY(6px) rotate(0deg);
}

.nav-toggle.close-nav:before {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
}

.nav-toggle.close-nav:after {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.nav-toggle.close-nav span {
    background-color: rgba(255, 255, 255, 0);
}

.nav-toggle.close-nav span:before,
.nav-toggle.close-nav span:after {
    background-color: #fff;
}

.nav-toggle.close-nav span:before {
    -moz-transform: translateY(0) rotate(45deg);
    -ms-transform: translateY(0) rotate(45deg);
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
}

.nav-toggle.close-nav span:after {
    -moz-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
}

/* ------------------------------------------------------------------------------
	 Hero content
-------------------------------------------------------------------------------*/
.hero {
    margin-top: 10%;
}

.hero-content {}

.hero h1 {
    font-size: 48px;
    text-transform: uppercase;
}

.hero h4 {
    font-weight: 400;
}

.hero p {
    padding-top: 20px;
}

/* ------------------------------------------------------------------------------
	 Portfolio
-------------------------------------------------------------------------------*/
#portfolio .portfolio-item {
    right: 0;
    margin: 0 0 20px;
    padding: 0 10px;
}

#portfolio .portfolio-item .portfolio-link {
    display: block;
    position: relative;
    margin: 0 auto;
}

#portfolio .portfolio-item .portfolio-link .caption {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(58, 54, 54, .9);
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
}

#portfolio .portfolio-item .portfolio-link .caption:hover {
    opacity: 1;
}

#portfolio .portfolio-item .portfolio-link .caption .caption-content {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 20px;
    margin-top: -12px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

#portfolio .portfolio-item .portfolio-link .caption .caption-content i {
    margin-top: -12px;
}

#portfolio .portfolio-item .portfolio-link .caption .caption-content h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-link .caption .caption-content h4 {
    margin: 10px 0;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#portfolio * {
    z-index: 2;
}

/* ------------------------------------------------------------------------------
	 Service
-------------------------------------------------------------------------------*/
.service {
    margin-bottom: 50px;
}

.service h4 {
    font-size: 19px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
}

.service-content {
    margin-top: 30px;
}

.service .icon {
    color: #a1a4a8;
    font-size: 48px;
}

.service-content h5 {
    text-transform: uppercase;
    font-weight: 400;
    color: #000;
}

/* ------------------------------------------------------------------------------
	 Footer
-------------------------------------------------------------------------------*/
.footer {
    text-align: left;
    background-color: #d44d1e;
    padding: 2% 7%;
}

.footer h4 {
    color: #fff;
    margin: 0 0 15px 0;
    padding: 0px;
}

.footer p {
    color: #fff;
    font-size: 12px;
    margin: 0px;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .fa-heart {
    color: #e84545;
    font-size: 11px;
    margin: 0 2px;
}

.copyright p {
    font-size: 11px;
    text-align: center;
    background-color: white;
    color: #6c7279;
    padding: 10px;
}

/* ------------------------------------------------------------------------------
	 Work Details
-------------------------------------------------------------------------------*/
.work-detail img {
    width: 100%;
    text-align: center;
    margin: 5% 0 5% 0;
}

.work-detail a {
    color: #000;
}

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap');

#title {
    text-align: center;
    color: white;
    font-size: 30px;
    text-transform: uppercase;
    margin-top: 100px;
}

.hover-table-layout {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
}

.listing-item {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    float: left;
    background: #fff;
    z-index: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.10);

}

.listing-item:hover,
.listing-item.active {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 2;

}

.listing-item .listing {
    padding: 20px;
    position: relative;
}

.listing-item .listing:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -o-calc(50% - 15px);
    left: -moz-calc(50% - 15px);
    left: -webkit-calc(50% - 15px);
    left: calc(50% - 15px);
    border-bottom: 20px solid #fff;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

figure.image img {
    width: 100%;
    height: 50%;
}

figure.image {
    position: relative;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.6);
    background-color: #d44d1e;
}

figure.image figcaption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    bottom: 4px;

}

figcaption .caption {
    position: relative;
    top: 30%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);

}

figcaption h2 {
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

figcaption p {
    color: white;
    font-size: 12px;
}

.listing h4 {

    font-size: 13px;
    text-align: center;
    padding: 5px 10px;
    font-weight: bold;
}

.listing h4:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.listing-item:hover figure.image figcaption {
    background: rgba(0, 0, 0, 0.6);
}

@media all and (max-width: 1024px) {
    #img1 {
        display: none !important;
    }

    #img2 {
        display: block !important;
        margin-top: 5px;
        width: 30% !important;
        margin-left: 10px;
        padding: 50px 2% !important;
    }

    #faq .fa {
        padding: 5px;
    }

    #footer .col-md-4 {
        margin-bottom: 20px;
    }

    .formgrid {
        display: block !important;
        width: 100%
    }

    .oplijsting {
        height: 100% !important;
    }
}

@media only screen and (min-width:540px) {
    .listing-item {
        display: block;
        width: -webkit-calc(100%/3);
        width: -moz-calc(100%/3);
        width: calc(100%/4.5);
        margin: 10px;
    }


}

@media only screen and (min-width:1024px) {
    .hover-table-layout {
        padding: 30px;
    }
}

.underconstruction .vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.fa {
    padding: 10px;
    font-size: 30px;
    text-align: center;
    text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
    color: white;
}

/* instagram */
.fa-instagram {
    color: white;
}

/*contact*/

#contact .contactmiddle {
    padding: 0px 5%
}

#contact form {
    margin-top: 10%;
}

#contact form label {
    color: black;
}

#contact input[type=text],
input[type=tel],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    color: #000;
}

#contact input:focus {
    border-style: solid;
    border-color: #d44d1e;
    outline: none;
}

#contact input[type=submit] {
    background-color: #d44d1e;
    color: white;
    padding: 12px 20px;
    border-width: 2px;
    border-style: solid;
    border-color: #d44d1e;
    cursor: pointer;
    border-radius: 0px;
}

#contact input[type=submit]:hover {
    color: #d44d1e;
    border-width: 2px;
    border-style: solid;
    border-color: #d44d1e;
    background-color: #fff;
}

#faq .collapsible {
    cursor: pointer;
    padding: 0px 18px;
    width: 100%;
    border-width: 2px;
    border-style: solid;
    border-color: #d44d1e;
    text-align: left;
    outline: none;
    color: #000;
    background-color: #fff;
    margin-top: 20Px;
}

#faq .active,
.collapsible:hover {
    background-color: #d44d1e;
}

#faq .content {
    padding: 5px 18px;
    display: none;
    overflow: hidden;
    border-width: 2px;
    border-style: solid;
    border-color: #d44d1e;
}

#faq h4 {
    margin-top: 45px;
}

.faqrow {
    margin: 0%;
    padding: 0px 5%;
}

button:focus {
    border-style: solid;
    border-color: #d44d1e;
    outline: none;
}

button:hover {
    background-color: #d44d1e;
    color: white;
    padding: 12px 20px;
    border-width: 2px;
    border-style: solid;
    border-color: #d44d1e;
    cursor: pointer;
}

button {
    color: #d44d1e;
    padding: 12px 20px;
    border-width: 2px;
    border-style: solid;
    border-color: #d44d1e;
    background-color: #fff;
    width: 100%;
    border-radius: 0px;
}

.list li {
    color: #6c7279;
	margin-bottom: 15px;
	line-height: 1.2;
}

.list {
    margin: 30px 0px;
}

.list .fa {
    padding: 0px 5px;
}

.oplijsting {
    height: 450px;
}

/*reserveer*/

#reserveer .contactmiddle {
    padding: 0px 5%
}

#reserveer form {
    margin-top: 10%;
}

#reserveer form label {
    color: black;
}

#reserveer input[type=text],
input[type=tel],
input[type=email],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    color: #000;
}

#reserveer input[type=time],
input[type=date],
select,
#personen {
    padding: 12px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    color: #000;
}

#reserveer input:focus {
    border-style: solid;
    border-color: #d44d1e;
    outline: none;
}

#reserveer input[type=submit] {
    background-color: #d44d1e;
    color: white;
    padding: 12px 20px;
    border-width: 2px;
    border-style: solid;
    border-color: #d44d1e;
    cursor: pointer;
    border-radius: 0px;
}

#reserveer input[type=submit]:hover {
    color: #d44d1e;
    border-width: 2px;
    border-style: solid;
    border-color: #d44d1e;
    background-color: #fff;
}

.formgrid {
    display: inline-grid;
    width: 49%
}

.ilgrid {
    display: inline-grid;
    margin-bottom: 16px;
}

.avrow {
    padding: 0px 5%;
}

.row404 {
    padding: 0px 5%;
    text-align: center;
    display: block;
}

#portfolio .icons {
    background-color: #d44d1e;
}

#portfolio .icons p {
	color: #fff;
	line-height: 1.3;
}
#portfolio .icons h4 {
	color: #fff;
	text-align: center;
}

#portfolio .icons img {
    display: block;
  margin: auto;
  margin-bottom:20px;
  
  margin-top:20px;
}
#portfolio .icons .col-sm-4 {
	padding: 20px;
}
#photoboothy  .col-sm-4 {
	min-height: 270px;
}
.roze {
background-color: #eee;
}

.icons a {
    color: #fff;
    text-decoration: underline;
}

.footer .regio p {
	color: #d44d1e;
	font-size: 1px;
}
.instagram-media{margin:15px auto !important;
	display: inline !important;
	background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:32%; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);}

	#caravan .fa {
		color: #d44d1e;
    font-size: x-large;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
	margin-top: 20px;
	display: inline-grid;
	max-width: 46px;
	}
	#caravan .fas {
		color: #d44d1e;
    font-size: x-large;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
	margin-top: 20px;
	display: inline-grid;
	max-width: 46px;
	padding: 10px;
	}
	#caravan h4
	{display: inline-grid;
    width: 70%}
    
    #photoboothy .fa {
		color: #d44d1e;
    font-size: x-large;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
	margin-top: 20px;
	display: inline-grid;
	max-width: 46px;
	}
	#photoboothy .fas {
		color: #d44d1e;
    font-size: x-large;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
	margin-top: 20px;
	display: inline-grid;
	max-width: 46px;
	padding: 10px;
	}
	#photoboothy h4
	{display: inline-grid;
	width: 70%}