@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Pirata+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
	transition: 1s;
	box-sizing: border-box; /*żeby paddingi nie zwiększały szerokości boxów*/
}

html{
	font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
	font-size: 10px; /*1rem=10px*/
	scroll-behavior: smooth;
}
h1{
	font-family:"Pirata One", system-ui;
	font-weight: 400;
	font-style: normal;
}

h2{
	font-family:"Pirata One", system-ui;
	font-weight: 400;
	font-style: normal;
}
body{
	font-size: 1.6rem;
}

a{
	text-decoration: none;
}

img{
	max-width: 100%;
}

p{
	line-height: 170%;
	font-size: 2rem;
}
/*NAVIGATION*/
.burger{
	background-color: #222;
	color: #fff;
	position: fixed;
	right: 2rem;
	top: 2rem;
	font-size: 3rem;
	padding: .5rem .65rem;
	cursor: pointer;
	z-index: 1; /*Ponad treścią sekcji*/
	display: block;
}

.burger:hover{
	background-color: #fff;
	color: #222;
}

.nakladka{
	background-color: #111;
	position: fixed;
	top: 0;
	right: 0;
	
	width: 0; /*parametr do zmiany script'a*/
	height: 100%; /*parametr do zmiany script'a*/
	
	overflow: hidden; /*Ukrywa co wystaje poza box*/
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2; /*wyżej niż burger*/
	opacity: .9; /*Zmniejsza widocznośc boxu i zawartości*/
}

.nakladka ol{
/*	background-color: red;*/
	width: 100%;
	text-align: center;
	
}
.nakladka ol li{}
.nakladka ol li a{
/*	background-color: yellow;*/
	color: #fff;
	display: block;
	padding: 2vh 0rem;
	margin-bottom: 2vh;
	text-transform: uppercase;
	font-weight: 900;
}
.nakladka ol li a:hover{
	background-color: #eee;
	color: #111;
}

.zamknijX{
	background-color: #eee;
	position: absolute; /*pozycja względem boxu nadrzędnego*/
	top: 2rem;
	right: 2rem;
	font-size: 3.3rem;
	padding: 0 1.05rem 0.65rem;
	cursor: pointer;
}
.zamknijX:hover{
	background-color: #222;
	color: #eee;
}


/*NAWIGACJA DESKTOP
nav{
	background-color: #222;
	position: fixed;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

nav ol{
	display: flex;
	gap: 1vw;
}
nav ol li{}
nav ol li a{
	color: #fff;
	display: block;
	padding: 1rem 2vw;
}
nav ol li a:hover{
	background-color: #eee;
	color: #222;
}
*/

/*HEADER*/
.hero-bg {
	overflow: hidden;
  	min-height: 80vh;
  	background: url("../img/TOP.png") center;
  	background-position: center;
  	 background-repeat: no-repeat;
  	background-size: cover;
/*	box-shadow: inset 260px 0px 200px rgba(0, 0, 0, .6);*/
}
.middle{
	height: 80vh;
	width: 100%;
	background: #053AEA;
	background: radial-gradient(circle,rgba(5, 58, 234, 1) 0%, rgba(237, 221, 83, 0) 100%);
	
	display: flex;
	justify-content: center;
}

.hero-bg .zawartosc{
	width: 100vw;
	background: url("../img/CERBER.png") no-repeat center bottom;
	background-size: 80% cover;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}


.hero-bg .zawartosc{
	width: 100vw;
	background: url("../img/CERBER.png") no-repeat center bottom;
	background-size: 80% cover;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	
	animation-name: header-moving;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-direction: alternate; /*od początku i potem wraca do stanu początkowego*/
			
}
	@keyframes header-moving{
		from{}
		to{transform: scale(1.1)}
	}


.hero-text {
/*	position: absolute;*/
	
	color: white;
	font-size: 20rem;
	margin-bottom: 5vh;
	
	animation-name: text-moving;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-direction: alternate; /*od początku i potem wraca do stanu początkowego*/
			
}
	@keyframes text-moving{
		from{}
		to{transform: scale(0.9)}
	}



/*PIERWSZA*/
#pierwsza{
	z-index: 1;
	min-height: 40vh;
	padding: 4vh 2rem;
	background-color: black;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}
#pierwsza .zawartosc{
	width: 70vw;
	max-width: 1000px;
	font-size: 2rem;
	text-align: center; /*justowanie tekstu do środka*/
}

/*DRUGA
.wyglad{
	background-color: black;
	min-height: 60vh;
}

.wyglad .zawartosc{
	display: flex;
	justify-content: center;
	align-items: center;
}

.wyglad .zawartosc img{}
*/

/*TRZECIA*/
#trzecia{
	background: #000000;
	background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(255, 89, 0, 1) 100%);
	/*padding-top: 5vh;*/
  	min-height: 100vh;
	position: relative;
}
#wilczki {
	background-color: yellow;
	background: url("../img/WOLF-RED.png") no-repeat right center;	
	background-size: cover;
	min-height: 110vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -10vh;
	right: 0;
	left: 0;
}
#trzecia .zawartosc{
	max-width: 2000px;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	transform: translateY(10vh);
/*	background-color: red;*/
}
#trzecia article{
	max-width: 30%;
	backdrop-filter: blur(25px);
	padding: 3rem;
	color: #fff;
	border-radius: 5rem;
}

#trzecia article h2{
	font-size: 5rem;
	padding-bottom: 2rem;
}
#trzecia article p{
	font-size: 2rem;
	margin-bottom: 3rem;
}

/*CZWARTA*/
#czwarta{
	background: #000000;
	background: linear-gradient(90deg,rgba(78, 164, 218, 1) 0%, rgba(0, 0, 0, 1) 100%);
	/*padding-top: 5vh;*/
  	min-height: 100vh;
	position: relative;
}
#wilczki2 {
	background-color: pink;
	background: url("../img/WOLF-BLUE.png") no-repeat left center;	
	background-size: cover;
	min-height: 110vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -10vh;
	right: 0;
	left: 0;
}
#czwarta .zawartosc{
/*	background-color: brown;*/
	transform: translateY(10vh);
	max-width: 2000px;
	width: 100%;
	display: flex;
	justify-content: flex-end;
/*	background-color: red;*/
}
#czwarta article{
	max-width: 30%;
	backdrop-filter: blur(25px);
	padding: 2rem;
	color: #fff;
	border-radius: 5rem;
}
#czwarta article p{
	font-size: 2rem;
	margin-bottom: 3rem;
}

/*PIĄTA*/
#piata{
	background: #000000;
/*	height: 1072px;*/
}

#piata h2{
/*	background-color: blueviolet;*/
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10vh 0 5vh 0;
	font-size: 4.8rem;
}

#piata .zawartosc{
/*	background-color: red;*/
	display: flex;
	padding-bottom: 10vh;
    gap: 4rem;
    align-items: flex-start;
    justify-content: center;
}

#piata article{
	flex: 1 1 300px;
}

#piata article h3{
/*	background-color: yellow;*/
	padding: 2rem;
	color: #FFFFFF;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 500;
	margin: 2rem 0;
}

#piata article h3:hover{
	color: black;
}

#glowy{
/*	background-color: green;*/
	display: flex;
	gap: 5vh;
}

.glowa{
	margin-top: 2vh; 
}

.glowa:hover{
	transform: scale(1.1);
}

.glowa img:hover{
	transform: scale(1.2);
}

.glowa h3:hover{
	background-color: white;
	border-radius: 7vh;
	backdrop-filter: blur(25px);
	transform: scale(1.4);
}

/*STOPKA*/
#stopka {
  background-color: #000000;
  color: white;
  min-height: 15vh;
}

#stopka .zawartosc {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

#stopka .zawartosc > div {
  flex: 0 1 250px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
  padding: 3rem 0 3rem 0;
}

#stopka h2{
  font-family: "Roboto", sans-serif;
  color: #EA0404;
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

#stopka li {
  font-family: "Roboto", sans-serif;
  color: white;
  font-size: 1.4rem;
}

#stopka a {
  color: white;
}

#stopka ol{
	display: flex;
	flex-direction: column;
	padding: 1rem;
}

#stopka ol li{
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	padding: 0 0 30px 0;
}
#stopka .stopka2 a{
	text-decoration: none;
}

#stopka .stopka2 a img{
	border: 0;
	width: 5rem;
	object-fit: fill;
	display: inline-block;
	padding: 0.5rem;
}

#stopka .stopka2 a img:hover{
	transform: scale(1.2);
}
#stopka .stopka3 input[type=email] {
	padding: 1.5rem 10vw 1.5rem 1.5rem;
	margin-bottom: 1rem;
	border: 0;
	margin-right:  1rem;
}

#stopka .stopka3 input[type=submit] {
    border: none;
	width: 10rem;
	height: 4rem;
    padding: 1rem 1.5rem;
    border-radius: 50px 50px 50px 50px;
    color: #1B1C1E;
    background-color: white;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    text-decoration: none;
	float: right;
	margin-top: 3rem;
}

#stopka .stopka3 input[type=submit]:hover{
	background-color: #EA0404;
	color: white;
}

#zgody{
	font-family: "Roboto", sans-serif;
	margin: 1rem 0rem;
	font-size: 1.2rem;
}
.copy{
	background-color: black;
	color: darkgray;
	padding: 1rem;
}

.copy h6{
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	display: flex;
	justify-content: center;
}

/******R*W*D*******/
@media all and (max-width:1000px){
		#trzecia, #czwarta{
		min-height: 110vh;
	}
	#wilczki{
		background: url("../img/WOLF-RED-MOBILE.png") no-repeat left center;
/*		background-color: deeppink;*/
	}
	#wilczki2{
		background: url("../img/WOLF-BLUE-MOBILE.png") no-repeat left center;
/*		background-color: green;*/
	}
	#wilczki, #wilczki2{
		background-size: contain;
		background-position: bottom;
		bottom: 0;
		min-height: 100vh;
		top: 0;
	}
	#trzecia .zawartosc, #czwarta .zawartosc{
		transform: translateY(0);
		justify-content: center;
/*		background-color: yellow;*/
		align-items: flex-start;
		min-height: 90%;
	}
	#trzecia article, #czwarta article{
		max-width: 90%;
/*		background-color: blue;*/
	}
	#trzecia article p, #czwarta article p{
		font-size: 2rem;
	}
}
@media all and (max-width:800px){
	section{
		min-height: 80vh;
	}
	h1{
		font-size: 15vh;
	}

	
	
	#trzecia, #czwarta{
		min-height: 110vh;
	}
	#wilczki{
		background: url("../img/WOLF-RED-MOBILE.png") no-repeat left center;
/*		background-color: deeppink;*/
	}
	#wilczki2{
		background: url("../img/WOLF-BLUE-MOBILE.png") no-repeat left center;
/*		background-color: green;*/
	}
	#wilczki, #wilczki2{
		background-size: contain;
		background-position: bottom;
		bottom: 0;
		min-height: 100vh;
		top: 0;
	}
	#trzecia .zawartosc, #czwarta .zawartosc{
		transform: translateY(0);
		justify-content: center;
/*		background-color: yellow;*/
		align-items: flex-start;
		min-height: 90%;
	}
	#trzecia article, #czwarta article{
		max-width: 90%;
/*		background-color: blue;*/
	}
	#trzecia article p, #czwarta article p{
		font-size: 1.6rem;
	}
	
/*PIATA MOBILE*/
	#piata{
	}
	
	#piata h2{
/*	background-color: blueviolet;*/
	color: #ffffff;
	display: flex;
	justify-content: center;
	text-align: center;
	padding: 10vh 0 5vh 0;
	font-size: 4.8rem;
}
	#piata .zawartosc{
		gap: 8rem;
		padding: 0 0 0 0;
		flex-wrap: nowrap;
		overflow: scroll;
		justify-content: flex-start;
	}
	#piata article{
		flex: 0 0 250px;
	}
	#glowy{
		padding-left: 10vh;
		gap: 10rem;
	}
/*STOPKA MOBILE*/
	#stopka .stopka3 input[type=submit] {
    border: none;
	width: 10rem;
	height: 4rem;
    padding: 1rem 1.5rem;
    border-radius: 50px 50px 50px 50px;
    color: #1B1C1E;
    background-color: white;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    text-decoration: none;
	float: left;
	margin-top: 3rem;
 	}
	
	#stopka .stopka2 a img{
	border: 0;
	width: 6rem;
	object-fit: fill;
	display: inline-block;
	padding: 0.2rem;
	}
	
	#stopka .zawartosc {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
	}
	
	#stopka h2{
    font-family: "Roboto", sans-serif;
    color: #EA0404;
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
	}

	#stopka li {
    font-family: "Roboto", sans-serif;
    color: white;
    font-size: 1.8rem;
}
	#stopka {
    background-color: #000000;
    color: white;
    min-height: 15vh;
}

	#stopka .zawartosc {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

	#stopka .zawartosc > div {
    flex: 0 1 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 3rem 0 3rem 0;
	}
}