@charset "utf-8";
/* CSS Document */

.video-background {
	width:auto; height:auto; 	/* To show the whole Television. */
    /*width:100%; height:100vh;	/* to fill the whole section */
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center; 
}

.video-background video {
    position:relative;
    top:0;
    left:0;
    object-fit:cover;
}

.videoA { 
  position: absolute;
  z-index: -1000;
  right: 0;
  bottom: 0;
  max-width: 100%;	/*to show a slice of the video*/
  min-height: 100%;	/*to show a slice of the video*/
}



.hero-image {
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("../img/E107GCFA.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 140px 10px;
}
 .hero-text {
	 position: relative;
	 color: white;
	 text-align:center;
}

/*Small devices (landscape phones, 576px and up) 
@media (min-width: 576px) { ... }*/

@media (min-width: 768px) { /*Medium devices (tablets, 768px and up) */
	.hero-image {
		padding: 200px 10px;
	}
}

@media (min-width: 992px) {		/*Large devices (desktops, 992px and up)*/
	.hero-image {
		padding: 330px 10px;
	}
}

/*
// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }*/