/* GENERAL */
html {
    scroll-behavior: smooth;
    height: 100%;
}

body{
    position: absolute;
    margin: 0px;
    top: 0px !important;
    width: 100%;
    height: 100%;
    background: #f7f5ff;
    font-family: Arial;
    font-size: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
	background-image: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

p,h1,h2,h3{
    margin: 0;
}

ul{
    position: absolute;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

::placeholder {
    color: rgb(160, 160, 160);
}

@font-face {
	font-family: montserrat-regular;
	src: url("../fonts/montserrat-regular.ttf");
}
@font-face {
	font-family: montserrat-italic;
	src: url("../fonts/montserrat-italic.ttf");
}
@font-face {
	font-family: kunstler;
	src: url("../fonts/kunstler.ttf");
}
/* * * * * * * */



/* MENU SUPERIOR */
.div-top-menu {
	position: absolute;
	display: flex;
	justify-content: center;
	top: 0;
	width: 100%;
	height: 6rem;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(5px);
	color: white;
	z-index: 10;
}

.icon-top-menu {
	position: absolute;
	height: 80%;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	cursor: pointer;
}
/* * * * * * * * */


/* SECCION */
.section {
	position: absolute;
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	overflow: hidden;
}
/* * * * * */


/* BOTON PERSONALIZADO */
.button-custom {
	display: inline-block;
	width: 100%;
	height: 100%;
	padding-left: 1rem;
	padding-right: 1rem;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	border-radius: 2rem;
	border-style: solid;
	border-width: 0.1rem;
	color: black;
}

.button-gray{
	background: linear-gradient(180deg, rgba(219,219,219,1) 25%, rgba(255,255,255,1) 100%);
}

.button-gray:hover {
	color: white;
    background: linear-gradient(180deg, rgba(157,157,157,1) 25%, rgba(206,206,206,1) 100%);
	box-shadow: 1px 1px 4px gray;
}

.button-gold{
	background: linear-gradient(180deg, rgba(230,196,87,1) 25%, rgba(228,230,87,1) 100%);
}

.button-gold:hover {
	color: white;
    background: linear-gradient(180deg, rgba(192,164,73,1) 25%, rgba(193,195,71,1) 100%);
	box-shadow: 1px 1px 4px gold;
}

.button-purple{
	color: white;
	background: linear-gradient(180deg, rgba(159,72,213,1) 25%, rgba(87,118,230,1) 100%);
}

.button-purple:hover {
	color: white;
	background: linear-gradient(180deg, rgba(117,54,157,1) 25%, rgba(67,91,177,1) 100%);
	box-shadow: 1px 1px 4px #6d4aff;
}
/* * * * * * * * * * * * * /



/* FOOTER */
footer {
	position: absolute;
	display: flex;
	justify-content: center;
	bottom: 0;
	width: 100%;
	height: 4rem;
	z-index: 10;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(5px);
	color: #b8860b;
}

footer img{
	height: 1.5rem;
}

.ul-footer {
	display: flex;
	top: 0.5rem;
}

.ul-footer li{
    padding-right: 1rem;
	padding-left: 1rem;
    cursor: pointer;
}

.ul-footer li:hover{
    color: #8e6808;
}

.footer-text {
	position: absolute;
	bottom: 0.5rem;
	font-size: 0.8rem;
}
/* * * * * * */



/* CHECKBOX */
/* The container */
.container {
	display: flex;
	position: relative;
	padding-left: 2em;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	height: 1.5em;
	padding-top: 0.1em;
	font-size: 0.8rem;
}
  
/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
/* Create a custom checkbox */
.checkmark-cross {
	position: absolute;
	top: 0;
	left: 0;
	height: 1.5em;
	width: 1.5em;
}
.checkmark-tick {
	position: absolute;
    display: none;
	top: 0;
	left: 0;
	height: 1.5em;
	width: 1.5em;
}
  
/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark-tick {
    display: block;
}
.container input:checked ~ .checkmark-cross {
    display: none;
}
  
/* Show the checkmark when checked */
.container input:checked ~ .checkmark-tick:after {
    display: block;
}
.container input:checked ~ .checkmark-cross:after {
    display: none;
}
/* * * * * * * * * * * * * /

/* LEGAL */
.section-legal{
    position: absolute;
	display: flex;
	justify-content: center;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: #f5f7ff;
}

.div-text-legal {
	position: absolute;
	top: 15vh;
	width: 90%;
	height: 70vh;
	overflow-x: hidden;
	overflow-y: auto;
}
/* * * * * * */

/* IMAGEN EN GRANDE */
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 5%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    z-index: 50;
	justify-content: center;
	backdrop-filter: blur(0.3rem);
}

.modal-white {
    background-color: rgba(255, 255, 255, 0.3); /* Black w/ opacity */
}


/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    height: 80%;
}

/* Add Animation - Zoom in the Modal */
.modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/* * * * * * * * */



/* VERSION MOVIL */
@media only screen and (max-width: 65em){
	/* MENU SUPERIOR */
	.icon-top-menu {
		left: auto;
	}

	/* FOOTER */
	footer {
		height: 6rem;
	}
}
/* * * * * * * * */