#promo-video{
    position: relative;
    width: 100%;
    height: 400px;
    border-bottom: 3px solid #bfc074;

	background-image: url(../videos/main.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	
	z-index: 0;
}

@media screen and (max-width: 992px) {
    #promo-video{
        height: 350px;
        border-bottom: 2px solid #bfc074;
    }
}

@media screen and (max-width: 768px) {
    #promo-video{
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    #promo-video{
        height: 200px;
    }
}


/* HOME VIDEO */
#home-video{
	position: absolute;
	display: block;
	left: 50%;
	margin-left: -42px;
	top: 50%;
	margin-top: -55px;
	width: 75px;
    height: 75px;
    
	z-index: 999999;
}
#home-video .fa{
    position: relative;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    line-height: 74px;
    background: #bfc074;
    background: #fff;
    color: #fff;
    color: #212121;
    text-align: center;
    font-size: 30px;
    border: 4px solid rgba(255,255,255,0.05);
    border: 4px solid #ededed;
    text-indent: 4px;
    box-shadow: 0 0 0 8px rgba(255,255,255,0.15);
    
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    
    z-index: 999;
}
#home-video:hover .fa{
    box-shadow: 0 0 0 6px rgba(255,255,255,0.0);
    border: 4px solid transparent;
    background: #999a57;
    background: #bfc074;
    color: #fff;
}
#home-video .popup-link:focus,
#home-video .popup-link:active{
    outline: none;
}
#home-video h2{
	display: inline-block;
	margin: 20px 0 0;
	width: 100%;
	text-align: center;
	font-size: 14px;
	font-weight: 900;
	color: #fff;
	text-indent: 0px;
	text-transform: uppercase;
	white-space: nowrap;
    text-shadow: 2px 0 3px rgba(0,0,0,0.25);
}
@media screen and (max-width: 768px){
    #home-video .fa{
    	margin-top: 10px;
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 24px;
        text-indent: 4px;
        border: 0px solid #ededed;
        box-shadow: 0 0 0 6px rgba(255,255,255,0.15);
    }
    #home-video .fa:hover{
        box-shadow: 0 0 0 6px rgba(255,255,255,0.30);
        border: 0px solid transparent;
        color: #fff;
    }
}