/* Equalize Simple List Blocks - Pin Buttons to Bottom*/

/* Change item class here */
.items_c40c8382cb654890bf2e1bf26a708af5 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_c40c8382cb654890bf2e1bf26a708af5 > .item {
	display: flex;
	flex-direction: column;
  position: relative;
}

/* Change item class here */
.items_c40c8382cb654890bf2e1bf26a708af5 > .item a.button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px; 
}

/* Change item class here */
.items_c40c8382cb654890bf2e1bf26a708af5 > .item p {
    margin-bottom: 20px;
}

/*** home page lightbox Video ***/
button#playme{
	padding: 1rem 2rem;
	background: #b79d6c;
  font-size: 1rem;
  color: white;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: .2rem;
  margin: 0 auto;
  transition: .4s;
  cursor: pointer;
}
button#playme:hover{
  background: #121212;
  color: #fff;
}
.lightbox{
	background-color: rgba(0, 0, 0, 0.8);
	overflow: scroll;
	position: fixed;
	display: none;
	z-index: 1;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}
.lightbox-container {
	position: relative;
	max-width: 960px;
	margin: 7% auto;
	display: block;
	padding: 0 3%;
	height: auto;
	z-index: 10;
}
.lightbox-content {
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.0);
}
.lightbox-close {
	text-transform: uppercase;
	background: transparent;
	position: absolute;
	font-weight: 300;
	font-size: 12px;
	display: block;
	border: none;
	color: white;
	top: -22px;
	right: 3%;
}
.video-container {
	padding-bottom: 56.25%;
	position: relative;
	padding-top: 30px;
	overflow: hidden;
	height: 0;
}
.video-container iframe, .video-container object, .video-container embed {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

@media screen and (max-width: 768px){
	.lightbox-container {
		margin-top: 10%;
	}
}
@media screen and (max-width: 414px) {
	.lightbox-container {
	margin-top: 13%;
	}
}
/***END home page lightbox Video ***/