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

/* ----- reset all ----- */
* {
   padding:0;
   margin:0;
}
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 {
	text-align: center;
	font: 17px/25px  'Open Sans', sans-serif;
	font-weight: 400;
	background: #5D0C0E;
	color: #fff;
}
@media (max-width: 1000px) {
	body {
		font-size: 16px;
		line-height: 22px;
	}
}
@media (max-width: 600px) {
	body {
		font-size: 15px;
		line-height: 21px;
	}
}

a {color: #f19900; text-decoration: none; transition: color .2s ease-in-out, background-color .2s ease-in-out;}
a:hover {color: #FFAD24;}
a span {cursor: pointer;}

strong{font-weight: 700;}
h3{
	font: 700 1.2em/1.4em 'Lato', sans-serif;
	margin-top: 1em;
	margin-bottom: 0.3em;
}
h2, .home h3{
	font: 900 1.4em/1.4em 'Lato', sans-serif;
	margin-top: 1em;
	margin-bottom: .5em;
	color: #11253D;
}
.home h3{
	margin-top: 0;
}
h1, .home h2{
	font: 900 2.2em/1.4em 'Lato', sans-serif;
	margin-top: 0;
	margin-bottom: 1em;
	color: #11253D;
	text-align: center;
}
.home h1{
	font: 900 2.5em/1.4em 'Lato', sans-serif;
	color: #fff;
	margin-bottom: .1em;
}
@media (max-width: 1000px) {
	h2, .home h3{
		font-size: 1.3em;
	}
	h1, .home h2{
		font-size: 1.9em;
	}
	.home h1{
		font-size: 2.2em;
	}
}
@media (max-width: 600px) {
	h2, .home h3{
		font-size: 1.2em;
	}
	h1, .home h2{
		font-size: 1.4em;
	}
	.home h1{
		font-size: 1.8em;
	}
}

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;
}
.text{
	margin-bottom: 2em;
}
.image{
	margin-bottom: 1em;
}

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

.content ul, .content ol,
.text ul, .text ol{
	margin-bottom: 1em;
	padding-left: 1em; 
}
.content ol,
.text ol{
	padding-left: 2em; 
}
.content ul > li,
.text ul > li{
    margin-left: 1em;
	margin-bottom: 0.4em;
	text-align: left;
    list-style: none;
}
.content ul > li:before,
.text ul > li:before{
    content: "\2022";
    color: #11253D;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.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-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); }

.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; }

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

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

@media (max-width: 1300px) {
	.gap-2 > *{ column-gap: 2em; }
	.gap-3 > *{ column-gap: 4em; }
	.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; }
}
@media (max-width: 900px) {
	.break-at-900{ display: block; }
	.cols-2-at-900{ grid-template-columns: repeat(2, 1fr); }
	.break-at-900 > *{ margin-bottom: 1em; }
	.cols.break-at-900 > *:last-child{ margin-bottom: 0; }
}

@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; }
}

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

form .row{
    margin-bottom: 1em;
}
form .row-tiny{
    margin-bottom: .5em;
}
.label{
	display: block;
    margin-bottom: .5em;
}
label{
	display: block;
}
input,
button,
textarea,
select{
	font: 1em/1.3em  'Open Sans', sans-serif;
}
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
textarea,
select{
    width: calc(100% - 2em);
    border: solid 1px #CCC;
	background-color: #fff;
    color: #212739;
    padding: .5em 1em;
	border-radius: 5px;
}
select{
   width: auto;
    padding: .4em .5em;
}

input[type=submit]:focus{
	outline: none;
}
.acceptance-block,
.acceptance{
	text-align: justify;
	display: block;
}
.acceptance-block span{
	display: block;
}
.acceptance-block span.wpcf7-form-control-wrap{
	width: auto;
}
.wpcf7-acceptance label .wpcf7-list-item-label:before, .wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-radio label span:before{
    content: " ";
    display: inline-block;
    position: relative;
    top: 0;
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    border: solid 1px #CCC;
	background-color: #fff;
	cursor: pointer;
	border-radius: 5px;
}
span.wpcf7-list-item-label::before, span.wpcf7-list-item-label::after {
    content: " ";
}
.wpcf7-acceptance input[type=checkbox]:checked + span:after, .wpcf7-checkbox input[type=checkbox]:checked + span:after,
.wpcf7-radio label input[type=radio]:checked + span:after{
    position: absolute;
    top: -4px;
    left: 4px;
	font-size: 2em;
    content: "\2714";
    display: block;
	cursor: pointer;
	color: #ec7e00;
}
input[type="checkbox"],
input[type="radio"] {
    display: none;
}
.wpcf7-radio label span:before {
	vertical-align: middle;
}
span.wpcf7-list-item {
    margin: 0;
}
.wpcf7-acceptance .checkbox-label {
    width: calc(100% - 58px);
    margin-left: 6px;
    margin-top: .5em;
    vertical-align: top;
	line-height: 1.4em;
    display: inline-block;
	font-size: .8em;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #aeaeae;
  opacity: .85; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aeaeae;
  opacity: .85;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: #aeaeae;
  opacity: .85;
}
.wpcf7-checkbox{
    display: flex;
    justify-content: space-evenly;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item{
	display: inline-block;
	position: relative; 
}
.wpcf7-radio .wpcf7-list-item{
	margin-right: 1em;
}
.select-with-label{
    display: flex;
    justify-content: flex-start;
    align-items: center;
	margin-bottom: .5em;
}
.select-with-label .label{
	display: inline-block;
	margin-right: .5em;
	min-width: 5.5em;
    text-align: right;
}
.wpcf7 form .wpcf7-response-output{
    margin: 2em auto 1em;
    padding: 1em 2em;
    background-color: #fff;
    border-radius: .5em;
	max-width: calc(40em - 4em);
	border: solid 2px #4b505f;
}
.wpcf7-not-valid-tip{
    color: #cf0000;
    font-size: .9em;
    font-weight: normal;
    display: block;
	margin-top: .3em;
}
@media (max-width: 1000px) {
	input,
	button,
	textarea{
		font-size: 16px;
		line-height: 22px;
	}
}
@media (max-width: 600px) {
	input,
	button,
	textarea{
		font-size: 15px;
		line-height: 21px;
	}
	.wpcf7-checkbox .wpcf7-list-item,
	.wpcf7-radio .wpcf7-list-item{
		display: block;
		text-align: left;
    	margin-right: 0;
		margin-bottom: .5em;
	}
}

/* ----- 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 ----- */
.read-more{
	text-align: center;
}
.read-more > *,
input[type=submit],
button{
	padding: .8em 1.7em .8em;
	line-height: 1em;
	font-size: 0.8em;
	display: inline-block;
	transition: all .2s ease-in-out;
	border: solid 2px #f19900;
	color: #f19900;
	text-transform: uppercase;
	background-color: transparent;
	font-weight: 700;
}
.read-more > *:hover,
input[type=submit]:hover,
button:hover{
	background-color: #f19900;
	color: #fff;
}
.read-more a span:after{
    font-family: "fontello";
	content: "\e810";
	font-size: 1em;
	display: inline-block;
    margin-left: .2em;
    margin-top: -0.1em;
    vertical-align: middle;
}



/* ----- wraps  ----- */
/*
.wrap{
	max-width: 1260px;
	min-width: 280px;
	margin: 0 auto;
	text-align: left;
	padding: 0 20px;
	overflow: hidden;
}
section{
	position: relative;
}
@media (max-width: 600px) {
	.wrap{
		padding-left: 10px;
		padding-right: 10px;
	}
}
*/

/* ----- bg-colors ----- */
.bg-blue{
	background-color: #11253D;
    color: #fff;
}
.bg-blue h1,
.bg-blue h2,
.bg-blue h3{
    color: #fff;
}
.bg-dark-blue{
	background-color: #0a1b2e;
    color: #fff;
}
.bg-dark-blue h1,
.bg-dark-blue h2,
.bg-dark-blue h3{
    color: #fff;
}
.bg-yellow{
	background-color: #fec500;
}
.bg-orange{
	background-color: #f19900;
}
.bg-orange h1,
.bg-orange h2,
.bg-orange h3{
}
.box.bg-blue:after{
	content: "";
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(17,37,61, .8);
	z-index: 1;
}
.box.bg-yellow:after{
	content: "";
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(254,197,0, .8);
	z-index: 1;
}
.box.bg-orange:after{
	content: "";
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(241,153,0, .8);
	z-index: 1;
}

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

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

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

#logo{
	top: 0;
	bottom: 0;
}
#logo a img{
	width: auto;
	height: inherit;
	max-height: 5.4em;
	transition: all .2s ease-in-out;
}
.not-viewing-top #logo a img{
	max-height: 3.7em;
}
#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;
	}
}

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

#menu{ 
	top: 0;
	bottom: 0;
}
#menu h2, #menu h2 span{
    display: none;
}
#menu .menu-wrap > div > ul > li{
	display: inline-block;
	position:relative;
	border-left: solid 1px #313131;
}
#menu .menu-wrap> div > ul > li:first-child{
	border: none;
}
#menu .menu-wrap > div > ul > li > a{
	font-size: 1.1em;
	line-height: 1.1em;
	padding: 0 .5em;
	display: block;
	transition: all .2s ease-in-out;
	color: #313131;
}
#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: #104b91;
}
#menu .menu-wrap > div > ul > li > a:hover, 
#menu .menu-wrap > div > ul > li.current-menu-item > a:hover{
	color: #DD8A00;
}
#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: #fff;
	padding-top: 0;
}
#menu li:hover .sub-menu{
	max-height: 800px;
	padding-top: .5em;
	transition-delay: 0s;
}
#menu .sub-menu a{
	font-size: 0.9em;
	line-height: 1.2em;
	padding: .7em 1.2em;
	display: block;
	color: #fff;
	transition: all .2s ease-in-out;
	background-color: #224A69;
	border-bottom: solid 1px #1A3951;
}
#menu .sub-menu li.current-menu-item a{
	background-color: #3876a5;
}
#menu .sub-menu a:hover,
#menu .sub-menu li.current-menu-item a:hover{
	background-color: #DD8A00;
	border-bottom: solid 1px #c17900;
	color: #fff;
	text-decoration: none;
}
#menu .close{
	display: none;
}

@media (max-width: 1300px) {
	#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: #DD8A00;
		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 > span{
		color: #01F4DE;
		text-transform: uppercase;
	}
	#menu h2 i:hover{
		color: #01F4DE;
	}
	#menu .menu-wrap{
		position: fixed;
		left: 0;top: 0;right: 0;
		width: 100%;
		z-index: 170;
		max-height: 100vh;
		background-color: #073282;
		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{
		font-size: 1.5em;
		line-height: 1.3em;
		position: absolute;
		right: 1em;
		top: 1em;
		cursor: pointer;
		width: 1.4em;
		height: 1.4em;
		border-radius: 100%;
		background-color: #3D6CEB;
		text-align: center;
		transition: all .2s ease-in-out;
		display: block;
	}
	#menu .close:hover{
		background-color: #97B0F4;
		color: #fff;
	}
	#menu .menu-wrap > div > ul > li{
		display: block;
		border-left: none;
		text-align: center;
	}
	#menu .menu-wrap > div > ul > li > a{
		color: #fff;
		border-bottom: 2px solid #3D6CEB;
		text-align: center;
		padding: 1em;
		font-size: 1.4em;
		line-height: 1.4em;
		padding: .5em;
		margin: .3em 0;
		display: inline-block;
		width: 8em;
		transition: all .2s ease-in-out;
		text-align: left;
		font-weight: bold;
	}
	#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: #fff;
	}
	#menu .menu-wrap > div > ul > li > a:hover, 
	#menu .menu-wrap > div > ul > li.current-menu-item > a:hover{
		color: #01F4DE;
	}
	#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: #01F4DE;
		border: none;
	}
}

/* ----- start ----- */

#start{
    padding-top: 60px;
    height: calc(100vh - 120px);
	overflow: hidden;
	top: 0;
	bottom: 0;
}
#start-wrap{
    height: 100%;
    overflow: hidden;
	position: relative;
    background-size: cover;
    background-position: center;
}
#start-wrap:after{
	content: "";
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(0,0,0, .0002);
}
#main #start .wrap{
    height: calc(100% - 4em);
	padding-top: 2em;
	padding-bottom: 2em;
	display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
	color: #fff;
}
#start h2{
	font-weight: 400;
	font-size: 1.6em;
	color: #fff;
}

@media (max-width: 1000px) {
	#start h2{
		font-size: 1.4em;
	}
}
@media (max-width: 600px) {
	#start h2{
		font-size: 1.2em;
	}
}


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



/* ----- 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 .box{
	z-index: 101;
    background-color: #fff;
	max-width: 58em;
	padding: 2em 2em 2em;
	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-top: 0;
}
.ppp .scroll{
    max-height: 500px;
    overflow: auto
}
.ppp .box .image{
	float: left; 
	margin-right: 2em;
}
.ppp .scroll .image{
	display: none;
}
.close{
	position: absolute;
	top: -.3em;
	right: -.3em;
	color: rgb(32, 63, 64);
	background-color: #fff;
	border-radius: 100%;
	font-size: 1.5em;
	line-height: 1em;
    width: 1.2em;
    height: 1.2em;
	display: inline-block;
	cursor: pointer;
	transition: color .2s ease-in-out;
	text-align: center;
	z-index: 11; 
    font-weight: bold;
	box-shadow: 0 0 .5em rgba(0,0,0,.3)
}
.close:hover{
    color: #21979e;
}
.button-ppp{
	display: block;
	margin-left: auto;
	margin-right: auto;
	background: none;
	padding: 0;
    color: #11253D;
	text-transform:none;
	font-size: 1em;
	line-height: 1.4em;
	cursor: pointer;
	transition: color .2s ease-in-out;
}
.button-ppp:hover{
	background: none;
	color: #26538A;
}
.button-ppp h3{
	transition: color .2s ease-in-out;
}
.button-ppp:hover h3{
    color: #26538A;
}
.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;
		margin-left: .5em;
		margin-right: .5em;
	}
	.ppp .scroll{
		margin-top: 2em;
	}
}

@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{
		text-align: center;
	}
}


/* ----- icon-block ----- */

.icon-block .text{
	text-align: center;
}
.icon-list > li{
	text-align: center;
	margin-bottom: 2em;
}

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

.news-list .article-link{
	display: flex;
    align-items: flex-start;
	margin-bottom: 1em;
	padding: 1.5em 1.5em .5em;
	background-color: #11253D;
	transition: background-color .2s ease-in-out;
}
.news-list .article-link:hover{
	background-color: #183456;
}
.news-list .image{
	margin-right: 2.5em;
	display: block;
	border: solid 4px #0a1b2e;
	position: relative;
	overflow: hidden;
}
.news-list .image img{
	display: block;
}
.news-list .image-expand{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: width .6s ease-in-out, height .6s ease-in-out, top .6s ease-in-out, left .6s ease-in-out;
}
.news-list .article-link:hover .image-expand{
	top: -5%;
	left: -5%;
	width: 110%;
	height: 110%;
}
.news-list .image-expand img{
	width: 100%;
	height: 100%;
}
.news-list .article-link:hover h3{
	color: #FFAD24;
}
.news-list .text{
    width: calc(100% - 10.5em);
	margin-bottom: 0;
	color: #fff;
}
.news-list h3{
	margin-top: 0;
	margin-bottom: 0;
	color: #f19900;
}
.news-list .text .date{
	font-size: .9em;
	margin-bottom: .5em;
}
.pagination span,
.pagination a{
    padding: 0.8em 1.2em 0.8em;
	margin-bottom: 4px;
	display: inline-block;
}

.pagination span.current,
.pagination a:hover,
.pagination span:hover{
    color: #313131;
    background-color: #f19900;
}
@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;
	}
}

/* ----- 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:before, 
.slick-next:before{
	transition: all .2s ease-in-out;
	color: #11253D;
	font-size: 30px;
	opacity: 1;
}
.slick-prev:hover:before,
.slick-next:hover:before{
	color: #FFAD24;
}


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


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


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

.contact-icon{
	padding-left: 2em;
	position: relative;
}
.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";
	top: .55em;
}
.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 .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,.2);
	border-radius: 1em;
	padding: 2em;
    width: 100%;
    height: 100%;
	transition: all .2s ease-in-out;
}
.speakers .button-ppp:hover{
	background-color: rgba(255,255,255,.3);
}



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


.agenda .day-name{
	text-align: center;
	background-color: #E4EDF3;
	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: 0 0 .5em;;
	border-radius: 1.5em;
	display: flex;
	background-color: rgba(255,255,255,.5);
}
.agenda .event .time{
	width: 4.5em;
	margin-right: .5em;
	text-align: center;
	border-right: solid 1px rgba(0,0,0,.4);
}
.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: #900;
}
.agenda .info{
	color: #313131;
	font-size: .9em;
	line-height: 1.2em;
}

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

#cookie-notice{
	background-color: #0D1C2F !important;
}
#cookie-notice .cn-button{
	color: #f19900 !important;
}
#cookie-notice .cn-button:hover{
	bcolor: #FFAD24 !important;
}

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

#foot{
	padding: 3em 0 2em;
	font-size: .9em;
	line-height: 1.4em;
}
#foot .wrap{
	align-items: center;
}
#foot .wrap > div{
	margin-bottom: 1em;
}
#foot p{
}
#foot a{
	color: #fff;
}
#foot a:hover{
	text-decoration: underline;
}
#foot-center{
}
#foot .image{
	max-width: 200px;
	margin-bottom: 1em;
}
#foot .menu{
	margin-bottom: 1em;
}
#foot .menu li{
	display: inline-block;
}
#foot .menu li:before{
	content: "|";
	display: inline-block;
}
#foot .menu li:first-child:before{
	display: none;
}
#foot .menu li a{
	padding-left: .5em;
	padding-right: .5em;
}
.social{
	font-size: 2.1em;
	margin-bottom: .5em;
}
.social li{
	display: inline-block;
}
#foot .social li:before{
	display: none;
}
#foot .social li a{
	color: #313131;
	background-color: #fff;
	width: 1em;
	height: 1em;
	display: flex;
    justify-content: center;
    align-items: center;
}
#foot .social li .font-icon{
	font-size: .7em;
}
#foot .social li a:hover{
	background-color: #ffbf50;
	text-decoration: none;
}

#foot-right{
	text-align: right;
}
#copyright{
	margin-bottom: .5em;
}
#design{
	color: #a6a6a6;
	font-size: 0.875em;
}
#design a{
	color: #a6a6a6;
}
#design a:hover{
	text-decoration: underline;
}	

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