/* 
Theme Name: szablon-2
Author: budowaniestron.pl
 */

/* ----- reset all ----- */
* {
   padding:0;
   margin:0;
}
:root {
  --bg: #fff; /* biały */ 
  --bg2: #f3f3f3; /* jasno-szary */
  --bg3: #575757; /* ciemno-szary */
  --text: #000; /* czarny */
  --link: #6f6f6f; /* szary */
  --hover: #909090; /* jasniejszy szary */
  --main-font: "Nunito Sans", sans-serif;
  --header-font: "Nunito Sans", sans-serif;
  --header-height: 160px;
  --wrap-width: 1420px;
  --block-padding: 1em; /* odstępy wysokości bloków */
}
ul{list-style: none;}
@font-face {
      font-family: 'fontello';
      src: url('fonts/mlfont.eot?47843562');
      src: url('fonts/mlfont.eot?47843562#iefix') format('embedded-opentype'),
           url('fonts/mlfont.woff?47843562') format('woff'),
           url('fonts/mlfont.ttf?47843562') format('truetype'),
           url('fonts/mlfont.svg?47843562#fontello') format('svg');
      font-weight: normal;
      font-style: normal;
}
.font-icon {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
}


/* ----- general ----- */

html{height: 100%; min-width: 300px; }

body {
	font: 18px/28px  var(--main-font);
	font-weight: 400;
	background-color: var(--bg);
	color: var(--text);
}
@media (max-width: 1000px) {
	body {
		font-size: 18px;
		line-height: 24px;
	}
}
@media (max-width: 600px) {
	body {
		font-size: 16px;
		line-height: 22px;
	}
}

a {color: var(--link); text-decoration: none; transition: color .2s ease-in-out, background-color .2s ease-in-out;}
a:hover {color: var(--hover);}
a span {cursor: pointer;}

strong{font-weight: 700;}

h1{
	font: 700 2.11em/1.4em var(--header-font);
	margin-top: 0;
	margin-bottom: 0;
	color: var(--text);
	text-align: center;
	text-transform: uppercase;
}
h2{
	font: 800 1.8em/1.4em var(--header-font);
	margin-top: 1em;
	margin-bottom: .5em;
	color: var(--text1);
}
h3{
	font: 700 1.25em/1.4em var(--header-font);
	margin-top: 1em;
	margin-bottom: 0.3em;
}
h4{
	font: 700 1.1em/1.4em var(--header-font);
	margin-top: 1em;
	margin-bottom: 0.3em;
}
h2:first-child, h3:first-child, h4:first-child{
	margin-top: 0;
}
@media (max-width: 1000px) {
	h1{font-size: 2.2em;}
	h2{font-size: 1.9em;}
	h3{font-size: 1.2em;}
	h4{font-size: 1.07em;}
}
@media (max-width: 600px) {
	h1{font-size: 1.8em;}
	h2{font-size: 1.4em;}
	h3{font-size: 1.15em;}
	h4{font-size: 1.05em;}
}

img{border:0; max-width: 100%; height: auto;}
p{margin-bottom: 1em;}
blockquote{
	margin: 2em 0 2em 2em;
	padding-left: 2em;
	border-left: solid 5px #f19900;
}
@media (max-width: 600px) {
	blockquote{
		margin: 1em 0 1em 0;
		padding-left: 1em;
	}
}
@media (max-width: 480px) {
	blockquote{
		padding-left: .5em;
	}
}
.small{
	font-size: .8em; 
    line-height: 1.3em;
}
.image{
	margin-bottom: 1em;
}
#main .no-padding,
.is-root-container .no-padding{
	padding: 0;
}
h1.header{
	padding-bottom: .5em;
	margin-bottom: .8em;
	border-bottom: solid 3px #000;
}
h1.subheader,
h2.subheader,
h2.widget-title{
	font-size: 1em;
	font-weight: 800;
	text-transform: uppercase;
	padding-bottom: .3em;
	margin-bottom: .8em;
	border-bottom: solid 3px #000;
	text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

/* ----- gutenberg ----- */

.has-smaller-font-size{font-size: .7em !important; line-height: 1.4em;}
.has-small-font-size{font-size: .85em !important; line-height: 1.4em;}
.has-normal-font-size{font-size: inherit !important; }
.has-large-font-size{font-size: 1.2em !important; line-height: 1.4em;}

.pelna-wysokosc{ min-height: calc(100vh - var(--header-height));}



/* ----- lists ----- */

.wp-block-list,
.content ul, .content ol,
.text ul, .text ol{
	margin-bottom: 1em;
	padding-left: 1em; 
}
ol.wp-block-list,
.content ol,
.text ol{
	padding-left: 2em; 
}
.wp-block-list > li,
.content ul > li,
.text ul > li{
    margin-left: 1em;
	margin-bottom: 0.4em;
	text-align: left;
    list-style: none;
}
ul.wp-block-list > li:before,
.content ul > li:before,
.text ul > li:before{
    content: "\2022";
    color: var(--text2);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
ol.wp-block-list > li,
.content ol > li,
.text ol > li{
	margin-bottom: 0.4em;
	text-align: left;
}

/* ----- comin ----- */
.comin{
	opacity: 0;
	transition: opacity 1s ease-in-out, top 1s ease-in-out, bottom 1s ease-in-out;
	top: 15px;
	bottom: -15px;
	position:relative;
}
.comin.on-screen{
	opacity: 1;
	top: 0;
	bottom: 0;
}
.comin-left{
	transition: opacity 1s ease-in-out, right 1s ease-in-out, left 1s ease-in-out;
	right: 500px;
	left: -500px;
	top: 0;
	bottom: 0;
}
.comin-left.on-screen{
	right: 0;
	left: 0;
}
.comin-right{
	transition: opacity 1s ease-in-out, right 1s ease-in-out, left 1s ease-in-out;
	right: -500px;
	left: 500px;
	top: 0;
	bottom: 0;
}
.comin-right.on-screen{
	right: 0;
	left: 0;
}
.comin-2{
	transition-delay: .2s;
}
.comin-3{
	transition-delay: .4s;
}
.comin-4{
	transition-delay: .6s;
}
.comin-5{
	transition-delay: .8s;
}
@media (max-width: 900px){
	.comin-2,
	.comin-3,
	.comin-4,
	.comin-5{
		transition-delay: 0s;
	}
}

/* ----- image align ----- */
img.alignleft{
	float: left;
	margin: 0 2em 2em 0;
}
img.alignright{
	float: right;
	margin: 0 0 2em 2em;
}
img.aligncenter{
	margin: 0 auto 2em;
    display: block;
}
.wp-caption-text{
    font-size: .8em;
    line-height: 1.4em;
    color: #686868;
	margin-bottom: 0;
}
@media (max-width: 600px) {
	img.alignleft,
	img.alignright,
	img.aligncenter{
		float: none;
		display: block;
		margin: 0 auto 1.5em;
	}
}

/* ----- gallery ----- */

.ari-fancybox{
	opacity: 1;
	transition: opacity .2s ease-in-out;
}
.ari-fancybox:hover{
	opacity: .8;
}
.gallery br{
	display: none;
}
.content .gallery .ari-fancybox{
	margin: 0;
}
.gallery-columns-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	column-gap: .4em;
}
.gallery-columns-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
	column-gap: .4em;
}
.gallery-columns-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
	column-gap: .4em;
}
.gallery-item{
	margin-bottom: .4em;
}
.gallery img{
	display: block;
}

/* ----- cols ----- */

/* ----- cols ----- */

.cols-2{ display: grid; grid-template-columns: repeat(2, 1fr); }
.cols-3{ display: grid; grid-template-columns: repeat(3, 1fr); }
.cols-4{ display: grid; grid-template-columns: repeat(4, 1fr); }
.cols-5{ display: grid; grid-template-columns: repeat(5, 1fr); }
.cols-6{ display: grid; grid-template-columns: repeat(6, 1fr); }
.cols-7{ display: grid; grid-template-columns: repeat(7, 1fr); }
.cols-8{ display: grid; grid-template-columns: repeat(8, 1fr); }
.cols-9{ display: grid; grid-template-columns: repeat(9, 1fr); }
.cols-10{ display: grid; grid-template-columns: repeat(10, 1fr); }
.cols-11{ display: grid; grid-template-columns: repeat(11, 1fr); }
.cols-12{ display: grid; grid-template-columns: repeat(12, 1fr); }

.col-2{ grid-column: auto / span 2; }
.col-3{ grid-column: auto / span 3; }
.col-4{ grid-column: auto / span 4; }
.col-5{ grid-column: auto / span 5; }
.col-6{ grid-column: auto / span 6; }
.col-7{ grid-column: auto / span 7; }
.col-8{ grid-column: auto / span 8; }
.col-9{ grid-column: auto / span 9; }
.col-10{ grid-column: auto / span 10; }
.col-11{ grid-column: auto / span 11; }
.col-12{ grid-column: auto / span 12; }


.gap-0{gap: 0;}
.gap-mini{gap: .4em;}
.gap-1{gap: 1.8615em;}
.gap-2{gap: 4.111em;}
.gap-3{gap: 6em;}

.show-at-600{
	display: none;
}

.content-cols{
    align-items: center;
}

@media (max-width: 1300px) {
	.gap-2 > *{ column-gap: 2em; }
	.gap-3 > *{ column-gap: 4em; }
	.cols-6-at-1300{ grid-template-columns: repeat(6, 1fr); }
	.cols-3-at-1300{ grid-template-columns: repeat(3, 1fr); }
	.cols-2-at-1300{ grid-template-columns: repeat(2, 1fr); }
	.break-at-1300{ display: block; }
	.break-at-1300 > *{ margin-bottom: 1em; }
	.cols.break-at-1300 > *:last-child{ margin-bottom: 0; }
	.cols-4-at-1300 .col-12{ grid-column: auto / span 6; }
	.cols-6-at-1300 .col-12{ grid-column: auto / span 6; }
	.cols-6-at-1300 .col-4,
	.cols-6-at-1300 .col-6{ grid-column: auto / span 3; }
}

@media (max-width: 1100px) {
	.cols-2-at-1100{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
	.break-at-900{ display: block; }
	.cols-2-at-900{ grid-template-columns: repeat(2, 1fr); }
	.cols-1-at-900{ grid-template-columns: repeat(1, 1fr); }
	.break-at-900 > *{ margin-bottom: 1em; }
	.cols.break-at-900 > *:last-child{ margin-bottom: 0; }
	.gap-mini-at-900{gap: .4em;}
	.cols-1-at-900 .col-3,
	.cols-1-at-900 .col-4,
	.cols-1-at-900 .col-6,
	.cols-1-at-900 .col-12{ grid-column: auto / span 1; }
}
@media (max-width: 600px) {
	.show-at-600{ display: block; }
	.break-at-600{ display: block; }
	.break-at-600 > *{ margin-bottom: 1em; }
	.cols.break-at-600 > *:last-child{ margin-bottom: 0; }
}
@media (max-width: 400px) {
	.break-at-400{ grid-template-columns: repeat(1, 1fr); }
}

/* ----- form ----- */

.fluentform .ff-el-input--label{
	display: none;
}
input,
button,
textarea,
select{
	font: 1em/1.3em  var(--main-font);
}
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
textarea,
select{
    width: calc(100% - 2em);
    border: solid 1px var(--text);
	background-color: var(--bg);
    color: var(--text);
    padding: .5em 1em;
}
select{
   width: auto;
    padding: .4em .5em;
}

input[type=submit]:focus{
	outline: none;
}

/* ----- quote-block ----- */
.quote-block{
	height: 600px;
	overflow: hidden;
}
.quote-block > div{
	height: 100%;
    overflow: hidden;
	position: relative;
    background-size: cover;
    background-position: center;
}
.quote-block > div:after{
	content: "";
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(0,0,0, .0002);
}
#main .quote-block  .wrap {
    height: calc(100% - 7em);
    padding-top: 5em;
    padding-bottom: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
	color: #fff;
}
.quote-block h2,
.quote-block h3{
	color: #fff;
}
.quote-block h2{
}
.quote-block p{
	font-weight: 400;
	font-size: 1.2em;
	line-height: 1.3em;
	text-align: center;
}

/* ----- read-more ----- */

.wp-block-buttons{
	margin-top: 1.5em;
}
.wp-block-button__link,
.read-more > *,
.fluentform .ff-btn{
	padding: 1em 3em;
	font-size: 0.8em;
	transition: all .2s ease-in-out;
	color: var(--bg);
	text-transform: uppercase;
	background-color: var(--link);
	font-weight: 700;
}
.fluentform .ff-btn{
	background-color: var(--link) !important;
}
.wp-block-button__link:hover,
.read-more > *:hover,
.fluentform .ff-btn:hover{
	background-color: var(--text2);
	color: var(--bg);
}
.fluentform .ff-el-form-check-label .ff-el-form-check-input{
    font-size: 2.5em;
    width: .5em;
    height: .5em;
	margin-right: .5em;
	accent-color: var(--text2);
	cursor: pointer;
}


/* ----- bg-colors ----- */
.tlo-1{ /* błękit */
	background-color: var(--bg2);
    color: var(--bg);
}
.tlo-1 h1, .tlo-1 h2, .tlo-1 h3{
    color: var(--bg);
}

.tlo-2{ /* granatowy */
	background-color: var(--text2);
    color: var(--bg);
}
.tlo-2 h1, .tlo-2 h2, .tlo-2 h3{
    color: var(--bg);
}
.tlo-2 a{
    color: rgba(255,255,255,.65);
}
.tlo-2 a:hover{
    color: rgba(255,255,255,.85);
}
.tlo-3{ /* jasno-szary */
	background-color: var(--bg3);
}

/* ----- wraps  ----- */


#main > div,
.wrap{
	max-width: var(--wrap-width);
	min-width: 280px;
	margin: 0 auto;
	text-align: left;
	padding-top: var(--block-padding);
	padding-bottom: var(--block-padding);
	padding-left: 10px;
	padding-right: 10px;
	overflow: hidden;
}
.wp-block-group > .wp-block-group__inner-container{
	max-width: var(--wrap-width);
    margin-left: auto;
	margin-right: auto;
}
#main > .alignfull,
.alignfull > .wp-block-group__inner-container{ 
	max-width: none;
}

section{
	position: relative;
}

/* ----- main ----- */

#main{
	padding-top: var(--header-height);
	overflow: hidden;
}

@media (max-width: 1000px) {
	#main{
		padding-top: calc(var(--header-height) - .5em);
	}
}
@media (max-width: 600px) {
	#main{
		padding-top: calc(var(--header-height) - 1em);
	}
}



/* ----- head ----- */

#head{
	width: 100%;
	background-color: #fff;
	position: fixed;
    z-index: 50;
	border-bottom: solid 2px rgba(0,0,0, 0);
}
#head .wrap{
	overflow: visible;
	padding-top: .5em;
	padding-bottom: .5em;
	transition: all .2s ease-in-out;
    display: flex;
    justify-content: space-between;
	align-items: center;
}
.not-viewing-top #head{
	border-bottom: solid 2px rgba(0,0,0, 1);
}
#head .wrap:after{ display: none;}
.not-viewing-top #head .wrap{
	padding-top: 0;
	padding-bottom: 0;
}

/* ----- logo ----- */

#logo{
	top: 0;
	bottom: 0;
}
#logo a img{
	width: auto;
	height: inherit;
	max-height: 6em;
	transition: all .2s ease-in-out;
	padding: 1em;
}
.not-viewing-top #logo a img{
	max-height: 2em;
	padding: 0;
}
#logo a,
#logo img{
	display: block;
}
@media (max-width: 1000px) {
	#logo a img {
		max-height: 3em;
	}
	.not-viewing-top #logo a img {
		max-height: 2.5em;
	}
}

/* ----- nav-bar ----- */

#nav-bar{
}

/* ----- top-nav ----- */
#top-nav{
	display: flex;
	gap: 1.5em;
    justify-content: flex-end;
    align-items: end;
	max-height: 4em;
	transition: all .2s ease-in-out;
	overflow: hidden;
}
.not-viewing-top #top-nav{
	max-height: 0;
}
#top-nav a{
	transition: all .2s ease-in-out;
	border-bottom: solid 2px rgba(0,0,0,0);
}
#top-nav a:hover{
	border-bottom: solid 2px rgba(0,0,0,1);
}
@media (max-width: 1300px) {
	#top-nav{
		display: none;
	}
}

/* ----- woocommerce - menu ----- */

#shop-icons{
	font-size: 1em;
}
#shop-icons a{
    padding: .5em;
    display: block;
}
.cart-contents{
}
.cart-contents:before,
.account-icon:before {
    font-family: WooCommerce;
    color: var(--text);
    font-style: normal;
    font-weight: 400;
    transition: all .2s ease-in-out;
    vertical-align: middle;
}
.cart-contents:before{
    content: "\e01d";
}
.account-icon:before{
    content: "\e026";
}
.cart-contents:hover:before,
.account-icon:hover:before{
}
.cart-contents-count {
    color: var(--bg);
    background-color: var(--text);
    border-radius: 100%;
    width: 1.5em;
    height: 1.5em;
	text-align: center;
	display: inline-block;
    font-size: .6em;
    line-height: 1.6em;
    vertical-align: top;
	margin-left: -.5em;
}

@media (max-width: 1000px) {	
	#shop-icons{
		margin-right: 2em;
	}
}


/* ----- menu ----- */

#menu{
	border-top: solid 1px var(--text);
}
.not-viewing-top #menu{
	border-top: solid 0px var(--text);
}
#menu .menu{
	display: flex;
	gap: 1.5em;
	
}
#menu h2, #menu h2 span{
    display: none;
}
#menu .menu-wrap > div > ul > li{
	display: inline-block;
	position:relative;
}
#menu .menu-wrap> div > ul > li:first-child{
	border: none;
}
#menu .menu-wrap > div > ul > li > a{
	font-size: .833em;
	line-height: 1.1em;
	font-weight: 700;
	padding: 1em 0;
	display: block;
	transition: all .2s ease-in-out;
	color: var(--text);
	text-transform: uppercase;
	border-top: solid 2px rgba(0,0,0,0);
}
#menu .menu-wrap > div > ul > li.menu-item-has-children > a:after{
    font-family: "fontello";
	content: "\e809";
	margin-left: .5em;
	display: inline-block;
	vertical-align: middle;
    line-height: 1em;
} 

#menu .menu-wrap > div > ul > li.current-menu-item > a,
#menu .menu-wrap > div > ul > li.current-menu-ancestor > a{
	color: var(--text);
	border-top: solid 2px rgba(0,0,0,1);
}
#menu .menu-wrap > div > ul > li > a:hover, 
#menu .menu-wrap > div > ul > li.current-menu-item > a:hover{
	color: var(--text);
	border-top: solid 2px rgba(0,0,0,1);
}
#menu .sub-menu{
    max-height: 0;
	min-width: 10em;
    overflow: hidden;
    transition: all .2s ease-in-out;
	transition-delay: .4s;
    position: absolute;
    left: 0;
    top: 100%;
	background-color: var(--bg2);
	padding-top: 0;
}
#menu li:hover .sub-menu{
	max-height: 800px;
	transition-delay: 0s;
}
#menu .sub-menu a{
	font-size: 0.85em;
	line-height: 1.2em;
	padding: .7em 1.2em;
	display: block;
	color: var(--text);
	transition: all .2s ease-in-out;
	background-color: var(--bg2);
	border-bottom: solid 1px var(--text);
}
#menu .sub-menu li.current-menu-item a{
	background-color: var(--link);
	color: var(--bg);
}
#menu .sub-menu a:hover,
#menu .sub-menu li.current-menu-item a:hover{
	background-color: var(--text);
	color: var(--bg);
	text-decoration: none;
}
.close{
	font-size: 1.5em;
	line-height: 1.4em;
	position: absolute;
	right: 1em;
	top: 1em;
	cursor: pointer;
	width: 1.4em;
	height: 1.4em;
	border-radius: 100%;
	text-align: center;
	transition: all .2s ease-in-out;
	display: block;
	background-color: var(--bg2);
	color: var(--bg);
}
.close:hover{
	background-color: var(--link);
	color: var(--bg);
}
#menu .close{
	display: none;
}

@media (max-width: 1300px) {
	#menu{
		border: none;
	}
	#menu h2{
		font-size: 1em;
		font-weight: 400;
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#menu h2 i{
		display: inline-block;
		color: var(--text);
		font-size: 2.8em;
		line-height: 1em;
		padding: 0; margin: 0;
		cursor: pointer;
		transition: all .2s ease-in-out;
		text-align: center;
		position: relative;
		z-index: 80;
		margin-left: .5em;
		vertical-align: middle;
	}
	#menu h2 i:hover{
		color: var(--link);
	}
	#menu .menu{
		gap: 0;
	}
	#menu .menu-wrap{
		position: fixed;
		left: 0;top: 0;right: 0;
		width: 100%;
		z-index: 170;
		max-height: 100vh;
		background-color: var(--bg2);
		height: 0;
		overflow: hidden;
		transition: height .4s ease-in-out;
	}
	#menu .menu-wrap.acti{
		height: 100vh;
	}
	#menu .menu-wrap > div > ul{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100vh;
	}
	#menu .close{
		display: block;
	}
	#menu .menu-wrap > div > ul > li{
		display: block;
		border-left: none;
		text-align: center;
		margin-bottom: .5em;
	}
	#menu .menu-wrap > div > ul > li > a{
		color: var(--text);
		border-bottom: 2px solid var(--bg2);
		text-align: center;
		padding: 1em;
		font-size: 1.2em;
		line-height: 1.3em;
		padding: .4em;
		margin: 0;
		display: inline-block;
		width: 9em;
		transition: all .2s ease-in-out;
		text-align: left;
		font-weight: bold;
		border: none;
	}
	#menu .menu-wrap > div > ul > li.menu-item-has-children > a:after{
		display: none;
	} 
	#menu .menu-wrap > div > ul > li.current-menu-item > a, 
	#menu .menu-wrap > div > ul > li.current-menu-ancestor > a{
		color: var(--link);
		border: none;
	}
	#menu .menu-wrap > div > ul > li > a:hover, 
	#menu .menu-wrap > div > ul > li.current-menu-item > a:hover{
		color: var(--link);
		border: none;
	}
	#menu .sub-menu{
		max-height: none;
		position: relative;
		text-align: left;
		top: 0;
		background-color: transparent;
	}
	#menu li:hover .sub-menu{
		padding-top: 0;
	}
	#menu .sub-menu a,
	#menu .sub-menu li.current-menu-item a{
		background-color: transparent;
   	 	padding: .5em .7em;
		border: none;
	}
	#menu .sub-menu a:hover,
	#menu .sub-menu li.current-menu-item a:hover{
		background-color: transparent;
		color: var(--link);
		border: none;
	}
}



/* ----- ppp popup  ----- */

.ppp{
	display: flex;
    position: fixed;
	left: 0; right: 0; top: 0; bottom: 0;
	z-index: -99;
    justify-content: center;
    align-items: center;
	transition: background-color .2s ease-in-out, z-index 0s ease-in-out;
	transition-delay: 0s, .4s;
}
.ppp.active {
	z-index: 99;
	transition-delay: 0s, 0s;
}
#ppps-list .ppp{
	text-align: left;
}
.ppp .screen{
    position: fixed;
	left: 0; right: 0; top: 0; bottom: 0;
	background-color: rgba(20,107,28,0);
	z-index: 100;
	transition: background-color .2s ease-in-out, z-index 0s ease-in-out;
	transition-delay: .2s, 0s;
}
.ppp.active .screen{
	background-color: rgba(155,155,155,.7);
	transition-delay: 0s, 0s;
}
.ppp .close{
	right: -10px;
	top: -10px;
    background-color: var(--bg);
    color: var(--text);
}
.ppp .close:hover{
    color: var(--hover);
}
.ppp .box{
	z-index: 101;
    background-color: #fff;
	max-width: 58em;
	padding: 2em 2em 2em;
	margin-left: .5em;
	margin-right: .5em;
	position: relative;
	opacity: 0;
	transition: opacity .2s ease-in-out;
	box-shadow: 0 0 .5em rgba(0,0,0,.3)
}
.ppp.active .box{
	opacity: 1;
	transition: opacity .2s ease-in-out;
}
.ppp .box h3{
	margin: 0;
}
.ppp .box .job{
	margin-top: 0;
	margin-bottom: 1em;
}
.ppp .scroll{
    max-height: 500px;
    overflow: auto
}
.ppp .box .image{
	float: left; 
	margin-right: 2em;
}

.button-ppp{
	border: none;
	background-color: transparent;
	cursor: pointer;
	transition: color .2s ease-in-out;
	color: var(--text);
}
.button-ppp:hover{
	background: none;
	color: var(--text2);
}

.button-ppp .image img{
	opacity: 1;
	transition: opacity .2s ease-in-out;
}
.button-ppp:hover .image img{
	opacity: .9;
}
.ppp .scroll .text img{
	display: block;
}

@media (max-width: 900px) {
	.ppp .box{
		padding: 1em;
	}
	.ppp .scroll{
		margin-top: 1em;
	}
}

@media (max-width: 800px) {
	.ppp .box > .image{
		display: none;
	}
	.ppp .box .scroll .image{
		float: none;
		display: block;
		text-align: center; 
		margin-right: 0;
		margin-bottom: 2em;
	}
	.ppp .box h3,
	.ppp .box .job{
		text-align: center;
	}
}


/* ----- icon-list ----- */

.icon-list{
	margin-top: 2em;
}
.icon-list > li{
	text-align: center;
}
.icon-list .image img{
	max-height: 4em;
	width: auto;
	filter: brightness(0) saturate(100%) invert(37%) sepia(96%) saturate(331%) hue-rotate(176deg) brightness(82%) contrast(92%);
}

/* ----- news ----- */


.header-subcategories,
.article-list-meta .subcategories{
	display: flex;
	font-size: 0.88em;
	font-weight: normal;
	text-transform: none;
}
.header-subcategories{
	float: right;
}
.header-subcategories li:before,
.article-list-meta .subcategories li:before{
    content: "/";
    display: inline-block;
    margin-left: .5em;
    margin-right: .5em;
}
.header-subcategories li:first-child:before,
.article-list-meta .subcategories li:first-child:before{
	content: "";
    margin-left: 0;
    margin-right: 0;
}
.header-subcategories a,
.article-list-meta .subcategories a{
	color: var(--text);
}
.header-subcategories a:hover,
.article-list-meta .subcategories a:hover{
	color: var(--link);
}
.article-list-meta .subcategories a{
	text-decoration: underline;
}

.news-list{
	margin-top: 2em;
}
.news-list .article-link{
	transition: background-color .2s ease-in-out;
	display: block;
}
.news-list .article-link:hover{
}
.news-list .image{
	margin-bottom: .5em;
	display: block;
	position: relative;
	overflow: hidden;
}
.news-list .image img{
	display: block;
	width: 100%;
}
.news-list .image-expand{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: width .3s ease-in-out, height .3s ease-in-out, top .3s ease-in-out, left .3s ease-in-out;
}
.news-list .article-link:hover .image-expand{
	top: -2%;
	left: -2%;
	width: 104%;
	height: 104%;
}
.news-list .image-expand img{
	width: 100%;
	height: 100%;
}
.news-list .article-link{
	color: var(--text);
	transition: all .3s ease-in-out;
}
.news-list .article-link:hover{
	color: var(--bg3);
}
.news-list .text{
	margin-bottom: 0;
}
.news-list .category{
	font-size: .8em;
	color: var(--link);
}
.news-list .article h3{
	font-weight: 800;
	font-size: .9em;
	line-height: 1.3em;
	margin-top: .1em;
	margin-bottom: .6em;
}
.news-list .article.col-3 h3{
	font-size: 1.44em;
	line-height: 1.2em;
	margin-top: .2em;
	margin-bottom: .3em;
}
.news-list .excerpt{
	margin-bottom: .6em;
	line-height: 1.2em;
}
.news-list .author{
	font-size: .8em;
    line-height: 1em;
	color: var(--link);
	font-style: italic;		
}
.news-list .text .date{
	font-size: .9em;
	margin-bottom: .5em;
}
.pagination{
}
.pagination li{
	display: inline-block;
	border: solid 1px var(--text);
	margin-bottom: 4px;
}
.pagination span,
.pagination a{
	margin: 1px;
	font-size: .77em;
	line-height: 1.7em;
    padding: .2em;
	width: 1.5em;
	height: 1.5em;
	display: inline-block;
	background-color: var(--bg);
	color: var(--text);
	text-align: center;
	display: block;
}

.pagination span.current,
.pagination a:hover{
    color: var(--bg);
    background-color: var(--text);
}
.article-list-meta{
	margin-top: 2em;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.micro-news .article{
	margin-bottom: 1em;
}
.micro-news .article:last-child{
	margin-bottom: 0;
}
.micro-news .article-link{
	display: grid; grid-template-columns: repeat(5, 1fr);
	gap: .8615em;
    align-items: flex-start;
}
.micro-news .article-link .image{
	grid-column: auto / span 2; 
}
.micro-news .article-link .text{
	grid-column: auto / span 3; 
}
.micro-news h3{
	margin-top: 0;
	margin-bottom: 0;
}
.micro-news .category{
    line-height: 1.2em;
	margin-bottom: .5em;
}
#sidebar .widget-wrap{
	margin-bottom: 1em;
}

@media (max-width: 600px) {
	.news-list .article-link{
		display: block;
		text-align: center;
	}
	.news-list .image {
		margin-right: auto;
		margin-left: auto;
    	display: inline-block;
	}
	.news-list .text {
		width: auto;
		text-align: center;
	}
	#informations .read-more{
		text-align: center;
	}
}

/* ----- newsletter ----- */

.widget_mc4wp_form_widget{
	background-color: var(--bg2);
	padding: 1em;
}
.widget_mc4wp_form_widget h3{
    font-weight: 800;
    font-size: .9em;
    line-height: 1.3em;
    margin-top: .1em;
    margin-bottom: .6em;
}
.newsletter-agreements{
	color: var(--bg3);
	font-size: .8em;
	line-height: 1.2em;
	margin-top: .2em;
	margin-left: 0;
}
.wpcf7-checkbox{
	display: block;
}
.newsletter-agreements .wpcf7-checkbox{
	margin-top: .5em;
}
.send-cols{
	display: flex;
	gap: .3em;
	margin-bottom: .8em;
}
.widget_mc4wp_form_widget input[type=email]{
    width: calc(100% - 2em - 2.3em - .3em);
}
.nebotheme-newsletter__submit{
	cursor: pointer;
	width: 2.3em;
	background-color: var(--text);
	color: var(--bg);
	border: none;
	transition: all .2s ease-in-out;
	text-align: center;
}
.nebotheme-newsletter__submit:hover{
	background-color: var(--bg3);
	
}
.checkbox-label {
    display: inline-block;
    width: calc(100% - 1.8em);
    margin-left: .5em;
    vertical-align: text-top;
}
.checkbox-label a{
	text-decoration: underline;
}

/* ----- boxes ----- */

.boxes-list .box{
	min-height: 500px;
	display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
    margin-bottom: 0;
}
.boxes-list .box-wrap{
	padding: 3em;
	z-index: 10;
}
#main .boxes-list .text{
	margin-bottom: 0;
}
.boxes-list .box-wrap p:last-child{
	margin-bottom: 0;
}

/* ----- karuzela ----- */

.slick-slider{
	padding: 0 3em;
}
.slick-slider .item{
	margin: 1em;
}
.slick-prev{
	left: 0;
}
.slick-next{
	right: 0;
}
.slick-prev, 
.slick-next{
    width: 30px;
    height: 30px;
}
.slick-prev:before, 
.slick-next:before{
	transition: all .2s ease-in-out;
	color: var(--link);
	font-size: 30px;
	opacity: 1;
}
.slick-prev:hover:before,
.slick-next:hover:before{
	color: var(--hover);
}


/* ----- subpages ----- */


/* ----- map ----- */
#map iframe{
	width: 100%;
	height: 500px;
	display: block;
}


/* ----- contact ----- */

.contact-icon{
	padding-left: 2em;
	margin-bottom: .5em;
	position: relative;
	text-align: left;
}
.contact-icon:before{
    font-family: "fontello";
	content: "\e811";
	display: block;
	vertical-align: middle;
    line-height: 1em;
	position: absolute;
	left: 0;
	top: .1em;
	font-size: 1.4em;
}

.contact-icon.contact-address:before{
	content: "\f031";
}
.contact-icon.contact-phone:before{
	content: "\e812";
}
.contact-icon.contact-phone span{
	font-size: 1.4em;
	line-height: 1em;
	display: inline-block;
	font-weight: bold;
}
.contact-icon strong{
	font-size: 1.4em;
	line-height: 1.4em;
	display: inline-block;
}

/* ----- speakers prelegenci ----- */

.speakers{
	margin-top: 2em;
}
.speakers .image{
	border-radius: 100%;
	overflow: hidden;
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
}
.speakers .image img{
	display: block;
}
.speakers .button-ppp{
	background-color: rgba(255,255,255,.4);
	border-radius: 1em;
	padding: 1.5em;
    width: 100%;
    height: 100%;
	transition: all .2s ease-in-out;
}
.speakers .button-ppp:hover{
	background-color: rgba(255,255,255,.7);
}



/* ----- agenda  ----- */


.agenda{
	margin-top: 2em;
}
.agenda .day-name{
	text-align: center;
	background-color: var(--bg3);
	border-radius: 1.5em;
	line-height: 1em;
	padding: .5em 1em;
	margin-bottom: .5em;
}
.agenda .events{
	list-style: none !important;
	margin: 0;
	padding: 0 !important;
}
.agenda .event{
	margin: 1em 0 0;
	border-radius: 1.5em;
	display: flex;
}
.agenda .event .time{
	width: 4.5em;
	margin-right: .5em;
	text-align: center;
	border-right: solid 1px var(--text);
}
.agenda .event .details{
	width: calc(100% - 5em);
}
.agenda .event .start{
	font-weight: bold;
}
.agenda .event .end{
	font-size: .9em;
}
.agenda .event-name{
	font-weight: bold;
}
.agenda .speaker{
	color: var(--text2);
	font-size: .9em;
}
.agenda .info{
	font-size: .9em;
	line-height: 1.2em;
}

/* ----- cookie notice ----- */

#cookie-notice{
	background-color: var(--text2) !important;
}
#cookie-notice .cn-button{
	color: var(--bg) !important;
	background-color: var(--bg2) !important;
}
#cookie-notice .cn-button:hover{
	background-color: var(--hover) !important;
	color: var(--bg) !important;
}

/* ----- foot ----- */

#foot{
}
#foot .wrap{
	align-items: center;
}
#foot .wrap > div{
	margin-bottom: 1em;
	border-top: solid 3px var(--text);
}
#foot h4{
	margin-bottom: 0;
}
#foot .image{
	max-width: 200px;
	margin-bottom: 1em;
}
#foot .menu{
	margin-bottom: 1em;
    display: flex;
    align-items: start;
    justify-content: right;
}
#foot .menu li{
	display: inline-block;
}
#foot .menu li:before{
	content: "/";
	display: inline-block;
	margin-left: .5em;
	margin-right: .5em;
}
#foot .menu li:first-child:before{
	display: none;
	margin-left: 0;
	margin-right: 0;
}
#foot .menu li a{
	padding-top: .5em;
	padding-bottom: .5em;
	border-top: solid 2px rgba(0,0,0,0);
	transition: border-top .2s ease-in-out;
	display: inline-block;
}
#foot .menu li a:hover{
	color: var(--text);
	border-top: solid 2px rgba(0,0,0,1);
}
.social{
	font-size: .9em;
}
.social li{
	display: inline-block;
}
.social li:before{
	display: none;
}
.social li a{
	color: var(--text);
	display: flex;
    justify-content: center;
    align-items: center;
	padding: .5em;
	border-top: solid 2px rgba(0,0,0,0);
	transition: border-top .2s ease-in-out
	display: block;
}
#foot .social a:hover{
	color: var(--text);
	border-top: solid 2px rgba(0,0,0,1);
	text-decoration: none;
}
.social li .font-icon{
}
#foot-center{
	text-align: center;
	font-size: .88em;
	line-height: 1.3em;
}
#foot-right{
	text-align: right;
	font-size: .88em;
	line-height: 1.3em;
}
#copyright{
	margin-top: 1em;
	margin-bottom: .5em;
}
#design{
    color: rgba(0,0,0,.45);
	font-size: 0.875em;
}
#design a{
    color: rgba(0,0,0,.45);
}
#design a:hover{
	text-decoration: underline;
}	

@media (max-width: 900px) {	
	#foot-left,
	#foot-right{
		text-align: center;
	}
}