* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}


body {
	background: #f4f4f4;
	font-size: 16px;
	font-family: 'Rubik';
	color: #FFF;
}


header {
	background: #e67e22;
	position: fixed;
	width: 100%;
	top: 0px;
	padding: 10px 0px;
	z-index: 1000;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-title {
	display: flex;
	align-items: center;
}

.video-section {
	/*margin-top: 12px;*/
}

.video-container {
	margin-top: 64px;
	background: rgba(0,0,0, .3);
	min-height: 480px;
}

.video {
	width: 100%;
}

.now-playing {
	margin-top:8px;
}

.now-play-program-active,
.now-play-program {
	font-size: 13px;
	display: flex;
	grid-gap: 10px;
	background: #1abc9c;
	padding: 8px 12px;
	border-left: 5px solid #16a085;
}

.now-play-program {
	background: #3498db;
	margin-bottom: 12px;
	border-left: 5px solid #2980b9;
}

.header-menu li {
	display: inline-block;
	list-style: none;
	font-size: 14px;
	margin-left: 12px;
}

.cicle {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: red;
	display: inline-block;
	margin-right: 3px;
}

.live-tv {
	background: #333;
	padding: 0px 10px;
	border-radius: 20px;
	font-size: 13px;
}

.hero-section {
	background: #3C3B3F;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #605C3C, #3C3B3F);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #605C3C, #3C3B3F); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding-top: 115px;
    padding-bottom: 64px;
}

.hero-video{
    display: block;
    aspect-ratio: 16 / 9;
    background: #3498db;
    width: 100%;
}

.hero-contents {
    display: grid;
    grid-template-columns: auto 45%;
}


.video-player-container {
    background: #3498db;
    aspect-ratio: 16 / 9;
}

footer {
    margin-top: 48px;
    background: #232526;
    background: -webkit-linear-gradient(to top, #414345, #232526);
    background: linear-gradient(to top, #414345, #232526);

}


.footer-line {
    text-align: center;
    background: #333;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    padding: 8px;
}

.footer-container {
    display: flex;
}


@media only screen and (max-width: 768px) {
    .hero-contents {
        display: block;
    }
    
    .video-player-container {
      margin-top: 40px;
    }
    
    .footer {
        display: flex;
    }
    
    .footer-container {
        display: block;
    }


}











