/*=== Resets ===*/

* { 
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	-webkit-font-smoothing: antialiased;
}
a {
	text-decoration: none;
}
li {
	list-style-type: none;
}

/*=== GLOBAL FONT SETTING ===*/

/* source-sans-3-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/source-sans-3-v18-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* source-sans-3-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-sans-3-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* source-sans-3-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/source-sans-3-v18-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


html {
	font-family: 'Source Sans 3', sans-serif;
}
article p {
	font-size: 16px;
	line-height: 23px;
	color: #404040;
}
nav ul li a {
	font-size: 17px;
	color: #f6f6f6;
}
html, a, a:visited {
}
h1 {
	font-size: 28px;
	color: #404040;
}
h2 {
	font-size: 15px;
	margin-bottom: 10px;
}

/*=== Main Layout ===*/

/* BACKGOUND */

.background {
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: -99999;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.background#willkommen {
	background-image: url(../img/willkommen.png);
}
.background#bilder {
	background-image: url(../img/bilder.png);
}
.background#preise {
	background-image: url(../img/preise-bg.png);
}
.background#kontakt {
	background-image: url(../img/kontakt-bg.png);
}
.background#impressum {
	background-image: url(../img/impressum-bg.png);
}


/* HEADER */

header {
	width: 100%;
	height: 138px;
	position: fixed;
	top: 0;	
	left: 0;
	background-color: #f6f6f6;
	z-index: 99999;
}
#headline {
	display: block;
	width: 768px;
	height: 96px;
	margin: 0 auto;
	padding-top: 20px;
	color: #404040;
}
#headline h1 {
	font-size: 32px;
	font-weight: 400;
	line-height: 28px;
}
#headline h1 span {
	text-transform: uppercase;
	font-weight: 800;
}
#headline h2 {
	font-size: 25px;
	font-weight: 300;
}


/* NAVI */

header nav {
	width: 100%;
	min-width: 768px;
	height: 42px;
	position: relative;
	top: 0px;
	left: 0;
	background-color: #404040;
	box-shadow: 0 3px 3px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 3px 3px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 3px 3px 3px rgba(0,0,0,0.2);
	-o-box-shadow: 0 3px 3px 3px rgba(0,0,0,0.2);
}
header nav ul {
	display: block;
	width: 768px;
	margin: 0 auto;

}
header nav ul li {
	display: inline-block;
}
header nav ul li a {
	display: inline-block;
	margin-right: 40px;
	height: 42px;
	padding-top: 9px;
}
header nav ul li a.current {
	border-bottom: 3px solid #f6f6f6;
}

#top-lang-switch {
	float: right;
	width: 76px;
	height: 42px;
}
#top-lang-switch .deu {
	float: left;
	width: 30px;
	height: 20px;
	background-image: url(../img/deu.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin: 10px 8px 0 0;
}
#top-lang-switch .pol {
	float: left;
	width: 30px;
	height: 20px;
	background-image: url(../img/pol.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin: 10px 0 0 0;
}
#top-lang-switch a.active {
	opacity: 0.3;
}

@media all and (max-width: 768px) {
	header {
		position: absolute;
	}
	nav ul  {
		padding-left: 50px;
	}
	#headline {
		padding-left: 50px;
	}
	#top-lang-switch {
		margin-right: 42px;
	}
}


/* PAGE */

#container {
	position: relative;
	box-shadow: 0 0 3px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 0 3px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 0 3px 3px rgba(0,0,0,0.2);
	-o-box-shadow: 0 0 3px 3px rgba(0,0,0,0.2);
	width: 768px;
	margin: 0 auto;
}
main {
	width: 100%;
	height: 100%;
	position: relative;
	margin: 0 auto;
	padding: 138px 0 0 0;
	background-color: #f6f6f6;
}
section {
	width: 100%;
	position: relative;
	height: auto;
	padding: 50px;
}


/* WILLKOMMEN*/

#welcome-pic {
	width: 768px;
	height: 324px;
	margin-left: -50px;
	margin-top: -50px;
	margin-bottom: 50px;
	background-image: url(../img/welcome-pic.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.to-next-sec {
	width: 42px;
	height: 16px;
	background-image: url(../img/arrow.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 42px;
	margin: 0 auto;
	margin-bottom: -45px;
	margin-top: 25px;
}
.to-next-sec:hover {
	cursor: pointer;
}

/* LAGE */

section#lage {
	height: 700px;
	background-image: url(../img/map.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 768px;
}
.places {
	position: absolute;
	color: #404040;
	overflow: visible;
}
.places:after {
	content:"";
	background-image: url(../img/pin.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 26px;
	position: absolute;
	width: 52px;
	height: 64px;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-o-transition-duration: 1s;
}
.places .name {
	font-size: 22px;
}
.places .distance {
	font-size: 14px;
}
.places:hover:after {
	background-size: 32px;
}
#leba {
	top: 400px;
	left: 60px;
	text-align: right;
}
#leba:after {
	top: -66px;
	left: 60px;
}
#stilo {
	top: 310px;
	left: 185px;
	text-align: right;
}
#stilo:after {
	top: -18px;
	left: 85px;
}
#ostsee {
	top: 260px;
	left: 390px;
	text-align: left;
}
#ostsee:after {
	top: -3px;
	left: -50px;
}
#choczewo {
	top: 397px;
	left: 500px;
	text-align: left;
}
#choczewo:after {
	top: -42px;
	left: -50px;
}
#wejherowo {
	top: 474px;
	left: 592px;
	text-align: left;
}
#wejherowo:after {
	top: -22px;
	left: -50px;
}
#danzig {
	top: 630px;
	left: 670px;
	text-align: left;
}
#danzig:after {
	top: -22px;
	left: -50px;
}
#slajszewo {
	top: 400px;
	left: 270px;
	text-align: left;
	font-size: 25px;
	font-weight: 800;
}
#slajszewo:after {
	background-image: url(../img/star.png);
	background-position: center;
	top: -55px;
	left: 71px;
}


/* FOOTER */

footer {
	padding: 50px;
	width: 100%;
	margin: 0 auto;
	height: 300px;
	background-color: #404040;
	margin-bottom: 138px;
}
footer section {
	width: 206px;
	height: 100%;
	padding: 0;
	float: left;
}
footer section:first-child,
footer section:nth-child(2)  {
	margin-right: 25px;
}
footer h3 {
	color: #f6f6f6;
	font-size: 17px;
	margin-bottom: 21px;
}

footer nav {
	width: 100%;
}
footer nav ul li a {
	font-size: 13px;
	line-height: 21px;
}
footer nav ul li a:hover {
	border-bottom: 2px solid #f6f6f6;
}



footer a#pic-thumbnails,
footer a#mini-map {
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
}
footer a#mini-map {
	background-image: url(../img/mini-map.png);
	background-size: 140px;
	background-position: 0px 44px;
}
footer a#pic-thumbnails h3 {
	width: 46px;
}
footer a#mini-map h3 {
	width: 36px;
}
footer a#pic-thumbnails:hover h3,
footer a#mini-map:hover h3 {
	text-decoration: underline;
}




footer ul.language-switch li a {
	display: block;
	color: #f6f6f6;
	font-size: 13px;
	margin-left: 40px;
	margin-bottom: 12px;
}
footer a.pol:before {
	position: absolute;
	content:"";
	width: 30px;
	height: 20px;
	left: 0px;
	background-image: url(../img/pol.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
footer a.deu:before {
	position: absolute;
	content:"";
	width: 30px;
	height: 20px;
	left: 0px;
	background-image: url(../img/deu.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

footer ul.language-switch li a.current {
	opacity: 0.3;
}


/* DAS HAUS */

section#dashaus {
	height: 680px;
}
article.r3 {
	width: 206px;
	margin-bottom: 25px;
	color: #333;
	float: left;	
}
article.r3:nth-child(2) {
	margin-right: 25px;
}
article.r3:nth-child(3) {
	margin-right: 25px;
}
article.r3:last-child {
	padding-top: 28px;
}
ul.list li {
	margin-left: 19px;
	margin-bottom: 4px;
	font-size: 14px;
}
ul.list li:before {
    content:"";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    border: 1px solid #333;
    margin-top: 6px;
    margin-left: -18px;
}
ul.list {
	margin-bottom: 25px;
}


/* PREISE */

article#preise span.euro {
	font-size: 64px;
	font-weight: 600;
	display: inline-block;
	margin: 12px 8px 0px 0;
}
article#preise span.zt {
	display: block;
	position: absolute;
	top: 105px;
	left: 200px;
}
article#preise span.pt {
	font-size: 36px;
	font-weight: 600;
	display: inline-block;
}
article#preise p {
	margin-bottom: 12px;
	font-size: 16px;
}
img#preise {
	width: 384px;
	height: 342px;
	position: absolute;
	right: 0;
	top: 0;
}
article#kontakt {
	width: 384px;
	margin-left: 384px;
	height: 236px;
}
img#kontakt {
	width: 384px;
	height: 336px;
	position: absolute;
	left: 0;
	top: 0;
}
article#kontakt p {
	margin-bottom: 12px;
	font-size: 16px;
}
article#kontakt a {
	color: #404040;
}

section#img-slider {
	padding: 0;
}

.contact-link:hover {
	text-decoration: underline;
}

.pic-list {
	display: grid;
	grid-template-columns: repeat(3, 64px);
	gap: 8px;
}

.pic-list__img {
	display: block;
	width: 64px;
	height: auto;
}

#pic-thumbnails:hover .pic-list {
	opacity:  .7;
}


/* IMAGE SLIDER 
        
        .jssora05l                  (normal)
        .jssora05r                  (normal)
        .jssora05l:hover            (normal mouseover)
        .jssora05r:hover            (normal mouseover)
        .jssora05l.jssora05ldn      (mousedown)
        .jssora05r.jssora05rdn      (mousedown)
*/

.jssora05l, .jssora05r {
    display: block;
    position: absolute;
    /* size of arrow element */
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url('../img/slider-img/a17.png') no-repeat;
    overflow: hidden;
}
.jssora05l { background-position: -10px -40px; }
.jssora05r { background-position: -70px -40px; }
.jssora05l:hover { background-position: -130px -40px; }
.jssora05r:hover { background-position: -190px -40px; }
.jssora05l.jssora05ldn { background-position: -250px -40px; }
.jssora05r.jssora05rdn { background-position: -310px -40px; }

/* THUMBNAIL NAVI
/*
.jssort01 .p            (normal)
.jssort01 .p:hover      (normal mouseover)
.jssort01 .p.pav        (active)
.jssort01 .p.pdn        (mousedown)
*/

.jssort01 .p {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 119px;
    opacity: 0.5;
}
.jssort01 .t {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.jssort01 .w {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.jssort01 .c {
    display: none;
}
.jssort01 .pav,
.jssort01 .p:hover {
   opacity: 1;
}

.slider-image {
	object-fit: cover;
}