body {
	background-image: linear-gradient(
		to top,
		rgba(133, 216, 240, 1) 65%,
		white,
		white
	);
	color: black;
}

.nav__toogle {
	color: white;
}

body::after {
	content: "";
	/* background-image: linear-gradient(to top, rgba(133, 216, 240, 1) 40%, white); */
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 70vh;
	z-index: -2;
}

.landing-intro {
	height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-direction: column;
}

.landing-intro::before {
	background: url(../image/wave.jpg) no-repeat bottom;
	background-size: cover;
	background-color: #112c91;
	content: "";
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;

	bottom: 5rem;
	z-index: -1;
}

.landing-intro::after {
	background-color: rgba(17, 44, 145, 0.75);
	content: "";
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	right: 0;
	z-index: -1;
}

.landing-intro h1 {
	color: var(--subtitle-color);
	font-size: 2.5rem;
	font-weight: var(--font-bold);
	margin-bottom: 0.7rem;
}

.landing-intro p {
	color: white;
	font-weight: var(--font-semi-bold);
	font-size: 1rem;
	animation-delay: 1.2s;
}

.heading-img {
	background: url(../image/intro-wave.png);
	content: "";
	position: absolute;
	height: 16px;
	left: 0;
	right: 0;
	bottom: 0px;
	margin-bottom: -2px;
}

.landing-current-link {
	color: var(--subtitle-color);
}

.landing-intro svg {
	position: absolute;
	bottom: 0;
}

.landing-svg {
	fill: rgb(230, 247, 252);
}

.footer__section {
	background-color: transparent;
}

.footer__section a {
	color: var(--first-color-alt-2);
	/* color: black; */
	font-size: 1rem;
	transition: color 0.5s ease;
}

.footer__section a:hover {
	color: white;
}

.footer__logo {
	background-color: #85d8f0;
}

.footer__credits p {
	color: black;
}

.footer__credits p span {
	color: var(--first-color-alt-2);
	/* color: black; */
}

.map {
	width: 100vw;
	height: 20rem;
	margin-top: 8rem;
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 728px) and (max-width: 1024px) {
	body::after {
		top: 50vh;
	}

	.landing-intro {
		height: 50vh;
	}

	.landing-intro {
		align-items: start;
	}

	.landing-intro svg {
		margin-inline: -3rem;
	}

	.landing-intro h1 {
		font-size: 3rem;
		margin-top: 1rem;
	}

	.landing-intro p {
		font-size: 1.25rem;
	}
}

/* For large devices */
@media screen and (min-width: 1024px) {
	body::after {
		top: 50vh;
	}

	.landing-intro {
		height: 50vh;
	}

	.landing-intro {
		align-items: start;
		margin-bottom: 3rem;
	}

	.landing-intro svg {
		margin-inline: -5rem;
		margin-bottom: -6rem;
	}

	.landing-intro h1 {
		font-size: 3rem;
	}

	.landing-intro p {
		font-size: 1.25rem;
	}
}
