@import url('reset.css');
@import url(http://fonts.googleapis.com/css?family=Comfortaa&subset=latin,latin-ext);
body{
    font-family: 'Comfortaa', cursive;
    background: #eee;
    display: block;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}
.header{
    position: absolute;
    z-index: 9999999;
    width: 100%;
    height: 75px;
    line-height: 75px;
    background: rgba(0,0,0,0.5);
    min-width: 1000px;
    font-size: 20px;
}
.header_container{
    width: 1000px;
    height: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
}
.big_menu li{
    width: 20%;
    float: left;
    text-align: center;
}
.big_menu a{
    text-decoration: none;
    color: #fff;
    width: 100%;
    height: 100%;
    display: block;
}
.big_menu a:hover{
    background: #5ac509;
}
.header_logo{
    width: 75px;
    display: block;
    margin: 0 auto;
}
.menu {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 100%;
    max-width: 250px;
    min-height: 1px;
    float: right;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-perspective-origin: 50% 200%;
    perspective-origin: 50% 200%;
    z-index: 9999999;
}

.menu:first-child {
	margin-right: 100px;
}

.menu button {
	border: none;
	width: 48px;
	height: 45px;
	text-indent: -900em;
	/*overflow: hidden;*/
	position: absolute;
        top: 0;
        right: 0;
	cursor: pointer;
	outline: none;
	background: #5ac509;
}

.menu button:hover,
.menu button.dl-active,
.menu ul {
	background: rgba(0,0,0,0.5);;
}

.menu button:after {
	content: '';
	position: absolute;
	width: 68%;
	height: 5px;
	background: #fff;
	top: 10px;
	left: 16%;
	box-shadow: 
		0 10px 0 #fff, 
		0 20px 0 #fff;
}

.menu ul {
    top: 55px;
    right: 0px;
	padding: 0;
	list-style: none;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.menu li {
	position: relative;
}

.menu li a {
	display: block;
        background: #5ac509;
	position: relative;
	padding: 15px 20px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 300;
	color: #fff;
        z-index: 999;
	outline: none;
        text-decoration: none;
}

.no-touch .menu li a:hover {
	background: rgba(0,0,0,0.7);
}

.menu li.dl-back > a {
	padding-left: 30px;
	background: rgba(0,0,0,0.7);
}

.menu li.dl-back:after,
.menu li > a:not(:only-child):after {
	position: absolute;
	top: 0;
	line-height: 50px;
	font-family: 'icomoon';
	speak: none;
	-webkit-font-smoothing: antialiased;
	content: "\e000";
}

.menu li.dl-back:after {
	left: 10px;
	color: rgba(212,204,198,0.3);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.menu li > a:after {
	right: 10px;
	color: rgba(0,0,0,0.15);
}

.menu .menu {
	margin: 5px 0 0 0;
	position: absolute;
	width: 100%;
	opacity: 0;
        height: 0;
        display: none;
	pointer-events: none;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.menu .menu.menu-toggle {
	transition: all 0.3s ease;
}

.menu .menu.menuopen {
        background: #5ac509;
	opacity: 1;
        
        display: block;;
        height: auto;
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

/* Hide the inner submenus */
.menu li .dl-submenu {
	display: none;
}

.menu.dl-animate-out-1 {
	-webkit-animation: MenuAnimOut1 0.4s;
	animation: MenuAnimOut1 0.4s;
}

@-webkit-keyframes MenuAnimOut1 {
	0% { }
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@keyframes MenuAnimOut1 {
	0% { }
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

.menu.dl-animate-in-1 {
	-webkit-animation: MenuAnimIn1 0.3s;
	animation: MenuAnimIn1 0.3s;
}


@-webkit-keyframes MenuAnimIn1 {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}


@keyframes MenuAnimIn1 {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}


/* No JS Fallback */
.no-js .menu .menu {
	position: relative;
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

.no-js .menu li .dl-submenu {
	display: block;
}

.no-js .menu li.dl-back {
	display: none;
}

.no-js .menu li > a:not(:only-child) {
	background: rgba(0,0,0,0.1);
}

.no-js .menu li > a:not(:only-child):after {
	content: '';
}
.wowslider{
    width: 100%;
    display: block;
    position: relative;
}
.napisy{
    position: absolute;
    top: 35%;
    left: 50%;
    width: 500px;
    margin-left: -250px;
    z-index: 999999;
    border-bottom: 5px solid #5ac509;
}
.napis{
    font-size: 20px;
    color: #fff;
    min-height: 40px;
    line-height: 40px;
    padding: 10px 0;
    text-align: center;
    text-shadow: 0 2px 3px #000;
    background: rgba(0,0,0,0.5);
}
.napis_duzy{
    font-size: 40px;
    line-height: 40px
}
.header_bg{
    width: 100%;
    min-width: 300px;
    height: 300px;
    margin: 0 auto;
    display: block;
    background: url('../img/header_bg2.jpg');
    background-size: 100% 100%;
    background-position: top;
    background-attachment: fixed;
    position: relative;
    border-bottom: 5px solid #5ac509;
    box-shadow: 0 3px 5px #000;
    overflow: hidden;
}
.header_bg_napis_1{
    width: 480px;
    padding: 10px;
    font-size: 40px;
    color: #fff;
    text-align: center;
    border-bottom: 5px solid #5ac509;
    position: absolute;
    top: 40%;
    left: 50%;
    text-shadow: 2px 5px 10px #000;
    margin-left: -250px;
    opacity: 1;
    animation: header_bg_napis_animation 10s 1;
    -webkit-animation: header_bg_napis_animation 10s 1;
    -moz-animation: header_bg_napis_animation 10s 1;
    -o-animation: header_bg_napis_animation 10s 1;
    background: rgba(0,0,0,0.5);
}
.header_bg_napis_2{
    width: 480px;
    padding: 10px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 70%;
    left: 50%;
    text-shadow: 2px 5px 10px #000;
    margin-left: -250px;
    opacity: 1;
    animation: header_bg_napis_animation 10s 1;
    -webkit-animation: header_bg_napis_animation 10s 1;
    -moz-animation: header_bg_napis_animation 10s 1;
    -o-animation: header_bg_napis_animation 10s 1;
    background: rgba(0,0,0,0.5);
}
@-moz-keyframes header_bg_napis_animation {
	0% {
		opacity: 0;
                left: -50%;
	}
	20% {
		opacity: 1;
                left: 50%;
	}
	100% {
		opacity: 1;
                left: 50%;
	}
}
@-webkit-keyframes header_bg_napis_animation {
	0% {
		opacity: 0;
                left: -50%;
	}
	20% {
		opacity: 1;
                left: 50%;
	}
	100% {
		opacity: 1;
                left: 50%;
	}
}
@keyframes header_bg_napis_animation {
	0% {
		opacity: 0;
                left: -50%;
	}
	20% {
		opacity: 1;
                left: 50%;
	}
	100% {
		opacity: 1;
                left: 50%;
	}
}

.container{
    display: block;
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-width: 300px;
    min-height: 100%;
    margin: 0 auto;
}
.container:after{
    clear: both;
    display: block;
    content: '';
}
.content{
    width: 65%;
    min-height: 100%;
    float: left;
    margin: 10px 0;
    height: auto;
    position: relative;
    display: block;
}
.content h2, .content_bar h3, .oferta h3{
    font-size: 25px;
    margin: 15px auto;
    text-align: left;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}
.content img{
    display: block;
    margin: 10px auto;
    max-width: 90%;
    max-height: 500px;
    box-shadow: 0 2px 3px #000;
}
.content div{
    font-size: 20px;
}
.content ul, .content ol{
    width: 80%;
    margin: 10px auto;
    display: block;
    list-style: inside ;
}
.content ol{
    list-style: inside decimal;
}
.oferta{
    text-align: center;
}
.oferta a, .section_a{
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    background: #5ac509;
    padding: 10px;
    margin: 5px;
    display: inline-block;
}
.oferta a:hover, .section_a:hover{
    background: #888;
}


.content_bar{
    width: 30%;
    margin: 10px 0;
    float: right;
    display: block;
    position: relative;
    text-align: center;
    padding-bottom: 70px;
}
.content_bar h3 a{
    text-decoration: none;
    color: #000;
}
.content_bar .galeria_a{
    max-width: 300px;
    width: auto;
    display: block;
    margin: 10px auto;
    text-decoration: none;
}
.content_bar img{
    max-height: 150px;
    border: 2px solid #fff;
    box-shadow: 0 2px 3px #000;
}
.content_bar_aktualnosci_spec img:hover{
    border: 2px solid #aaa;
}
.content_bar .start_info_a{
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    background: #5ac509;
    color: #fff;
    display: block;
    margin: 10px auto;
    border: 1px solid #5ac509
}
.content_bar .start_info_a:hover{
    background: transparent;
    color: #5AC509;
}
/*.content_bar_aktualnosci_spec{
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    text-align: center;
    background: #fff;
    border-bottom: 2px solid #5AC509;
    margin: 10px auto;
}
.content_bar_aktualnosci_spec:after{
    clear: both;
    display: block;
    content: '';
}
.content_bar_aktualnosci_spec h3{
    width: 90%;
}
.content_bar_aktualnosci_spec h4{
    font-size: 25px;
    margin: 10px auto;
    display: block;
}
.content_bar_aktualnosci_spec h4 a{
    text-decoration: none;
    color: #333;
}
.content_bar_aktualnosci_spec:after{
    clear: both;
    display: block;
    content: '';
}
.content_bar_aktualnosci_spec img{
    max-width: 100%;
    height: 225px;
    display: block;
    margin: 0 auto 10px;
    border-bottom: 1px solid #5AC509;
}
.content_bar_aktualnosci_a{
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    background: #5ac509;
    color: #fff;
    display: block;
    margin: 10px auto;
    border: 1px solid #5ac509
}
.content_bar_aktualnosci_a:hover{
    background: #fff;
    color: #5ac509;
}*/
.footer{
 width: 100%;
 min-width: 300px;
 height: 150px;
 padding: 30px 0;
 background: #333;
 margin: 10px auto 0;
 border-top: 5px solid #5ac509;
}
.footer_item{
    width: 50%;
    height: 100%;
    float: left;
    text-align: center;
    color: #fff;
}
.footer_item a{
    text-decoration: none;
    color: #fff;
    background: #5ac509;
    padding: 10px;
    margin: 10px;
    text-align: center;
    display: inline-block;
}
.footer_item a:hover{
    background: #fff;
    color: #333;
}
.author, .cookies{
    font-size: 12px;
    text-align: center;
    background: #333;
    color: #fff;
}
.author a, .cookies a{
    text-decoration: none;
    color: #5ac509;
}
.alert{
    width: 300px;
    min-height: 30px;
    line-height: 30px;
    font-size: 20px;
    position: absolute;
    top: -100%;
    left: 50%;
    margin-left: -150px;
    opacity: 0;
    background: #5ac509;
    text-align: center;
    display: block;
    opacity: 0;
    color: #fff;
    padding: 5px 0;
    box-shadow: 0 3px 5px #000;
    border: 1px solid #fff;
    min-width: 300px;
    z-index: 999999999;
    -webkit-animation: alert_from_top 6s 1;
    -moz-animation:    alert_from_top 6s 1; 
    -o-animation:      alert_from_top 6s 1;
    animation:         alert_from_top 6s 1;
}
.alert-error{
}
.alert-success{
}

@-webkit-keyframes alert_from_top {
  0%   { top: -100%;}
  10% { top: 30%;; opacity: 1; }
  90% { top: 30%;; opacity: 1;}
  100%   { top: -100%; opacity: 0;}
}
@-moz-keyframes alert_from_top {
  0%   { top: -50%;}
  10% { top: 50%;; opacity: 1; }
  90% { top: 50%;; opacity: 1;}
  100%   { top: -50%; opacity: 0;}
}
@-o-keyframes alert_from_top {
  0%   { top: -50%;}
  10% { top: 50%;; opacity: 1; }
  90% { top: 50%;; opacity: 1;}
  100%   { top: -50%; opacity: 0;}
}
@keyframes alert_from_top {
  0%   { top: -100%;}
  10% { top: 30%;; opacity: 1; }
  90% { top: 30%;; opacity: 1;}
  100%   { top: -100%; opacity: 0;}
}
.paginacja{
    width: 50%;
    min-width: 300px;
    text-align: center;
    position: relative;
    display: block;
    margin: 15px auto;
    padding: 20px 0;
}
.paginacja a{
    padding: 10px;
    background: #5AC509;
    color: #fff;
    text-align: center;
    margin: 5px;
    text-decoration: none;
    border: 1px solid #5AC509;
}
.paginacja a:hover{
    background: #fff;
    color: #5AC509;
}
.paginacja strong{
    padding: 10px;
    margin: 5px;
    border: 1px solid #000;
}
.fb_container{
    position: fixed;
    top: 150px;
    left: 0;
    margin-left: -300px;
    width: 300px;
    height: 480px;
    display: block;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    z-index: 99999;
}
.fb_container:hover {
    margin-left: 0;
}
.fb_button{
    position: absolute;
    right: -40px;;
    top: 0;
    content: 'F';
    /*border-radius: 0 15px 15px 0;*/
    background: #5ac509;
    padding: 15px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
}
.fb_container_mini{
    position: fixed;
    left: 20px;
    bottom: 0;
    background: #5ac509;
    padding: 15px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    display: none;
    z-index: 9999;
}
.fb_container_mini a{
    text-decoration: none;
    color: #fff;
}
.ue_info{
    width: 95%;
    max-width: 1150px;
    min-width: 280px;
    display: block;
    margin: 10px auto;
    padding: 0;
    position: relative;
}
.ue_info img{
    width: 90%;
    max-width: 750px;
    display: block;
    margin: 5px auto;
}
.ue_info p{
    margin: 5px auto;
    font-size: 14px;
    text-align: center;
}
@media screen and (min-width:1920px){
    
}
@media screen and (min-width:1600px){
}
@media screen and (max-width:1366px){
}
@media screen and (min-width:1200px){
    
}
@media screen and (max-width:1200px){
    .fb_container{
        display: none;
    }
    .fb_container_mini{
        display: block;
    }
}

@media screen and (min-width: 1024px){
    .wowslider{
        }
    .menu{
        display: none;
    }
}
@media screen and (max-width:1024px){
    .header{
        background: none;
        min-width: 300px;
    }
    .header_container{
        display: none;
    }
    .header_bg_napis_1{
        top: 45px;;
    }
    .header_bg_napis_2{
        top: 150px;
    }
    .menu{
        display: block;
        position: fixed;
    }
    .big_menu{
        display: none;
    }
    .logo_mini{
        display: block;
    }
    
    .content, .content_bar{
        width: 90%;
        float: none;
        margin: 0 auto;
        display: block;
    }
    .content_bar_aktualnosci_spec{
        width: 100%;
        margin: 10px auto;
        display: block;
        float: none;
        position: relative;
    }
    .content_bar_aktualnosci_spec img{
        float: left;
        max-width: 100%;
        max-height: 300px;
        margin: 0;
        border-bottom: none;
    }
    .content_bar_aktualnosci_a{
        position: absolute;
        right: 5px;
        bottom: 5px;
    }
    .content_bar .galeria_a{
        display: inline-block;
    }
    
}
@media screen and (max-width:800px){
    .wowslider{
    }
    .napisy{
        width: 100%;
        margin: 0;
        left: 0;
        top: 15%;
        border-bottom: none;
        font-size: 20px;
    }
    .napis_duzy{
        font-size: 25px;
        padding: 0;
    }
    .napis{
        padding: 0;
    }
    .header_bg{
        background-size: auto 100%;
        background-attachment: inherit;
    }
    .footer{
        height: auto;
    }
    .footer_spec{
        margin: 15px auto;
        font-size: 20px;
    }
    .footer_item{
        width: 100%;
        float: none;
        margin:  30px auto;
    }
}
@media screen and (max-width:600px){
    .header_bg_napis_1, .header_bg_napis_2{
        width: 100%;
        margin-left: 0;
        left: 0;
        padding: 0;
        
        animation: none;
        -webkit-animation:none;
        -moz-animation: none;
        -o-animation: none;
    }
    .content_bar_aktualnosci_spec{
        padding-bottom: 70px;
    }
    .content_bar img{
        float: none;
        display: block;
        margin: 10px auto;
    }
}
@media screen and (max-width:480px){
    .header_bg{
        height: 200px;
    }
    .header_bg_napis_1{
        font-size: 24px;
        top: 60px;
    }
    .header_bg_napis_2{
        font-size: 20px;
        top: 100px;
    }
}
@media screen and (min-width:400px) and (max-width: 500px) and (max-height: 300px){
    .menu{
        width: 100%;
        max-width: 95%;
        top: 5px;
        right: 5px;
        position: fixed;
    }
    .menu li{
       width: 50%;
       float: left;
       text-align: center;
    }
    .menu li a{
        padding: 12px;
    }
}
@media screen and (max-width:320px){
    
}
