:root{
	--black: #001919;
	--white: #F0FAFA;
	--light-blue: #25B4DB;
/*	--dark-blue: #006DC0;*/
	--dark-blue: #0A8CC0;
}

html{
	width: 100%;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

body{
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--white);
}

.menu{
	position: fixed;
	z-index: 5;
	background-color: rgba(255,255,255,1.00);
	width: 100%;
	border-radius: 0px 0px 5px 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

.menu img{
	height: 80px;
	margin: 0px 10px;
}

.logo-scale{
	transform: scale(1.4);
}

.menu ul{
	list-style: none;
	display: flex;
	flex-direction: row;
	margin-right: 10px;
}

.menu ul li{
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu ul li a{
	padding: 7px;
	background-color: #5992cf; /* var(--black), #3b3be3 */
	margin: 0px 5px;
	border-radius: 5px;
	text-align: center;
}

.menu ul li a{
	text-decoration: none;
	color: rgba(240,240,240,1.00);
}

.menu-content{
	width: 100%;
	max-width: 1500px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.budynek{
	height: 90vh;
	object-fit: contain;
}

.glowna{
	width: 80%;
	max-width: 1500px;
	justify-content: center;
	align-items: center;
/*	border-style: solid*/
}

.glowna img{
	width: 100%;
}

.specjalisci{
	margin-top: 20px;
	width: 80%;
	max-width: 1500px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content: space-around;
}

.specjalisci div{
	margin: 5px;
}

.specjalisci div img{
	width: 300px;
}

.mapa{
	margin-top: 20px;
	width: 80%;
	max-width: 1500px;
	height: 70vh;
}

.mapa iframe{
	width: 100%;
	height: 100%;
}

a.anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}

/*podstrona*/

.col2{
	width: 100px;
	text-align: center;
}

.collapsible{
	border: none;
	background: none;
	font-weight: bold;
	cursor: pointer
}
			
.content{
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.2s ease-out;
}
			
.r1{
	background: var(--light-blue);
}

.r2{
	background: var(--dark-blue);
}

.cennik p{
	margin: 5px 10px;
	font-size: 17px;
}

.sekcja{
	font-weight: bold;
	font-size: 20px;
}

h1{
	font-size: 35px;
}

h2{
	font-size: 25px;
}

.opis{
	font-size: 20px;
}

.galeria-box{
	padding-top: 15px;
}

.kontakt{
	padding-top: 15px;
}

.galeria img{
	width: 400px;
	margin: 5px;
}

.flex{
	display: flex;
}

.flex-column{
	flex-direction: column;
}

.flex-wrap{
	flex-wrap: wrap; 
}

.portret{
	object-fit: contain;
	width: 300px;
	margin: 15px;
}

.kontakt a{
	text-decoration: none;
	color: var(--dark-blue)
}

.container{
	width: 95%;
	max-width: 1500px;
}

.opis{
	display: flex;
}

.opis-mobile{
	display: none;
}

.opis-mobile a{
	color: var(--dark-blue);
}

.flex-wrap{
	flex-wrap: wrap;
}

.menu-content-mobile{
	width: 100%;
	display: none;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	position: relative;
}

.menu-content-mobile a {
  color: white;
  padding: 18px 20px;
  text-decoration: none;
  font-size: 25px;
}

.menu-content-mobile a.icon {
	background: var(--black);
}

/*
.active {
	background-color: #04AA6D;
	color: white;
}
*/

#links{
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 80px;
	width: 100%;
}

#links a{
	text-decoration: none;
	color: var(--black);
	width: 100%;
	padding: 5px;
	border-style: solid;
	border-color: var(--black);
	border-width: 1px;
	text-align: center;
	background: rgba(255,255,255,1.00);
}

@media only screen and (max-width: 768px){
	.container{
		flex-direction: column;
	}
	
	.full-menu{
		display: none;
	}
	
	.flex{
		align-items: center;
	}
	
	.galeria{
		flex-direction: column;
	}
	.opis{
		display: none;
	}

	.opis-mobile{
		display: flex;
	}
	
	.menu-content{
		display: none;
	}
	
	.menu-content-mobile{
		display: flex;
	}
	
	.budynek{
		height: auto;
	}
}