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

html, body{
	width: 100%;
	height: 100%;
	padding:0px;
	margin:0px;
}

html {
	scroll-behavior: smooth;
}


@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@400;900&display=swap');
/*
	font-family: 'Anton', sans-serif;
	font-family: 'Roboto', sans-serif;
*/

/*Estilos Generales del Sitio Web*/

a{
	font-family: 'Roboto', sans-serif;
	text-decoration: none;
}

li{
	font-family: 'Roboto', sans-serif;
}

p{
	font-family: 'Roboto', sans-serif;
}

span{
	font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6{
		font-family: 'Roboto', sans-serif;

}

form input[type="text"],
form input[type="email"],
form input[type="password"],
input[type="submit"],
form textarea,
label{
	font-family: 'Montserrat', sans-serif;
}


/*Colores Generales*/
:root {
	--color-negro: #333333;
	--color-grey: #adb5bd;
	--color-naranja: #ff8400;
	--color-amarillo: #ffd700;
	--color-rojo: #EF4E23;
	--color-blanco: #f7f7f7;
	--color-verde: #25cf43;
}

	.main{
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		align-content: center;
		align-items: center;

		background-image: url(images/bg-mrwick.jpg);
		height: 100vh;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.block__Info{
		width: 70%;
		height: 50%;
		top: 50%;
		left: 50%;
		transform: translate(25%, 0%);

		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;

		gap: 30px;
	}

	.logotype{
		width: 45%;
		height: auto;
		margin:0 auto;
	}

	@media(min-width: 768px) and (max-width:1004px){ 
		.logotype{
			width: 50%;
		}
	}

	@media(max-width: 768px){ 
		.logotype{
			width: 90%;
		}
	}

	.info__Text{
		margin: 30px 0;
	}

	.info__Text h2{
		font-size: 28px;
		font-weight: 600;
		text-align: center;
		color: var(--color-amarillo);
	}

	.info__Text p{
		font-size: 19px;
		font-weight: 400;
		text-align: center;
		color: var(--color-blanco);
	}

	.info__data{
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 30px;
	}

	@media(max-width: 768px){ 
	.info__data{
		flex-direction: column;
		gap: 10px;
		}
	}

	.info__data a{
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 10px;

		font-size: 20px;
		text-decoration: none;

		color: var(--color-blanco);
	}

	@media(min-width: 768px) and (max-width:1004px){ 
		.info__data a{
			font-size: 16px;
		}
	}


