@charset "utf-8";
/* CSS Document */

/*
::-webkit-scrollbar {
 -webkit-appearance: none;
 width: 10px;
}
::-webkit-scrollbar-thumb {
 border-radius: 10px;
 background-color: rgba(0, 0, 0, .5);
 -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
*/


@font-face {
     font-family: 'GothamBook';
     src: url('fonts/gotham-book.eot'); /* IE9 Compat Modes */
     src: url('fonts/gotham-book.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
     url('fonts/gotham-book.woff') format('woff'), /* Modern Browsers */
     url('fonts/gotham-book.ttf')  format('truetype'), /* Safari, Android, iOS */
     url('fonts/gotham-book.svg#svgFontName') format('svg'); /* Legacy iOS */
}



@font-face {
     font-family: 'JennaSue';
     src: url('fonts/JennaSue.eot'); /* IE9 Compat Modes */
     src: url('fonts/JennaSue.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
     url('fonts/JennaSue.woff') format('woff'), /* Modern Browsers */
     url('fonts/JennaSue.ttf')  format('truetype'), /* Safari, Android, iOS */
}





/*SLIDESHOW*/
	
.mySlides {
    display: none;
}
img {
    vertical-align: middle;
}
/* Slideshow container */
.slideshow-container {
    position: relative;
    margin: auto;
    width: 100%;
	line-height: 0;
}
/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}
	#dot-holder {
		text-align:center; 
		bottom: 0; 
		position: absolute;
		
    left: 50%; /* position the left edge of the element at the middle of the parent */

    transform: translate(-50%); /* This is a shorthand of */
}
	
/* The dots/bullets/indicators */
.dot {
    height: 9px;
    width: 9px;
    margin: 11px 1px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
	cursor: pointer;
}
.active {
    background-color: #fff;
}
/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}
@keyframes fade {
from {
opacity: .4
}
to {
opacity: 1
}
}


.test:after {
  /*content: '\2807';*/
  content: '\2807';
  margin: 0;
  color: white;
  font-weight:bold;
  }


h7 {
    display: grid;
    width: 100%;
    align-items: center;
    text-align: center;
    grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
    grid-gap: 80px;
	font-size: 20px;
	padding: 40px 0 40px 0;
}

h7:before,
h7:after {
    content: '';
    border-top: 2px solid #DF0000;
}

.linkhref {
	background-color: #D80407;
	padding: 8px;
	text-decoration: none;
	color: white;
	border-radius: 2px;
	min-width: 150px !important;
	margin: 5px 0 5px 0;
	text-align: center;
}

#toTop {
    padding: 5px 3px;
  
    color: #fff;
    position: fixed;
    bottom: 0px;
    right: 0px;
	
    display: none;
	z-index: 99999999999999999;
	cursor: pointer;
	/* Circle Shape
	width: 100px;
	height: 100px;
	background: red;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	*/
}


html, body {
	margin: 0;
	padding: 60px 0 0 0;
	height: 100%;
    /* Force scrollbar
	overflow: -moz-scrollbars-vertical; 
    overflow-y: scroll;
	*/
	/*font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-family: "HelveticaNeue-CondensedBold", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "GothamBook Bold Condensed", "HelveticaNeueBold", "HelveticaNeue-Bold", "GothamBook Bold", "GothamBook", "Arial", sans-serif;
    font-family: "GothamBook",Helvetica,Arial,sans-serif;
	*/
    
	font-size: 14px;
    /*line-height: 1.8;*/
    color: #000;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;

}


.spacing {
	line-height: 1;
	letter-spacing: -.03em;
}
.line-height {
	margin: 0px;
	line-height: 1;
	letter-spacing: -.09em;
}

.align-mid {
	display: flex;
	justify-content: center !important;
	align-items: center !important;
}



*:focus {
	outline: none;
}
* {
	box-sizing: border-box;
	pointer-events: auto;
}
hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px solid red;
}

.halloweenBat {
	z-index: 99999999999999999;
	
}

#quotes {
	-webkit-animation: color-change 1.5s infinite;
	-moz-animation: color-change 1.5s infinite;
	-o-animation: color-change 1.5s infinite;
	-ms-animation: color-change 1.5s infinite;
	animation: color-change 1.5s infinite;
}
 @-webkit-keyframes color-change {
 0% {
color: white;
}
 50% {
color: black;
}
 100% {
color: grey;
}
}
 @-moz-keyframes color-change {
 0% {
color: white;
}
 50% {
color: black;
}
 100% {
color: grey;
}
}
 @-ms-keyframes color-change {
 0% {
color: white;
}
 50% {
color: black;
}
 100% {
color: grey;
}
}
 @-o-keyframes color-change {
 0% {
color: white;
}
 50% {
color: black;
}
 100% {
color: grey;
}
}
 @keyframes color-change {
 0% {
color: white;
}
 50% {
color: black;
}
 100% {
color: grey;
}
}




.icon-name{
background-image:url(https://www.bypeterandpauls.com/images/icon/name.png); 
background-repeat: no-repeat; 
background-position: 2px 3px;
text-indent:25px;
}
.icon-email{
background-image:url(https://www.bypeterandpauls.com/images/icon/email.png); 
background-repeat: no-repeat; 
background-position: 2px 3px;
text-indent:25px;
}
.icon-tel{
background-image:url(https://www.bypeterandpauls.com/images/icon/tel.png); 
background-repeat: no-repeat; 
background-position: 2px 3px;
text-indent:25px;
}


/* Events */
.icon-bar {
	/* width: 90px; */
	margin-top: 60px;
	background-color: #f3f3f3;
	position: fixed;
	z-index: 999;
}
.icon-bar a:link, .icon-bar a:visited {
	display: block;
	text-align: center;
	padding: 11px;
	transition: all 0.3s ease;
	color: white;
	font-size: 16px;
}
.icon-bar span {
	text-align: center;
	color: white;
	font-size: 16px;
	margin: 0px;
}
.icon-bar a:hover {
	background-color: #dedede;
}
.icon-bar i {
	color: black;
}
.active {
	background-color: #f00 !important;

}
.active  i {
	
	color: white !important;
}


		.brunch {
			counter-reset: my-badass-counter;
		}
		.brunch dt {
			position: relative;
			font: bold 16px "GothamBook";
			padding: 4px 0 3px 0;
			color:#9B9B9B;
			color: #b70909;
			
			
		}
		.brunch dt:before {
			content: counter(my-badass-counter);
			counter-increment: my-badass-counter;
			position: absolute;
			left: 0;
			top: 0;
			font: bold 40px/1 "GothamBook",Helvetica,Arial,sans-serif;
			color: #ccc;
		}
		.brunch dd {
			margin: 0 0 20px 0;
			
		}	
		.brunch dt, .brunch dd {
			padding-left: 55px;
		}


#parallelogram {
	width: 350px;
	height: 559px;
	margin-left: 850px;
	-webkit-transform: skew(20deg);
	-moz-transform: skew(20deg);
	-o-transform: skew(20deg);
	background: black;
	color: #000;
	text-align: center;
	position: absolute;
	z-index: 2;
}
#banner-image {
	padding: 0px;
	width: 1000px;
	height: 559px;
	background-color: #000000;
}

.thumb {
    
    width: 200px;
    height: 200px;
    background-position: center 10%;
	filter: grayscale(100%);
    background-size: cover;
	box-sizing: border-box;
}

.thumb:hover{
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	filter: grayscale(0%);
}

.table-container {
  display: table;
	width: 100%;
	table-layout:fixed;
}
.table-row {
   display: table-row;	
}
.table-column {
  display: table-cell;
	width: 100%;

    /*top,right,bottom,left*/
	padding: 5px 20px 0 20px;
	box-sizing: border-box;
	
	
}

i {
	font-size: 80%;
	color: #676767;
}

.item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.item img {
	max-width: 100%;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.item:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	filter: grayscale(100%);
}
.item-gallery {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.item-gallery img {
	max-width: 100%;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	filter: grayscale(100%);
}
.item-gallery:hover img {
	filter: grayscale(0%);
	/*filter: brightness(10%);
	opacity: 0.5;*/
}



/* NEW GALLERY */

		@keyframes greyscale-fade-in {
    0%   { -webkit-filter: grayscale(100%); }
    100% { -webkit-filter: grayscale(0%); }
}

		@keyframes greyscale-fade-out {
    100%   { -webkit-filter: grayscale(100%); }
    0% { -webkit-filter: grayscale(0%); }
}


	
      .thumbnails img {
        width: 100%;
		  box-sizing: border-box;

      }
		
		.thumbnails {
    animation: greyscale-fade-in 1.5s ease-in forwards;
}
		
		.thumbnails div:hover {
   animation: greyscale-fade-out 0.3s ease-in forwards;
}

	
		 .img-container {


         background-repeat: no-repeat;
         background-size: cover;
	    /*
		border: 4px solid #555;
        padding: 4px;
       */
		transition: border 0.3s linear;
		box-sizing: border-box;
			 border-collapse: collapse;
			 display: inline-table


 }

/* END NEW GALLERY */

#venue-header-banner {
background-color:#eeeeef;
text-align: center;
padding: 52px;
color: black;
font-size: 110%;
}


#venue-header {
background-color:#363636;
text-align: left;
padding-left: 147px;	
height: 150px;
}
#events select {
	width: 100%;
	padding: 20px;
	font-size: 130%;

}
.social-logo {
	font-size: 500%;
}
.instalink {
	display: block;
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 100%;
}
table {
	border-collapse: collapse;
	width: 100%;
}
table, td, th {
	border: 1px solid black;
	padding: 20px;
	vertical-align: top;
	color: white;
	font-weight: bold;
	font-size: 100%;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	letter-spacing: -1px;
}
td {
	width: 14.28%;
}
#datecell {
	background: rgba(0, 0, 0, 0.6);
}
#calnav {
	margin-bottom: 5px;
}
#calnav td, th {
	border: none;
	background: rgba(0, 0, 0, 0.6);
}
#cal-num-date {
	font-weight: bold;
	font-size: 150%;
	font-family: Helvetica, Sans-Serif;
	letter-spacing: -1px;
	color: white;
}
#cal-num-date a:link, #cal-num-datea:visited {
	font-weight: bold;
	font-size: 150%;
	font-family: Helvetica, Sans-Serif;
	letter-spacing: -1px;
	text-decoration: none;
	color: white;
}
#cal-num-date a:hover {
	font-weight: bold;
	font-size: 150%;
	font-family: Helvetica, Sans-Serif;
	letter-spacing: -1px;
	text-decoration: none;
	color: black;
}
#calevent-link {
	font-weight: bold;
	font-size: 100%;
	font-family: Helvetica, Sans-Serif;
	letter-spacing: -1px;
	text-decoration: none;
}
#calevent-link a:link, #calevent-link a:visited {
	font-weight: bold;
	font-size: 100%;
	font-family: Helvetica, Sans-Serif;
	letter-spacing: -1px;
	text-decoration: none;
	color: black;
}
#calevent-link a:hover {
	font-weight: bold;
	font-size: 100%;
	font-family: Helvetica, Sans-Serif;
	letter-spacing: -1px;
	text-decoration: none;
	color: white;
}
.prev-next {
	font-size: 7em;
	color: white;
}
/* End Events */



.col div ul li a:link, .col div ul li a:visited {
	
	color:#BB181B;
	font-weight: bold;
	font-size: 100%;
	font-family: "GothamBook";
	letter-spacing: -1px;
	text-decoration:none;
	
	
}

.col div ul li a:hover {
	
	color:#7B7B7B;
	font-weight: bold;
	font-size: 100%;
	font-family: "GothamBook";
	letter-spacing: -1px;
	text-decoration:none;
	
	
}

a.career-link:link, a.career-link:visited {
	
	color:#BB181B;
	font-weight: bold;
	font-size: 100%;
	font-family: "GothamBook";
	letter-spacing: -1px;
	text-decoration:none;
	
	
}

a.career-link:hover {
	
	color:black;
	font-weight: bold;
	font-size: 100%;
	font-family: "GothamBook";
	letter-spacing: -1px;
	text-decoration:none;
	
	
}

.career-title {
	
font-family: 'GothamBook';
	
	font-weight: bold;
	font-size: 180%;
	color: black;
}

.package-links a:link, .package-links a:visited {
	color: black;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 100%;
	line-height: 1.5;
	text-decoration: none;
}
.package-links a:hover {
	color: grey;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 100%;
	line-height: 1.5;
	text-decoration: none;
}
.team-name {
	color: black;
	font-family: "GothamBook";
	font-size: 18px;
	line-height: 1.5;
	text-decoration: none;
}

.team-href {
	color: white;
	font-family: "GothamBook";
	font-size: 100%;
	line-height: 1.5;
	text-decoration: none;
}

.team-title {
	color: black;
	font-family: "GothamBook";
	font-size: 100%;
	line-height: 1.5;
	text-decoration: none;
}
.team-quote {
	color: grey;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 100%;
	line-height: 1.5;
	text-decoration: none;
	font-style: italic;
}
.team-bio {
	color: black;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 100%;
	line-height: 1.5;
	text-decoration: none;
	display: none;
	text-align: left;
}

h3 {
	margin: 0;
	font-size: 110%;
	font-family: 'GothamBook';
}
.bg2023-faded {
	/*
	background-image: url('images/made-with-love-wallpaper-white-fade.webp');
	background-repeat: repeat-x;
	*/
}

.bg2023-black-faded {
	/*
	background-image: url('images/made-with-love-wallpaper-black-faded.webp');
	background-repeat: repeat-x;
	*/
}

.bg2023-white {
	/*
	background-image: url('images/made-with-love-wallpaper-white.webp');
	background-repeat: repeat-x;
	*/
}

h2 {
	color: #000;
	font-family: "GothamBook";
	
}

h2 a:link, h2 a:visited {
	color:#2E2D2D;
	font-family: 'GothamBook';
	font-size: 100%;
	
	text-decoration: none;
	text-decoration:none;
}

h2 a:hover {
	color:#A10305;
	font-family: 'GothamBook';
	font-size: 100%;
	
	text-decoration: none;
}
footer h2 {
 color: white;	
	
}
.job {
	display: none;
	
}

#career-video {
padding-right: 5px;
}

.carreer {
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 100%;
	line-height: 1.5;
}




.chevron-venue {
  
  text-align: center;
  padding: 12px;
  height: 60px;
  width: 150px;
}

.chevron-venue:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  height: 100%;
  width: 50.5%;
  background: #e3e3e3;
  -webkit-transform: skew(0deg, 9deg);
  -moz-transform: skew(0deg, 9deg);
  -ms-transform: skew(0deg, 9deg);
  -o-transform: skew(0deg, 9deg);
  transform: skew(0deg, 9deg);
}
.chevron-venue:after {
  content: '';
  position: absolute;
  top: -20px;
  right: 0;
  height: 100%;
  width: 50%;
  background: #e3e3e3;
  -webkit-transform: skew(0deg, -9deg);
  -moz-transform: skew(0deg, -9deg);
  -ms-transform: skew(0deg, -9deg);
  -o-transform: skew(0deg, -9deg);
  transform: skew(0deg, -9deg);
}



.chevron {
  
  text-align: center;
  padding: 12px;
  height: 60px;
  width: 150px;
}

.chevron:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  height: 100%;
  width: 50.5%;
  background: red;
  -webkit-transform: skew(0deg, 9deg);
  -moz-transform: skew(0deg, 9deg);
  -ms-transform: skew(0deg, 9deg);
  -o-transform: skew(0deg, 9deg);
  transform: skew(0deg, 9deg);
}
.chevron:after {
  content: '';
  position: absolute;
  top: -20px;
  right: 0;
  height: 100%;
  width: 50%;
  background: red;
  -webkit-transform: skew(0deg, -9deg);
  -moz-transform: skew(0deg, -9deg);
  -ms-transform: skew(0deg, -9deg);
  -o-transform: skew(0deg, -9deg);
  transform: skew(0deg, -9deg);
}



.special-div {
    width: 275px;
    height: 60px;
	/*
	background-image:url(https://www.bypeterandpauls.com/images/specials-bar-bg.png); 
    background-repeat: no-repeat; 
	*/
	
	background-color: #000;

    font-size: 100%;
    color: white;
    position: fixed;
    top: 0;
    right: 20px;
    z-index: 99998;

    padding: 10px;
}

.special-div-pnp {
    /*width: 275px;*/
    height: 60px;
	/*
	background-image:url(https://www.bypeterandpauls.com/images/specials-bar-bg-pnp.png); 
    background-repeat: no-repeat; 
    border-right: solid 20px #FF0004;
	*/
	
	background-color: #000;
	
    font-size: 100%;
    color: white;
    position: fixed;
    top: 0;
    right: 20px;
    z-index: 99998;

    padding: 10px;
}


.special-word {
    position: absolute;
    top: 0;

    color: black;
    z-index: 99999;
    padding: 3px;
    font-family: "GothamBook";
    font-size: 90%;
}

.special-title {
	font: bold 5em Helvetica, Sans-Serif;

	line-height: 1.5;
	color: black;
}
.special-mini-title {
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	
	line-height: 1.5;
	color: black;
}
#circle-shape {
	margin: 2rem;
}
#circle-shape .curve {
	float: left;
	margin-right: 2rem;
	border-radius: 50%;
	-webkit-shape-outside: circle();
	shape-outside: circle();
}
.caption-box {
	padding: 15px;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	background: rgb(0, 0, 0);  /*fallback color */
	background: rgba(255, 255, 255, 0.7);
	text-align: center;
}
.caption-box span {
	color: black;
	font-size: 2em;
	letter-spacing: -1px;
}
.venue-fade {
	transition: background .25s ease-in-out;
	-moz-transition: background .25s ease-in-out;
	-webkit-transition: background .25s ease-in-out;
}
.venue-fade :hover {
	background: #ddd;
}
.container-venue-left {
	position: relative;
	width: 50%;
}
.image {
	display: block;
	width: 100%;
	height: auto;
}
/*
.overlay-left {
	position: absolute;
	bottom: 0;
	left: 100%;
	right: 0;
	background-color: #000;
	overflow: hidden;
	width: 0;
	height: 100%;
	transition: .5s ease;
}
.container-venue-left:hover .overlay-left {
	width: 100%;
	left: 0;
}
*/

.overlay-left {
	position: absolute;
	bottom: 0;
	left: 100%;
	right: 0;
	background-color: #000;
	overflow: hidden;
	width: 0;
	height: 100%;
	transition: .5s ease;
}
.container-venue-left:hover .overlay-left {
	width: 100%;
	left: 0;
}
.container-venue-top {
	position: relative;
	width: 50%;
}
.overlay-top {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	background-color: #000;
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: .5s ease;
}
.container-venue-top:hover .overlay-top {
	bottom: 0;
	height: 100%;
}
.text {
	white-space: nowrap;
	color: white;
	font-size: 20px;
	position: absolute;
	overflow: hidden;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-size: 350%;
}
.logo-venue {
	white-space: nowrap;
	color: white;
	font-size: 20px;
	position: absolute;
	overflow: hidden;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.venue-image {
/* display: inline-block; */
}
.center-vert-horz {
	display: block;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.venue-image img {
	vertical-align: middle;
	width: 100%;
}
.container-venue-right {
	position: relative;
	width: 50%;
}
.overlay-right {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #000;
	overflow: hidden;
	width: 0;
	height: 100%;
	transition: .5s ease;
}
.container-venue-right:hover .overlay-right {
	width: 100%;
}
#triangle-topright {
	width: 0;
	height: 0;
	border-top: 100px solid red;
	border-left: 100px solid transparent;
	top: 0;
	right: 0;
}
.content {
	margin: 0 auto;
	/*
	width: 100%;
	height: 500px;
	padding: 0 15px;
	*/
}
h1 {
	margin: 0;
	padding: 0 0 20px 0;
	font-size: 20px;
	font-family: "GothamBook";
}
p {
	margin: 0 0 30px 0;
	font-size: 14px;
	line-height: 1.5;
	font-family: "GothamBook" !important;
}
div{
font-family: "GothamBook" !important;
}
ol li {
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 100%;
	line-height: 1.5;
}
.fullscreen-history-bg {
	margin-top: -400px;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	z-index: -100;
}
.fullscreen-bg {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	z-index: -100;
}
.fullscreen-bg__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-background { /* class name used in javascript too */
	width: 100%; /* width needs to be set to 100% */
	height: 100%; /* height needs to be set to 100% */
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	padding: 0;
}


 @media (min-aspect-ratio: 16/9) {
.fullscreen-bg__video {
	height: 300%;
	top: -100%;
}
}
 @media (max-aspect-ratio: 16/9) {
.fullscreen-bg__video {
	width: 300%;
	left: -100%;
}
}
 @media (max-width: 767px) {
.fullscreen-bg {
	background: url('./images/tour-bg.jpg') center center / cover no-repeat;
}
.fullscreen-bg__video {
	display: none;
}
}
h4 {
	margin: 0px;
}

	#otherfield {
	border-left:none;
    }


select {
	-webkit-appearance:none; 
	width: auto;
	box-sizing: border-box;
	padding: 15px;
	border: solid 1px #E7E7E7;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 120%;
	margin-bottom: 5px;
}


input[type="date"] {
	width: 100%;
	box-sizing: border-box;
	padding: 12.5px;
	border: solid 1px #E7E7E7;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 120%;
	margin-bottom: 5px;
}
input[type="text"] {
	width: 100%;
	box-sizing: border-box;
	padding: 15px;
	border: solid 1px #E7E7E7;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 120%;
	margin-bottom: 5px;
}
input[type="password"] {
	width: 100%;
	box-sizing: border-box;
	padding: 15px;
	border: solid 1px #E7E7E7;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 120%;
	margin-bottom: 5px;
}

input[type="file"] {
	width: 100%;
	box-sizing: border-box;
	padding: 15px;
	border: solid 1px #E7E7E7;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 120%;
	margin-bottom: 5px;
}

input[type="Submit"] {
	box-sizing: border-box;
	padding: 15px;
	border: none;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 120%;
}
input[type="button"] {
	box-sizing: border-box;
	padding: 15px;
	border: none;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 120%;
}
textarea {
	box-sizing: border-box;
	padding: 15px;
	width: 100%;
	resize: none;
	border: solid 1px #E7E7E7;
	font-size: 120%;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
}
.shadow {
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
	-webkit-transition: background-color 0.6s;
	-moz-transition: background-color 0.6s;
	transition: background-color 0.6s;
}
div.border-collapse {
	box-shadow: 2px 0 0 0 #e4e4e4, 0 2px 0 0 #e4e4e4, 2px 2px 0 0 #e4e4e4,   /* Just to fix the corner */ 2px 0 0 0 #e4e4e4 inset, 0 2px 0 0 #e4e4e4 inset;
}
.text-shadow {
	text-shadow: .7px 0px #333;
}
.col-form {
	float: left;
	padding-right: 5px;
	margin-top: 10px;
}
.col-pending {
	float: left;
	width: 70%;
	box-sizing: border-box;
}
.wrapper {
	padding: 25px;
	border-bottom: solid 1px #666;
	height: auto;
	background: #F3F3F3;
}
.col-pending-sidebar {
	float: left;
	width: 30%;
	box-sizing: border-box;
}
div.col-form select {
	box-sizing: border-box;
	padding: 10px;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 120%;
	margin-bottom: 10px;
	border: solid 1px #A7A7A7;
}
div.client-search input[type="text"] {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 120%;
	border: none;
}
div.col-form-client {
	float: left;
	margin-right: 10px;
}
div.col-client input[type="text"] {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 120%;
	border: solid 1px #A7A7A7;
}
div.col-client select {
	box-sizing: border-box;
	padding: 10px;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 120%;
	margin-bottom: 10px;
	border: solid 1px #A7A7A7;
}
#container {
	min-height: 100%;
	position: relative;
	background-image: url(img/ofset.png);
	margin-top: 120px;
}
.video {
	height: auto;
	width: 100%;
	/* background-color: #2D2D2D; */
}
.video-blur {
/*
    -webkit-filter: blur(30px);
  -moz-filter: blur(30px);
  -o-filter: blur(30px);
  -ms-filter: blur(30px);
  filter: blur(30px);
 */

}
#history-bg {
	background: url("images/peter-collage.jpg") no-repeat;
	/*
    background-size: cover;
	background-size: contain;
	*/
	background-size: 100%;
	background-clip: border-box;
	background-repeat: no-repeat;
	position: relative;
	height: 1000px;
}

#videoHistory-desktop {
   position: relative;
   width: 100%;
}
#history-vid {
	background-image: url("images/sp-bg-bk.jpg");
	width: 1000px;
	height: 600px;
	position: absolute;
	z-index: 99;
	bottom: 9px;
	right: 0;
	
}

.box-heading {
	padding: 10px;
	font-size: 150%;
}
.slide {
	width: 99%;
}
.slide-margin {
/*margin-top: 100px;*/
}
.box-fade {
	padding: 0 10px 0 50px;
	background-color: #000000;
	background: rgba(0,0,0,0.5);
}
.slide-bg {
	background: url('/images/slide2.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	height: 0;
	padding-top: 39.225%; /* (img-height / img-width * width) *//* (853 / 1280 * 100) */
}
#map {
	height: 250px;
	width: 100%;
}

.banner {
	padding: 100px;
	margin: 0;
	width: 100%;
	text-align: center;
	box-sizing: border-box;/*
   background-image:url(banner-bg.jpg);
   background-repeat:no-repeat;
   background-attachment: fixed;
   background-position:center;
   background-size:auto;
   */
}

.bio-title {
	width: 100%;
	padding: 15px;
	color: grey;
	font-size: 90%;
}
.slogan {
	font-family: "GothamBook";
	font-size: 200%;
	color: #000;
}
.sub-heading {
	font-family: "GothamBook";
	font-size: 250%;
	color: #fff;
}
.slogan-textual {
	font-weight: bold;
	font-size: 500%;
	font-family: "GothamBook";
	margin: 0px;
	color: #fff;
}
.quotes {
	display: none;
	color: white;
	font-size: 15em;
}
.quotes-event {
	display: none;
	color: white;
	font-size: 4em;
}
.footer-heading {
	padding: 200px;
	text-align: center;
	box-sizing: border-box;
}
#header {
	background: #000;
	padding-top: 10px;
}
header {
	height: 120px;
	position: fixed;
	top: 0;
	z-index: 9999;
	width: 100%;
	background-color: #fff;
}


#body {
	height: auto; 
	/* height:70vh !important;*/
	/*padding-bottom: 600px;    Height of the footer */
	margin-top: 40px;
}
#footer {
	position: relative;
	bottom: 0;
	width: 100%;
	height: auto;  /*  Height of the footer */
	background-color: #000000 !important;
}

#footer a:link, #footer a:visited {
	font-family: "GothamBook";
	font-size: 75%;
	color: #FFFFFF;
	text-decoration: none;
}
#footer a:hover {
	font-family: "GothamBook";
	font-size: 75%;
	color: #CCC;
	text-decoration: none;
}
#footer span {
	font-family: "GothamBook";
	color: #CCC;
}

section {
	max-width: 90%;
	margin: 0 auto;
}
.title {
	/*padding-left: 20px;*/
	float: left;
}
h1.logo {
	margin: 0px;
	color: #FFF;
}
h2.tagline {
	margin: 0px;
	color: #F90;
}
#pete-im {
	float: left;
	padding: 0 20px 10px 0;
    width: 60%;
		
}
.field {
	width: 300px;
	margin: 0 auto;
	display: block;
	padding: 5px;
}
#videoHistory-mobile {
	width: 100%;
	height: auto;
	display: none;
}
.promo-content {
	padding: 20px;
	color: white;
	text-align: center;
	display: none;
}
#mobile_promo {
	opacity: .8;
	padding: 40px;
	bottom: 45%;
	left: 0;
	background-color: #fff;
	position: absolute;
	z-index: 200;
	display: none;
}
#desktop_promo_right {
	padding: 20px;
	background-color: #000;
	text-align: right;
	z-index: 200;
	height: auto;
}
#desktop_promo_left {
	padding: 20px;
	background-color: #000;
	z-index: 200;
	height: auto;
}
.block-btn {
	display: inline-block;
	padding: 10px 18px;
	width: 100%;
	font-size: 90%;
	font-weight: 700;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	letter-spacing: 1px;
	background-color: #F8F8F8;
	color: #333;
	text-transform: uppercase;
	/*
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.6s;
	-moz-transition: background-color 0.6s;
	transition: background-color 0.6s;
	*/
	text-align: center;
	box-sizing: border-box;
}
.btn-wrap {
	float: left;
	margin-right: 8px;
}
.btn {
	display: inline-block;
	background-color: #000;
	color: #fff;
	/*
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.6s;
	-moz-transition: background-color 0.6s;
	transition: background-color 0.6s;
	*/
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
	padding: 15px;
	border: none;
	font-family: "GothamBook";
	font-size: 120%;
	transition: background 0.5s linear;
}
.btn:hover {
	background-color: #CC0003;
	color: #fff;
}
.btn2 {
	display: inline-block;
	background-image: url('venues/davidduncanhouse/images/DuncanWood-dark.jpg');
	background-repeat: repeat;
	background-attachment: fixed;
	background-position: center;
	background-color: #282828;
	color: #fff;
	/*
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.6s;
	-moz-transition: background-color 0.6s;
	transition: background-color 0.6s;
	*/
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
	padding: 15px;
	border: none;
	font-family: "GothamBook";
	font-size: 120%;
	transition: background 0.5s linear;
}
.btn2:hover {
	
	background-repeat: repeat;
	background-color: #000;
	color: #fff;
}
.btn-venue {
	display: inline-block;
	background-color: #CC0003;
	color: #fff;
	/*
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.6s;
	-moz-transition: background-color 0.6s;
	transition: background-color 0.6s;
	*/
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
	padding: 15px;
	border: none;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	font-size: 120%;
}
.btn-venue:hover {
	background-color: #000;
	color: #fff;
}
.btn-click-copy {
	display: inline-block;
	padding: 10px;
	font-size: 100%;
	font-weight: 700;
	font-family: "GothamBook",Helvetica,Arial,sans-serif;
	letter-spacing: 1px;
	background-color: #ff0000;
	color: #fff;
	text-transform: uppercase;
	/*
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.6s;
	-moz-transition: background-color 0.6s;
	transition: background-color 0.6s;
	*/
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
}
.btn-click-copy:hover {
	background-color: #999999;
	color: #fff;
}
.news-msg { 
 font-size: 150%;
 font-family: "GothamBook";
}
#iconic {
 font-size: 150%;
 font-family: "GothamBook";
}
#copy {
	font-family: "GothamBook";
	font-size: 11px;
	color: grey;
}

#Menubar img {
	
padding: 10px;
}

ul li .btn {
	margin-top: 5px;
}
.box {
	background-color: #CCC;
	padding: 10px;
}
.box-heading {
	background-color: white;
	padding: 10px;
	font-weight: bold;
	color: #FFF;
	font-family: "GothamBook";
	font-size: 85%;
}
#pending {
	display: none;
	background-color: #FFF;
	margin-bottom: 20px;
	border-bottom: solid 5px #4caf50;
}
.center {
	text-align: center;
}
#testimonials {
	float: right;
	width: 50%;
	position: relative;
	z-index: 2000;
}
.messageBox {
	padding: 10px;
	background-color: #FFF;
	text-align: center;
}
#myBtn {
	display: none; /* Hidden by default */
	position: fixed; /* Fixed/sticky position */
	bottom: 20px; /* Place the button at the bottom of the page */
	right: 30px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	background-color: #0C0; /* Set a background color */
	color: white; /* Text color */
	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 15px; /* Some padding */
	border-radius: 0px; /* Rounded corners */
}
#myBtn:hover {
	background-color: #F90; /* Add a dark-grey background on hover */
}

img {
	max-width: 100%;
	height: auto;
}
.col {
	float: left;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
}
.cols {
	float: left;
	width: 100%;
	padding: 0px;
	box-sizing: border-box;
}
.row:before, .row:after, .group:before, .group.after {
	content: "";
	display: table;
	word-wrap: break-word;
}
.row:after, .group:after {
	clear: both;
	word-wrap: break-word;
}
.row, .group {
	zoom: 1;
	word-wrap: break-word;
}


.fix-menu {
	 position: fixed;
	z-index: 999;
}



/*Navigation*/



/* NEW RESPONSIVE MENU */



ul.topnav li.icon {
	display: none;
}
 @keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}

/* Firefox < 16 */
@-moz-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}

/* Internet Explorer */
@-ms-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}

/* Opera < 12.1 */
@-o-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
 @media screen and (max-width: 1020px) {
	 
	 
	 .chevron:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  height: 100%;
  width: 50%;
  background: red;
  -webkit-transform: skew(0deg, 4deg);
  -moz-transform: skew(0deg, 4deg);
  -ms-transform: skew(0deg, 4deg);
  -o-transform: skew(0deg, 4deg);
  transform: skew(0deg, 4deg);
}
.chevron:after {
  content: '';
  position: absolute;
  top: -20px;
  right: 0;
  height: 100%;
  width: 50%;
  background: red;
  -webkit-transform: skew(0deg, -4deg);
  -moz-transform: skew(0deg, -4deg);
  -ms-transform: skew(0deg, -4deg);
  -o-transform: skew(0deg, -4deg);
  transform: skew(0deg, -4deg);
}
	 
	 	 .chevron-venue:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  height: 100%;
  width: 50%;
  background: #E3E3E3;
  -webkit-transform: skew(0deg, 4deg);
  -moz-transform: skew(0deg, 4deg);
  -ms-transform: skew(0deg, 4deg);
  -o-transform: skew(0deg, 4deg);
  transform: skew(0deg, 4deg);
}
.chevron-venue:after {
  content: '';
  position: absolute;
  top: -20px;
  right: 0;
  height: 100%;
  width: 50%;
  background: #E3E3E3;
  -webkit-transform: skew(0deg, -4deg);
  -moz-transform: skew(0deg, -4deg);
  -ms-transform: skew(0deg, -4deg);
  -o-transform: skew(0deg, -4deg);
  transform: skew(0deg, -4deg);
}
	 

     
     .special-div-pnp {
position: relative;
right: 0px;
border-right: none;
background-color: #1d1b1b;
/*

background-color: #FF0004;
*/
width: 100%;
    z-index: 0;
}

.special-div {
position: relative;
right: 0px;
border-right: none;
background-color: #1d1b1b;
width: 100%;
    z-index: 0;
}
     
	 .fix-menu {
	 position: static;
	 
	 }
	 .strand {
	position: absolute !important;
	margin: -15px 0 0 0 !important;
	 }
	 #body {
		 
	 margin-top: 0;
	 }
.icon-bar {
	/*display: none;*/
}
ul.topnav li:not(:first-child) {
	display: none;
}
ul.topnav.responsive {
	position: relative;
	-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 2s; /* Firefox < 16 */
	-ms-animation: fadein 2s; /* Internet Explorer */
	-o-animation: fadein 2s; /* Opera < 12.1 */
	animation: fadein 2s;
}
ul.topnav.responsive li {
	float: none;
	display: block;
	/* display: inline; */
	
}
.children {
	width: 100%;
	
}
ul.topnav.responsive li a:link, ul.topnav.responsive li a:visited {
	display: block;
	text-align: left;
	font-size: 85%;
}
#div-nav {
	position: relative !important;
	margin: 0px !important;
	width: 100%;
	height:auto;
	/*background-color: rgb(29, 27, 27);*/
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 9998 !important;
}

ul.topnav li.icon {
	display: block !important;
}
}



#div-nav {
	float: right;
	margin-top: 70px;
	/*background-color: #black !important;*/
	padding-bottom: 15px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9998;
	font-size: 90%;
}
/* HIDDEN MENU */


.hide {
	opacity: 0;
	left: -100%;
}
/* END NEW RESPONSIVE MENU */



nav {/*
	float: right;
	margin-right: 10px;
	 background-color: #black !important; */
	padding: 0;
	top: 0;
	right: 0;
	position: static;
	height:auto;
	z-index: 100;
}
nav ul {
	list-style: none;
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
	
}
nav ul a {
	display: block;
	color: #000;
	padding: 10px 11px;
	text-decoration: none;
	font-family: "GothamBook";
	font-size: 100%;
}
nav ul li {
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
	/*padding: 0 10px 0 10px;*/
	
}
nav ul li.current-menu-item {
	background: #ddd
}
nav ul li a:hover {
	color: #ccc;
}
nav ul ul li a:hover {
	color: #fff;
}
nav ul ul li:hover {
	background-color: #CCCCCC;
}
nav ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0;
	z-index: 9999999;
	background: rgba(230, 231, 232,0.9);
	/*background-color: #e6e7e8;*/
	border-top: solid 1px red;
}
nav ul ul li {
	float: none;
	width: 300px;
	text-align: left;
}
nav ul ul a:link, nav ul ul a:visited {
	line-height: 0%;
	padding: 15px 12px;
	text-decoration: none;
	font-family: "GothamBook";
	/* font-size: 85% !important; */
}
nav ul li:hover > ul {
	display: block;
}

#more {
margin-left: -230px;
}
/* NEW POPUP */


.overlay {
	
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	z-index: 999999999;
	width: 100%;
    height: 100%;
	
}
.popup {
	/*
	margin: 0 auto;
    top: 25%;
	height:auto;

	
	padding: 10px;
	
	border-radius: 5px;
	
	position: relative;
	z-index: 99999;
	*/
	
    margin: 0 auto;
    
    position:relative; 
    z-index: 99999;
    top: 50%;
	transform: translateY(-50%);
    display:block;
    text-align:center;
	padding: 20%;
    
	/*
    -webkit-box-shadow:0 0 10px rgba(0,0,0,0.4);
    -moz-box-shadow:0 0 10px rgba(0,0,0,0.4); 
    box-shadow:0 0 10px rgba(0,0,0,0.4);
	*/
	
}
.popup h2 {
	margin-top: 0;
	color: #333;
	font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
	position: absolute;
	top: 20px;
	right: 30px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
	z-index: 99999;
}
.popup .close:hover {
	color: #06D85F;
	z-index: 99999;
}
.popup .content {
	height:auto;
	z-index: 99999;
    text-align: center;
}





/* Outer */
.popup-career {
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    background:rgba(0,0,0,0.75);
	
	
}
 
/* Inner */
.popup-inner {
    max-width:700px;
    width:100%;
    padding:40px;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    /*box-shadow:0px 2px 6px rgba(0,0,0,1);*/
    border-radius:0px;
    background:#e6e7e8;
	
}
 
/* Close Button */
.popup-close {
    width:30px;
    height:30px;
    padding-top:4px;
    display:inline-block;
    position:absolute;
    top:0px;
    right:0px;
    transition:ease 0.25s all;
    -webkit-transform:translate(50%, -50%);
    transform:translate(50%, -50%);
    border-radius:1000px;
    background:rgba(0,0,0,0.8);
    font-family:Arial, Sans-Serif;
    font-size:20px;
    text-align:center;
    line-height:100%;
    color:#fff;
}
 
.popup-close:hover {
    -webkit-transform:translate(50%, -50%) rotate(180deg);
    transform:translate(50%, -50%) rotate(180deg);
    background:rgba(0,0,0,1);
    text-decoration:none;
}




#copyright {
padding-top: 20px;
text-align: right;
}

.align-mid {
	display: flex;
	justify-content: center !important;
	align-items: center !important;
}













/* BEGIN SIDE BAR NAVIGATION */	
	
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    /* padding-top: 60px; */
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
	position: absolute;
	z-index: 9999;
}

.openbtn:hover {
    background-color: #444;
}

#main {
    transition: margin-left .5s;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidebar {padding-top: 15px;}
    .sidebar a {font-size: 18px;}
}
	
	
/* END SIDE BAR NAVIGATION */







/* BOUNCING ARROWS */
/*
<i class="fa fa-arrow-left"></i>
<i class="fa fa-chevron-down"></i>
<i class="fa fa-arrow-right"></i>
*/

	@-moz-keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}





@-webkit-keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  60% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@-moz-keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(30px);
  }
  60% {
    transform: translateX(15px);
  }
}
@keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  60% {
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
}
/* /left bounce */


/* right bounce */
@-webkit-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  60% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}
@-moz-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-30px);
  }
  60% {
    transform: translateX(-15px);
  }
}
@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  60% {
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}
/* /right bounce */


/* assign bounce */
.fa-arrow-right {
  -webkit-animation: bounceRight 2s infinite;
  animation: bounceRight 2s infinite;
  
}

.fa-arrow-left {
  -webkit-animation: bounceLeft 2s infinite;
  animation: bounceLeft 2s infinite;

}

.fa-chevron-down {
  -moz-animation: bounceDown 2s infinite;
  -webkit-animation: bounceDown 2s infinite;
  animation: bounceDown 2s infinite;
text-align:center;
  display:block;
}


.credits {padding-top:50px; display:block; clear:both;}
	
	
		.div-center {
    -webkit-align-items: center;
    -webkit-justify-content: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

/* END BOUNCING ARROWS */










	.social-btn {
		line-height: 1;
	}
















 @media only screen and (min-width: 1020px) {
.footer-heading .slogan {
	color: #ffffff;
	font-size: 250%;
}
#div-nav {
	position: fixed;
	z-index: 100000;
}


#happening-banner {
 margin-top: 41px;
}
}





/* Larger Screen */
@media screen and (min-width: 2450px) {

#para-page{
	margin-top: 10%;
}

#div-nav {
	font-size: 120%;
}
h1 {
	margin: 0;
	padding: 0 0 20px 0;
	font-size: 200%;
	font-family: "GothamBook";
}
h3 {
   font-size: 200%;	
}
.caption-box span {
	color: white;
	font: 20px;
	letter-spacing: -1px;
}

	#video {
		
	height: 500px !important;
	}

}



/* Laptop */
@media screen and (max-width: 1380px) {
		#mid-li {
		margin-right: 69px !important;
	}

    #promoHolder img {
     width: 60%;   
	}
	
		#video {
		
	height: 500px !important;
	}

}


/* Tablet */
@media screen and (max-width: 1020px) {
	
		#video {
		
	height: auto !important;
	}
	
	nav ul li {
    width: 100% !important;
}
	
	nav ul {
		text-align: left !important;
	}
	
	#download-brochure {
		
		font-size: 14px;
	}
	
		#mid-li {
		margin-right: 69px !important;
	}
	
	.media-type {
				  padding-right: 0px !important;
				}
	
		#mid-li {
		margin-right: 0 !important;
	}

	/*
	nav ul li ul li:first-child {
	padding-top: 10px;
    }
	*/
	nav ul li ul li {
	padding: 10px 0;
		border-bottom: solid 1px #ccc;
    }
	
	nav ul li ul li:last-child {
	border-bottom: none;
    }
	
	nav ul {
		width: 100%;
	}
	
	nav ul a {

	padding: 10px 10px;

}

.removeBorder {
 border-right: solid 1px #fff !important;
}



	
#career-video {
padding: 0;
}

		#otherfield {
	border-left: solid 1px #E7E7E7;
    }
	
   
#more {
margin-left: 0px;
}

	
#para-page{
	margin-top: 0px;
}
	
.col {
	padding: 20px;
}

.banner {
	padding: 5px;
}
.box-fade {
	padding: 0 0 0 0;
}




.slogan {
	font-size: 150%;
}
.slogan-textual {
	font-size: 300%;
}
#quotes {
	font-size: 150%;
}
.caption-box span {
	color: black;
	font-weight: 700;
	font: 20px;
	letter-spacing: -1px;
}
h1 {
	margin: 0;
	padding: 0 0 10px 0;
	font-size: 20px;
	font-family: "GothamBook";
}
.menu-trigger {
	display: block;
	color: #fff;
	padding: 10px;
	text-align: right;
	font-size: 83%;
	cursor: pointer;
	font-weight: bold;
}
nav.nav-menu {
	display: none;
}
nav.nav-expanded {
	display: block;
	background-color: #000;
	position: relative !important;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 100000000;
}
nav {
	width: 90%;
}
nav.nav-menu ul li {
	float: none;
	border-bottom: 1px solid #1B1B1B;
}
nav ul li ul {
	display: block;
	position: relative;
	/*left: 25;*/
	/*padding-bottom: 20px;*/
	z-index: 999;
	background: none;
	width: 100%;
}
nav.nav-menu ul li:last-child {
	border-bottom: none;
}
.col-pending {
	float: none;
	width: 100%;
}
.col-pending-sidebar {
	float: none;
	width: 100%;
	margin-top: 50px;
}
.col-form input[type="Submit"] {
	box-sizing: border-box;
	padding: 15px;
	border: none;
}
.col-form input[type="button"] {
	box-sizing: border-box;
	padding: 15px;
	border: none;
}
div.client-search input[type="Submit"] {
	box-sizing: border-box;
	padding: 15px;
	border: none;
}
div.client-search input[type="button"] {
	box-sizing: border-box;
	padding: 15px;
	border: none;
}
div.client-search input[type="text"] {
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
	border: none;
	font-size: 150%;
}
div.col-form select {
	box-sizing: border-box;
	padding: 20px;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 150%;
	border: none;
	margin-bottom: 10px;
}

#pete-im {
 width: 40%;
}


}

#theking {
 width: 40%;	
}

/* Mobile */
@media screen and (max-width: 480px) {
	
	#home-btn {
		display:block !important;
		
	}

	p {
		font-size: 1.3em;
	}
	
	.heeder {
		font-size: 15px !important;
	}
	
	#download-brochure {
    font-size: 11px !important;
}
	
nav {
    width: 100% !important;
		font-size: 19.2px !important;
}
	
	
	nav ul a {
	display: flex !important;	
	}
	
	nav ul li a {
		border-top: solid 1px #ccc;
	}
	
	nav ul ul li a {
  border-top: none;
}
	/*
	nav ul ul li {
		
		margin-left:40px;
		border-left: solid 1px #ccc;
	}
	*/
	
	#subb li {
    position: relative;
    list-style: none;
    padding-left: 20px; /* Adds space for the arrow */
}

#subb li::before {
    content: '●';
    position: absolute;
    top: 46%;
    left: 7px;
    transform: translateY(-50%);
    border: 5px solid transparent;
    color: red;
    font-size: 1.4em;
    /* border-left-color: #000; */
}	
	
	
	
	.nav-heading {
		background-color: #ffefef;
	
	}	
	
	
	h7 {
		font-size: 13px !important;
		padding: 20px 0 20px 0 !important;
		grid-gap: 15px !important;
	}
	
	#mid-li {
		margin-right: 0 !important;
	}


.venue-avail {
font-size: 8vw !important;
}

.caption-box span {
font: 20px;
}

.removeBorder {
 border-right: solid 1px #fff !important;
}

.happening h1 {
 font-size: 15px;
}
.happening h3 {
 font-size: 12px;
}


.sharethis-inline-share-buttons {
 text-align: center !important;
}


	#career-video {
padding: 0;
}

	
		.stuck {
		width: 160px !important;
		
	}
	.stuck video {
		
		border: solid 4px white !important;
	}
    
	#close_video_btn {
		font-size: 10px;
		padding: 0;
		width: 50px !important;
		
		
	}

	#career-logo {
		text-align: center;
	}
	.career-title {
		text-align: center;
		font-size: 150%;
	}
	
	#promoHolder img {
     width: 80%;
	}

	#Menubar {
	text-align: center;	
/*	border-bottom: solid 1px #ccd1d9; */
	}
	#hiddenMenubar {
	text-align: center;
	}
	
	#body {
	height: auto !important;
	
}
	
#para-page{
	margin-top: 0px;
}

	
#hotelx-venue {
	
	display:none;
}

.clock {
	display: none;
}
.btn-wrap {
	margin-bottom: 3px;
}
	
	.btn {
		background-color: #521416;
	}
	
#insta-img {
	width: 50%;
	height: auto;
}

#circle-shape .curve {
 width: 100%;
 float:none;
 margin: 0;
 padding: 0;	
}
#pete-im {
float: none;	
width: 100%;
padding: 0px;
}
#timeline-im {
margin: auto;
}
#circle-shape {
	margin: 0;
}
#title-head {
 text-align:center;	
 font-size: 200%;
}
.col {
padding: 10px;	
}
h1 {
text-align: center;
font-size: 85%;	
}
.col-pending {
	padding: 20px;
}
#venue-header {
padding-left: 0;
text-align:center;	
}
.slogan {
 font-size: 80%;
}
.banner {
 padding: 20px;	
}
#newsletterformholder {
 padding: 0 20px 0 20px;	
}
.news-msg {
 padding: 0 20px 0 20px;	
 font-size: 100%;
}

#inconic {
 padding: 0 20px 0 20px;	
 font-size: 100%;
}

.popup-inner {
 width: 90%;
 margin-top: 10px;	
}

	
	  #copyright {
  text-align: left;
  padding-top: 20px;
  }

  .mobile-align-center {	
  text-align: center;
  }
	

.popup {
	padding: 5%;
}

}


.col-xs-11 {
	width: 91.662%;
}
.col-xs-10 {
	width: 83.332%;
}
.col-xs-9 {
	width: 75%;
}
.col-xs-8 {
	width: 66.662%;
}
.col-xs-7 {
	width: 58.331%;
}
.col-xs-6 {
	width: 50%;
}
.col-xs-5 {
	width: 41.662%;
}
.col-xs-4 {
	width: 33.332%;
}
.col-xs-3 {
	width: 25%;
}
.col-xs-2 {
	width: 16.662%;
}
.col-xs-1 {
	width: 8.332%;
}

/*only if the device width is atleast 768px or higher*/
@media screen and (min-width: 768px) {
.col-sm-11 {
	width: 91.662%;
}
.col-sm-10 {
	width: 83.332%;
}
.col-sm-9 {
	width: 75%;
}
.col-sm-8 {
	width: 66.662%;
}
.col-sm-7 {
	width: 58.331%;
}
.col-sm-6 {
	width: 50%;
}
.col-sm-5 {
	width: 41.662%;
}
.col-sm-4 {
	width: 33.332%;
}
.col-sm-3 {
	width: 25%;
}
.col-sm-2 {
	width: 16.662%;
}
.col-sm-1 {
	width: 8.332%;
}
}
 @media screen and (min-width: 1024px) {
.col-md-11 {
	width: 91.662%;
}
.col-md-10 {
	width: 83.332%;
}
.col-md-9 {
	width: 75%;
}
.col-md-8 {
	width: 66.662%;
}
.col-md-7 {
	width: 58.331%;
}
.col-md-6 {
	width: 50%;
}
.col-md-5 {
	width: 41.662%;
}
.col-md-4 {
	width: 33.332%;
}
.col-md-3 {
	width: 25%;
}
.col-md-2 {
	width: 16.662%;
}
.col-md-1 {
	width: 8.332%;
}
}
 @media screen and (min-width: 1024px) {
.col-lg-11 {
	width: 91.662%;
}
.col-lg-10 {
	width: 83.332%;
}
.col-lg-9 {
	width: 75%;
}
.col-lg-8 {
	width: 66.662%;
}
.col-lg-7 {
	width: 58.331%;
}
.col-lg-6 {
	width: 50%;
}
.col-lg-5 {
	width: 41.662%;
}
.col-lg-4 {
	width: 33.332%;
}
.col-lg-3 {
	width: 25%;
}
.col-lg-2 {
	width: 16.662%;
}
.col-lg-1 {
	width: 8.332%;
}
}
