html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

.clear {
	clear: both;
}

/*--- RESET END ---*/

@font-face {
	font-family:'FontAwesome';
	src: url(../fonts/fa-solid-900.ttf);
}

body {
    font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
    /*font-family: 'Raleway', sans-serif;*/
    font-size: 17px;
}

p {
	margin-bottom: 30px;
}

strong {
	font-weight: bold;
}

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn ease-in 1;  /* call our key frame named fadeIn, use animation ease-in and repeat it only 1 time */
	-moz-animation:fadeIn cubic-bezier(0.42, 0, 0.58, 1) 1;
	-o-animation:fadeIn cubic-bezier(0.42, 0, 0.58, 1) 1;
	animation:fadeIn cubic-bezier(0.42, 0, 0.58, 1) 1;

	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last key frame value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	-o-animation-duration:1s;
	animation-duration:1s;
	
	-webkit-animation-delay: 0.7s;
	-moz-animation-delay: 0.7s;
	-o-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

/*--- FINOM GORGETES ---*/

html {
	scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

/*--- NAVIGATION ---*/

#title {
	width: auto;
	float: left;
	padding: 13px;
	margin-left: 30px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
}

#title h1, h2 {
	color: rgba(255, 255, 255, 1);
}

#title h1 {
	font-family: 'Raleway';
	font-size: 30px;
	text-transform: uppercase;
	letter-spacing: 0px;
	font-weight: bold;
}

#title h2 {
	font-family: 'Raleway';
	font-size: 19px;
	letter-spacing: 12px;
	font-weight: 100;
}

#nav-bar {
	width: 100%;
	min-height: 75px;
	background-color: rgba(0, 0, 0, 0.3);
	position: fixed;
	z-index: 6666;
}

nav {
	float: right;
	padding: 30px;
}

nav a {
	width: 100%;
	color: rgba(255, 255, 255, 1);
	text-transform: uppercase;
	font-size: 15px;
	padding-right: 30px;
	text-decoration: none;
	font-weight: bold;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
}

.topnav {
  overflow: hidden;
}

.topnav .icon {
  display: none;
  width: auto;
  padding: 0px;
  position: absolute;
  right: 120px;
}


@media screen and (max-width: 970px) {
  .topnav a:not(:last-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
    margin-right:0px;
  }
}

@media screen and (max-width: 970px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 120px;
    top: 30px;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: right;
    padding-bottom: 15px;
  }
}

/*--- Header ---*/

header {
	width: 100%;
	min-height: 960px;
	height: auto;
}

#header-slideshow {
	clear: both;
}

@media screen and (max-width: 600px) {
  header {
	  min-height: 300px;
  }
}

/*--- GALLERY-CAT ---*/

.gallery-cat-box {
	width: 150px;
	height: 150px;
	float: left;
	margin: 3px;
}

.gallery-cat-box img {
	width: 150px;
	height: 150px;
}

.caption-style {
	list-style-type: none;
	padding: 0px;
}

.caption-style div.p {
	float: left;
	padding: 0px;
	position: relative;
	overflow: hidden;
}

.caption-style div.p:hover .caption {
	opacity: 1;
}

.caption-style div.p:hover img {
	opacity: 1;
	transform: scale(1.15,1.15);
	-webkit-transform:scale(1.15,1.15);
	-moz-transform:scale(1.15,1.15);
	-ms-transform:scale(1.15,1.15);
	-o-transform:scale(1.15,1.15);
}


.caption-style img {
	margin: 0px;
	padding: 0px;
	float: left;
	z-index: 4;
}


.caption-style .caption {
	cursor: pointer;
	position: absolute;
	opacity: 0;
	-webkit-transition:all 0.45s ease-in-out;
	-moz-transition:all 0.45s ease-in-out;
	-o-transition:all 0.45s ease-in-out;
	-ms-transition:all 0.45s ease-in-out;
	transition:all 0.45s ease-in-out;
}

.caption-style img {
	-webkit-transition:all 0.25s ease-in-out;
	-moz-transition:all 0.25s ease-in-out;
	-o-transition:all 0.25s ease-in-out;
	-ms-transition:all 0.25s ease-in-out;
	transition:all 0.25s ease-in-out;
	filter: grayscale(0);
	opacity: 1;
}

.caption-style:hover img {
	filter: grayscale(100%);
	opacity: 1;
}

.caption-style .blur {
	background-color: rgba(0,0,0,0.2);
	width: 150px;
	height: 150px;
	z-index: 5;
	position: absolute;
}

.caption-style .caption-text h4 {
	text-transform: uppercase;
	font-size: 24px;
	font-family: 'Raleway';
	font-weight: 200;
}

.caption-text h4.kisebb {
	font-size: 18px;
}

.caption-style .caption-text {
	z-index: 10;
	color: #fff;
	position: absolute;
	width: 150px;
	height: 150px;
	text-align: center;
	top:100px;
}

@media screen and (max-width: 970px) {
	.gallery-cat-box {
		margin: 7px;
		width: 180px;
		height: 180px;
	}
	.gallery-cat-box img  {
		width: 140px;
		height: 140px;
	}
	.caption-style {
		width: 140px !important;
		height: 140px !important;
	}
	.blur {
		width: 140px !important;
		height: 140px !important;
	}
	.caption-text {
		width: 140px !important;
		height: 140px !important;
	}
}

/*--- ABOUT ---*/

section {
	margin: 0 auto;
	max-width: 946px;
	height: auto;
	padding-top: 100px;
	padding-left: 40px;
	padding-right: 40px;
}

div#profile-pic {
	width: 250px;
	height: 375px;
	position: relative;
	float: left;
	margin: 6px 25px 15px 0px;
}

div#profile-pic img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

section h3 {
	font-size: 30px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 20px;
}

section p {
	line-height: 27px;
}

/*--- A KÃ–NYVRÅL ---*/

.about-book {
	font-size: 16px;
	margin-bottom: 0px;
}

ul.about-book {
    list-style-type: disc;
    margin-left: 40px;
}

ul.about-book li {
    padding: 5px;
}

div#book-pic {
	width: 50%;
	height: auto;
	float: left;
	margin: 0px 30px 50px 0px;
}

div#book-pic img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	float: left;
}

div#book-pages {
	width: auto;
}
	
div#book-pages ul li {
	width: 210px;
	height: 83px;
	float: left;
	margin: 4px 5px;
	box-shadow: 3px 2px 4px 1px #9e8b8b;
}

div#book-pages ul li img {
	width: 210px;
	height: 83px;
	float: left;
}

/*--- TABLAZAT ---*/

div#shipping {
	width: 75%;
	height: auto;
	margin: 30px auto 50px auto;
}

div#shipping table {
	width: 100%;
	height: auto;
}

div#shipping table, th, td {
	padding: 7px;
	border: 1px solid #e2dbdb;
	vertical-align: middle;
}

div#shipping table caption {
	margin-bottom: 10px;
	font-weight: bold;
}

div#shipping table th {
	font-weight: bold;
}

.t-right {
	text-align: right;
}

/*--- POPUP ---*/

.button {
	text-decoration: none;
	font-weight: bold;
	color: #000;
	cursor: pointer;
	transition: all 0.3s ease-out;
}

.button::before {
	font-family: 'FontAwesome';
	content: "\F05A  ";
}

.button:hover {
	text-shadow: 0px 0px 3px rgb(49, 39, 39);
	color: #fff;
}

.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
}
.overlay:target {
	visibility: visible;
	opacity: 1;
}

.popup {
	margin: 70px auto;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	width: 30%;
	position: relative;
	top:  30%;
	transition: all 5s ease-in-out;
}

.popup h2 {
	margin-top: 0;
	color: #333;
	font-size: 15px;
	font-weight: bold;
}

.popup .close {
	position: absolute;
	top: 10px;
	right: 10px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}
.popup .close:hover {
	color: #000;
}
.popup .popup-content {
	min-height: 150px;
	overflow: auto;
	font-size: 13px;
}

div.popup-content ul {
	list-style-type: disc;
	margin-top: 15px;
	margin-left: 40px;
}

div.popup-content ul li {
	padding: 5px;
	line-height: 1.5em;
}


@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}

/*--- ASZF ---*/

div#aszf {
	width: 85%;
	height: 30px;
	margin: 0 auto;
}

div#aszf ul {
	width: 100%;
	text-align: center;
}

div#aszf ul li {
	float: left;
	margin-right: 30px;
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
	font-size: 16px;
}

div#aszf ul li a {
	color: #ccc;
}
/*--- NAT GEO ---*/

article {
	margin-bottom: 50px;
}

article h1 {
	font-weight: bold;
	margin-bottom: 20px;
}

article blockquote {
	background-image: url(../img/cita-symbol.png), url(../img/cita-symbol.png);
	background-position: left bottom, right top; 
	background-repeat: no-repeat;
	background-size: 50px;
	font-family: serif;
	max-width: 750px;
	padding: 0 30px 15px 40px;
	margin: 0 auto;
	font-style: italic;
	line-height: 21px;
}

article blockquote span a {
	font-family: 'Raleway', sans-serif;
	font-style: normal;
	font-size: 14px;
	font-weight: bold;
	color: rgb(0, 60, 255);
	text-decoration: none;
}

span.videos a {
	font-family: 'Raleway', sans-serif;
	font-style: normal;
	font-size: 14px;
	font-weight: bold;
	color: rgb(0, 60, 255);
	text-decoration: none;
	margin-bottom: 20px;
}

article iframe {
	width: 100%;
	height: 580px;
}

div.teaser {
	margin: 20px auto;
	width: 300px;
}

div.teaser img {
	width: 100%;
	box-shadow: 0 0 20px 0px black;
}

/*--- CONTACT ---*/

div#contact {
	width: 100%;
	min-height: 300px;
	background-color: rgb(60, 56, 56);
	margin-top: 70px;
}

section#contact-in {
	padding: 30px 0px 30px 0px;
	color: rgba(255, 255, 255, .75);
}

section#contact-in h4 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

section#contact-in h5 {
	font-size: 17px;
	font-weight: bold;
	margin-bottom: 5px;
}


section#contact-in p {
	font-size: 13px;
	margin-bottom: 0px;
}

section#contact-in p span {
	font-weight: bold;
}

div.bal, .kozep, .jobb {
    width: 300px;
    float: left;
    padding-right: 15px;
    margin-bottom: 20px;
}

.e-mail:before {
	font-family: 'FontAwesome';
	font-size: 14px;
    content: "\f0e0  ";
}

.cim:before {
	font-family: 'FontAwesome';
	font-size: 14px;
    content: "\f015  ";
}

.phone:before {
	font-family: 'FontAwesome';
	font-size: 14px;
    content: "\f879  ";
}

.skype:before {
	font-family: 'FontAwesome';
	font-size: 14px;
    content: "\f4ad  ";
}

.web-cim:before {
	font-family: 'FontAwesome';
	font-size: 14px;
    content: "\f108  ";
}

/*--- FOOTER ---*/

footer {
	width: 100%;
	height: 60px;
	background-color: rgb(49, 39, 39);
}

footer div {
	max-width: 946px;
	margin: 0 auto;
	font-size: 13px;
	color: rgba(255, 255, 255, 1);
}

footer div p {
	padding-top: 22px;
	font-size: 12px;
}

p.footer-column { 
	float: left;
}

p.footer-column span { 
	font-weight: bold;
}

p.left {
	width: 30%;
}

p.middle {
	width: 40%;
	text-align: center;
}

p.right {
	width: 30%;
	text-align: right;
}

p.right a {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
	border-bottom: 1px dotted #fff;
}

p.right a:hover {
	color: rgb(255 90 0);
	text-decoration: none;
	text-shadow: 0px 0px 10px #fff000;
	-webkit-transition:all 0.5s ease-in-out;
	-moz-transition:all 0.5s ease-in-out;
	-o-transition:all 0.5s ease-in-out;
	-ms-transition:all 0.5s ease-in-out;
	transition:all 0.5s ease-in-out;
}

img.social {
	width: 150px;
	height: auto;
	margin-bottom: 20px;
	-webkit-transition:all 0.5s ease-in-out;
	-moz-transition:all 0.5s ease-in-out;
	-o-transition:all 0.5s ease-in-out;
	-ms-transition:all 0.5s ease-in-out;
	transition:all 0.5s ease-in-out;
	filter: grayscale(100%);

}

img.social:hover {
	filter: grayscale(0);
}

/*--- Gallery ---*/

section#gallery {
	width: auto;
	min-height: 730px;
	margin-bottom: 50px;
}

ul#gallery-in li {
	float: left;
	width: 150px;
	height: 150px;
	background-color: #ccc;
	margin: 3px;
}

@media screen and (max-width: 970px) {
  ul#gallery-in li {
		margin: 7px;
		width: 180px;
		height: 180px;
  }
}


ul#gallery-in li img {
	width: 150px;
	height: 150px;
	object-fit: cover;
	-webkit-transition:all 0.5s ease-in-out;
	-moz-transition:all 0.5s ease-in-out;
	-o-transition:all 0.5s ease-in-out;
	-ms-transition:all 0.5s ease-in-out;
	transition:all 0.5s ease-in-out;
	filter: grayscale(0%);
}

@media screen and (max-width: 600px) {
  ul#gallery-in li img {
		width: 180px;
		height: 180px;
  }
    .caption-text h4.kisebb {
        font-size: 16px !important;
    }
    .caption-text h4 {
    	font-size: 20px !important;
    }
    div#profile-pic {
		width: 150px;
		height: 250px;
	}
	div#shipping {
        width: 100%;
	}
	article iframe {
	width: 100%;
	height: 100%;
	}
}


ul#gallery-in li img:hover {
	filter: grayscale(100%)
}

ul#gallery-in {
    margin-left: 5px;
}

div.pager-column {
	width: 50%;
	float: left;
}

div.pager-column a {
	font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: bold;
    color: rgb(0, 60, 255);
    text-decoration: none;
}

.pager-right {
	text-align: right;
}

.pager100 {
	width: 100% !important;
}



