/*
Theme Name: OutletBox
Author: Mosaic Studio && Łukasz Kuchnio
Author URI: http://mosaic.pl

*/

* { border: none; margin: 0px; padding: 0px;  }


body {
	background: #fff;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	
	overflow-x: hidden;
}

body.overflow {
	overflow: hidden;
}

a {
	color: #000;
	text-decoration: underline;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
}

a:hover {
	color: #666;
	text-decoration: none;
	
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
}

a:focus,
span:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
	outline: 0;
}

h1 {
	font-size: 65px;
	font-weight: 500;
}

	h1 strong {
		font-weight: 700;
	}
	

h2 {
	font-size: 65px;
	font-weight: 500;
	line-height: 1
}
	h2 strong {
		font-weight: 700;
	}
	
h3 {
	font-size: 45px;
    font-weight: 300;
}

h4 {
	font-size: 30px;
	font-weight: 600;
}

h5 {
	font-size: 24px;
	font-weight: 600;
}


a.wp-block-button__link {
	display: inline-block;
	background: #1CB8CB;
	border: 2px solid #1CB8CB;
	border-radius: 5px;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	padding: 15px 32px;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
}

.dark a.wp-block-button__link {
	background: #144172;
	border: 2px solid #144172;
}

	a.wp-block-button__link:hover {
		border: 2px solid #1CB8CB;
		background: #fff;
		color: #1CB8CB;
	}

.fit {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}





header {
	position: fixed;
	z-index: 5;
	padding: 0 !important;
	width: 100%;
	transition: all 0.2s ease;
}


	#header {
		position: relative;
		z-index: 3;
		
		display: flex;
		align-items: center;
		
		padding-top: 30px;
		padding-bottom: 30px;
		transition: all 0.2s ease;
	}
		
		#header #logo {
			
		}
			
			#header #logo img {
				width: 300px;
				height: auto;
				transition: all 0.2s ease;
			}
		
		#header #show_menu {
			display: none;
		}
		
		#header #menu {
			margin-left: auto;
		}
		
			#header #menu ul {
				list-style: none;
				
				display: flex;
				align-items: center;
			}
			
			#header #menu ul li {
				margin: 0 8px;
				transition: all 0.2s ease;
			}
			
			#header #menu ul li a {
				display: flex;
				align-items: center;
				height: 100%;
				padding: 0 10px;
				box-sizing: border-box;
				font-weight: 700;
				font-size: 16px;
				text-decoration: none;
			}

				#header #menu ul li:hover{
					background: #000;
					transition: all 0.2s ease;
				}

				#header #menu ul li:hover a {
					color: #fff;
				}
					
				#header #menu ul li a span {
					display: block;
					margin: 0;
					padding: 5px 0;
					border-bottom: 3px solid transparent;
					transition: all 0.2s ease;
				}
				
				#header #menu ul li.active a span {
					border-bottom: 3px solid #000;
					transition: all 0.2s ease;
				}
				
			#header #menu ul li.facebook a {
				overflow: hidden;
				text-indent: -999px;
				
				width: 30px;
				height: 30px;
				
				background-image: url(graf/ico_fb.svg);
				background-size: 24px auto;
				background-position: 50% 50%;
				background-repeat: no-repeat;
			}
			
				#header #menu ul li.facebook:hover a {
					filter: brightness(0) invert(1);
				}


			#header #menu ul li.jakdojechac {
				margin-left: 40px;
				border: 3px solid #000;
			}

				#header #menu ul li.jakdojechac a {
					padding: 3px 20px 0px 20px;
				}
				
				
	header.fixed {
		background: #fff;
		box-shadow: 0 5px 25px 0 rgba(0 0 0 / 0.1);
		transition: all 0.2s ease;
	}

		header.fixed #header {
			padding-top: 10px;
			padding-bottom: 10px;
			transition: all 0.2s ease;
		
		}
			
		header.fixed #header #logo img {
			width: 220px;
			height: auto;
			transition: all 0.2s ease;
		}

#content {
	position: relative;
	padding-top: 120px;
}
	
	#content:before {
		content: "";
		display: block;
		width: 30vw;
		max-width: 380px;
		aspect-ratio: 380/850;
		
		position: absolute;
		z-index: 3;
		right: 0;
		top: 0;
		
		background-image: url(graf/box_vertical.svg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 100% 100%;
	}
			
#slider {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 65vh;
	min-height: 500px;

}

	#slider .swiper-slide {
		height: 100%;
	}
	
	#slider .slide {
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		height: 100%;
	
		display: flex;
		align-items: center;
	}
			
		#slider .slide .desc {
			width: calc(100% - 40vw);
			text-align: center;
		}
			
			#slider .slide .desc h2 {
				color: #fff;
				line-height: 1.2;
				text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.65);
			}
			
	#slider #buttons {
		position: absolute;
		z-index: 4;
		left: 0;
		bottom: 0;
		
		display: flex;
	}
	
		#slider #buttons .swiper-button-prev {
			cursor: pointer;
			width: 60px;
			height: 60px;
			
			background-color: #fff;
			background-image: url(graf/ico_arrow.svg);
			background-size: auto 26px;
			background-repeat: no-repeat;
			background-position: 50% 50%;
			transition: all 0.2s ease;
		}
		
			#slider #buttons .swiper-button-prev:hover {
				background-position: 40% 50%;
				transition: all 0.2s ease;
			}
		
		#slider #buttons .swiper-button-next {
			cursor: pointer;
			width: 60px;
			height: 60px;
			
			transform: rotate(180deg);
			filter: invert(1);
			background-color: #fff;
			background-image: url(graf/ico_arrow.svg);
			background-size: auto 26px;
			background-repeat: no-repeat;
			background-position: 50% 50%;
			transition: all 0.2s ease;
		}
		
			#slider #buttons .swiper-button-next:hover {
				background-position: 40% 50%;
				transition: all 0.2s ease;
			}
	

#arrowdown {
	position: relative;
	z-index: 2;
	background: #F8F8F8;
	text-align: center;
	margin: 0;
	width: 100%;
}

	#arrowdown figure {
		display: block;
		position: relative;
		top: -25px;
	}
	
	#arrowdown a {
		position: absolute;
		display: inline-block;
		transition: all 0.2s ease;
	}	
	
	#arrowdown a:hover {
		padding-top: 10px;
		transition: all 0.2s ease;
	}
	
		#arrowdown a img {
			width: auto;
			height: 60px;
		}
	
.sekcja {
	padding: 60px 0;
}
		
	.sekcja h3 {
		padding-bottom: 40px;
	}
	
#zasady {
	
	padding-top: 140px;
	background: #F8F8F8;
}

	#zasady .wp-block-columns {
		position: relative;
		z-index: 1;
	}

		#zasady .wp-block-column {
			background-image: url(graf/bg_box.svg);
			background-size: cover;
			background-repeat: no-repeat;
			background-position: 50% 50%;
			
			color: #fff;
			font-size: 14px;
			padding: 35px 20px;
			box-sizing: border-box;
		}

			#zasady .wp-block-column h5 {
				padding-top: 10px;
			}



#onas {
	position: relative;
	background: #F8F8F8;
}
	
	#onas:before {
		content: "";
		display: block;
		width: 320px;
		height: 850px;
		
		position: absolute;
		z-index: 0;
		left: 50%;
		transform: translateX(-140%);
		bottom: -150px;
		
		background-image: url(graf/box_vertical2.svg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 100% 100%;
	}

	#onas .wp-block-columns {
		position: relative;
		z-index: 1;
		justify-content: space-between;
		align-items: center;
		padding-bottom: 50px;
	}
	
	#onas .wp-block-column {
		flex-grow: unset;
	}

		#onas .wp-block-column:first-child {
			flex-basis: 35%;
		}

		#onas .wp-block-column:last-child {
			flex-basis: 50%;
		}

		#onas .wp-block-column figure {
			margin: 0;
		}




#oferta {
	padding-top: 70px;
	margin-top: 80px;
}

	#oferta figure {
		position: relative;
		display: block;
	}

	#oferta figure img {
		height: auto;
	}
	
	#oferta figure figcaption {
		position: absolute;
		margin: 0;
		top: 50%;
		transform: translateY(-50%);
		
		width: 100%;
		text-align: center;
		font-size: 28px;
		text-transform: uppercase;
		font-weight: 700;
	}


		
#dobrze {
	position: relative;
	padding-bottom: 0;

	background-image: url(graf/box_horizontal.svg);
	background-size: 700px auto;
	background-repeat: no-repeat;
	background-position: 0% 100%;
}	

	#dobrze .wp-block-columns {	
		align-items: flex-end;
	}	

		#dobrze .wp-block-column:first-child {
			padding-bottom: 20px;
		}

		#dobrze .wp-block-column:last-child {
			
		}

			#dobrze .wp-block-column:last-child figure {
				margin: 0;
				display: block;
			}

			#dobrze .wp-block-column:last-child figure img {
				display: block;
			}

footer {
	background: #000;
	color: #fff;
	padding: 80px 0 0 0;
	line-height: 2.3
}	
	
	footer h4 {
		position: relative;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}

		footer h4:after {
			content: "";
			display: block;
			width: 70px;
			height: 3px;
			background: #fff;
			
			position: absolute;
			bottom: 0;
			left: 0;
		}
	
	footer a {
		color: #fff;
		text-decoration: none;
	}
	
	footer .wp-block-column:last-child {
		padding-top: 20px;
	}
	
		footer .wp-block-column:last-child iframe {
			width: 100% !important;
		}
	
#footer_bottom {
	background: #000;
	color: #fff;
	font-size: 13px;
	padding: 70px 0 30px 0;
}

	#footer_bottom .wp-block-columns {
		justify-content: space-between;
	}

	#footer_bottom .wp-block-column:last-child {
		text-align: right;
	}

	#footer_bottom .wp-block-column:last-child a {
		color: #fff;
		text-decoration: none;
	}

