body
{
	background-color: black;
	padding: 0;
	margin: 0;
}

#container
{
	background-color: dimgray;
	width: 1250px;
	height: 900px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

#logo, #glogo
{
	background-color: dimgray;
	width: 1125px;
	height: 55px;
	margin-top: 0; 
	color: white;
	font-size: 45px;
	letter-spacing: 5px;
	padding: 5px;
/*	text-align: center; */
	display: flex;
	justify-content: center; 
	
	align-items: center;
	text-shadow: 5px -5px 1px black;
}

#frame_0
{
	background-color: navy;
	
	display: flex;
	justify-content: space-evenly;
}

#show
{
		background-color: silver; 
		
		width: 50%;
		height: 300px;
}

#slide
{
		background-color: dimgray; 
		position: relative;	
		width: 625px;
		height: 300px;
		margin: auto;
				
}

.slide_show_h
{
/*	background-color: gold; */
	position: absolute; 
	top: 0;
	left: 0;
	width: 625px;
	height: 300px;
	overflow: hidden; 
	display: flex; 
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	
}

.slide_show_h img
{
	
	width: 625px;
	animation: my_show2 77s linear infinite; 
}


@keyframes my_show2
{
	0% { transform: translateX(0); }
	14% { transform: translateX(-100%); }
	28% { transform: translateX(-200%); }
	42% { transform: translateX(-300%); }
	56% { transform: translateX(-400%); }
	70% { transform: translateX(-500%); }
	74% { transform: translateX(-600%); }
	100% { transform: translateX(-700%); }
}


.slide_show_v
{
	position: absolute; 
	top: 0;
	left: 0;
	width: 625px;
	height: 300px;
	overflow: hidden; 
/*	display: flex; */
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	
}

.slide_show_v img
{
	
	height: 300px;
	animation: my_show3 77s linear infinite; 
}


@keyframes my_show3
{

	0% { transform: translateY(0); }
	14% { transform: translateY(-100%); }
	28% { transform: translateY(-200%); }
	42% { transform: translateY(-300%); }
	56% { transform: translateY(-400%); }
	70% { transform: translateY(-500%); }
	84% { transform: translateY(-600%); }
	100% { transform: translateY(-700%); } 
}

#content
{
		background-color: gray;
		width: 50%;
		height: 300px;
}

h1
{
	font-family: Times New Roman;
	color: white;
	font-size: 35px;
	text-align: center;
	padding: 0px;
}

h2
{
/*	font-family: Times New Roman; */
/*	background-color: gold; */
	color: white;
	font-size: 17px;
	text-align: justify;
	text-indent: 75px;
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 0;
	margin-bottom: 0;
}

#frame_2
{
	
	background-color: gray;
	width: 625px;
	height: 530px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-content: center;
	gap: 0px 20px;
	
}

#frame_3
{
	
	background-color: dimgray;
	width: 625px;
	height: 530px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-content: center;
	
}

#frame_4
{
	
/*	background-color: green; */
	width: 1250px;
	height: 520px;
	display: flex;
	
	justify-content: center;
	align-content: center;
	
}

.frame_1
{
/*	background-color: pink; */
	width: 600px;
	height: 150px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	margin: auto;
	
}

.xslide_
{
/*	background-color: black; */
	width: 200px; 
	height: 150px;
/*	float: left; */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	cursor: pointer;
}

.xslide_:hover .xphoto_
{
	transform: scale(2.25);
	opacity: 1;
	z-index: 1;
}

.xslide_:hover img
{
	border-radius: 5px;
}

.xslide_:hover .xopis_
{
/*	transform: scale(1.25); 
	background-color: black;
	opacity: 0.55;
	margin: 5px;
	z-index: 1; */
	visibility: hidden;
}

.xslide_:hover .xopis
{
	/* width: 40%;  */
	transform: scale(1.25); 
	background-color: black;
	opacity: 0.55;
	margin: 5px;
	z-index: 1;
	visibility: visible;
}

.xslide_:hover .slide_p, 
.xslide_:hover .slide_n 
{
	
	opacity: .75;
}
.xslide_:hover .x_zoom, 
.xslide_:hover .x_movie 
{
	
	opacity: .99;
}

.xphoto_
{
	/* background-color: silver; */
	/* border: solid 3px pink; */
	width: 200px;
	height: 150px;
	position: relative;
	display: flex;
	justify-content: center; 
	align-content: flex-start;
	opacity: 1;
	transition: all 1.5s linear;
}

.xphoto_ img
{
	width: 97%;
	/* border-radius: 2px; */
}

.slide_p,
.slide_n  
{
	background-color: black;
	border-radius: 50%;
	font-family: Arial;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	color: white;
	width: 20px;
	height: 20px;
	z-index: 2;
	text-align: center;
	padding: 0;
	cursor: pointer;
	position: absolute;
	opacity: 0;
	/* visibility: hidden; */
	transition: all 1.5s ease-in-out;
}
.slide_p
{
	bottom: -15px;
	left: 5px;
}
.slide_n
{
	bottom: -15px;
	right: 5px;
}	

.xopis_
{
	background-color: black;
	width: 100px;
	height: 20px;
	position: absolute;
	bottom: 0;
	
	text-align: center;
	opacity: .75;
/*	transition: all 0.1s linear; */
}


.xopis_ p
{
	font-size: 16px;
	display: inline-block;
	color: white;
	margin: -10px;
	opacity: 1;
	vertical-align: middle;
}


.xopis
{
	background-color: black;
	width: 40%; 
	height: 10px;
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 0;
	/* visibility: hidden; */
	/* text-align: center; */
	opacity: 0;
	transition: all 1.5s linear;
}


.xopis p
{
	font-size: 6px;
	display: inline-block;
	color: white;
	/* text-align: center; */
	position: absolute;
	bottom: -4px;
	opacity: 1;
}

.frame_1_t p
{
/*	background-color: red; */
	height: 20px;
	color: white;
	font-size: 20px;
	text-align: left; 
/*	vertical-align: center; */
	margin-top: 10px;
	margin-left: 25px;
	margin-bottom: 10px;
	letter-spacing: 1px;
	
	
}
 

#footer
{
	background-color: #3b3d40;
	width: 100%;
	height: 75px;
	
	
	display: flex;
	flex-direction: column;
	justify-content: center; 
	align-items: center;

}
.pfooter
{
	color: white;
	font-size: 20px;
	letter-spacing: 5px;
	text-shadow: 5px -5px 1px black;	
	margin: 0 auto;
	padding: 0 auto;
			
}

/* obsługa fiszki */


.x_fiszka_on
{
	font-family: Arial; 
/*	background-color: gold; */ 
	color: black;
	font-size: 19px;
	text-align: justify;
/*	text-indent: 75px; */
	padding: 25px;
	opacity: 0.05;
	animation-name: my_fiszka_on;
	animation-duration: 3.5s;
	animation-fill-mode: forwards;
			 
} 

@keyframes my_fiszka_on
{
	0% { opacity: 0.15; }
	100% { opacity: 1.0; }
		
}

.x_fiszka_off
{
	font-family: Arial; 
/*	background-color: gold; */ 
	color: black;
	font-size: 20px;
	text-align: justify;
/*	text-indent: 75px; */
	padding: 25px;
	opacity: 1;
	animation-name: my_fiszka_off;
	animation-duration: 2.5s;
	animation-fill-mode: forwards;
			 
} 

@keyframes my_fiszka_off
{
	0% { opacity: 1;} 
	100% { opacity: 0; transform: rotateX(180deg);}
}

#x_fiszka
{
	background-color: gold; 
	position: relative;
	top: -775px;
	left: 660px;
	width: 500px; 
	height: 125px;
	z-index: 10;
	border-radius: 20px;
		
}

.email_txt
{
	/* background-color: green; */

	color: gold; 
	text-decoration:none; 
	
	letter-spacing: 5px;
		
}

.logo_txt
{
/*	background-color: red; */

	color: white; 
	text-decoration:none; 
	
	letter-spacing: 5px;
		
}

#gframe_0
{
	background-color: gold;
	width: 100%;
	height: 760px;
	
	
	display: flex;
	flex-direction: column;
	justify-content: center; 
	align-items: center;

}

.x_zoom
{
	background-color: dimgray;
	position: absolute;
	border-radius: 2px;
	width: 20px;
	height: 20px;
	right: 5px;
	bottom: 25px;
	z-index: 2;
	opacity: 0;
	transition: all 1.5s ease-in-out;
} 

.x_zoom img
{
	
	width: 100%;
	height: 100%;
	
}

.x_movie
{
	background-color: dimgray;
	position: absolute;
	border-radius: 2px;
	width: 20px;
	height: 20px;
	right: 5px;
	bottom: 47px;
	z-index: 2;
	opacity: 0;
	transition: all 1.5s ease-in-out;
}

.x_movie img
{
	
	width: 100%;
	height: 100%;
	
}

.x_yt
{
	/* background-color: pink; */
	position: absolute;
	border-radius: 5px;
	width: 100px;
	height: 100px;
	right: 10px;
	top: 10px;
	z-index: 2;
	/* opacity: 1; */
	transition: all 1.5s ease-in-out;
}

.x_yt img
{
	
	width: 100%;
	height: 100%;
	transition: all 1.0s ease-in-out;
	cursor: pointer;
	
}

.x_yt:hover img
{
	transform: scale(1.2);
	/* opacity: 1;
	z-index: 1; */
}