body {
	margin: 0;
	font-family: "Poppins", sans-serif;
	background-color: #ffffff;
	color: #333;
	scroll-behavior: smooth;
	display: flex;
	flex-direction: column;
}

.underline-big {
	position: relative;
	top: 6.5%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top: 10px;
	margin-bottom: 50px;
	width: 50%;
	height: 1px;
	background-color: #007acc;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	background-color: #ffffff;
	border-bottom: 1px solid #e0e0e0;
	z-index: 1000;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
}
nav .logo {
	height: 50px;
	transition: height 0.3s ease;
}
nav .nav-links {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	transition: transform 0.3s ease-in-out;
	justify-content: center;
}
nav .nav-links li {
	margin: 0 15px;
}
nav .nav-button {
	display: inline-block;
	padding: 10px 20px;
	color: #ffffff;
	background-color: #007acc;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	white-space: nowrap;
	transition: background-color 0.3s;
	margin: 10px;
}
nav .nav-button:hover {
	background-color: #005f99;
}
nav .hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1001;
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
}
nav .hamburger .bar {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 4px;
	transition: 0.3s;
	border-radius: 10px;
}
nav .lang-switch {
	display: flex;
}
nav .lang-switch img {
	cursor: pointer;
	margin: 0 30px;
	width: 25px;
	height: 20px;
	box-shadow: 2px 2px 3px rgba(51, 51, 51, 0.7176470588);
}

header.hero {
	height: 100vh;
	background: url("/img/tlo_lody.png") no-repeat center center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}
header.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}
header.hero .hero-content {
	position: relative;
	z-index: 2;
	color: white;
}
header.hero .hero-content .logo {
	height: 100px;
}
header.hero .hero-content h1,
header.hero .hero-content p {
	margin: 0;
}
header.hero .hero-content .bounce-top {
	display: block;
	position: absolute;
	bottom: -100px;
	left: 50%;
	transform: translate(-50%);
	animation: bounce-top 2s infinite both;
}
header.hero .hero-content .fa-chevron-down {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 20px;
	font-size: 42px;
	color: #ffffff;
}
@keyframes bounce-top {
	0% {
		transform: translateY(-45px);
		animation-timing-function: ease-in;
		opacity: 1;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateY(-24px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateY(-12px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateY(-6px);
		animation-timing-function: ease-in;
	}
	25%,
	55%,
	75%,
	87% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

section {
	height: 100vh;
	padding: 80px 20px 20px;
	position: relative;
}
section.section-content {
	background-size: cover;
	background-position: center;
}
section.section-content:nth-child(1) {
	background-image: url("/img/tlo_lody2.jpg");
}
section.section-content:nth-child(2) {
	background-image: url("/img/tlo_lody2.jpg");
}
section.section-content:nth-child(3) {
	background-image: url("/img/tlo_lody2.jpg");
}
section.contact {
	height: auto;
	background-image: url("/img/tlo_lody2.jpg");
}
section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}
section .hero-content {
	position: relative;
	z-index: 2;
	color: white;
	text-align: center;
}
section .hero-content h2,
section .hero-content p {
	margin: 0;
}
section h2 {
	text-align: center;
	color: #ffffff;
	padding: 20px;
}
section p {
	max-width: 600px;
	margin: 0 auto;
	color: #ffffff;
	text-align: center;
}
section .content-container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	align-items: center;
}
section .content-container .text-content {
	flex: 1;
	padding: 20px;
	padding-left: 100px;
	box-sizing: border-box;
	text-align: left;
	max-width: 100%;
}
section .content-container .text-content p {
	margin: 10px 0;
	text-align: left;
}
section .content-container .image-content {
	flex: 1;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	position: relative;
}
section .content-container .image-content img {
	width: 100%;
	height: 70vh;
	-o-object-fit: cover;
	object-fit: cover;
}
section .content-container .image-content .image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: -1;
}
section .content-container .image-content .button-container {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
}
section .content-container .image-content .button-container .shop-button {
	background-color: #007acc;
	color: white;
	padding: 10px 50px;
	text-decoration: none;
	border-radius: 25px;
	font-weight: bold;
	transition: background-color 0.3s;
	margin: 10px;
	z-index: 2;
}
section .content-container .image-content .button-container .shop-button:hover {
	background-color: #005f99;
}
section .contact-container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: 70vh;
}
section .map-container {
	flex: 1;
	min-width: 50%;
	height: 400px;
}
section .map-container .mapa {
	width: 100%;
	height: 70vh;
}
section .contact-content {
	flex: 1;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
}
section .contact-content p {
	margin: 10px 0;
}

footer {
	padding: 20px;
	text-align: center;
	background-color: #f1f1f1;
	color: #333;
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
	text-align: center;
	padding: 10px;
	z-index: 1000;
}
.cookie-banner p {
	display: inline;
	margin: 0;
	vertical-align: middle;
}
.cookie-banner a {
	color: #007acc;
	text-decoration: underline;
}
.cookie-banner button {
	background-color: #007acc;
	color: #fff;
	border: none;
	padding: 10px 20px;
	margin-left: 100vh;
	cursor: pointer;
	border-radius: 5px;
	font-weight: bold;
	display: inline;
	vertical-align: middle;
	transform: translateX(-50%);
}
.cookie-banner button:hover {
	background-color: #005f99;
}

@media (max-width: 1024px) {
	nav .nav-links {
		position: fixed;
		right: 0;
		top: 0;
		height: 100%;
		width: 200px;
		background-color: #ffffff;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
		z-index: 1000;
	}
	nav .nav-links li {
		margin: 20px 0;
	}
	nav .lang-switch {
		display: flex;
	}
	nav .lang-switch img {
		cursor: pointer;
		margin: 0 90px;
		width: 25px;
		height: 20px;
	}
	nav .hamburger {
		display: flex;
	}
	nav .nav-links.active {
		transform: translateX(0);
	}
	nav .overlay {
		display: none;
	}
	nav .overlay.active {
		display: block;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 999;
	}
	nav .logo {
		height: 40px;
	}
	header.hero .hero-content .logo {
		height: 70px;
	}
	header.hero .hero-content h1 {
		font-size: 2em;
	}
	header.hero .hero-content p {
		font-size: 1.2em;
	}
	section {
		padding: 60px 20px 20px;
		height: auto;
	}
	section .content-container {
		flex-direction: column;
		align-items: center;
	}
	section .content-container .text-content {
		padding: 20px;
		padding-left: 20%;
	}
	section .text-content,
	section .image-content {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
	section .contact-container {
		flex-direction: column;
		align-items: center;
	}
	section .contact-container .mapa {
		width: 80%;
		height: 50vh;
	}
	section .map-container,
	section .contact-content {
		width: 100%;
	}
}
@media (max-width: 768px) {
	nav .nav-links {
		position: fixed;
		right: 0;
		top: 0;
		height: 100%;
		width: 200px;
		background-color: #ffffff;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
		z-index: 1000;
	}
	nav .nav-links li {
		margin: 20px 0;
	}
	nav .lang-switch {
		display: flex;
	}
	nav .lang-switch img {
		cursor: pointer;
		margin: 0 90px;
		width: 25px;
		height: 20px;
	}
	nav .hamburger {
		display: flex;
	}
	nav .nav-links.active {
		transform: translateX(0);
	}
	nav .overlay {
		display: none;
	}
	nav .overlay.active {
		display: block;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 999;
	}
	nav .logo {
		height: 30px;
	}
	header.hero .hero-content .logo {
		height: 50px;
	}
	header.hero .hero-content h1 {
		font-size: 1.5em;
	}
	header.hero .hero-content p {
		font-size: 1em;
	}
	section {
		padding: 60px 20px 20px;
		height: auto;
	}
	section .content-container {
		flex-direction: column;
		align-items: center;
	}
	section .content-container .text-content {
		padding: 20px;
		padding-left: 40px;
	}
	section .text-content,
	section .image-content {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
	section .contact-container {
		flex-direction: row;
		align-items: center;
	}
	section .contact-container .mapa {
		width: 100%;
		height: 40vh;
	}
	section .map-container,
	section .contact-content {
		width: 100%;
	}
} /*# sourceMappingURL=main.css.map */
