@font-face {
	font-family: "Ubuntu-regular";
	src: url("/fonts/ubuntu/Ubuntu-Regular.woff2") format("woff2"),
		url("/fonts/ubuntu/Ubuntu-Regular.woff") format("woff");
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	background-color: #ffffff;
	margin: 0px;
	font-family: "Ubuntu-regular";
}

main {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	background-image: url(/src/img/fondo.png);
	background-repeat: no-repeat;
	background-size: cover;
}

::-webkit-scrollbar {
	width: 6px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: #d3d3d3;
}

a {
	text-decoration: none;
}

button {
	cursor: pointer;
}

input,
textarea,
select {
	outline: none;
}

/* ------------------------------------------ popup----------------------------------- */

.popup {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 0px;
	display: none;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0px;
	left: 0;
	z-index: 1059;
}

.popup.active {
	display: flex;
}

.cortina-popup {
	width: 100%;
	height: 140%;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.popup-content {
	width: 90%;
	min-height: 400px;
	max-height: 600px;
	background-color: #ffff;
	color: #4d4d4d;
	border-radius: 29px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
		0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	z-index: 2;
}

.content-btn-cerrar-popup {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.btn-cerrar-popup {
	width: 50px;
	height: 50px;
	position: absolute;
	top: -20px;
	right: -20px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
		0 1px 5px 0 rgb(0 0 0 / 20%);
	display: flex;
	justify-content: center;
	align-items: center;
}

.content-popup {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.content-popup h2 {
	text-align: center;
}
/* --------------------------------------------- end popup ------------------------------------ */

.principal-section {
	width: 100%;
	background: rgb(0, 128, 217);
	background: linear-gradient(175deg, #003e76, #0080d9);
	display: flex;
	overflow: hidden;
	position: relative;
	box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%),
		0 2px 4px -1px rgb(0 0 0 / 30%);
}

@media screen and (min-width: 920px) {
	main {
		align-items: center;
	}
	.principal-section {
		width: 500px;
		height: 800px;
		border-radius: 29px;
	}

	.popup {
		border-radius: 29px;
	}
}
