
/*==================================Fonts==================================*/
	
	@font-face {
		font-family: 'Neon';
		src: url('../Fonts/Neon-Medium.otf') format('opentype');
	}
	
/*==================================Background==================================*/

	.background-container {
		position: absolute;
		top: 0;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
		height: calc(100% - 3rem - 3vw);
		margin-top: calc(3rem + 3vw);
		z-index: -1;
		overflow: hidden;
	}

	.background-container > div {
		display: flex;
		flex-direction: column;
		max-width: 50%;
	}

	.background-container img {
		max-height: 95%;
		max-width: 500px;
		max-width: 95%;
	}

	.logo_index {
		position: relative;
		left: 50%;
		width: 50%;
		max-width: 500px;
		height: 75%;
		max-height: 250px;
		transform: translateX(-50%);
		z-index: 2;
	}

	.background_1 {
		position: absolute;
		top: 10%;
		left: -5%;
	}

	.background_2 {
		position: absolute;
		top: 50%;
		left: -10%;
		max-width: 70% !important;
		width: 70%;
	}

	.background_3 {
		position: absolute;
		top: 30%;
		right: 0;
		max-width: 55% !important;
		width: 55%;
	}

	.background_4 {
		position: absolute;
		top: 70%;
		right: 0;
		transform: rotateY(180deg);
	}

/*==================================Selector==================================*/
	.selector {
		margin: 0 auto;
		margin-top: calc(3rem + 3vw);
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		width: 90vw;
	}

	.selector_logo {
		margin-top: 3rem;
	}

	.galeria_container {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		padding: 0;
	}

	.galeria_item {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: calc(.5rem + .5vw);
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.galeria_image {
		width: calc(15rem + 10vw);
		max-width: 350px;
		height: calc(15rem + 10vw);
		max-height: 350px;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		background-color: black;
		background-origin: content-box;
	}

	.moreImagesBtn_wrapper {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: calc(.5rem + .5vw);
		margin-bottom: calc(1rem + 1vw)
	}

	#moreImagesBtn {
		font-family: 'Poppins', sans-serif;
		font-weight: bold;
		color: white;
		background-color: var(--basic-color-gold);
	}

/*==================================Modal==================================*/

	/* The Modal (background) */
		.modal {
			display: none; /* Hidden by default */
			position: fixed; /* Stay in place */
			z-index: 10; /* Sit on top */
			padding-top: 100px; /* Location of the box */
			left: 0;
			top: 0;
			width: 100%; /* Full width */
			height: 100%; /* Full height */
			overflow: auto; /* Enable scroll if needed */
			background-color: rgb(0,0,0); /* Fallback color */
			background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
			justify-content: center;
		}

		.modal-overlay {
			z-index: 20;
			width: 100vw;
			height: 100vh;
			position: fixed;
			top: 0;
			left: 0;
		}

		.modal-dialog {
			max-width: 80vw;
			z-index: 30;
			pointer-events: none;
			margin: 1.75rem 0;
			display: flex;
			justify-content: center;
		}

	/* Modal Content (Image) */
		.modal-content-wrapper {
			margin: 1.75 auto;
			display: block;
			width: 80%;
			max-width: 1000px;
			pointer-events: auto;
			height: min-content;
		}
		
		.modal-content {
			margin: 0;
			width: auto;
			max-height: calc(100vh - 150px - 3.5rem);
			min-height: calc(80px + 3.5rem);
		}

	/* Add Animation - Zoom in the Modal */
		.modal-content, #caption {
			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;
			pointer-events: all;
		}

		.close:hover,
		.close:focus {
			color: #bbb;
			text-decoration: none;
			cursor: pointer;
		}

	/* 100% Image Width on Smaller Screens */
		@media only screen and (max-width: 700px){
			.modal-content {
				width: 100%;
			}
		} 


/*=====================================
=            Media Queries            =
=====================================*/
	@media (min-width: 1200px) {
		
	}

	@media (max-width: 1200px) {
		
	}

	@media (max-width: 992px) {
		
	}

	@media (max-width: 768px) {
		.background-container > div {
			height: 25%;
		}
	}

	@media (max-width: 576px) {
		
	}