@charset "UTF-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CSS Reset */

*{
	box-sizing: border-box;
}

img{
	max-width: 100%;
}

video{
	max-width: 100%;
}

body{
	font-family: SamsungSharpSans-Regular;
	font-size: 20pt;
	color: white;
	background-color: black;
}

.modulo{
	position: relative;
	overflow: hidden;
}

.primario{
	width: 50%;
}

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

.bloque-2{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}

.bloque-3{
	display: flex;
	flex-direction: column;
}

.titulo{
	font-family: SamsungSharpSans-Bold;
	font-size: 55pt;
}

.subtitulo{
	font-family: SamsungSharpSans-Bold;
	font-size: 36pt;
}

.margen{
	padding: 25px;
}

#modulo-2{
	margin-top: 50px;
}

#modulo-3 video{
	
}

footer img{
	width: 30%;
}

@media screen and (max-width:1160px){
	body{
		font-size: 16pt;
		line-height: 1.2;
	}
	
	.titulo{
		font-size: 45pt;
	}
	
	.subtitulo{
		font-size: 30pt;
	}
}

@media screen and (max-width:780px){
	
	body{
		font-size: 13pt;
	}
	
	.titulo{
		font-size: 35pt;
	}
	
	.subtitulo{
		font-size: 24pt;
	}
}

@media screen and (max-width:600px){
	.bloque{
		flex-direction: column;
	}
	
	.primario{
		width: 100%;
	}
	
	.bloque-2{
		flex-direction: column;
	}
	.bloque-3{
		flex-direction: column-reverse;
	}
	
	.titulo{
		font-size: 28pt;
			
	}
	
	h1 br{
		display: none;
	}
}

@media screen and (max-width:400px){
	body{
		font-size: 10pt;
	}
	
	.titulo{
		font-size: 18pt;
	}
	
	.subtitulo{
		font-size: 16pt;
	}
	
	.margen{
		padding: 15px;
	}
	
	footer img{
		width: 50%;
	}
}