/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
	/* box-sizing: border-box; */
	box-sizing: content-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	margin: 0;
	font-family: 'Roboto-Regular';
	font-size: 13px;
}
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;
}

/* **************************** */
@font-face {
	font-family: 'Roboto-Bold';
	src: url('fonts/Roboto-Bold.eot');
	src: local('☺'), url('fonts/Roboto-Bold.woff') format('woff'), url('fonts/Roboto-Bold.ttf') format('truetype'), url('fonts/Roboto-Bold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto-Light';
	src: url('fonts/Roboto-Light.eot');
	src: local('☺'), url('fonts/Roboto-Light.woff') format('woff'), url('fonts/Roboto-Light.ttf') format('truetype'), url('fonts/Roboto-Light.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}


@font-face {
	font-family: 'Roboto-Regular';
	src: url('fonts/Roboto-Regular.eot');
	src: local('☺'), url('fonts/Roboto-Regular.woff') format('woff'), url('fonts/Roboto-Regular.ttf') format('truetype'), url('fonts/Roboto-Regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

.content-header{
	width: 100%;
	height: 82px;
	background: #F2F2F2;
	position: relative;
	box-shadow: 0 3px 3px rgba(0,0,0, .2);
	overflow: hidden;
}

.content-header .guide{
	height: 100%;
	min-height: 0;
}


.content-header .logoCont{
	background: white;
	height: 100%;
	padding: .3rem;
	position: relative;
	overflow: visible;
	box-sizing: border-box;
}
.content-header .logoCont img{
	max-height: calc(82px - 0.6rem);
	width: auto;
	display: block;
}
.content-header .logoCont::before{
	width: 300px;
	content: '';
	display: block;
	position: absolute;
	height: 82px;
	background: white;
	left: -300px;
	top:0;
}

.content-header .logoCont::after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 41px solid transparent;
	border-left: 30px solid white;
	border-bottom: 41px solid transparent;
	position: absolute;
	right: -30px;
	top: 0;

}

.header-info{
	width: 86%;
	text-align: right;

}


.header-info h2{
   color:#8B8B8B;
   font-size: 1rem;
}


.header-info h3
{

 margin-right: 10px;
	
}
.header-info hr{
  height: 1px;
  border:none;
  background: #ccc;

}
.guide{
	/*max-width: 1280px;*/
   /* min-width: 1000px;*/
   
   min-width: 100px;
   /* min-height:  100px; */

    /*margin: 0 auto;*/
    /*overflow: hidden;*/
    /*background: #00FF00;*/
    height: 100%;
}


.flex{
  display: flex;
}

.flex-bt{
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.v-center{
	-webkit-box-align: center;
	        align-items: center;
}
.h-center{
	-webkit-box-pack:  center;
	 
}

.boton{
    background:#2678D6;
    display: block;
	color:white;
	font-size: 2rem;
	width: 20%;
	margin: 0 auto 1rem; 
	padding: .6rem;
	border-radius: 16px;
	/*position: absolute;
	bottom: 0.3%;
	right: 40%;*/
}

@media only screen and (max-width: 678px){
	.boton
	{
		font-size: 3rem !important;
		width: 50% !important;
	}
}



