@media screen and (-webkit-min-device-pixel-ratio:0) {

	@font-face {
	font-family: 'avantgardebook';
	src: url('../fonts/avantgarde_book-webfont.woff2') format('woff2'),
		 url('../fonts/avantgarde_book-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	}
	

	@font-face {
	font-family: 'bebaskai';
	src: url('../fonts/bebaskai-webfont.woff2') format('woff2'),
		 url('../fonts/bebaskai-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	}
	

	@font-face {
	font-family: 'bebasregular';
	src: url('../fonts/bebas-regular-webfont.woff2') format('woff2'),
		 url('../fonts/bebas-regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	}
	
}

/* 
===============================
======= GLOBAL SETTINGS =======
=============================== 
*/
@charset "UTF-8";

body {
margin:0;
background:#000;
font-family: 'avantgardebook';
font-size:20px;
color:#434343;
overflow-x:hidden;
}

h1, h2, h3, h4, h5, h6, h7 {
font-weight:normal;
}

h1 {
text-transform:uppercase;
font-family: 'bebaskai';
font-size: 80px;
color: #fff;
}

h2 {
text-transform:uppercase;
font-family: 'bebaskai';
font-weight:normal;
font-size: 50px;
}

p {
line-height:34px;
font-size: 20px;
}

a { 
text-decoration:underline;
color:#dbad64;
}

a:hover { 
color:#97d1c5;
}

a img { 
border:none;
}

img {
height:auto;
max-width:100%;
display:block;
}

nowrp {
white-space: nowrap;
}

.clr {
clear:both;
}

.main {
width:100%;
max-width:100%;
margin:0 auto;
display:block;
}

.cont404 {
width:100%;
display:block;
background:#fff;
}

.cont404 .pad {
width:90%;
max-width:1000px;
margin:0 auto;
padding:100px 0;
display:block;
}

.cont404 h1 {
margin:0;
text-align:center;
font-size: 80px;
color: #000;
}

.cont404 h2 {
margin:0;
font-size: 50px;
color: #000;
}

.cont404 .btn {
padding:5px 15px;
margin:10px auto 0;
display:inline-block;
background:#dbad64;
text-decoration:none;
text-transform:uppercase;
text-align:center;
color:#fff;
}

.cont {
width:100%;
max-width:100%;
margin:0 auto;
display:block;
}

.cont-video {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
}

.cont-video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}


.fade-in {
opacity: 0;
transform: translateY(20vh);
visibility: hidden;
transition: opacity 1.2s ease-out, transform 1.2s ease-out;
will-change: opacity, visibility;
}

.fade-in.is-visible {
opacity: 1;
transform: none;
visibility: visible;
}

header {
width:100%;
display:block;
padding:0 30px;
background: #000;
position:fixed;
top:0;
z-index:900;
}

header .logo {
float:left;
padding:12px 0;
}

header .bar {
width:87%;
height:37px;
float:right;
background: url(../images/header-triangle-bg.png) left no-repeat #97d1c5;
letter-spacing: -2px;
text-transform: uppercase;
text-align:left;
line-height:37px;
word-spacing:3px;
font-family: 'Montserrat', sans-serif;
font-weight:400;
}

header .bar b, 
header .bar strong {
font-weight:700;
}

header .bar a {
color:#000;
}

header .bar div {
display:block;
padding-left:50px;
}




footer {
width:100%;
padding:120px 0;
display:block;
background:#000;
color:#fff;
}

footer .cont {
max-width:1200px;
}

footer h4 {
margin:0;
text-align:center;
font-family: 'bebaskai';
font-size:70px;
color:#fff;
}


footer p {
text-align:center;
}

footer .ppad {
padding:0 0 100px;
text-align:center;
}

footer .award-icon {
width:25%;
display:inline-block;
}

footer .award-icon img {
margin:0 auto;
}

footer .col1 {
width:30%;
float:left;
padding-top: 30px;
}

footer .col1 .social p {
text-align:left;
}

footer .col1 .social img {
margin:0 6px 0 0;
display:inline-block;
}

footer ul {
margin:0;
padding:0; 
list-style:none;
}

footer li {
display:block;
padding:0 0 15px 50px; 
}

footer .txt {
padding-left:10px;
line-height:40px;
}
 
footer .iconphone {
background:url(../images/contact-icon-phone.png) no-repeat top left;
}
 
footer .iconemail {
background:url(../images/contact-icon-email.png) no-repeat top left;
}
 
footer .iconmap {
background:url(../images/contact-icon-address.png) no-repeat top left;
}

footer .col2 {
width:70%;
float:right;
}



/* GLOBAL NAV START */



nav {
float: left;
padding:8px 0 0 0; 
text-transform:uppercase;
letter-spacing:2px;
font-weight: normal;
font-size: 15px;
}

nav ul {
list-style: none;
margin: 0 0 0 50px;
padding: 0;
}

nav ul li {
float: left;
position: relative;
padding: 0 10px 0;
}

nav ul li a {
display: block;
line-height: 70px;
background: #000;
color: #fff;
text-decoration: none;
/*
The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
*/
}

nav ul li a:hover {
color: #dbad64;
}

nav ul li a:not(:only-child):after {
padding-left: 4px;
content: ' \25BE';
}

nav ul li ul li a {
padding: 0 15px 15px;
line-height: 20px;
min-width: 110px;
}

nav ul li a.book {
line-height: normal !important;
padding: 5px 20px !important;
background: #dbad64 !important;
margin-top: 18px !important;
}

.nav-dropdown {
left:-65px;
position: absolute;
z-index: 1;
/* Guarantees that the dropdown will display on top of any content. */
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
display: none;
width:100%;
}

.nav-mobile {
display: none;
position: absolute;
top: 8px;
right: 0;
height: 70px;
width: 70px;
}

/*mobile styles*/

@media only screen and (max-width: 1200px) {
	nav {
    padding: 5px 0 0 0;
	}
}


@media only screen and (max-width: 950px) {

	header .logo {
    float: none;
	width:120px;
	display:block;
    margin: 0 auto;
	text-align:center;
	}
	
	header .logo img {
    margin-left: 0px !important;
	}

	.nav-mobile {
	display: block;
	}

	nav {
	width: 100%;
	padding: 0;
	font-size: 22px !important;
	}
	
	/*added to prevent dropdown from overlaying on lower menu items*/
	.nav-dropdown {
	left: 0;
	position: relative;
	}
	
	nav ul {
	display: none;
	margin:0 0 20px;
	}

	nav ul li {
	float: none;
	}

	nav ul li a {
	padding: 15px;
	line-height: 40px;
	text-align:center;
	}

	nav ul li ul li a {
	padding: 5px;
	line-height: 40px;
	}
	
}

@media screen and (min-width: 950px) {
	
	.nav-list {
	display: block !important;
	}
	
	.effect {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	text-decoration:none;
	}

	.effect:before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 50%;
	right: 50%;
	bottom: 18px;
	background: #dbad64;
	height: 1px;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	}


	.effect {
	text-decoration:none !important;
	}

	.effect:hover:before, 
	.effect:focus:before, 
	.effect:active:before {
	left: 0;
	right: 0;
	}
	
}


#nav-toggle {
position: absolute;
left: 18px;
top: 22px;
cursor: pointer;
padding: 10px 35px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
cursor: pointer;
border-radius: 1px;
height: 5px;
width: 35px;
background: #fff;
position: absolute;
display: block;
content: '';
transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
top: -10px;
}

#nav-toggle span:after {
bottom: -10px;
}

#nav-toggle.active span {
background-color: transparent;
}

#nav-toggle.active span:before, #nav-toggle.active span:after {
top: 0;
}

#nav-toggle.active span:before {
transform: rotate(45deg);
}

#nav-toggle.active span:after {
transform: rotate(-45deg);
}




/* GLOBAL NAV END */


hr {
width: 160px;
height: 4px;
border: none;
background: #dbad64;
margin: 20px auto;
}


.contblock {
width:100%;
min-height:150px;
display:block;
background:#fff;
}



#home .banner {
position:relative;
text-align:center; 
}

#home .banner a {
color:#000;
}

#home .banner a:hover {
color:#dbad64;
}

#home .banner-box {
top:50%;
left:5%; 
position:absolute;
width:40%;
text-transform:uppercase;
text-align:center;
z-index: 90;
}

#home .htxt1 {
font-weight:bold;
font-size:26px;
margin:0;
}

#home .htxt2 {
margin:20px 0 0 0;
line-height:90px;
font-family: 'bebaskai';
font-size:80px;
}





#home .photoboooths {
padding-top:100px;
}

#home .photoboooths .cont {
padding:70px 0;
max-width:1200px;
text-align:center;
}

#home .photoboooths h3 {
margin:0;
text-align:center;
text-transform:uppercase;
font-family: 'bebaskai';
font-size:70px;
color:#000;
}

#home .photoboooths .col {
width:50%;
float:left;
outline:none;
position:relative;
}

#home .photoboooths .col img {
width:100%;
max-width:100%;
display: block;
border-left:2px solid #fff;
border-right:2px solid #fff;
outline:none;
}

#home .photoboooths h4 {
top:50%;
position:absolute;
z-index: 810;
width:100%;
margin-top:-20px;
display:block;
font-family: 'bebaskai';
font-size:40px;
text-shadow: 1px 1px #666;
text-transform:uppercase;
text-align:center;
color:#fff;
}

#home .photoboooths .text {
top:50%;
position:absolute;
width:100%;
display:block;
margin-top:30px;
opacity: 0;
transition: opacity .5s ease;
-webkit-transition: opacity .5s ease;
-moz-transition: opacity .5s ease;
-o-transition: opacity .5s ease;
z-index: 810;
text-align:center;
color:#fff;
}

#home .photoboooths .textoverlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
opacity: 0;
transition: opacity .5s ease;
-webkit-transition: opacity .5s ease;
-moz-transition: opacity .5s ease;
-o-transition: opacity .5s ease;
background-color: #000;
z-index: 800;
}

#home .photoboooths .col:hover .text {
opacity: 1;
}

#home .photoboooths .col:hover .textoverlay {
opacity: .4;
}

#home .photoboooths .btn {
padding:5px 15px;
margin:10px auto 0;
display:inline-block;
background:#dbad64;
text-decoration:none;
text-transform:uppercase;
text-align:center;
color:#fff;
}

#home .clients {
padding-top:50px;
}

#home .clients .cont {
padding:100px 0 140px;
max-width:1400px;
text-align:center;
}

#home .clients h3 {
margin:0;
text-align:center;
text-transform:uppercase;
font-family: 'bebaskai';
font-size:70px;
color:#000;
}

#home .clients .evicon {
margin:20px;
display:inline-block;
}

#home .clients .clogo {
width:15.2%;
display:inline-block;
margin:.5%;
}

#home .clients .clogo img {
margin:0 auto;
}

#home .featured-events {
background:#f2f2f2;
}

#home .featured-events .cont {
padding:120px 0 160px;
max-width:1200px;
text-align:center;
}

#home .featured-events h3 {
margin:0;
text-align:center;
text-transform:uppercase;
font-family: 'bebaskai';
font-size:70px;
color:#000;
}

#home .featured-events .featevent {
margin:40px auto 0;
text-align:center;
font-size:24px;
}

#home .featured-events .featevent img {
max-width:90%;
display:inline-block;
}

#home .featured-events .featevent h5 {
margin:20px 0 0;
font-family: 'Montserrat';
font-weight:700;
font-size:30px;
}






#home .supported-cause {
position:relative;
background:url(../assets/homesrc/our-supported-cause.jpg) no-repeat;
background-size:cover;
}

#home .supported-cause .mb {
width:100%;
margin:0 auto;
display:block;
}

#home .supported-cause .desc {
width:50%; 
top:24%;
right:150px;
position:absolute;
text-align:center;
}

#home .supported-cause .desc h2 {
margin: 0;
font-size:66px;
}

#home .supported-cause .desc hr {
margin: 15px auto;
}

#home .supported-cause .desc img {
margin:0 2%;
display:inline-block;
}

#home .supported-cause .desc .i1 {
width:30%
}

#home .supported-cause .desc .i2 {
width:30%
}

#home .supported-cause .desc .i3 {
width:30%
}



#home .testimonials {
background:#f2f2f2;
}

#home .testimonials .cont {
padding:120px 0 160px;
max-width:1200px;
text-align:center;
}

#home .testimonials h3 {
margin:0;
text-align:center;
text-transform:uppercase;
font-family: 'bebaskai';
font-size:70px;
color:#000;
}

#home .testimonials .hclients {
text-align:center;
}

#home .testimonials .hclients h5 {
font-family: 'bebaskai';
}

#home .testimonials .slick-slider {
margin:0 -15px;
}

#home .testimonials .slick-slide {
display:block;
margin:20px 15px 10px;
background:#fff;
-webkit-box-shadow: 0px 1px 5px 0px rgba(153,153,153,1);
-moz-box-shadow: 0px 1px 5px 0px rgba(153,153,153,1);
box-shadow: 0px 1px 5px 0px rgba(153,153,153,1);
position:relative;
}

#home .testimonials .pad {
padding:40px 20px 80px;
}

#home .testimonials .tlogo {
width:auto;
max-height:70px;
display:inline-block;
}

#home .testimonials .img {
width:100%;
max-width:130px !important;
display:inline-block;
position:relative;
}

#home .testimonials .quote {
width:33px;
height:33px;
right:0;
bottom:0;
position:absolute;
background:url('../images/quote.png') no-repeat;
}

#home .testimonials .name {
width:100%;
bottom:15px;
position:absolute;
color:#e7c898;
margin-left: -20px;
}

#home .testimonials .nameonly {
padding-bottom:40px;
}

#home .testimonials .name img {
margin: 0 auto;
display:block;
}



.slick-dots {
bottom:-80px !important;
}

.slick-dots li, 
.slick-dots li button {
width: 40px !important;
height: 40px !important;
margin: 0 !important;
}

.slick-dots li button:before {
font-size: 18px !important;
line-height: 40px !important;
width: 40px !important;
height: 40px !important;
}

.slick-dots li.slick-active button:before {
opacity: .75 !important;
color: #dbad64 !important;
}

.slick-track {
display: flex !important;
}

.slick-slide {
outline: none !important;
height: inherit !important;
}

.slick-prev, .slick-next {
top:auto !important;
bottom: -34px !important;
}

.slick-prev {
left:auto !important;
right: 18% !important;
margin-right: 70px !important;
}

.slick-next {
right: 18% !important;
}


.pricing .btn {
padding:11px 30px 11px;
margin:10px auto 0;
display:inline-block;
background:#000;
text-decoration:none;
text-transform:uppercase;
text-align:center;
font-size: 16px;
color:#fff;
}

.pricing {
width:100%;
background:#f4f1f1;
}

.pricing .cont {
margin:0 auto;
padding:100px 0;
width:100%;
max-width:1400px;
}

.pricing .col1 {
width:42%;
float:left;
margin:0 4%;
text-align:right;
}

.pricing .col2 {
width:50%;
float:left;
text-align:left;
}



#photobooth-open-air h1 {
margin:0;
}

#photobooth-open-air h2 {
text-align:center;
color: #000;
}

#photobooth-open-air hr {
margin: 30px auto;
}

#photobooth-open-air .banner {
position:relative;
text-align:center; 
}

#photobooth-open-air .banner img {
width:100%;
}

#photobooth-open-air .banner .desc {
top:50%;
position:absolute;
width:100%;
text-align:center;
}

#photobooth-open-air .btn {
padding:14px 35px 13px;
margin:10px auto 0;
display:inline-block;
background:#dbad64;
text-decoration:none;
text-transform:uppercase;
text-align:center;
font-size: 20px;
color:#000;
}

#photobooth-open-air .boothinfo {
padding:120px 0;
margin:0 auto;
width:90%;
max-width:1400px;
}

#photobooth-open-air .boothinfo .ppad {
position:relative;
}

#photobooth-open-air .boothinfo .th {
width: 34%;
left: -36%;
position:absolute;
}

#photobooth-open-air .boothinfo .th img {
width: 230px;
}

#photobooth-open-air .boothinfo .desc {
width: 70%;
float: right;
position:relative;
}

#photobooth-open-air .boothinfo .desc .md {
margin: 0 2%;
text-align:center;
}

#photobooth-open-air .boothinfo .colbox {
width:46%;
float:left;
margin:30px 2% 0;
text-align:center;
}

#photobooth-open-air .boothinfo .colbox span {
display:block;
text-transform:uppercase;
}

#photobooth-open-air .boothinfo .colbox p {
margin-top:0px;
}

#photobooth-open-air .boothinfo .colbox img {
display:inline-block;
}

#photobooth-open-air .templates {
width:100%;
background:#f4f1f1;
}

#photobooth-open-air .templates .cont {
margin:0 auto;
padding:140px 0;
width:90%;
max-width:1400px;
position:relative;
}

#photobooth-open-air .templates .col1 {
width:40%;
top: 50%; 
left: 10%;
position:absolute;
text-align: center;
}

#photobooth-open-air .templates .col2 {
width:45%;
float:right;
margin: 0 2% 0 0;
text-align:center;
}



#photobooth-open-air .backdrops {
width:100%;
}

#photobooth-open-air .backdrops .cont {
margin:0 auto;
padding:140px 0;
width:90%;
max-width:1400px;
position:relative;
}

#photobooth-open-air .backdrops .col1 {
width:45%;
float:left;
margin: 0 2% 0 0;
text-align:center;
}

#photobooth-open-air .backdrops .col2 {
width:40%;
top: 50%; 
right: 11%;
position:absolute;
text-align: center;
}

#photobooth-open-air .backdrops .btn {
padding:11px 30px 11px;
margin:10px auto 0;
display:inline-block;
text-decoration:none;
text-transform:uppercase;
text-align:center;
font-size: 16px;
}



#photobooth-open-air .social-sharing {
width:100%;
background:url(../assets/photoboothsrc/openairsrc/open-air-social-sharing2.jpg) no-repeat center #f4f1f1;
background-size:cover;
}

#photobooth-open-air .social-sharing h2 {
margin-top:0;
}

#photobooth-open-air .social-sharing .cont {
margin:0 auto;
padding:140px 0 0;
width:90%;
max-width:1400px;
position:relative;
}

#photobooth-open-air .social-sharing .col1 {
width:30%;
float:left;
}

#photobooth-open-air .social-sharing .col2 {
width:30%;
text-align:center;
top: 50%; 
left: 30%;
position:absolute;
}

#photobooth-open-air .social-sharing .sbmb {
display:none;
}



#photobooth-open-air .photos {
width:100%;
}

#photobooth-open-air .photos .cont {
margin:0 auto;
padding:40px 0 80px;
width:100%;
max-width:2000px;
}

#photobooth-open-air .photos .pic {
width:25%;
float:left;
background: #fff;
overflow:hidden;
}

#photobooth-open-air .photos .pic img {
width:auto;
margin-bottom:4%;
margin-left:-15px;
border-right:15px solid #fff;
}



#photobooth-open-air .photos .slick-prev, 
#photobooth-open-air .photos .slick-next {
top:auto !important;
bottom: -22px !important;
}





#photobooth-open-air h2 {
margin-bottom:0;
}

#photobooth-open-air .price {
text-align:center;
}

#photobooth-open-air .title {
font-size:22px;
}





#photobooth-open-air .pricing .package {
width:90%;
margin:50px auto 50px;
font-weight:bold;
font-size:12px;
}

#photobooth-open-air .pricing .packagemb {
display:none !important;
}

#photobooth-open-air .pricing .package img {
max-width:15px;
display: inline-block;
}

#photobooth-open-air .pricing .package .hd {
border-bottom:solid 1px #ccc;
background:#f4f1f1;
}

#photobooth-open-air .pricing .package .thd {
background:#fbfbfc;
text-align:center;
font-size:22px;
}

#photobooth-open-air .pricing .package .thd2 {
background:#fff;
text-align:center;
font-size:22px;
}

#photobooth-open-air .pricing .package .alt1 {
background:#f3f4f6;
text-align:center;
}

#photobooth-open-air .pricing .package .alt2 {
background:#f7f7f9;
text-align:center;
}

#photobooth-open-air .pricing .package .aalt1 {
background:#f7f8f9;
text-align:center;
}

#photobooth-open-air .pricing .package .aalt2 {
background:#fbfbfc;
text-align:center;
}

#photobooth-open-air .pricing .package .note {
font-size:10px;
}

#photobooth-open-air .pricing .package hr {
width:90%;
height:2px;
background:#ccc;
margin:15px auto;
border:none;
}

#photobooth-open-air .pricing .package .col {
float:left;
width:46%;
padding:0 2%;
text-align:center;
font-size:30px;
}

#photobooth-open-air .pricing .package .col span {
vertical-align: super;
font-size:18px;
}



#photobooth-open-air .bts {
width:100%;
}

#photobooth-open-air .bts .btsslide {
margin:15px 0 160px;
}

#photobooth-open-air .bts .slick-slide { 
padding-right:15px;
}

#photobooth-open-air .bts .slick-slide .pad { 
position:relative;
}

#photobooth-open-air .bts .slick-slide .pad img { 
max-height:600px;
}

#photobooth-open-air .bts .slick-slide .pad .img3 { 
bottom:0;
position:absolute;
}




#photobooth-open-air .bts .cont {
width:90%;
max-width:1400px;
margin:0 auto;
padding-bottom:100px;
}

#photobooth-open-air .bts .bbox {
float:left;
width:30%;
margin:10px 1.5% 40px;
line-height: 28px;
}

#photobooth-open-air .bts b {
display:block;
margin-top:10px;
text-transform:uppercase;
font-family: 'Montserrat';
font-weight:700;
}






#photobooth-virtual h1 {
margin:0;
}

#photobooth-virtual h2 {
margin:0;
text-align:center;
color: #000;
}

#photobooth-virtual hr {
margin: 30px auto;
}

#photobooth-virtual .banner {
position:relative;
text-align:center; 
}

#photobooth-virtual .banner img {
width:100%;
}

#photobooth-virtual .banner .desc {
top:50%;
position:absolute;
width:100%;
text-align:center;
}

#photobooth-virtual .btn {
padding:14px 35px 13px;
margin:10px auto 0;
display:inline-block;
background:#dbad64;
text-decoration:none;
text-transform:uppercase;
text-align:center;
font-size: 20px;
color:#000;
}

#photobooth-virtual .boothinfo {
padding:120px 0;
margin:0 auto;
max-width:1400px;
text-align:center;
}

#photobooth-virtual .boothinfo .colbox p {
margin-top:0px;
}

#photobooth-virtual .boothinfo .colbox img {
display:inline-block;
}

#photobooth-virtual .sample-events {
background:#f3f3f3;
}

#photobooth-virtual .sample-events .cont {
padding:120px 0 150px;
max-width:1400px
}

#photobooth-virtual .photosslide .pic {
text-align:center;
}

#photobooth-virtual .photosslide .pic img {
margin:10px;
height:500px;
display:inline-block;
}

#photobooth-virtual .photosslide2 img {
margin:10px;
height:400px !important;
display:inline-block;
}

#photobooth-virtual .backdrops {
padding-bottom:150px;
}

#photobooth-virtual .experiences {
padding:120px 0 130px;
background:#f3f3f3;
text-align:center;
}

#photobooth-virtual .experiences .cont {
margin:0 auto;
padding:0 50px;
max-width:1300px;
}

#photobooth-virtual .experiences .pic {
width:30%;
margin:0 1%;
display:inline-block;
}

#photobooth-virtual .experiences .pic b {
display:block;
margin-bottom:20px;
font-family: 'bebaskai';
font-weight:normal;
font-size:30px;
}

#photobooth-virtual .experiences .pic img {
display:inline-block;
/*
-webkit-box-shadow: 0px 3px 5px 0px rgba(11,11,11,0.63);
-moz-box-shadow: 0px 3px 5px 0px rgba(11,11,11,0.63);
box-shadow: 0px 3px 5px 0px rgba(11,11,11,0.63); */
}

#photobooth-virtual .customization {
padding:120px 0;
text-align:center;
}

#photobooth-virtual .customization .cont {
margin:0 auto;
padding:0 50px;
max-width:1300px;
position:relative;
}

#photobooth-virtual .customization .col1 {
width:50%;
float:left;
}

#photobooth-virtual .customization .col2 {
width:40%;
top: 50%;
left: 50%;
position:absolute;
}

#photobooth-virtual .ai-background {
padding:120px 0;
background:#f3f3f3;
text-align:center;
}

#photobooth-virtual .ai-background .cont {
margin:0 auto;
padding:0 50px;
max-width:1300px;
position:relative;
}

#photobooth-virtual .ai-background .col1 {
width:40%;
top: 50%;
left: 5%;
position:absolute;
}

#photobooth-virtual .ai-background .col2 {
width:50%;
float:right;
}

#photobooth-virtual .addfeatures {
padding:120px 0;
text-align:center;
}

#photobooth-virtual .addfeatures .cont {
margin:0 auto;
padding:0 50px;
max-width:1300px;
}

#photobooth-virtual .addfeatures .bbox {
width:30%;
float:left;
margin:20px 1% 30px;
text-align:left;
line-height: 28px;
}

#photobooth-virtual .addfeatures .bbox b {
display:block;
margin-top:10px;
text-transform:uppercase;
font-family: 'Montserrat';
font-weight:bold;
font-size:20px;
}

#photobooth-virtual .addfeatures h4 {
	margin:0;
font-family: 'bebaskai';
font-weight:normal;
font-size:60px;
}

.spacer2 {
display:none;
}

#photobooth-virtual .pricing {
padding:60px 0;
text-align:center;
background:#f3f3f3;
}

#photobooth-virtual .pricing .cont {
margin:0 auto;
max-width:1000px;
}






#photobooth-backdrop h1 {
margin:0;
}

#photobooth-backdrop .banner {
position:relative;
text-align:center; 
}

#photobooth-backdrop .banner img {
width:100%;
}

#photobooth-backdrop .banner .desc {
top:50%;
left:0%;
position:absolute;
width:50%;
text-align:center;
padding-top:10px;
}



#photobooth-backdrop .custom {
padding:120px 0;
text-align:center;
background:#f3f3f3;
}

#photobooth-backdrop .custom .cont {
margin:0 auto;
width:90%;
max-width:1600px;
position:relative;
}

#photobooth-backdrop .custom .col1 {
width:40%;
top: 50%;
left: 4%;
position:absolute;
}

#photobooth-backdrop .custom .col2 {
width:50%;
float:right;
text-align:center;
}

#photobooth-backdrop .custom .col2 img {
display:inline-block;
}




#photobooth-backdrop .mermaid {
padding:120px 0 130px;
text-align:center;
}

#photobooth-backdrop .mermaid .cont {
margin:0 auto;
width:90%;
max-width:1300px;
}

#photobooth-backdrop .mermaid .pic {
width:47%;
margin:0 1% 2%;
display:inline-block;
}

#photobooth-backdrop .mermaid .pic b {
padding:10px 0;
display:block;
text-align:center;
}



#photobooth-backdrop .gray {
padding:120px 0 130px;
background:#f3f3f3;
text-align:center;
}

#photobooth-backdrop .white {
padding:120px 0 130px;
background:#fff;
text-align:center;
}

#photobooth-backdrop .gray .cont,
#photobooth-backdrop .white .cont {
margin:0 auto;
width:90%;
max-width:1300px;
}

#photobooth-backdrop .pic {
width:30%;
margin:0 1% 2%;
display:inline-block;
}

#photobooth-backdrop .pic b {
padding:10px 0;
display:block;
text-align:center;
}










@media only screen and (max-width: 1400px) {
	p {
    line-height: 32px;
    font-size: 18px;
	}
	
	footer .cont {
    max-width: 90%;
	}

	footer h4 {
    font-size: 60px;
	}
	
	#home .htxt1 {
    line-height: 30px;
    font-size: 20px;    
	}
	
	#home .htxt2 {
	line-height: 70px;
    font-size: 65px;
	}
	
	#home .clients h3 {
	font-size: 60px;
	}
	
	#home .featured-events h3 {
    font-size: 60px;
	}
	
	#home .supported-cause .desc h2 {
    font-size: 60px;
	}
	
	#home .testimonials .cont {
    max-width: 90%;
	}
	
	#home .testimonials h3 {
    font-size: 60px;
	}
	
	#photobooth-virtual .experiences .cont,
	#photobooth-virtual .customization .cont,
	#photobooth-virtual .ai-background .cont,
	#photobooth-virtual .addfeatures .cont {
    max-width: 90%;
	}
	
	#photobooth-virtual .experiences .cont {
	padding:0;
	}
	
}







@media only screen and (max-width: 1200px) {

	header {
    padding: 0;
	}

	header .logo img {
	height:61px;
	margin-left:20px;
	}
	
	header .bar {
    width: 100%;
	height:auto;
	text-align:center;
	background:#97d1c5;
	line-height: 30px;
	font-size:18px;
	}
	
	header .bar div {
    padding:0 20px;
	}
		
	
	footer, 
	footer p {
    line-height: 26px;
	font-size:16px;
	}
	
	footer .col1 {
	width: 40%;
	}
	
	footer .col2 {
	width: 60%;
	}
	
	#home .clients .evicon {
	width:21%;
	margin:0 2%;
	float:left;
	}
	
	#home .supported-cause .desc {
    top: 15%;
    right: 120px;
	}
	
	#photobooth-virtual .sample-events .photosslide2 {
	margin-bottom: 70px !important;
	}
	
	#photobooth-virtual .slick-prev {
    right: 50% !important;
    margin-right: 0 !important;
	}
	
	#photobooth-virtual .slick-next {
    right: 50% !important;
    margin-right: -70px !important;
	}
	
	#photobooth-virtual .slick-prev, 
	#photobooth-virtual .slick-next {
    top: auto !important;
    bottom: -95px !important;
	}
	

}


@media only screen and (max-width: 1000px) {
	#home .clients .clogo {
    width: 24%;
	}
	
	#home .supported-cause .mb {
	display:none;
	}
	
	#home .supported-cause .desc {
	float:right;
	right:auto;
	position:relative;
	padding:50px 50px;
	}
	
	#home .supported-cause .desc img {
	max-width:30%;
	}
	
	#home .photoboooths .text {
	font-size:18px;
	}
	
}
	

.homelnk {
display:none;
}






@media only screen and (max-width: 900px) {

	.hidedt {
	display:none;
	}

	.hidemb {
	display:block;
	}
	
	
	h1 {
    font-size: 70px;
	}
	
	p {
    line-height: 28px;
    font-size: 16px;
	}
	
	footer {
	padding: 60px 0;
	}
	
	footer .ppad {
    padding: 0 0 50px;
	}
	
	footer .award-icon {
    width: 20%;
	margin:0 3%;
	}
	
	footer h4 {
    line-height: 54px;
    font-size: 44px;
	}
	
	
	#home .htxt1 {
    line-height: 24px;
    font-size: 16px;
	}
	
	#home .htxt2 {
	margin: 10px 0 0 0;
    line-height: 54px;
    font-size: 44px;
	}
	
	#home .photoboooths {
    padding-top: 50px;
	}
	
	#home .photoboooths h3 {
    line-height: 54px;
    font-size: 44px;
	}	
	
	#home .clients .cont {
	max-width:90%;
	padding: 50px 0 70px;
	}
	
	#home .clients .spacer {
	display:none;
	}
	
	#home .clients h3 {
    line-height: 54px;
    font-size: 44px;
	}
	
	#home .featured-events .cont {
    padding: 60px 0 80px;
	}
	
	#home .featured-events .featevent {
    font-size: 18px;
	}
	
	#home .featured-events h3 {
    line-height: 54px;
    font-size: 44px;
	}
	
	#home .featured-events .featevent h5 {
    font-size: 22px;
	}
	
	#home .supported-cause .desc h2 {
    line-height: 54px;
    font-size: 44px;
	}
	
	#home .supported-cause .desc img {
    width: 26%;
	}
	
	#home .testimonials .cont {
    padding: 60px 0 80px;
	}
	
	#home .testimonials h3 {
    line-height: 54px;
    font-size: 44px;
	}
	
	#home .testimonials .pad {
    padding: 40px 20px 120px;
	}
	
	
	#photobooth-virtual .boothinfo {
	max-width:90%;
    padding: 60px 0;
	}
	
	#photobooth-virtual h2 {
	line-height: 54px;
	font-size: 44px;
	}
	
	#photobooth-virtual .sample-events .cont {
    padding: 60px 0 70px;
    max-width: 100%;
	}
	
	#photobooth-virtual .sample-events .cont h2 {
    max-width: 90%;
	margin:0 auto;
	}
	
	#photobooth-virtual .backdrops {
    padding-bottom: 70px;
	}
	
	#photobooth-virtual .experiences {
    padding: 60px 0 70px;
	font-size:16px;
	}
	
	#photobooth-virtual .customization {
    padding: 60px 0;
	font-size:16px;
	}
	
	#photobooth-virtual .customization .cont {
	padding:0;
	}
	
	#photobooth-virtual .ai-background {
    padding: 60px 0;
	font-size:16px;
	}
	
	#photobooth-virtual .ai-background .cont {
	padding:0;
	}
	
	#photobooth-virtual .addfeatures {
    padding: 60px 0;
	font-size:16px;
	}
	
	#photobooth-virtual .addfeatures .cont {
	padding:0;
	}
	
	#photobooth-virtual .addfeatures .bbox b {
	font-size:18px;
	}
	
	#photobooth-virtual .addfeatures .bbox {
    line-height: 24px;
	font-size:16px;
	}	
	
	
	
	#photobooth-open-air h2 {
	line-height: 54px;
	font-size: 44px;
	}
	
	#photobooth-open-air .photos .slick-prev, 
	#photobooth-open-air .photos .slick-next {
	bottom: -26px !important;
	}
	
	#photobooth-open-air .pricing .package .col {
    float: none;
    width: 98%;
    font-size: 30px;
	}
	
	#photobooth-open-air .bts .bbox {
	line-height: 24px;
	font-size: 16px;
	}
	
	#photobooth-open-air .bts b {
    font-size: 18px;
	}
	
	
	#photobooth-backdrop .mermaid {
    padding: 60px 0 65px;
	}
	
	#photobooth-backdrop .gray, 
	#photobooth-backdrop .white {
	padding:60px 0 65px;
	}
	

}


@media only screen and (max-width: 768px) {
	
	header .bar {
    line-height: 24px;
    font-size: 14px;
	}
	
	footer .col1 {
	float:none;
	width: 100%;
	}
	
	footer .col2 {
	float:none;
	width: 100%;
	}
	
	
	.pricing .cont {
    padding: 50px 0;
	}
	
		
	#home .photoboooths h4 {
	z-index: 790;
	}

	#home .photoboooths .text {
	top:50%;
	opacity: 1;
	}

	#home .photoboooths .text span {
	display:none;
	}

	#home .photoboooths .col .textoverlay {
	opacity: 1;
	background:none;
	}

	#home .photoboooths .col img {
	border:none;
	}
	
	
	#home .clients .evicon {
	width:38%;
	margin:5%;
	float:left;
	}
	
	#home .clients .evicon img {
	margin:0 auto;
	}
	
	#home .supported-cause {
    background: none;
	}
	
	#home .supported-cause .mb {
	display:block;
	}
	
	#home .supported-cause .desc {
	width:90%;
    float: none;
	padding:50px 0;
	margin:0 auto;
	}
	
	#photobooth-virtual .addfeatures .bbox {
    width: 46%;
	margin: 20px 2% 30px;
	}

	.spacer2 {
	display:block;
	}

	.spacer3 {
	display:none;
	}
	
	
	
	#photobooth-open-air .boothinfo .th {
	left:auto;
	position:relative;
	width:20%;
	float:left;		
	}
	
	#photobooth-open-air .boothinfo .md {
    width: 70%;
    top: 50%;
    right: 2%;
	position: absolute;
	}
	
	#photobooth-open-air .boothinfo .desc {
    width: 100%;
	}
	
	#photobooth-open-air .boothinfo {
    padding: 60px 0;
	}
	
	#photobooth-open-air .templates .cont {
    padding: 70px 0;
	}
	
	#photobooth-open-air .backdrops .cont {
    padding: 70px 0;
	}
	
	#photobooth-open-air .social-sharing .cont {
    padding: 70px 0;
	}
	
	#photobooth-open-air .bts .cont {
    padding-bottom: 50px;
	}
	
	
	#photobooth-open-air .templates .col1 {
    width: 100%;
    top: auto;
    left: auto;
    position: relative;
	}
	
	#photobooth-open-air .templates .col2 {
    width: 100%;
    float: none;
    margin: 0;
	}
	
	#photobooth-open-air .templates .col2 img {
	width: 100%;
	max-width:450px;
	margin:0 auto;
	}
	
	#photobooth-open-air .backdrops .col1 {
    width: 100%;
    float: none;
    margin: 0;
	}
	
	#photobooth-open-air .backdrops .col1 {
	max-width:400px;
	margin:0 auto;
	}
	
	#photobooth-open-air .backdrops .col2 {
    width: 100%;
    top: auto;
    right: auto;
    position: relative;
	}
	
	#photobooth-open-air .social-sharing {
    background: url(../assets/photoboothsrc/openairsrc/open-air-social-sharing2-mb.jpg) no-repeat center #f4f1f1;
	}
	
	#photobooth-open-air .social-sharing .cont {
	min-height:350px;
	}
	
	#photobooth-open-air .social-sharing .col1 {
	display:none;
	}
	
	#photobooth-open-air .social-sharing .col2 {
    width: 30%;
    left: 5%;
	}

	#photobooth-open-air .photosslide2 img {
	margin-left:15px;
	}
	
	#photobooth-open-air .photosslide2 .slick-prev,
	#photobooth-open-air .photosslide2 .slick-next {
	bottom:-100px !important;
	}
	
	#photobooth-open-air .btsslide2 {
	margin-bottom:140px;
	}
	
	#photobooth-open-air .btsslide2 img {
	max-height:350px;
	}
	
	#photobooth-open-air .bts .bbox {
    float: left;
    width: 44%;
    margin: 10px 3% 40px;
	}
	
	#photobooth-open-air .slick-prev {
    right: 50% !important;
    margin-right: 0 !important;
	}
	
	#photobooth-open-air .slick-next {
    right: 50% !important;
    margin-right: -70px !important;
	}
	
	#photobooth-open-air .slick-prev, 
	#photobooth-open-air .slick-next {
    top: auto !important;
    bottom: -100px !important;
	}
	
	
	
	#photobooth-backdrop .pic {
    width: 47%;
    margin: 0 1% 2%;
	}
	
	

}


@media only screen and (max-width: 600px) {
	
	#home .htxt1 {
	line-height: 20px;
    font-size: 14px;
	}
	
	#home .htxt2 {
    line-height: 40px;
    font-size: 34px;
	}
	
	#home .photoboooths .col {
	width:100%;
	float:none;
	}
	
	#home .photoboooths .text {
	font-size:18px;
	}
	
	#photobooth-virtual .experiences .pic {
    width: 80%;
	margin-bottom:50px;
	}
	
	#photobooth-virtual .customization .col1 {
    width: 100%;
    float: none;
	}
	
	#photobooth-virtual .customization .col2 {
    width: 100%;
    top: auto;
    left: auto;
    position: relative;
	}
	
	#photobooth-virtual .ai-background .col1 {
    width: 100%;
    top: auto;
    left: auto;
    position: relative;
	}
	
	#photobooth-virtual .ai-background .col2 {
    width: 100%;
    float: none;
	}
	
	
	#photobooth-backdrop .banner {
    background: #000;
	}

	#photobooth-backdrop .banner .desc {
	width:100%;
	}
	
	#photobooth-backdrop .custom {
    padding: 60px 0;
	}

	#photobooth-backdrop .custom .col1 {
	width:90%;
	top: auto;
	left: auto;
	position:relative;
	}

	#photobooth-backdrop .custom .col2 {
	width:100%;
	float:none;
	}


}


@media only screen and (max-width: 500px) {

	#home .banner-box {
	top:auto;
	left:auto; 
	position:relative;
	width:90%;
	margin: 40px auto;
	}

	#home .banner-box br {
	display:none;
	}
	
	#home .clients .clogo {
    width: 32%;
	}
	
	#home .testimonials .cont {
    padding: 60px 0 130px;
	}

	#home .testimonials .slick-prev, 
	#home .testimonials .slick-next {
	bottom: -100px !important;
	}

	#home .testimonials .slick-prev {
	right: 50% !important;
	margin-right: 0px !important;
	}
	
	#home .testimonials .slick-next {
	right: 50% !important;
	margin-right: -70px !important;
	}
	
	
	
	#photobooth-virtual .addfeatures .bbox b {
    font-size: 14px;
	}
	
	#photobooth-virtual .addfeatures .bbox {
    line-height: 20px;
    font-size: 14px;
	}
	
	
	#photobooth-open-air .boothinfo .th {
	float:none;
	width:100%;
	}
	
	#photobooth-open-air .boothinfo .th img {
	margin:0 auto;
	max-height:400px;
	width:auto;
	}
	
	#photobooth-open-air .boothinfo .md {
    width: 100%;
    top: auto;
    right: auto;
    position: relative;
	padding-top:20px;
	}
	
	#photobooth-open-air .boothinfo .colbox {
    width: 96%;
    float: none;
	}
	
	#photobooth-open-air .social-sharing {
    background: #f4f1f1;
	}
	
	#photobooth-open-air .social-sharing .col2 {
	top:auto;
	left:auto;
	position:relative;
	width:100%;
	}

	#photobooth-open-air .pricing .package {
	display:none;
	}
	
	#photobooth-open-air .pricing .packagemb {
	display:block !important;
	}
	
	#photobooth-open-air .pricing .package .col {
    float: left;
    width: 46%;
	text-align:center;
	}

	#photobooth-open-air .social-sharing .sbmb {
	display:block;
	margin:0 auto 20px;
	}
	
	#photobooth-open-air .bts .bbox {
	line-height: 20px;
	font-size: 14px;
	}
	
	#photobooth-open-air .bts b {
    font-size: 14px;
	}	
	
	
	#photobooth-backdrop .mermaid .pic {
    width: 98%;
	}
	
	#photobooth-backdrop .pic {
    width: 98%;
	}
	
	
	
}


@media only screen and (max-width: 300px) {

}






