@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*Box-sizing reset */

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}


/* basic setting */

body {
	color: #333;
}


h1,h2, h3, a {
	font-family: 'Oswald', sans-serif;
}

p,li {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 20px;
	line-height: 1.5;
}

/* content */
 .wrapper {
	width:100%;
	position:relative;
}

/* header */
.logo {
	width: 70px;
	position: fixed;
	z-index:9999;
	top: 15px;
	left: 15px;
	display: none;
}

.logo-show {
	display: block;
}

.menu {
	z-index: 8888;
	position:fixed;
	top: 0px;
	right: -180px;
	bottom: 0;
	background: #333;
	width:150px;
	padding-top: 100px;
	transition: all 0.3s ease-in-out;
}

.toggle-menu .menu {
	right: 0px;
}

.menu a {
	color: #fff;
	font-family: 'Oswald', sans-serif;
	text-decoration: none;
	font-size: 20px;
	line-height:1.5;
}

.menu a:hover {
	text-decoration: underline;
}

.btn-menu {
	display:block;
	float: right;
	border: 0;
	width: 40px;
	height:40px;
	background-color: transparent;
	cursor: pointer;
	position: fixed;
	top: 20px;
	right: 25px;
	z-index: 9999;
	outline: none;
}

.menu-red,.btn-menu-thank {
	width:45px;
	height:42px;
	background-color: #ff5050;
	/* border-radius: 3px; */
	right:20px;
}


.btn-menu .text {
	display:block;
	text-indent: 150%;
	white-space: nowrap;
	overflow: hidden;
}

.btn-menu .bar,
.btn-menu .bar:before,
.btn-menu .bar:after {
	display:block;
	position: absolute;
	width: 30px;
	height: 5px;
	background-color: #fff;
	box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn-menu .bar {
	top: 18px;
	left: 7px;
}


.btn-menu .bar:before {
	position: absolute;
	content: '';
	top: -10px;
}

.btn-menu .bar:after {
	position: absolute;
	content: '';
	top: 10px;
}

.toggle-menu .btn-menu,
.toggle-menu .btn-menu .bar {
	background-color: transparent;
}

.toggle-menu .btn-menu .bar:before {
	top:0;
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
}

.toggle-menu .btn-menu .bar:after {
	top:0;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
}

.menu ul {
	margin-top: 30px;
}

.menu li {
	display: block;
	height: 50px;
	padding:10px 20px;
}

.menu ul:first-child li:hover {
	background-color: #ff5050;
}

.menu li:hover a {
	text-decoration: none;
}

.menu-social {
	position: absolute;
	padding: 0 20px 0 30px;
	bottom: 0;
	margin-bottom: 30px;
}

.menu-social li {
	width: 30%;
	display: inline-block;
	padding:0;
}

.menu-social i:hover,
.menu-social i:focus {
	color: #ff5050;
}

/* scroll to top button */
.scrollup {
  display: none;
  position: fixed;
  z-index: 5555;
  bottom: 70px;
  right: 50px;
  width: 40px;
  height: 40px;
  color: #d9d9d9;
}

.hidden_icon_text {
	text-indent: -9999px;
}


/* intro */
.home {
	width:100%;
	height: 100vh;
	margin:0 auto;
	background-color: #ff5050;
	position:relative;
}

.home-hero {
	background-image: url(../images/hero1.jpg);
	background-size: cover;
	background-attachment: fixed;
}

.city-name {
	width:80%;
	position:absolute;
	top:25%;
	left:10%;
}

.svg-fallback {
	width:80%;
	position:absolute;
	top:25%;
	left:10%;
	animation: fadeIn 0.5s 1s forwards;
	opacity: 0;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

.scroll-down {
	position: absolute;
	left: 50%;
	bottom: 30px;
	margin-left: -15px;
	color: rgba(255,255,255,.6);
	opacity: 0;
	animation: pointDown 1s infinite alternate, fadeIn .5s 1.5s forwards;
}

.scroll-down p {
	font-size: 14px;
	margin-bottom: -15px;
}

@keyframes pointDown {
	to {
		transform: translateY(10px);
	}
}

.skyline {
	width:90%;
	position: absolute;
	bottom:-10px;
	left:5%;
	visibility: hidden;
	opacity: 0;
	transform-origin: center bottom;
    transform: rotateX(90deg);
	transition: all 1s ease;
}


.animateSkyline {
	transform: rotateX(0deg);
	visibility: visible;
	opacity: 1;
}

.about {
	width: 65%;
	height: 700px;
	padding: 190px 0;
	margin:0 auto;
}

.about-content {
	font-weight: 300;
	font-size: 35px;
	text-align: center;
}

/* Top 5 */
.top5 {
	width: 100%;
	height:auto;
}

.banner {
	width: 100%;
	height: 300px;
	background-color:  #ff5050;
	padding: 50px 0 15px;
	color: #fff;
	font-size: 150px;
	text-align: center;
	text-shadow: 5px 5px 0 rgba(0,0,0,0.2);
	text-transform: uppercase;
	letter-spacing: 10px;
}


.top5-content {
	width: 80%;
	margin: -50px auto 250px;
}

.row {
	margin-bottom: 50px;
	overflow: hidden;
	position: relative;
}

.row div:first-child {
	float:left;
}

.row div:last-child {
	float:right;
}

.img-box {
	width: 75%;
	height: 600px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

.img-box-right {
	float: right;
}

.top5-01 {
	background-image: url(../images/oldtown.jpg);
}

.top5-02 {
	background-image: url(../images/medienhafen.jpg);
}

.top5-03 {
	background-image: url(../images/promenade.jpg);
}

.top5-04 {
	background-image: url(../images/konigsallee.jpg);
}

.top5-05 {
	background-image: url(../images/benrath.jpg);
	background-position: top;
}


.top5-text {
	width: 32%;
	padding: 35px;
	height: auto;
	background-color: rgba(240,240,240,0.9);
	position: absolute;
	right:5px;
	bottom:50px;
	z-index: 8888;
}

.top5-text-left {
	left: 0;
}

.top5-text h3 {
	font-size: 50px;
	margin-bottom:10px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.top5-text > p > a {
	color: #ff5050;
	text-decoration: none;
}

/* guide */
.guide {
	width: 100%;
	margin-bottom: 250px;
}

.guide-content {
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	height: 800px;
	margin: -50px auto 0;
	cursor: pointer;
}

.guide-content > div {
	width: 50%;
	height: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 1s ease;
	filter: grayscale(.5);
}

.do-pic {
	background-image: url('../images/todo.jpg');
}

.eat-pic {
	background-image: url('../images/food.jpg');
}

.stay-pic {
	background-image: url('../images/room.jpg');
}

.travel-pic {
	background-image: url('../images/transport.jpg');
}

.guide-content .guide-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 100%;
	background-color: rgba(59,50,50,.95);
}

.guide-content div:nth-child(n-2) .guide-link {
	float: right;
}

.guide-content div:nth-child(n+3) .guide-link {
	float: left;
}


.guide-content .guide-link p {
	font-size: 2.5rem;
	color: #fff;
	letter-spacing: 1px;
	line-height: 1;
	transition: all .5s;
}

.guide-link svg {
	width: 120px;
	margin-bottom: 20px;
}

.guide-link svg circle,
.guide-link svg circle {
	transition: all .5s;
}

/* guide content hover effect */
.guide-content > div:hover,
.guide-content > div:focus {
	filter: grayscale(0);
}

.guide-content > div:hover .guide-link p,
.guide-content > div:focus .guide-link p {
	color: #ff5050;
}

.guide-content > div:hover .guide-link svg circle,
.guide-content > div:focus .guide-link svg circle {
	fill: #ff5050;
}

/* Dusseldorf is ... */
.invite {
	width: 100%;
	height: 100vh;
	background-image: url(../images/hero2.jpg);
	background-size: cover;
	background-position: center;
	padding: 100px;
}

.invite-text {
	width: 90%;
	margin: 100px auto;
}

.invite h1 {
	font-size: 200px;
	text-transform: uppercase;
	color: #fff;
}

.invite h2 {
	font-size: 150px;
	text-transform: uppercase;
	color: #fff;
}


/* rotate words */
.rotateword{
	height: 200px;
	font-family: 'Oswald', sans-serif;
	font-size: 200px;
	text-transform: uppercase;
	display: flex;
}

.rotateword span{
	-webkit-animation: fadeEffect 10s linear infinite 0s;
	-moz-animation: fadeEffect 10s linear infinite 0s;
	-ms-animation: fadeEffect 10s linear infinite 0s;
	animation: fadeEffect 10s linear infinite 0s;
	color: #fff;
	opacity: 0;
	overflow: hidden;
 	position: absolute;
 	margin:0;
}

.rotateword span:nth-child(2){
	-webkit-animation-delay: 2s;
	-moz-animation-delay: 2s;
	-ms-animation-delay: 2s;
	animation-delay: 2s;
}
.rotateword span:nth-child(3){
	-webkit-animation-delay: 4s;
	-moz-animation-delay: 4s;
	-ms-animation-delay: 4s;
	animation-delay: 4s;
}
.rotateword span:nth-child(4){
	-webkit-animation-delay: 6s;
	-moz-animation-delay: 6s;
	-ms-animation-delay: 6s;
	animation-delay: 6s;
}
.rotateword span:nth-child(5){
	-webkit-animation-delay: 8s;
	-moz-animation-delay: 8s;
	-ms-animation-delay: 8s;
	animation-delay: 8s;
}

@-webkit-keyframes fadeEffect{
	0% { opacity: 0; }
	5% { opacity: 0; -webkit-transform: translateY(0px); }
	10% { opacity: 1; -webkit-transform: translateY(0px); }
	25% { opacity: 1; -webkit-transform: translateY(0px); }
	30% { opacity: 0; -webkit-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

@-moz-keyframes fadeEffect{
	0% { opacity: 0; }
	5% { opacity: 0; -moz-transform: translateY(0px); }
	10% { opacity: 1; -moz-transform: translateY(0px); }
	25% { opacity: 1; -moz-transform: translateY(0px); }
	30% { opacity: 0; -moz-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

@-ms-keyframes fadeEffect{
	0% { opacity: 0; }
	5% { opacity: 0; -ms-transform: translateY(0px); }
	10% { opacity: 1; -ms-transform: translateY(0px); }
	25% { opacity: 1; -ms-transform: translateY(0px); }
	30% { opacity: 0; -ms-transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

@keyframes fadeEffect{
	0% { opacity: 0; }
	5% { opacity: 0; transform: translateY(0px); }
	10% { opacity: 1; transform: translateY(0px); }
	25% { opacity: 1; transform: translateY(0px); }
	30% { opacity: 0; transform: translateY(0px); }
	80% { opacity: 0; }
	100% { opacity: 0; }
}

/* form */
.free-tour {
	width: 100%;
}

.itinerary {
	font-size: 25px;
	text-transform: uppercase;
	text-align: left;
	color: #ff5050;
	display: block;
	margin-bottom: 20px;
}


.itinerary + p {
	margin-bottom: 20px;
}

.form-area {
	width: 900px;
	margin: -50px auto 200px;
	background-color: #f2f2f2;
}

form {
	padding: 80px 0;
	width: 600px;
	margin: 0 auto;
	font-size: 22px;
}

form p {
	font-size: 16px;
	margin-top: 5px;
}

.form-row {
	height: 70px;
}

.tour-time {
	margin-bottom: 30px;
}

label, .form-label {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 25px;
}

.form-label {
	margin-bottom: 5px;
}

input {
	font-family: 'Oswald', sans-serif;
}

input:-webkit-autofill {
	background-color: #fff;
}

.block-left {
	display:block;
	float:left;
	text-align: left;
	width: 140px;
	padding-top: 8px;
	margin-right: 15px;
	position:relative;
}

input[type="text"] {
	width: 445px;
	height: 40px;
	padding: 10px;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	outline: none;
	border: 2px solid #ccc;
}

input[type="text"]:focus,
select:focus,
textarea:focus {
	border-color: #333;
}

#datepicker {
	width: 260px;
}

/* datepicker styles overrride */
.ui-datepicker {
	width: 260px;
}


.ui-datepicker, .ui-widget select {
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
}

.ui-corner-all {
	border-radius: 0px;
}

/* radio styling */
input[type="radio"] {
	display:none;
}

input[type="radio"] + label {
	position: relative;
	padding-left: 30px;
	margin-right: 30px;
}

input[type="radio"] + label:before {
	content: "";
	display:inline-block;
	position: absolute;
	left: 0;
	top: 5px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: 15px;
	margin-top: 3px;
	background-color: #fff; 
	border: 2px solid #333;
}

input[type="radio"]:checked + label:before {
	content: "\2022";
	font-size: 40px;
	line-height: 15px;
	text-align: center;
}

select {
	width: 220px;
	height: 35px;
	margin-left: 10px;
	padding-right: 10px;
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	outline: none;
	border: 2px solid #ccc;
}

.message {
	padding-top: 0;
	margin-top: 20px;
	line-height: 1.2;
}

textarea {
	display: inline-block;
	width: 400px;
	height: 150px;
	outline: none;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	padding:10px;
	border: 2px solid #ccc;
	margin: 25px 0;
}

.newsletter .form-label{
	display: inline-block;
	margin-right: 40px;
}

/* agree checkbox styling */
input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label {
	position: relative;
	padding-left: 35px;
}


input[type="checkbox"] + label:before {
	content: "";
	display:inline-block;
	position: absolute;
	left: 0;
	top: 5px;
	width: 20px;
	height: 20px;
	margin-right: 15px;
	margin-top: 3px;
	background-color: #fff;
	border: 2px solid #333;
}

input[type="checkbox"]:checked + label:before {
	content: "\2714";
	font-size: 17px;
	line-height: 15px;
	text-align: center;
}

.t-and-c a {
	color: #ff5050;
	text-decoration: none;
}


.submit {
	display:block;
	margin: 50px auto 0;
	padding: 10px 30px;
	outline: none;
	border: none;
	background-color: #333;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 25px;
	letter-spacing: 2px;
	cursor: pointer;
}

.submit:hover,
.submit:focus {
	background-color: #ff5050;
}


/* error message styling */
.error {
	font-size: 16px;
	color:  #CC041E;
	margin-top: 5px;
	margin-left: 155px;
	display: block;
	font-family: 'Roboto Condensed', sans-serif;
}

.error-input {
	border: 2px solid #CC041E !important;
} 

.time-error {
	margin-left: 0;
}

.agree-error {
	display: inline-block;
	margin-left: 10px;
}

/* thank you page */
.logo-thank {
	display: block;
}

.thank, .credit {
	width: 100%;
	margin: 150px auto 0;
}

.thankyou, .creditlist {
	width: 60%;
	background-color: #f2f2f2;
	margin: -50px auto 0;
	padding: 100px 60px;
}
.thank p {
	text-align: center;
	font-size: 30px;
}

.thank span {
	color: #ff5050;
}

.email {
	cursor: pointer;
}

.email:hover,
.email:focus {
	text-decoration: underline;
}

.to-home{
	display: block;
	width: 200px;
	padding: 20px 0;
	margin: 150px auto;
	font-size: 20px;
	text-decoration: none;
	text-align: center;
	background-color: #333;
	color: #fff;
	letter-spacing: 2px;
}

.to-home:hover,
.to-home:focus {
	background-color: #ff5050;
}

/* footer */
footer {
	width: 100%;
	height: 400px;
	background-color: #ff5050;
	letter-spacing: 0.8px;
	position: relative;
}

.footer {
	width: 80%;
	height:300px;
	margin: 0 auto;
	padding-top: 80px;
	display: flex;
	color: #fff;
}

.aboutus {
	flex:2;
	padding-right: 80px;
}

.aboutus h3 {
	font-size: 30px;
	margin-bottom: 10px;
}

.contact {
	flex:1;
	padding-top: 45px;
	font-size: 20px;
	line-height: 1.2;
}

.contact td {
	padding-bottom: 10px;
}

.contact td:nth-child(odd) {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	text-align: right;
}

.contact td:nth-child(even) {
	font-family: 'Roboto Condensed', sans-serif;
	padding-left: 15px;
}

.social i {
	margin-right: 5px;
	cursor: pointer;
}

.social i:hover,
.social i:focus {
	color: #333;
}


.copyright {
	width:100%;
	height: 50px;
 	padding-top: 10px;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	text-align: center;
}

.copyright p {
	font-size: 17px;
}

.copyright a,
.credit a {
	color: #333;
	font-family: 'Roboto Condensed', sans-serif;
}

.copyright a:hover,
.credit a:hover {
	color: #ff5050;
}

/* credit page */
.credit li {
	line-height: 2;
}


/* fadein animation setting */
/* hide all animated contents */
.about-content, 
.head-section-index,
.img-box,
.top5-text,
.guide-content,
.invite-text,
.form-area {
	opacity: 0;
	transform: translateY(30px);
}


/* fadein class add by js */
.fadein {
	transition: all 1.5s ease;
	opacity: 1;
	transform: translateY(0);
}


@media (max-width: 1500px) {
	.logo {
		width: 60px;
	}
	.city-name, .svg-fallback {
		top:35%;
		width: 90%;
		left: 5%;
	}

	.about{
		width: 80%;
	}

	.top5-content, .guide-content, .footer {
		width: 90%;
	}

	.guide-text h3 {
		font-size: 45px;
	}

	.invite {
		padding-left: 50px;
	}

	.invite h1, .credit h1 {
		font-size: 150px;
	}

	.invite h2 {
		font-size: 100px;
	}
	.rotateword{
		height: 150px;
		font-size: 150px;
	}

	.footer {
		padding-top: 50px;
	}

	.credit h1 {
		font-size: 110px;
	}

}