html{
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
}

body{
	margin: 0;
	padding: 0;
	font-family: 'Roboto Condensed', sans-serif;
	background: #f2f2f2;
	min-width: 300px;
	width: 100%;
	max-width: 3000px;
}

/* SVG ICON */
.svg-icon{
  fill: #0f5bff;
}
/* /SVG ICON */

/* NAV */
#mediumUpperLogo{
	display: none;
	text-align: center;
}

#mediumUpperLogo img{
	width: 9em;
}

#mediumUpperLogo{
	display: none;
	text-align: center;
}

#mediumUpperLogo img{
	width: 9em;
}

nav{
	display: flex;
	justify-content: center;
	align-content: center;
	margin-bottom: 5px;
	font-size: 15px;
	margin-right: 10px;
	margin-left: 10px;
}

nav a{
	text-decoration: none;
	text-align: center;
	color: #48678c;
}

nav img{
	width: 9em;
	min-width: 8em;
	object-fit: contain;
	padding-right: 20px;
}

#smallLogo{
	display: none;
	min-width: 2.5em;
	width: 3em;
}

#mediumLogo{
	display: block;
}

nav .svg-icon{
	width: 2.5em;
	grid-column: 1;
	padding-top: 1px;
}

#ksiegowoscSvg{
	margin-right: 8px;
	padding-top: 5px;
	width: 2.2em;
}

.nav-div{
	display: flex;
	padding: 10px;
	position: relative;
	transition: 0.3s;
	overflow: hidden;
	z-index: 1;
}

.nav-div::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 0%;
	bottom: 0;
	left: 0;
	background: #0f5bff;
	transition: 0.2s;
	z-index: -1;
	border-radius: 65% 65% 0 0;
}
.nav-div:hover::before{
	height: 180%;
}
.nav-div:hover{
	color: #f0f3f5;
}

.nav-div:active{
	box-shadow: 0px 0px 17px 1px #0f5bff;
}

.navUnderline{
	position: relative;
	display: block;
	background: #0f5bff;
	bottom: 0;
	border-radius: 5px;
	width: 100%;
	height: 3px;
}

#audytSvg{
	padding-top: 0px;
}

@media (max-width: 1100px), (max-device-width: 1100px){
	#smallLogo{
		display: block;
	}
	#mediumLogo{
		display: none;
	}
}

@media (max-width: 965px), (max-device-width: 965px){
	nav h4{
		display: none;
	}
	#ksiegowoscSvg{
		margin-right: 0;
	}
}

@media (max-width: 430px), (max-device-width: 430px){
	#smallLogo{
		display: none;
	}

	.navDiv{
		padding-left: 0;
		padding-right: 0;
	}
	nav .svg-icon{
		width: 1.8em;
	}
	#ksiegowoscSvg{
		width: 1.5em;
		margin-right: 0;
	}
	#mediumUpperLogo{
		display: block;
	}
}

/* /NAV */


/* HEADER */

header{
	min-width: 100%;
	max-width: 100%;
	text-align: center;
	background-size: cover;
	background-position: center;
	padding-top: 100px;
	padding-bottom: 100px;
	margin-bottom: 20px;
	box-shadow: 0px 8px 12px 1px rgba(171,184,204,1), 0px -3px 12px 1px rgba(171,184,204,1);
}

header svg{
	width: max(8em, 16%);
}

header h1{
	color: #f2f2f2;
	margin-left: auto;
    margin-right: auto;
    font-size: max(35px, 4vw);
}

header h2{
	color: #f2f2f2;
	font-size:  max(20px, 3vw);
}

#bigAudytSvg{
	padding-left: 16px;
}

/* /HEADER */



/* CONTENT DIV */

.bigContentDiv{
	display: flex;
	justify-content: center;
	align-content: center;
}

.contentDiv{
	text-align: center;
	padding: 30px;
	padding-top: 10px;
	margin: 5px;
	margin-top: 30px;
	margin-bottom: 30px;
	width: min(85%, 950px);
	min-width: 300px;
	border-radius: 8px;
	box-shadow: 0px 4px 13px 1px rgba(171,184,204,1);
	font-size: max(15px, 1.3vw);
}

.contentDiv h2{
	font-size: max(20px, 2.5vw);
}

.contentDiv ul{
	text-align: left;
}

.contentDiv li{
	margin: 5px 5px 0 10px;
	color: #424242;
}

.contentDiv img{
	width: max(70%, 300px);
	margin-bottom: 20px;
}

.contentDiv a{
	text-decoration: none;
}

#ksiegowoscDiv p{
	text-align: left;
}

.zobacz-wiecej{
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
	color: #0f5bff;
	background: none;
	border: 3px solid #0f5bff;
	border-radius: 5px;
	background-position: left;
	position: relative;
	transition: 0.3s;
	overflow: hidden;
	z-index: 1;
}

.zobacz-wiecej::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 0%;
	top: 0;
	left: 0;
	background: #0f5bff;
	transition: 0.2s;
	z-index: -1;
	border-radius: 0 0 65% 65%;
}
.zobacz-wiecej:hover::before{
	height: 180%;
}
.zobacz-wiecej:hover{
	color: #f0f3f5;
}

.zobacz-wiecej:active{
	box-shadow: 0px 0px 17px 1px #0f5bff;
}

/* /CONTENT DIV */



/* POPUP DIV */
.popupHeading:hover{
	text-decoration: underline;
}

.popupContent{
	text-align: left;
}

.popupExpanded{
	animation: popupExtend 0.1s ease-in-out;
	animation-fill-mode: forwards;
}

.popupHidden{
	display: none;
}


@keyframes popupExtend{
	0% {
	transform: translateY(-10%);
    opacity: 0;
	}
	100% {
	transform: translateY(0);
	opacity: 1;
}
/* /POPUP DIV */

#map {
	height: 400px;
	width: 400px;
}
