/*
###################################
HOMEPAGE
###################################
*/

#homepage #hero {
	position: relative;
	background-color: black;
	height: 100vh;
	min-height: 25rem;
	width: 100%;
	overflow: hidden;
}

#homepage #hero video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

#homepage #hero .container {
	position: relative;
	z-index: 2;
}

#homepage #hero .overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
/* 	background-color: black; */
	background: rgb(0,36,46);
	background: linear-gradient(0deg, rgba(0,36,46,1) 0%, rgba(0,36,46,0) 70%);
/* 	opacity: 0.5; */
	z-index: 1;
}

/* Media Query for devices withi coarse pointers and no hover functionality */

/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

@media (pointer: coarse) and (hover: none) {
	#homepage #hero {
		background: url('https://images.unsplash.com/photo-1506184155123-73f3a6dfc2fc?q=80&w=800&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') black no-repeat center center scroll;
	}

	#homepage #hero video {
		display: none;
	}
}



/*
###################################
NEWS PAGE AND SLIDER
###################################
*/


    .crop-news-image {
        object-fit: cover;
        object-position: center;
        width: 170px;
        height: 230px;
    }



/*
###################################
PERSON
###################################
*/

	.person-thumb {
	    overflow: hidden;
	}

	.person-thumb img {
	    transition: all 0.5s ease-in-out;
	}

	.person-thumb div {
	    z-index: 9;
	}

	.person-thumb:hover img {
	    scale: 1.1;
	}

	.crop-person-thumb {
	    object-fit: cover;
	    object-position: top;
	    width: 100%;
	    height: 385px;
	}

	.crop-person-image {
	    object-fit: cover;
	    object-position: top;
	    width: 100%;
	    height: 550px;
	}


/*
###################################
HEADER
###################################
*/





/*
###################################
FOOTER
###################################
*/

footer a {
	text-decoration: none;
}

footer a:hover {
    color: var(--light-green);
}
