@font-face {
	font-family: "PAPYRUS";
	src: url("fonts/PAPYRUS.ttf") format("truetype");
}

@font-face {
	font-family: "Raleway-Light";
	src: url("fonts/Raleway-ExtraLight.ttf") format("truetype");
	font-weight: lighter;
}

html, body {
	background-color: white;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-image: url("../img/background.jpg");
	background-size: cover;
	background-repeat: repeat-y;
	font-family: "PAPYRUS", sans-serif;
	font-size: 16px;
	color: #000000;
	--color-error: #dc3545;
	--color-success: #28a745;
}

input, textarea {
	padding: 0.4rem 0.8rem;
	outline: none;
	border: 0.06rem solid rgba(0, 0, 0, 0.4);
	border-radius: 0.6rem;

	-webkit-outline: none;
}

textarea {
	resize: none;
}

button {
	border: 0 solid transparent;
	font-family: "PAPYRUS", sans-serif;
	color: white;
	cursor: pointer;
}

.form--error {
	border-color: var(--color-error);
}

.form--success {
	border-color: var(--color-success);
}

.disabled {
	opacity: 0.6;
}

.contenido {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
}

.contenido img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.contenido button {
	position: absolute;
	bottom: 1rem;
	left: calc(50% - 1.5rem);
	width: 3rem;
	height: 3rem;
	margin: 0;
	padding: 0;
	background-color: transparent;
	background-image: url("../img/button-next.png");
	background-size: contain;
	background-repeat: no-repeat;
	border-radius: 0;
	outline: none;
	-webkit-outline: none;
}

.contact {
	display: flex;
	flex-direction: column;

	width: 80%;
	margin: 0;
	margin-left: 10%;
	padding: 0;
	color: black;

	display: -webkit-flex;
	-webkit-flex-direction: column;
}

.contact__title {
	margin: 0;
	margin-left: 10%;
	margin-top: 4rem;
	padding: 0;
	font-family: "PAPYRUS", sans-serif;
	font-weight: bold;
	font-size: 3rem;
}

.contact__process {
	margin-top: 1rem;
	margin-bottom: 3rem;
	font-family: "PAPYRUS", sans-serif;
	font-weight: bold;
	font-size: 1.3rem;
}

.contact__form {
	width: 85%;
	margin: 0;
	margin-left: 10%;
	padding: 0;
	font-size: 1.5rem;
}

.form__input {
	display: flex;
	align-items: center;
	margin: 0;
	margin-top: 5rem;
	padding: 0;

	display: -webkit-flex;
	-webkit-align-items: center;
}

.form__input:first-child {
	margin-top: 0;
}

.form__alert {
	margin: 0;
	margin-top: 0.4rem;
	padding: 0;
	font-size: 0.8rem;
	color: var(--color-error);
}

.form__input p {
	width: 14rem;
	margin: 0;
	padding: 0;
}

.form__input p span {

}

.form__input div {
	position: relative;
	display: flex;
	align-items: center;
	width: 50%;
	height: auto;
	margin: 0;

	display: -webkit-flex;
	-webkit-align-items: center;
}

.form__input img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.form__input input {
	position: absolute;
	left: 5%;
	width: 90%;
	margin: 0;
	padding: 0.1rem 0.1rem;
	background-color: transparent;
	border: 0 solid transparent;
	font-size: 1.2rem;
}

.form__area {
	display: flex;
	flex-direction: column;
	width: 90%;
	margin-top: 5rem;

	display: -webkit-flex;
	-webkit-flex-direction: column;
}

.form__area p {
	margin: 0;
	margin-bottom: 2rem;
	padding: 0;
}

.form__area p span {

}

.form__area div {
	position: relative;
	display: flex;
	align-items: flex-start;
	width: 100%;
	margin: 0;

	display: -webkit-flex;
	-webkit-align-items: flex-start;
}

.form__area img {
	width: 100%;
	height: auto;
	object-fit: contain;
}


.form__area textarea {
	position: absolute;
	left: 0;
	width: 90%;
	height: auto;
	margin: 0;
	margin-top: 1rem;
	padding: 0 1.2rem;
	background-color: transparent;
	border: 0 solid transparent;
	font-size: 1.2rem;
}

.form__buttons {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	margin-top: 3rem;
	margin-bottom: 5rem;
	padding: 0;

	display: -webkit-flex;
	-webkit-justify-content: space-between;
}

.form__button {
	width: 11rem;
	margin: 0;
	padding: 0.4rem 0;
	background-color: transparent;
	background-image: url("../img/button-background.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	color: white;
}

.footer__brand {
	display: flex;
	justify-content: center;
	margin: 0;
	margin-bottom: 1rem;
	padding: 0;
	font-family: "Raleway-Light", sans-serif;
	font-weight: lighter;
	color: black;

	display: -webkit-flex;
	-webkit-justify-content: center;
}

.brand__text {
	margin: 0;
	padding: 0;
	padding-right: 0.6rem;
	font-size: 1.2rem;
	border-right: 1px solid rgba(0, 0, 0, 0.4);
}

.brand__logo {
	margin: 0;
	padding: 0;
	padding-left: 0.6rem;
}

.brand__text, .brand__logo {
	cursor: pointer;
}

.brand__logo img {
	width: auto;
	height: 1.2rem;
	margin: 0;
	padding: 0;
}

/*Estilo para pantallas grandes
----------------------------------------------------*/
@media only screen and (min-width: 1280px) {
	.form__input div {
		width: 22rem;
	}
}


/*Estilo para tablets
----------------------------------------------------*/
@media only screen and (max-width: 1024px) {
	html, body {
	}

	.contact__form {
		width: 90%;
		margin-left: 10%;
		font-size: 1.4rem;
	}
}

/*Estilo para móviles
----------------------------------------------------*/
@media only screen and (max-width: 768px) {
	html, body {
		font-size: 22px;
	}

	.divider__button {
		left: calc(50% - 3rem);
		width: 6rem;
	}

	.contact {
		width: 90%;
		margin-left: 5%;
	}

	.contact__title {
		font-size: 2.1rem;
	}

	.contact__form {
		width: 90%;
		margin-left: 5%;
		font-size: 2rem;
	}

	.form__input {
		flex-direction: column;
		align-items: stretch;
		margin-top: 4rem;

		-webkit-flex-direction: column;
		-webkit-align-items: stretch;
	}

	.form__input p {
		width: auto;
		margin-bottom: 1rem;
		font-size: 1.3rem;
	}

	.form__input p span {

	}

	.form__input div {
		width: 100%;
	}

	.form__input input {
		font-size: 1rem;
	}

	.form__area {
		width: 100%;
		margin-top: 4rem;
	}

	.form__area p {
		margin-bottom: 1rem;
		font-size: 1.3rem;
	}

	.form__area p span {

	}

	.form__area textarea {
		align-self: flex-start;
		height: 3.5rem;
		margin-top: 0.6rem;
		padding: 0 0.6rem;
		font-size: 1rem;

		-webkit-align-self: flex-start;
	}

	.form__buttons {
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin-top: 4rem;
		margin-bottom: 6rem;

		-webkit-flex-direction: column;
		-webkit-align-items: center;
	}

	.form__button {
		width: 15rem;
		margin-bottom: 1.5rem;
		font-size: 1.5rem;
	}

	.form__button:last-child {
		margin-bottom: 0;
	}

	.footer__brand {
		margin-bottom: 2rem;
	}

	.brand__text {
		font-size: 1rem;
		border-right: 0.1rem solid rgba(0, 0, 0, 0.4);
	}

	.brand__logo img {
		height: 1rem;
	}
}