body {
    margin: 0;
    height: 100%;
    width: 100%;
    padding: 0;
	background: #0e0e0e;
	background-size: cover;
	font-family: 'Roboto', sans-serif; 
}

section {
    display: block;
	height: 100vh;
    width: 99vw;
    padding: 120px;
    padding-left: 186px;
    padding-right: 186px;
    box-sizing: border-box;
}

.wrapper {
	margin: 0 auto;
}

.header { text-align: center; margin: 20px;}

.active {
	color: #299bdc !important;
	text-decoration: underline !important;
}

.content { 
	max-width: 1024px;
}

.itch_widget { margin-top: 13px; }
.copyright { text-align: center; color: #7b7b78; font-size: 12px; margin-top: 20px; margin-bottom: 20px; }
.copyright p { margin-bottom: 24px; }

.social_media { text-align: center; margin-top: 20px; float: right;}
.copyright img:hover, .social_media img:hover {
    opacity: 0.8;
}

.responsive_image {
    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
}

.video {
  	max-width: 100%;
    height: auto;
}

a:link, a:visited {
	color: #4682c1;
}

a:hover {
	color: #2d639d;
}

.text_center {
	text-align: center;
}

.logo { 
	margin-top: 0.41em;
	margin-left: 2.7em;
	margin-right: 0.400em;
	width: 247px; 
}

.active_page {
	color: #8cafd4 !important;
}

.single-box {
	text-align: justify;
    background: rgba(0, 0, 0, 0.3);
	padding: 8px;
	margin-top: 2%;
    color: #fff;
    font-size: 0.9em;
	font-family: 'Roboto', sans-serif;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.single-section {
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

#cookie-info-box {
	position: fixed; 
	z-index: 2; 
	background: rgba(0, 0, 0, 0.8); 
	height: 81px;
	width: 100%; 
	bottom: 0px; 
	color: #FFF; 
	display: none;
}

#cookie-info-box p {
	text-align: center
}

#cookie-info-box p button {
	margin-top: 10px
}

/* navbar */
.navbar {
	position: fixed;
    background: rgba(0, 0, 0, 0.8);
    height: 81px;
    display: inline-block;
	width: 100%;
	z-index: 2;

	list-style: none;
	font-size: 26px;
}

.navbar a.menu {
	color: #fff;
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	display: block;
	float: left;
	padding-top: 1.00em;
	padding-left: 0.400em;
	padding-right: 0.400em;
}

.navbar .nav_logo {
	display: block;
	float: left;
	z-index: 4;
}

.navbar .icons {
	padding-top: 1.00em;
	padding-right: 0.5em;
	float: right !important;
}

.navbar a:hover {
	color: #8cafd4;
}

.navbar .icon {
	display: none;
}

.navbar .customMenu {
	display: none;
	color: #fff;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    float: left;
	padding-top: 0.80em;
    padding-left: 0.400em;
    padding-right: 0.400em;
}


/* About */
.section-about {
	background: url('/images/backgrounds/background.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.about-single-box {
	background: url('/images/backgrounds/description_background.png');
	background-repeat: no-repeat;
	background-size: 100%;
    padding: 8px;
    color: #fff;
	font-family: 'Oswald', sans-serif;
}

.about-single-box p {
	font-size: 1.59em;
	padding: 3.5em 3em 6em 5em;
	text-align: center;
}

.about-single-box p b {
	font-size: 1.2em;
	font-family: 'Luckiest Guy', cursive;
	color: #ffd060;
	font-weight: initial;
}

.janusz {
	float: right;
	margin-right: -2em;
	position: absolute;
    bottom: 0px;
    right: 2%;
}

.janusz img {
	width: 89%;
}

/* Gallery */
.section-gallery {
	background: #191919;
	background-repeat: no-repeat;
	background-size: cover;
	display: grid;
    align-items: center;
}

.grid { 
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	grid-gap: 20px;
	align-items: stretch;
}

.grid img {
	border: 1px solid #ccc;
	box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3);
	max-width: 100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 70vw;
	height: auto;
	
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.modal-content {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.navbar .links .logo {
	display: none;
}

/* responsive - height  */

@media screen and (min-width: 2560px) {
	.about-single-box {
		margin-right: 60em;
		margin-top: 15em;
	}

	.about-single-box p {
		padding: 5em 4em 7em 6em;
	}
}

@media screen and (max-width: 2257px) {
	.about-single-box {
		margin-right: 45em;
	}

	.about-single-box p {
		padding: 5em 4em 7em 6em;
	}
}

@media screen and (max-width: 2141px) {
	.about-single-box {
		margin-top: 11em;
		margin-right: 43em;
	}

	.about-single-box p {
		padding: 4em 4em 7em 6em;
	}
}

@media screen and (max-width: 1970px) {
	.about-single-box p {
		padding: 4em 4em 9em 6em;
	}
}

@media screen and (max-width: 1930px) {
	.about-single-box {
		margin-top: 10em;
		margin-right: 37em;
		margin-left: -5em;
	}

	.janusz {
		margin-right: -2em;
	}

	.janusz img {
		margin-top: 4em;
		width: 89%;
	}
}

@media screen and (max-width: 1881px) {
	.about-single-box {
		margin-right: 32em;
		margin-left: -7em;
	}

	.about-single-box p {
		padding: 4em 4em 6em 6em;
	}

	.single-section {
		height: auto;
	}
}

@media screen and (max-width: 1876px) {

	.about-single-box p {
		padding: 3em 4em 8em 6em;
	}
}

@media screen and (max-width: 1772px) {

	.about-single-box p {
		padding: 3em 4em 8em 6em;
	}
}

@media screen and (max-width: 1724px) {
	.about-single-box p {
		font-size: 1.49em;
	}
}

@media screen and (max-width: 1681px) {
	.about-single-box p {
		padding: 1.5em 4em 8em 6em;
	}
}

@media screen and (max-width: 1628px) {
	.section-about {
		height: 100vh;
	}

	.about-single-box {
		margin-right: 25em;
		margin-left: -6em;
		font-size: 1.2em;
	}

	.about-single-box p {
		font-size: 1.1em;
		padding: 3.5em 4em 8em 6em;
	}

	.janusz img {
		width: 87%;
	}

	section {
		height: auto;
	}
}

@media screen and (max-width: 1595px) {
	.about-single-box {
		margin-right: 21em;
	}

	.about-single-box p {
		font-size: 1em;
		padding: 6% 4em 12em 6em;
	}
}

@media screen and (max-width: 1385px) {
	.section-about {
		height: 100vh;
	}
	.janusz {
		display: none;
	}

	#cookie-info-box {
		height: 100px;
	}

	.about-single-box {
		margin-left: -2em;
	}

	.section-about {
		padding-left: 100px;
		padding-right: 100px;
	}

	.single-section {
		padding-left: 100px;
		padding-right: 100px;
	}
}

@media screen and (max-width: 1297px) {
	.about-single-box p {
		padding: 4% 4em 7em 6em;
	}
}

@media screen and (max-width: 1268px) {
	.about-single-box {
		margin-right: 19em;
	}

	.about-single-box p {
		font-size: 0.9em;
		padding: 3% 3em 7em 5em;
	}
}

@media screen and (max-width: 1141px) {
	.about-single-box {
		margin-left: -2em;
		margin-right: 2em;
	}

	.about-single-box p {
		font-size: 0.9em;
		padding: 15% 5em 13em 8em;
	}

	.logo {
		margin-top: 0.51em;
		margin-left: 0.7em;
		margin-right: 0.400em;
		width: 153px;
		transition: ease-in-out 0.3s, visibility 0s;
	}

	.navbar .logo {
		display: block;
	}

	.navbar .links .logo {
		display: block;
		visibility: hidden;
	}

	.navbar {transition: all 0.2s ease-in-out 0s, visibility 0s linear 0.2s, z-index 0s linear 0.01s;}
	.navbar a:not(:first-child) {display: none;}
	.navbar a.customIcon {display: none;}
	.navbar .icons a:not(:first-child) {display: none;}
	.navbar .links {visibility: hidden;transition: ease-in 0.3s, visibility 0s;}
	.navbar a.icon {
	  float: right!important;
	  display: block;
	  padding-right: 2.4em;
	  transition: all 0s, height 0s;
	}
  }
  
  @media screen and (max-width: 1141px) {
	.navbar {
		height: 56px;
	}

	.navbar .icons {
		padding-top: 0.50em;
	}

	.navbar a.icon {
		padding-right: 1.4em;
	}

	.navbar.responsive {
		position: fixed;
		height: 510px;
	}

	.navbar.responsive .icon {
	  position: absolute;
	  right: 0;
	  top: 0.51em;
	}

	.navbar.responsive .icons a:not(.customIcon) {
	  float: none;
	  display: block;
	  text-align: left;
	}

	.navbar.responsive .logo {
		display: none;
	}

	.navbar.responsive .links .logo {
		visibility: visible;
		display: block;
		float: left;
	}

	.navbar.responsive a {
		float: none;
		display: block;
		text-align: left;
	}

	.navbar.responsive .links {
		visibility: visible;
	}

	.nav_first {
		padding-top: 108px !important;
	}
  }

@media screen and (max-width: 1048px) {
	.about-single-box p {
		padding: 11% 5em 13em 8em;
	}

	.section-about {
		padding-left: 90px;
		padding-right: 90px;
	}

	.single-section {
		padding-left: 90px;
		padding-right: 90px;
	}
}

@media screen and (max-width: 975px) {
	.about-single-box {
		margin-left: -2em;
		margin-right: 2em;
	}

	.about-single-box p {
		font-size: 0.9em;
		padding: 11% 3em 7em 5em;
	}

	.section-about {
		padding-left: 80px;
		padding-right: 80px;
	}

	.single-section {
		padding-left: 80px;
		padding-right: 80px;
	}

	.section-gallery {
		padding-left: 80px;
		padding-right: 80px;
	}
} 

@media screen and (max-width: 879px) {
	.about-single-box p {
		font-size: 0.8em;
		padding: 10% 3em 7em 5em;
	}
}

@media screen and (max-width: 768px) {
	.modal-content {
        height: auto;
	}

	.navbar.responsive {
		position: fixed;
		height: auto;
	}

	#cookie-info-box {
		height: 120px;
	}
} 

@media screen and (max-width: 726px) {

	.about-single-box {
		margin-left: -4em;
		margin-right: -1em;
	}

	.about-single-box p {
		font-size: 0.8em;
		padding: 8% 3em 7em 5em;
	}
} 

@media screen and (max-width: 646px) {
	.section-about {
		padding-left: 60px;
		padding-right: 60px;
	}

	.single-section {
		padding-left: 60px;
		padding-right: 60px;
	}

	.about-single-box p {
		padding: 6% 3em 7em 5em;
	}
} 

@media screen and (max-width: 565px) {
	#cookie-info-box {
		height: 140px;
	}

	.about-single-box {
		margin-left: -3em;
		margin-right: -2em;
	}

	.about-single-box p {
		font-size: 0.7em;
		padding: 6% 3em 7em 5em;
	}

	.single-box {
		font-size: 0.6em;
	}

	.section-about {
		padding-left: 50px;
		padding-right: 50px;
	}

	.single-section {
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media screen and (max-width: 497px) {
	.navbar {
		height: 56px;
	}
	.navbar .icons {
		padding-top: 0.50em;
	}
	.navbar a.icon {
		margin-top: 0;
	}

	.logo {
		margin-top: 0.51em;
		margin-left: 0.7em;
		margin-right: 0.400em;
		width: 153px;
	}

	.section-about {
		padding-left: 40px;
		padding-right: 40px;
	}

	.single-section {
		padding-left: 40px;
		padding-right: 40px;
	}

	.section-gallery {
		padding-left: 50px;
		padding-right: 40px;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}

	.grid img {
		max-width: 90%;
	}

	.about-single-box p {
		padding: 5% 3em 7em 5em;
	}
} 

@media screen and (max-width: 463px) {
	.about-single-box {
		margin-top: -0.5em;
	}

	.section-about {
		padding-left: 20px;
		padding-right: 20px;
	}

	.single-section {
		padding-left: 20px;
		padding-right: 20px;
	}

	.grid img {
		max-width: 80%;
	}
}

@media screen and (max-width: 420px) {
	.navbar a.icon {
		margin-top: -3.5em;
	}

	.navbar.responsive .icon {
		top: 4.00em;
	}

	.about-single-box p {
		padding: 2% 3em 7em 5em;
	}
}

@media screen and (max-width: 395px) {
	.about-single-box {
		margin-top: -0.5em;
	}

	.section-about {
		padding-left: 10px;
		padding-right: 10px;
	}

	.single-section {
		padding-left: 10px;
		padding-right: 10px;
	}

	.grid img {
		max-width: 65%;
	}
}

/* responsive - height */
@media screen and (max-height: 876px) {
	.janusz {
		display: None;
	}

	.section-about {
		height: auto;
	}

	.section-gallery {
		height: auto;
	}
}

@media screen and (max-height: 749px) {
	.about-single-box {
		margin-top: -1.5em;
	}

	.modal-content {
		margin-top: auto;
		margin-bottom: auto;
	}
}
