/*interactive section*/

@media screen and (max-width: 600px)
{
	.banner
	{
		background-position:center !important;
	}

	.banner .banner-content
	{
		animation: ani-banner-content 5s ease-in-out infinite !important;
	}

	.banner .banner-content span
	{
		font-size: 40%;
		animation: ani-banner-content-span 5s ease-in-out infinite !important;
	}

	.main-container
	{
		padding:0px 0px !important;
	}
	.go-down, .go-up
	{
		display: none;
	}
	div.main
	{
		width: 100% !important;
		margin: 0 !important;

		animation: none !important;
	}
	.margin
	{
		margin-top: 20px;
	}
}

@media screen and (min-width: 534px) and (max-width: 650px)
{
	.banner .nav-menu li:nth-of-type(4) a
	{
		border:none;
		padding-right: 0;
	}
}

@media screen and (max-width: 533px) 
{
	.banner .nav-menu li:nth-of-type(3) a
	{
		border:none;
		padding-right: 0;
	}

	.banner .nav-menu li:nth-of-type(4) a
	{
		padding-left: 0;
	}
	
}

@media screen and (min-width:1245px)
{

	#legoland .container1 .unique, #nagoya-castle .container1 .unique, #nagoya-tv-tower .container1 .unique,
	#nagoya-museum .container1 .unique
	{
		width: 1060px;
	}

}

@keyframes ani-banner-content
{
	0%
	{
		opacity: 0;
	}
	20%
	{
		opacity: 1;
	}
	80%
	{
		opacity: 1;
	}
	100%
	{
		opacity: 0;
	}
}

@keyframes ani-banner-content-span
{
	0%
	{
		transform: scale(1.5);
		opacity: 0;
	}
	20%
	{
		transform: scale(1);
		opacity: 1;
	}
	80%
	{
		transform: scale(1);
		opacity: 1;
	}
	100%
	{
		transform: scale(1.5);
		opacity: 0;
	}
}

@keyframes fade-in-appears
{
	0%
	{
		transform: translateY(1%);
	}
	33.3%
	{
		transform: translateY(-0.5%);
	}
	66.6%
	{
		transform: translateY(0.05%);
	}
	100%
	{
		transform: translateY(0%);
	}
}

@keyframes wobble
{
	0%
	{
		transform: rotate(0deg);
	}
	33.3%
	{
		transform: rotate(45deg);
	}
	66.6%
	{
		transform: rotate(-45deg);
	}
	100%
	{
		transform: rotate(0deg);
	}
}

.banner .nav-menu li:hover a::before
{
	left: 50%;
}

.banner-container:hover .banner .banner-content
{
	opacity: 1;
}
.banner-container:hover .banner .banner-content span
{
	transform: scale(1);
}

.footer div.footer-center .btn-container a:hover
{
	background-color: rgba(0,255,255,0.5); /* cyan*/
}

/*interactive section*/
*
{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html, body
{
	min-width: 477px;
	scroll-behavior: smooth;
}

body
{
	height: 100vh;

	font-family: Corbel, sans-serif;
	background: rgba(0,0,0,0.0);

	margin: 0;
}
.banner-container
{
	height: 50%;
	position: relative;	
	box-shadow: 0px 10px 20px rgba(0,0,0,0.3);
}
.banner
{
	width: 100%;
	height: 100%;

	background:url('../images/cover/nagoya.webp') no-repeat;
	background-size: cover;

	box-shadow: 0px 0px 20px rgba(0,0,0,0.5) inset;
	
	position: relative;
	overflow: hidden;
}
.banner .nav-menu 
{
	user-select: none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-o-user-select:none;
	-ms-user-select:none;
	
	width: 100%;
	height: 60px;
	background-color: rgba(0,0,0,0.0);

	display: flex;
	justify-content: center;
	align-items: center;

	position: fixed;
	top: 0;

	transition: all 0.3s linear;

	z-index: 1;
}
.banner .nav-menu ul
{
	list-style-type: none;

	margin: 20px;
	padding: 0;

	display: inherit;
	justify-content: inherit;
	align-items: inherit;
	flex-wrap: wrap;

	z-index: 1;
}

.banner .nav-menu li
{
	height: 30px;

	display: flex;
	justify-content: center;
	align-items: center;

	overflow: hidden;
}

.banner .nav-menu a
{
	text-decoration: none;
	color: white;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;

	padding:0px 10px;
	border-right:1px solid rgba(255,255,255,0.5);

	position: relative;
}

.banner .nav-menu li:last-child a
{
	border:none;
	padding-right: 0;
}

.banner .nav-menu a::before
{
	content: '';

	width: 50%;
	height: 1px;

	background-color: cyan;

	position: absolute;
	bottom: 0;
	left: -100%;

	z-index: 1;

	transform: translate(-50%, 4px);

	transition: all 0.5s;
}

.banner .banner-content
{
	width: 100%;
	height: 100%;

	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 2px;
	backdrop-filter:blur(10px);	
	background-color: rgba(0,0,0,0.3);

	position: absolute;
	top: 0;
	left: 0;
	
	display: flex;
	justify-content: center;
	align-items: center;

	opacity: 0;

	position: relative;

	animation: ani-banner-content 3s ease-in-out ;

	transition: all 0.5s;


}

.banner .banner-content span
{
	padding: 40px;

	transform: scale(1.5);

	transition: all 0.5s ease;

	animation: ani-banner-content-span 3s ease-in-out ;
}

.main-container
{ 	
	display: block;
	background:url('../images/bg-arts/bg-waves.png') repeat-y;
	background-size: cover;
}

.go-down
{
	animation: wobble 0.3s linear;
	animation-delay: 0.25s;
}
.go-up
{
	animation: wobble 0.3s linear;
	animation-delay: 0.4s;
}

.go-down, .go-up
{
	padding:30px 0px;

}

.go-down a, .go-up a
{
	width: 40px;
	height: 40px;

	background: #505050;

	margin: auto;

	display: flex;
	justify-content: center;
	align-items: center;

	box-shadow: 0px 10px 20px rgba(0,0,0,0.2);

	color: white;
	text-decoration: none;
	font-size: 20px;

	border-radius: 10px;
}

.go-down a:active, .go-up a:active
{
	background: white;
	color: #262626;
}

div.main
{
	width:90%;
	background: white;

	box-shadow: 2px 2px 30px rgba(0,0,0,0.1);

	margin: auto;

	animation: fade-in-appears 0.5s linear;
}

div.main h1:first-child
{
	text-align: center;
	letter-spacing: 2px;
	color: rgba(0,0,0,0.7);
	text-shadow: 2px 8px 10px rgba(0,0,0,0.2);

	padding: 40px 0px 40px 0px;
	margin: 0;
	text-transform: uppercase;

}

.container1, .container2
{
	width: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.container1 .image-box
{
	width: 400px;
	background-size: contain;
	padding: 0px 30px;

	display: flex;
	justify-content: center;
	align-items: center;

}


.container1 .image-box img
{
	width: 100%;
	border-radius: 10px;
	box-shadow: 2px 2px 20px rgba(0,0,0,0.2);
}


.container1 .content, .container2 .content
{
	padding:15px 30px;
	width: 600px;
}

.desc
{
	color: #000;
	font-size: 20px;
	text-align: left;
	letter-spacing: 2px;
}
.container2 h2
{
	text-transform: capitalize;
}

.container2 .gmaps-box 
{
	padding: 0px 30px;
}

.container2 .gmaps-box .gmaps
{
	min-width: 400px;
	height: 250px;

	border-radius: 10px;
	overflow: hidden;

	box-shadow: 2px 2px 20px rgba(0,0,0,0.2);
}

.container2 .gmaps-box .gmaps iframe
{
	width: 100%;
	height: 100%;
}

.place:last-child
{
	padding-bottom: 40px;
}

.footer
{
	width: 100%;
	padding: 0px 0px;

	background-color: #262626;

	color: white;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;

	box-shadow: 0px -10px 20px rgba(0,0,0,0.3);

	position: relative;

}

.footer div.footer-left, .footer div.footer-center, .footer div.footer-right
{
	width: 30%;
	min-width: 300px;
	padding:15px;

	text-align: center;
}

.footer h3
{
	text-transform: uppercase;
	margin: 15px 0px;
}

.footer div.footer-center .btn-container a
{
	width: 40px;
	height: 40px;

	display: inline-block;

	margin: 0px 2px;

	border:2px solid white;
	border-radius: 50%;

	text-decoration: none;
	line-height: 40px;
	color: white;

	transition: all 0.5s;
}

.footer div.footer-right .about-text-container
{
	width: 80%;

	display: inline-block;
	align-self: center;
}

.footer .footer-below
{
	width: 100%;
	background-color: #222222;

	padding: 15px 0px;
	margin-top: 20px;

	font-family: calibri, sans-serif;
	text-align: center;
	color: white;
}