@charset "UTF-8";
/* CSS Document */

/*IMPORT FONTY */


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kablammo&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*selektory globalne*/
*{
	transition: 1s;
	box-sizing: border-box;
		
}
html{
  
	scroll-behavior: smooth;
}
body{
	background-color: #124364;
	font-size: 1.6rem;
}
h1{
	font-size: 128px;
	font-family: "Kablammo", system-ui;
  	font-optical-sizing: auto;
 	font-weight: 400;
  	font-style: normal;
	color: #faf3c1;
}
h2{}
h3{}
h4{}
h5{}
h6{}

img{
	max-width: 100%;
}
a{
	text-decoration: none;
	color: firebrick; /*niewiadomo, zobaczymy*/
}
p{
	line-height: 140%;
}

/*nawigacja desktop*/

nav{
	background-color: #124364;
	padding: 1rem;
	display: flex;
	justify-content: center;
	position: fixed;
	width: 100%;
	
}
nav ol{
	/*background-color: green;*/
	max-width: 1400px; /*nie trezba */
	width: 100%;
	display: flex;
	justify-content: space-evenly;
}
nav ol li{}
nav ol li a{
	color: #faf3c1;
	font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-style: normal;
	font-size: 16px;
}
nav ol li a:hover{}

/*Nawigacja mobilna*/
.burger{
	display: none;
	position: fixed;
	top: 2rem;
	right: 2rem;
	font-size: 4rem;
	background-color: #124364;
	border: 1px solid #faf3c1;
	border-radius: 12px;
	color: #fff;
	padding: 0 .7rem .7rem;
}
.nakladka{
    background-color: #124364;
    opacity: 1;
    color: #faf3c1;
    z-index:5;
    position:fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0%; 
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4ms ease-in-out;

}
.nakladka ol{
   
    text-align: center;
    width: 100%;
}
.nakladka ol li{
border-bottom: 1px solid rgba(150,195,216,0.50);
}
.nakladka ol li a{
    display: block;
    padding: 2rem;
    font-family: "Kanit", sans-serif;
    font-weight: 600;
	color: #faf3c1;
}
.nakladka ol li:hover{
    background-color: rgba(38,166,216,1.00);

}
.nakladka ol li:last-child{
    border: none;
}
.zamknijX{
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3.5rem;
    padding: 0 0.8rem 0.7rem;
    border-radius: 1rem;
	color: #faf3c1;
}



/*sekcje wszystkie*/
section{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem; /*też zobaczymy*/
}
.zawartosc{
	/*background-color: red;*/
	max-width: 1400px;
	/*min-height: 50vh;*/ /*nadal nie wiemy*/
	width: 100%;
	display: flex;
	gap: 2rem;
	
}
/*Sekcje poszczególne*/
#pierwsza {
	background: url("../IMG/Group 1.png");
	background-size: cover;
	background-repeat: no-repeat;
}
#pierwsza .zawartosc{
	
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
}
#pierwsza .zawartosc h1{
	
}
#pierwsza .zawartosc p{
	font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: normal;
	color: white;
	max-width: 860px;
}
#pierwsza .zawartosc button a{
	font-size: 20px;
	color: white;
}
#pierwsza .zawartosc button{
	background-color: #124364;
	border: none;
	padding: 8px 12px;
	border-radius: 5px;
}

#druga {
	
}
#druga .zawartosc{
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-top: 128px;
	
	
}
#druga .zawartosc h2{
	font-size: 64px;
	text-align: center;
	font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-style: normal;
	color: #faf3c1;
}
#druga .zawartosc .mini{
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
}
#druga .zawartosc .mini .lewo{
	height: 500px;
	width: 500px;
	
}
#druga .zawartosc .mini .prawo{
	padding-top: 40px;

}
#druga .zawartosc .mini .prawo article{
	max-width: 600px;
	color: white;
	
	margin-bottom: 40px;
	font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 300;
	line-height: 130%;
  
}


#trzecia {}
#trzecia .zawartosc {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    max-width: 800px;
    width: 100%;
	padding-top: 128px;
}
#trzecia .zawartosc h2{
	font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-style: normal;
	color: #faf3c1;
	font-size: 64px;
}
#trzecia .zawartosc p{
	font-family: "Inter",sans-serif;
	font-size: 40px;
	font-weight: 300;
	color: white;
}
#trzecia .zawartosc .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 24px;
}
#trzecia .zawartosc .gallery .card p {
    margin-top: 10px;
    text-align: left;
    color: white;
	font-size: 24px;
}
#trzecia .zawartosc .gallery .card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#trzecia .zawartosc .gallery .card .placeholder img {
    width: 100%;
    max-width: 220px;
}

#czwarta {
	
}
#czwarta .zawartosc {
	display: flex;
	justify-content: space-evenly;
	flex-direction: column;
	padding-top: 128px;
}
#czwarta .zawartosc h2{
	text-align: center;
	font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-style: normal;
	color: #faf3c1;
	font-size: 64px;
}
#czwarta .zawartosc .calosc{
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 48px;
}
#czwarta .zawartosc .calosc .left {
	margin-bottom: 16px;
	max-width: 650px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: "Inter",sans-serif;
	font-size: 24px;
	font-weight: 300;
	color: white;
	line-height: 130%;
	
}
#czwarta .zawartosc .calosc .right{
	max-width: 220px;
	flex-direction: column;
	
}
#czwarta .zawartosc .calosc .left article{
	margin-bottom: 16px;
}
#piata{}
#piata .zawartosc{
	display: flex;
	justify-content: center;
	flex-direction: column;
	flex-wrap: wrap;
	color: white;
	align-items: center;
	padding-top: 128px;
}
#piata .zawartosc h2{
	text-align: center;
	margin-bottom: 48px;
	color: #faf3c1;
	font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-style: normal;
	font-size: 64px;
	
}
#piata .zawartosc .jeden{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 48px;
	flex-direction: row;
}
#piata .zawartosc .jeden article{
	max-width: 380px;
	font-family: "Inter", sans-serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 130%;
}
#piata .zawartosc .dwa{
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 48px;
}
#piata .zawartosc .dwa article{
	max-width: 380px;
	font-family: "Inter", sans-serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 130%;
}
#piata .zawartosc .trzy{
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 48px;
	
}
#piata .zawartosc .trzy article{
	max-width: 380px;
	font-family: "Inter", sans-serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 130%;
}

#stopka {
	background-color: black;
	min-height: 50vh;
}
#stopka .zawartosc{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	height: 128px;
	margin-top: -124px;
	
} 
#stopka .zawartosc h2{
	color: #faf3c1;
	font-family: "Kanit", sans-serif;
	font-size: 80px;
	font-weight: 600;
	
}
#stopka .zawartosc .kontakty{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
}
#stopka .zawartosc .kontakty h3{
	color: #faf3c1;
	font-family: "Kanit", sans-serif;
	font-size: 64;
	font-weight: 600;
	
}






/**********RWD********/
@media all and (max-width: 600px){
	.burger{
		display: block;
	}
	nav{
		display: none;
	}
	
	#pierwsza .zawartosc h1{
		font-size: 64px;
	}
	#pierwsza .zawartosc p{
		font-size: 20px;
	}
	#pierwsza .zawartosc button{
		padding: 12px 20px;
	}
	#druga .zawartosc h2{
		font-size: 40px;
	}
	#druga .zawartosc .mini .prawo article{
		font-size: 16px;
	}
	#druga .zawartosc .mini{
		flex-direction:column-reverse;
	}
	#trzecia .zawartosc .gallery .card p{
		font-size: 16px; 
	}
	#trzecia .zawartosc .gallery {
        grid-template-columns: repeat (1,1fr);
    }
	#trzecia .zawartosc p{
		font-size: 28px;
	}
	#czwarta .zawartosc h2{
		font-size: 40px;
	}
	#czwarta .zawartosc .calosc .left{
		font-size: 16px;
	}
	#czwarta .zawartosc .calosc .right{
		height: 400px;
		width: 600px;
		flex-diection: row;
 		background-color: none;
  		overflow: auto;
  		white-space: nowrap;
  }
	#czwarta .zawartosc .calosc{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	#piata .zawartosc h2{
		font-size: 40px;
		
	}
	#piata .zawartosc .jeden article{
		font-size: 16px;
	}
	#piata .zawartosc .dwa article{
		font-size: 16px;
	}
	#piata .zawartosc .trzy article{
		font-size: 16px;
	}
	#stopka .zawartosc h2{
		font-size: 40px;
	}
	#stopka .zawartosc .kontakty{
		font-size: 20px;
	}
}

@media all and (max-width: 850px){
    #trzecia .zawartosc .gallery {
        grid-template-columns: repeat(2 ,1fr);
    }
}

	













