/* Savio Designs' Custom CSS Document 
Credit for theater Background and code to https://getreelcinemas.com/*/



/*
*************************************************************
               Allows Video Gallery thumbnails to be relative
and in same line
************************************************************
*/


.vid-item {
position: relative;
}

.vid-item .desc {
height: 40px;
}


/*
*************************************************************
               CURTAIN IMAGE + CONTENT MARGINS
*************************************************************
*/

.sitewrapper {
	position: relative;
	height: 100%;
	z-index: 9999;
	background-image: url(../images/curtain-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
 	background-attachment: fixed;
}


.contentcolumn {
  margin: 15px;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .sitewrapper {      
   	background-image: none;
  }
}

@media (max-width: 768px) {
  .contentcolumn {
  margin: 0px;
	}
}

/*
*************************************************************
                      CONTACT BUTTON
*************************************************************
*/

div.contact-button {
  position: fixed;
  bottom: 40%;
  left: 0;
}

@media (max-width: 768px) {
  div.contact-button {      
    display: none;
  }
}

/*
*************************************************************
                      BACKGROUND VIDEO
*************************************************************
*/

video#bgvid { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(../images/blackbg.jpg) no-repeat;
    background-size: cover; 
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}


@media (max-width: 768px) {
    .backgroundvideo { display:none; }
}

/*
*************************************************************
                      FLOATS
*************************************************************
*/

.floatright {
	float: right;
}

.floatleft {
	float: left;
}


/*
*************************************************************
                      TAG LINE
*************************************************************
*/
.tagline {
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	font-size:30px;
	font-style:italic;
	color: white;
	text-shadow: 3px 3px 5px #000000;
	margin-bottom:10px;
	}

/*
*************************************************************
                      SOCIAL ICONS & FOOTER
*************************************************************
*/
.social-icons img {
	filter: grayscale(1);
	opacity: .8;
	transition: all linear .5s;
	max-width: 32px;
}
.social-icons img:hover {
	filter: grayscale(0);
	opacity: 1;
}
ul.social-icons {
	margin: 10px 0px 0px 0px;
	padding: 0px;
}
.social-icons li {
	list-style-type: none;
	display: inline-block;
}
.hmy-content-wrapper.social .hmy-content {
	padding: 10px 25px;
}
.hmy-content-wrapper.copyright .hmy-content {
	padding: 0px 24px 10px 24px;
}
.hmy-content-wrapper.copyright .hmy-content p {
	margin: 0px;
	font-size: 60%;
	text-transform: uppercase;
	letter-spacing: .5em;
}

@media (max-width: 768px) {
  .footercolumn {
  margin-bottom: 58px;
	}
}


/*
*************************************************************
    BACKGROUND IMAGE - NOT USED BUT THIS IS ORIGINAL CODE
Credit for theater Background to:
https://getreelcinemas.com
Original Code Below:

img#fsb_image {
	Set rules to fill background
	min-height: 100%;
	min-width: 1024px;

	 Set up proportionate scaling 
	width: 100%;
	height: auto;

	 Set up positioning 
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}
@media screen and (max-width: 1024px) { Specific to this particular image 
	img#fsb_image {
		left: 50%;
		margin-left: -512px;   50% 
	}
}

*************************************************************
*/
