﻿@charset "utf-8";
@import "/assets/css/reset.css";
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600');


/* Large desktop */
@media (max-width: 1199px) {  }

/* Portrait tablet to landscape and desktop */
@media (max-width: 979px) {  }

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {  }

/* Landscape phones and down */
@media (max-width: 534px) {  }

/* Landscape phones and down */
@media (max-width: 320px) {  }


@-ms-viewport {
    width: device-width;
}



/***************************************************
Global styles
***************************************************/
html {
    width: 100%;
    height: 100%;
    -ms-text-size-adjust: none;
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: 'Oswald', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #333333;
    background: #fff;
    margin: 0;
    min-width: 320px;
}

a {
    color: #333333;
}
a:hover {
    color: #c00000;
}

strong {
    font-weight: 600;
}


/***************************************************
Szkielet
***************************************************/

.container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
}

.g-header {
    position: relative;
}
.g-header > .container {
    height: 143px;
    position: relative;
    background: #fff;
    z-index: 9;
}
.g-header > .container:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 96px;
    background: url("/assets/img/header_bg.png") no-repeat center top;
    z-index: 1;
}

.g-header .logo {
    position: absolute;
    left: 50%;
    top: 25px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}
.g-header .najlepsza-pizza {
    position: absolute;
    top: 30px;
    left: 60px;
    max-width: 40%;
}

.header-contact {
    position: absolute;
    top: 20px;
    right: 60px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: right;
    letter-spacing: 2px;
}
.header-contact span {
    margin: 0 20px;
    color: #d0d0d0;
    font-weight: 300;
    font-size: 16px;
}
.header-contact-phone {
    color: #c00000;
    font-weight: bold;
    font-size: 30px;
    line-height: 30px;
}

@media (max-width: 979px) {

    .g-header .najlepsza-pizza {
        left: 20px;
    }
    .header-contact {
        right: 20px;
    }
}
@media (max-width: 767px) {
    .g-header .najlepsza-pizza {
        display: none;
    }
    .g-header > .container:after {
        display: none;
    }
    .g-header .logo {
        left: 20px;
        top: 15px;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .g-header .logo img {
        width: 140px;
    }
}

@media (max-width: 534px) {
    .header-contact-phone {
        font-size: 20px;
        line-height: 30px;
    }
    .header-contact {
        font-size: 12px;
    }
    .header-contact span {
        display: block;
        height: 0px;
        overflow: hidden;
    }
}


.g-footer {
    background: #eee;
    padding: 50px 0;
}
.g-footer-links {
    float: left;
}
.g-footer-links a {
    text-transform: uppercase;
    margin-right: 40px;
    position: relative;
}
.g-footer-links a:after {
    content: '•';
    color: #c00000;
    position: absolute;
    right: -24px;
}
.g-footer-links a:last-child:after {
    display: none;
}

.g-footer-make {
    float: right;
    color: #b2b2b2;
}
.g-footer-make .studiomh {
    display: inline-block;
    margin-left: 30px;
    color: #b2b2b2;
}
.g-footer-make .studiomh:hover {
	
}


@media (max-width: 767px) {

    .g-footer-links {
        width: 100%;
        text-align: center;
    }
    .g-footer-links a {
        margin: 0 20px;
    }
    .g-footer-links a:after {
        display: none;
    }
    .g-footer-make {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}



.g-grid {
    padding: 0 10px;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}
.g-row, .g-row {
    margin-left: -20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.g-row-reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.g-row-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}

.g-row-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.g-row-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end;
}

.g-row-left {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.g-row-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.g-row-right {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.g-row-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.g-row-between {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.g-row-mb-30 > div {
    margin-bottom: 30px;
}
.g-row-mb-50 > div {
    margin-bottom: 50px;
}

[class*="g-col-"] {
    min-height: 1px;
    padding-left: 20px;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
}

.g-col-center {
    margin-right: auto;
    margin-left: auto;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.g-col-content {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.g-col-auto {
    -webkit-flex: 1 1 0%;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
}

.g-col-right {
    margin-right: 0;
    margin-left: auto;
}

.g-col-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.g-col-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.g-col-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.g-col-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
}

.g-col-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
}

.g-col-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.g-col-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
}

.g-col-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
}

.g-col-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.g-col-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
}

.g-col-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
}

.g-col-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.g-col-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
}

.g-col-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
}

.g-col-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.g-gutter-reset {
    margin-left: 0;
}
.g-gutter-reset > [class*="g-col-"] {
    padding-left: 0;
}
.g-gutter-100 {
    margin-left: -100px;
}
.g-gutter-100 > [class*="g-col-"] {
    padding-left: 100px;
}

@media (min-width: 535px) {
    .g-col-s-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .g-col-s-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .g-col-s-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .g-col-s-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .g-col-s-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .g-col-s-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .g-col-s-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .g-col-s-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .g-col-s-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .g-col-s-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .g-col-s-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .g-col-s-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .g-col-s-content {
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .g-col-s-auto {
        -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
        flex: 1 1 0%;
    }
}

@media (min-width: 768px) {
    .g-col-m-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .g-col-m-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .g-col-m-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .g-col-m-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .g-col-m-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .g-col-m-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .g-col-m-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .g-col-m-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .g-col-m-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .g-col-m-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .g-col-m-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .g-col-m-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .g-col-m-content {
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .g-col-m-auto {
        -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
        flex: 1 1 0%;
    }
}

@media (min-width: 980px) {
    .g-col-l-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .g-col-l-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .g-col-l-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .g-col-l-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .g-col-l-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .g-col-l-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .g-col-l-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .g-col-l-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .g-col-l-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .g-col-l-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .g-col-l-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .g-col-l-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .g-col-l-content {
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .g-col-l-auto {
        -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
        flex: 1 1 0%;
    }
}



[class*="g-hide-"] {
    display: block;
}

[class*="g-show-"] {
    display: none;
}

@media (min-width: 535px) {
    .g-show-s {
        display: block;
    }
    .g-hide-s {
        display: none;
    }
}

@media (min-width: 768px) {
    .g-show-m {
        display: block;
    }
    .g-hide-m {
        display: none;
    }
}

@media (min-width: 980px) {
    .g-show-l {
        display: block;
    }
    .g-hide-l {
        display: none;
    }
}

/***************************************************
content
***************************************************/

.content .paper-wrapper {
    padding: 10px;
    background: #fbf8f1;
    border-radius: 20px;
}
.content .paper-wrapper .paper {
    border: 1px solid #e6dfcd;
    padding: 30px;
    border-radius: 15px;
}

.content .paper-wrapper .paper img {
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.content p {
    margin: 15px 0;
    line-height: 1.7em;
}

.content h1 {
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1em;
    margin: 50px 0;
}
.content h2 {
    font-size: 38px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1em;
    margin: 50px 0;
}
.content h3 {
    font-weight: bold;
    font-size: 12px;
    margin: 15px 0 10px 0;
}

.content ul {
    display: block;
    list-style-position: outside;
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
}
.content ul li {
    margin: 10px 0;
}

.content ol {
    display: block;
    list-style-position: outside;
    list-style-type: decimal;
    margin: 0;
    padding-left: 20px;
}

.content p:first-child, .content h1:first-child, .content h2:first-child, .content h3:first-child {
    margin-top: 0;
}
.content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 534px) {
    .content h1 {
        font-size: 38px;
    }
}

/***************************************************
menu
***************************************************/

.navbar {
    position: absolute;
    bottom: 0;
    left: 35px; right: 35px;
}
.navbar > ul {
    border-top: 1px solid #f3f0ec;
    float: left;
    padding: 13px 0 15px 0;
    width: 38%;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}
.navbar > ul:last-child {
    float: right;
}
.navbar > ul > li {
    -webkit-flex: 0 1 33%;
    -ms-flex: 0 1 33%;
    flex: 0 1 33%;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    position: relative;
}

.navbar > ul:first-child > li:nth-child(1) {
    flex-basis: 45%;
}
.navbar > ul:last-child > li:nth-child(2) {
    flex-basis: 40%;
}
.navbar > ul > li > a {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    display: block;

    transition: color .15s linear;
    -moz-transition: color .15s linear;
    -webkit-transition: color .15s linear;
}
.navbar ul li.navbar-red a {
    color: #c00000;
}

.navbar ul li a:hover, .navbar ul li a.current {
    color: #c00000;
}
.navbar > ul > li:hover .navbar-sub {
    display: block;
}

.navbar-sub {
    text-align: left;
    margin: 0;
    list-style: none;
    display: none;
    position: absolute;
    background-color: #c00000;
    border-top: 10px solid #fff;
    width: 250px;
    padding: 10px 15px;
    z-index: 999;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.navbar-sub > li {
    line-height: 20px;
    padding: 5px;
    border-bottom: 1px solid #da6564;
    position: relative;
}

.navbar-sub > li:last-child {
    border-bottom: none;
}
.navbar-sub > li > a {
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    display: block;
}
.navbar-sub > li > a:hover {
    color: #000!important;
    text-decoration: none;
}




@media (max-width: 979px) {
    .navbar {
        display: none;
    }
}



.mobile-overlay {
    display: none;
    position: fixed;
    top: -200px;
    right: -200px;
    bottom: -200px;
    left: -200px;
    background: rgba(68, 68, 68, 0.5);
    z-index: 999998;
}

.sidr-animating .mobile-overlay,
.sidr-open .mobile-overlay {
    display: block;
}

.mobile-offcanvas {
    display: none;
}

@media (min-width: 980px) {
    .mobile-offcanvas {
        display: block;
    }
}

.mobile-nav {
    float: right;
    display: block;
    height: 55px;
    line-height: 55px;
    text-decoration: none;
    position: absolute;
    right: 20px;
    bottom: 0;
}

@media (min-width: 980px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-nav:hover {
    text-decoration: none;
}

.mobile-nav span {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    color: #333;

    position: relative;
    padding-left: 35px;
    display: inline-block;
}
.mobile-nav span::after {
    display: block;
    position: absolute;
    top: 26px;
    left: 0;
    width: 25px;
    height: 3px;
    background: #333333;
    box-shadow: 0 6px 0 #333333,
    0 -6px 0 #333333;
    content: '';
}


.sidr {
    display: block;
    position: fixed;
    top: 0;
    width: 200px;
    height: 100%;
    background: #fff;
    z-index: 999999;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 20px;
}

.sidr ul {
    margin: 0 12px;
    padding: 0;
    list-style: none;
}

.sidr a {
    display: block;
    padding: 3px;
    margin: 8px 0;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}
.sidr a:hover {
    color: #c00000;
}

.sidr ul ul {
    display: none;
    padding: 1px 0;
}

.sidr li li a {
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    padding: 0;
}

.sidr.right {
    right: -200px;
    left: auto;
}

.sidr.left {
    right: auto;
    left: -200px;
}

.sidr-open .sidr {
    box-shadow: 1px 0 0 #ccc;
}


/***************************************************
			        SLIDER
***************************************************/

.g-slider {
    margin: -143px 0 0 0;
    z-index: 1;
    position: relative;
}
.p-sub .g-slider {
    width: 1028px;
}

.g-slider li {
    position: relative;
}
.g-slider li:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.3);
}

.g-slider li>div {
    position: absolute;
    z-index: 99999;
    top: 60%;
    left: 0;
    right: 0;
}
.g-slider li>div h1 {
    font-size: 62px;
    font-weight: 300;
    line-height: 65px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}


.bx-viewport {
    margin: 0 auto;
}
.bx-viewport img {
    max-width: 100%;
    display: block;
}

.bx-wrapper {
    position: relative;
}


/* PAGER */

.bx-wrapper .bx-pager {
    text-align: center;
    font-size: .85em;
    font-weight: bold;
    color: #666;
    padding: 0;
    z-index: 99;
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
    *zoom: 1;
    *display: inline;
}

.bx-wrapper .bx-pager a {
    background: #000;
    text-indent: -9999px;
    display: block;
    width: 14px;
    height: 14px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    border-radius: 9px;
    position: relative;
    font-size: 0;
}

.bx-wrapper .bx-pager .bx-pager-item a:hover,
.bx-wrapper .bx-pager .bx-pager-item a.active {
    background: #c00000;
}

@media (max-width: 1199px) {
    .g-slider {
        margin-top: 0;
    }
    .g-slider li>div {
        top: 35%;
    }
    .g-slider li>div h1 {
        font-size: 4vw;
        line-height: normal;
    }
}
@media (max-width: 767px) {
    .g-slider li>div {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}


/***************************************************
box profile
***************************************************/

.box-profile {
    position: absolute;
    top: 30px;
    right: 0;
}

.box-profile fieldset input.form-control {
    width: 150px;
}
.box-profile fieldset .form-btns {
    margin-top: 10px;
}
.box-profile fieldset .btn {
    float: right;
}
.box-profile fieldset a.link {
    margin-top: 7px;
    margin-right: 7px;
    float: left;
}


/***************************************************
Specifics
***************************************************/

.right {
    float: right!important;
}
.left {
    float: left!important;
}
.center {
    float: none!important;
    margin-left: auto!important;
    margin-right: auto!important;
}

.txt-left {
    text-align: left;
}
.txt-right {
    text-align: right;
}
.txt-center {
    text-align: center;
}

.label {
    display: inline-block;
    width: 100px;
}

hr {
    background: #C2C2C2;
    height: 1px;
    border: 0;
    margin: 30px 0;
}

.img-6-right, .img-6-left, .img-4-right, .img-4-left {
    width: 100%;
    margin: 20px 0;
}
p img {
    margin-top: 0!important;
}
@media (min-width: 534px) {
    .img-6-right {
        width: 50%;
        float: right;
        margin: 20px 0 20px 40px;
    }
    .img-6-left {
        width: 50%;
        float: left;
        margin: 20px 40px 20px 0;
    }
    .img-4-right {
        width: 33%;
        float: right;
        margin: 20px 0 20px 40px;
    }
    .img-4-left {
        width: 33%;
        float: left;
        margin: 20px 40px 20px 0;
    }
}

.pagination {
    text-align: center;
}
.pagination .btn {
    margin: 0 5px;
}


.loader {
    background: url(/assets/img/loader.gif) no-repeat center;
    position: absolute;
    z-index: 9999;
    height: 100%;
    padding: 10px;
    margin: -10px;
}


#cookies {
    position: fixed;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    padding: 5px;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000;
    text-align: center;
    z-index: 999;
}
#cookies .ok {
    background: #000;
    color: #fff;
    padding: 1px 3px;
    margin: 0 5px;
}
body.hasCookies {
    margin-bottom: 20px;
}


.boxRed {
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.5px;
    background: #c00000;
    padding: 30px 70px 30px 20px;
    position: relative;
}
.boxRed:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: url(/assets/img/bottom-krata.jpg) repeat-y;
}


/***************************************************
Zewnętrzne pluginy
***************************************************/

.qtip-error{
    font-family: Tahoma;
    background-color: #c00000!important;
    border-color: #c00000!important;
    color: #fff!important;
    border-radius: 0;
    font-weight: 300;
}
.qtip-error .qtip-content {
    padding: 3px 5px!important;
}
.qtip-info{
    font-family: Tahoma;
    background-color: #c00000!important;
    border-color: #c00000!important;
    color: #fff!important;
    border-radius: 0;
    font-weight: 300;
    font-size: 12px!important;
    line-height: 1.2em!important;
}


/***************************************************
Forms
***************************************************/

fieldset.form {
    border: 0;
    padding: 0;
    margin: 0;
}
fieldset.form-center {
    width: 280px;
    margin: 0 auto;
}


/* wiersz */
.form-group {
    clear: both;
    margin-bottom: 10px;
}


/* buttony */
fieldset.form .form-btns {

}


/* podpis */
.form-label {
    text-align: left;
    display: block;
    float: left;
    padding-top: 6px;
    padding-bottom: 6px;
    position: relative;
}


/* gwiazdka */
.form-req {
    color: #ff0000;
    margin-left: 3px;
}


/* grupa kontolek */
.form-control-group {
    max-width: 600px;
    margin: 6px 0;
    float: left;
}

.form-error {
    display: none;
}


/* kontrolka */
.form-control {
    background: #fff;
    padding: 6px 8px;
    margin: 0;
    border: 1px solid #c2c2c2;
    border-radius: 3px;
    width: 100%;
}
.form-control:hover {
    border-color: #a7a7a7;
}
.form-control:focus {
    box-shadow: 0 0 5px 0 rgba(120,90,190,0.3);
}
select.form-control {
}
textarea.form-control {
    height: 100px;
}

.form-control-lg {
    width: 400px;
}
.form-control-sm {
    width: 100px;
}


.form-control-checkbox {
    margin-right: 5px;
}


/***************************************************
Messages
***************************************************/

.msg {
    text-align: center;
    text-transform: uppercase;
    padding: 15px;
    margin-bottom: 15px;

    color: #fff;
    border: 1px solid #c00000;
    background: #c00000;
}

.msg.msg-info {
    color: #3A87AD;
    border-radius: 3px;
    border: 1px solid #9acfea;
    background: #e2f1f9; /* Old browsers */
    background: -moz-linear-gradient(top,  #e2f1f9 0%, #b9def0 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e2f1f9), color-stop(100%,#b9def0)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #e2f1f9 0%,#b9def0 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #e2f1f9 0%,#b9def0 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #e2f1f9 0%,#b9def0 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #e2f1f9 0%,#b9def0 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2f1f9', endColorstr='#b9def0',GradientType=0 ); /* IE6-9 */
}

.msg.msg-danger {
    color: #B94A48;
    border-radius: 3px;
    border: 1px solid #dca7a7;
    background: #f2dddd; /* Old browsers */
    background: -moz-linear-gradient(top,  #f2dddd 0%, #e7c3c3 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2dddd), color-stop(100%,#e7c3c3)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f2dddd 0%,#e7c3c3 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f2dddd 0%,#e7c3c3 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f2dddd 0%,#e7c3c3 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f2dddd 0%,#e7c3c3 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2dddd', endColorstr='#e7c3c3',GradientType=0 ); /* IE6-9 */
}

.msg.msg-success {
    color: #468847;
    border-radius: 3px;
    border: 1px solid #B2DBA1;
    background: #def0d7; /* Old browsers */
    background: -moz-linear-gradient(top,  #def0d7 0%, #c9e5bd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#def0d7), color-stop(100%,#c9e5bd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #def0d7 0%,#c9e5bd 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #def0d7 0%,#c9e5bd 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #def0d7 0%,#c9e5bd 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #def0d7 0%,#c9e5bd 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#def0d7', endColorstr='#c9e5bd',GradientType=0 ); /* IE6-9 */
}


/***************************************************
Buttons
***************************************************/

.btn {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;

    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;

    display: inline-block;
    padding: 15px 25px;
    border: 0;
    border-radius: 0;

    background: #000000;
    margin-top: 30px;

    transition: background .15s linear;
    -moz-transition: background .15s linear;
    -webkit-transition: background .15s linear;
}
.btn:hover {
    color: #fff;
    background: #c00000;
}
.btn [class*="icon-"] {
    margin-right: 5px;
    margin-top: -2px;
}

.btn-inv {
    background: #c00000;
}
.btn-inv:hover {
    background: #000000;
}

.btn-success {
    color: #fff;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.196);
    border: 1px solid #398439;
    background: #5bb65b; /* Old browsers */
    background: -moz-linear-gradient(top,  #5bb65b 0%, #419741 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5bb65b), color-stop(100%,#419741)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #5bb65b 0%,#419741 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #5bb65b 0%,#419741 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #5bb65b 0%,#419741 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #5bb65b 0%,#419741 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5bb65b', endColorstr='#419741',GradientType=0 ); /* IE6-9 */
}
.btn-success:hover:not(.btn-disabled) {
    color: #fff;
    background: #4da54d; /* Old browsers */
    background: -moz-linear-gradient(top,  #4da54d 0%, #419741 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4da54d), color-stop(100%,#419741)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #4da54d 0%,#419741 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #4da54d 0%,#419741 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #4da54d 0%,#419741 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #4da54d 0%,#419741 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4da54d', endColorstr='#419741',GradientType=0 ); /* IE6-9 */
}


.btn-danger {
    color: #fff;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.196);
    border: 1px solid #AC2925;
    background: #d7504c; /* Old browsers */
    background: -moz-linear-gradient(top,  #d7504c 0%, #c12f2b 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d7504c), color-stop(100%,#c12f2b)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #d7504c 0%,#c12f2b 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #d7504c 0%,#c12f2b 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #d7504c 0%,#c12f2b 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #d7504c 0%,#c12f2b 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7504c', endColorstr='#c12f2b',GradientType=0 ); /* IE6-9 */
}
.btn-danger:hover:not(.btn-disabled) {
    color: #fff;
    background: #cc3f3b; /* Old browsers */
    background: -moz-linear-gradient(top,  #cc3f3b 0%, #c12f2b 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cc3f3b), color-stop(100%,#c12f2b)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #cc3f3b 0%,#c12f2b 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #cc3f3b 0%,#c12f2b 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #cc3f3b 0%,#c12f2b 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #cc3f3b 0%,#c12f2b 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc3f3b', endColorstr='#c12f2b',GradientType=0 ); /* IE6-9 */
}

.btn-info:hover, .btn-success:hover, .btn-danger:hover {
    color: #fff;
}


.btn-lg {
    font-size: 18px;
    padding: 8px 16px;
}
.btn-sm {
    font-size: 11px;
    padding: 3px 6px;
}
.btn-xs {
    font-size: 11px;
    padding: 0px 4px;
}

.btn-w100 {
    width: 100px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.btn-w150 {
    width: 150px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.btn-w200 {
    width: 200px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.btn-block {
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.btn-disabled {
    opacity: 0.7;
}


.btns {
    margin-top: 30px;
    clear: both;
}


/***************************************************
Links
***************************************************/

.link-u {
    text-decoration: underline;
}
.link-info {
    color: #2AABD2;
}
.link-success {
    color: #419741;
}
.link-danger {
    color: #C12F2B;
}

/***************************************************
Icons
***************************************************/

[class*="icon-"] {
    display: inline-block;
    vertical-align: middle;
    content:'';
    background-image: url("/assets/img/sprites.png");
}

.icon-vegetarian {
    width: 16px;
    height: 22px;
    background-position: 0 -22px;
}

.icon-hot {
    width: 21px;
    height: 22px;
    background-position: 0 0;
}


/***************************************************
Table
***************************************************/
table.table {
    margin: 10px auto;
    clear: both;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #C2C2C2;
}

table.table thead tr {
    background: #f9f9f9; /* Old browsers */
    background: -moz-linear-gradient(top,  #f9f9f9 0%, #e6e6e6 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#e6e6e6)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f9f9f9 0%,#e6e6e6 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f9f9f9 0%,#e6e6e6 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f9f9f9 0%,#e6e6e6 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f9f9f9 0%,#e6e6e6 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#e6e6e6',GradientType=0 ); /* IE6-9 */
}

table.table thead th {
    font-weight: bold;
    padding: 8px 10px;
    border-right: 1px solid #C2C2C2;
    border-bottom: 1px solid #C2C2C2;
}
table.table thead th[data-sort] {
    cursor: pointer;
    *cursor: hand;
}
table.table thead th span {
    margin: 0 0 0 2px;
}


table.table td {
    padding: 6px 10px;
    border-right: 1px solid #C2C2C2;
    border-bottom: 1px solid #C2C2C2;
}

table.table tr:nth-child(odd) { background-color: #fff; }
table.table tr:nth-child(even) { background-color: #f6f6f6; }

table.table tr:hover {
    background-color: #ebebeb;
}

table.table tr td.sub {
    padding-left: 30px;
}

table.table input[type=text] {
    margin: -4px -5px;
    padding: 2px;
}
table.table input[type=text].act-order {
    width: 30px;
    text-align: center;
}



/***************************************************
główna
***************************************************/

.main-wrapper {
    background: #f6f6f2 url("/assets/img/main-bg.jpg") no-repeat center top;
    padding: 50px 0 250px 0;
}


.bottom-wrapper {
    color: #e8e4d9;
    background: url("/assets/img/bottom-bg.jpg") no-repeat center bottom;
}
.bottom-wrapper .container {
    padding: 150px 20px 0 20px;
}
.bottom-wrapper p {
    font-weight: 300;
    letter-spacing: 1px;
}
.bottom-wrapper .btn {
    position: absolute;
    bottom: -28px;
    z-index: 9;
    right: 0;
}

.bottom-about{
    position: relative;
    padding-bottom: 70px;
}


.bottom-map {
    position: absolute;
    top: -160px;
    left: 0;
    right: 0;
}
.bottom-map:before {
    content: '';
    position: absolute;
    left: 25%;
    top: -66px;
    width: 246px;
    height: 66px;
    background: url("/assets/img/bottom-pizza-t.png") no-repeat;
}
.bottom-map:after {
    content: '';
    position: absolute;
    left: 15%;
    bottom: -94px;
    width: 296px;
    height: 94px;
    background: url("/assets/img/bottom-pizza-b.png") no-repeat;
}
#maps {
	width: 100%;
    height: 100%;
    min-height: 187px;
	object-fit: cover;
}

.bottom-info {
    color: #fff;
    letter-spacing: 2px;
    background: #c00000;
    padding: 20px 50px 40px 50px!important;
    position: relative;
}
.bottom-info:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: url("/assets/img/bottom-krata.jpg") repeat-y;
}
.bottom-info span {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.bottom-info .bottom-info-phone {
    color: #000000;
    font-size: 36px;
    font-weight: bold;
}
.bottom-info .btn {
    position: absolute;
    bottom: -28px;
    z-index: 9;
    right: -113px;
}


.bottom-gallery {
    position: relative;
    padding-top: 60px;
}
.bottom-gallery img {
    width: 100%;
}


@media (max-width: 767px) {
    .main-wrapper {
        padding-bottom: 330px;
    }
    .main-wrapper .offer-menu {
        margin-bottom: 40px;
    }
    .bottom-wrapper .container {
        padding-top: 230px;
    }
    .bottom-map {
        top: -240px;
    }

    .bottom-info {
        padding: 20px 50px 40px 20px!important;
    }
    .bottom-info .btn {
        right: 20px;
    }
}


@media (max-width: 534px) {
    .bottom-map:before, .bottom-map:after {
        display: none;
    }
    .main-wrapper {
        padding-bottom: 280px;
    }
    .bottom-wrapper .container {
        padding-top: 200px;
    }
}



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

.offer-menu-groups {
    text-align: right;
    margin-bottom: 10px;
}
.offer-menu-groups span {
    text-align: right;
    font-style: italic;
    display: inline-block;
    width: 70px;
}

.offer-menu-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #4c4c4c;
    position: relative;
}
.offer-menu-item h3 {
    color: #c00000;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    display: block;
    float: left;
    width: calc(100% - 70px);
}
.offer-menu-item-2 h3 {
    width: calc(100% - 140px);
}
.offer-menu-item-3 h3 {
    width: calc(100% - 210px);
}
.offer-menu-item.offer-menu-item-capacity h3 {
    width: calc(100% - 120px);
}

.offer-menu-item p {
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}
.offer-menu-item span.offer-menu-price {
    font-size: 16px;
    text-align: right;
    float: right;
    width: 70px;
}
.offer-menu-item span.offer-menu-capacity {
    font-size: 16px;
    text-align: right;
    float: right;
    width: 50px;
}

.offer-menu-item span[class*='icon'] {
    vertical-align: middle;
    margin-right: 3px;
}

.offer-menu-info h3 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
    margin: 10px 0 0 0;
}
.offer-menu-info a {
    color: #c00000;
    font-weight: bold;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 2px;
}

@media (max-width: 534px) {
    .offer-menu-item h3 {
        display: block;
        width: 100%;
    }
    .offer-menu-item p {
        display: block;
        clear: both;
    }
}



/***************************************************
podstrona - kontakt
***************************************************/

/*.sub-wrapper {*/
    /*padding: 50px 0 250px 0;*/
    /*background: url("/assets/img/main-bg.jpg") no-repeat center top;*/
/*}*/


/***************************************************
podstrona - kontakt
***************************************************/

.contact-wrapper #map {
    width: 100%;
    height: 300px;
}

/***************************************************
podstrona - galeria
***************************************************/

.gallery-wrapper article {
    margin-bottom: 20px;
}
.gallery-wrapper article a {
    display: block;
    position: relative;
}
.gallery-wrapper article a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #c00000;
    opacity: 0;
    transition: opacity .15s linear;
    -moz-transition: opacity .15s linear;
    -webkit-transition: opacity .15s linear;
}
.gallery-wrapper article a:hover:after {
    opacity: 0.3;
}
.gallery-wrapper article img {
    width: 100%;
    display: block;
}
.gallery-wrapper article figcaption {
    text-align: center;
    margin-top: 5px;
}



/***************************************************
moduł - news
***************************************************/

.about-peoples h3 {
    font-size: 18px;
    margin: 5px 0 0 0;
}
.about-peoples p {
    margin: 5px 0;
    text-align: center;
}
.about-peoples img {
    max-width: 200px;
}
.about-peoples > div {
    margin-bottom: 30px;
    text-align: center;
}


/***************************************************
moduł - news
***************************************************/

.news-wrapper article {
    margin-bottom: 15px;
}
.news-wrapper article header {
    margin-bottom: 10px;
    height: 100%;
    overflow: hidden;
}
.news-wrapper article header h2 {
    margin: 0;
    float: left;
}
.news-wrapper article header h2 a {
    text-decoration: none;
}
.news-wrapper article header time {
    color: #999;
    float: right;
}
.news-wrapper article figure {
    float: left;
    margin-right: 10px;
}
.news-wrapper article figure img {
    width: 90px;
    display: block;
}
.news-wrapper article section time {
    color: #999;
}
.news-wrapper article section p {
    margin: 10px 0;
}

