﻿@charset "utf-8";
@import "/assets/css/reset.css";
@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900');


/* 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: 'Lato', Tahoma, Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #202020;
    background: #fff url('/assets/img/bg.jpg') no-repeat center top;
    margin: 0;
    min-width: 320px;
}

a {
    color: #575757;
}
a:hover {
    color: #f9ac16;
}


/***************************************************
Szkielet
***************************************************/

.container {
    margin: 0 auto;
    max-width: 1230px;
    padding: 0 30px;
    position: relative;
}

.g-header {
    height: 178px;
    position: relative;
    margin-bottom: 30px;
    background: url('/assets/img/bg-top.png') no-repeat center top;
    z-index: 99;
}
.g-header .container {
    height: 100%;
}


.logo {
    position: relative;
    left: 0;
    top: 25px;
}
.logo img {
    width: 34%;
}


@media (max-width: 1230px) {
    .g-header {
        height: auto;
        -webkit-background-size: 163%;
        background-size: 163%;
    }
    .g-header .container {
        padding-bottom: 6.7%;
    }
}
@media (max-width: 979px) {
    .g-header {
        height: 141px;
        -webkit-background-size: auto 141px;
        background-size: auto 141px;
        background-position: -300px 0;
    }
    .g-header .container {
        padding-bottom: auto;
    }
    .logo img {
        width: 300px;
    }
}
@media (max-width: 534px) {
    .g-header {
        height: 170px;
        background-position: 0 0;
    }
    .g-header .container {
        padding-bottom: auto;
    }
    .logo {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .logo img {
        width: 280px;
    }
}



.g-footer {
    margin-top: 60px;
    margin-bottom: 20px;
}
.g-footer-links li {
    display: inline-block;
}
.g-footer-links li:after {
    content: '';
    width: 5px;
    height: 5px;
    background: #f0801e;
    border-radius: 5px;
    display: inline-block;
    margin: 3px 13px;
}
.g-footer-links li:last-child:after {
    display: none;
}

.g-footer-make {
    text-align: right;
    color: #a9a9a9;
}
.g-footer-make .studiomh {
    display: inline-block;
    background: url(/assets/img/mh.png) no-repeat top;
    width: 31px;
    height: 16px;
    margin: 10px 0 0 0;
}
.g-footer-make .studiomh:hover {
    background-position: bottom;
}


@media (max-width: 767px) {
    .g-footer-links {
        text-align: center;
    }
    .g-footer-links li {
        margin: 10px;
    }
    .g-footer-links li:after {
        display: none;
    }
    .g-footer-make {
        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: -30px;
    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;
}

[class*="g-col-"] {
    min-height: 1px;
    padding-left: 30px;
    -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;
}

@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 p {
    margin: 15px 0;
    line-height: 1.5em;
}

.content h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 40px 0 30px 0;
}
.content h2 {
    font-weight: bold;
    font-size: 24px;
    margin: 20px 0 15px 0;
}
.content h3 {
    font-weight: bold;
    font-size: 20px;
    margin: 15px 0 10px 0;
}

.content ul {
    display: block;
    list-style-position: outside;
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
    line-height: 1.5em;
}

.content ol {
    display: block;
    list-style-position: outside;
    list-style-type: decimal;
    margin: 0;
    padding-left: 20px;
    line-height: 1.5em;
}

.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;
}

/***************************************************
menu
***************************************************/

.navbar {
    position: absolute;
    bottom: 1px;
    right: 30px;
}
.navbar ul li {
    float: left;
    margin-left: 40px;
}
.navbar ul li a {
    color: #000;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0 0 80px 0;
    display: block;
    border-bottom: 7px solid #f0801e;
    -webkit-transition: border 0.2s, color 0.2s;
    transition: border 0.2s, color 0.2s;
}
.navbar ul li a:hover, .navbar ul li.current a {
    color: #fff;
    border-bottom: 7px solid #000;
}


@media (max-width: 1024px) {
    .navbar {
        display: none;
    }
}

@media (max-width: 1100px) {
    .navbar ul li {
        margin-left: 30px;
    }
    .navbar ul li a {
        padding: 0 0 60px 0;
    }
}


.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: 1025px) {
    .mobile-offcanvas {
        display: block;
    }
}

.mobile-nav {
    float: right;
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -20px;
}
@media (max-width: 534px) {
    .mobile-nav {
        background: #f0801e;
        top: 110px;
        left: 0;
        right: 0;
        margin-top: 0;
    }

}
@media (min-width: 1025px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-nav:hover {
    text-decoration: none;
}

.mobile-nav span {
    position: relative;
    padding-left: 35px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}
.mobile-nav span::after {
    display: block;
    position: absolute;
    top: 19px;
    left: 0;
    width: 25px;
    height: 3px;
    background: #fff;
    box-shadow: 0 6px 0 #fff,
    0 -6px 0 #fff;
    content: '';
}


.sidr {
    display: block;
    position: fixed;
    top: 0;
    width: 250px;
    height: 100%;
    background: #fff;
    z-index: 999999;
    overflow-x: hidden;
    overflow-y: auto;
}

.sidr ul {
    margin: 20px 12px;
    padding: 0;
    list-style: none;
}

.sidr a {
    display: block;
    padding: 3px 3px 3px 13px;
    margin: 8px 0;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    text-transform: none;
}
#subnav.sidr li:first-child a, #nav.sidr li a {
    text-transform: uppercase;
    padding-left: 3px;
}
.sidr a:hover {
    color: #f0801e;
}


.sidr.right {
    right: -250px;
    left: auto;
}

.sidr.left {
    right: auto;
    left: -250px;
}

.sidr-open .sidr {
    box-shadow: 1px 0 0 #ccc;
}



/***************************************************
			        Menu box
***************************************************/

.subnav {
    position: relative;
    background: #f0801e;
    padding: 10px 0 20px 0;
}
.subnav ul {
    margin: 20px 10px 0 20px;
}


.subnav ul a {
    color: #000;
    font-weight: bold;
}
.subnav ul a:hover, .subnav ul li.current a {
    color: #fff;
    text-decoration: none;
}
.subnav ul li {
    margin: 8px 0;
    padding-left: 15px;
    position: relative;
    z-index: 10;
}
.subnav ul li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 7px;
    left: 0;
}
.subnav ul li:first-child {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding-left: 0;
    margin-bottom: 20px;
    margin-top: 0;
}
.subnav ul li:first-child:before {
    display: none;
}




@media (max-width: 767px) {
    .subnav {
        display: none;
    }
}

.mobile-subnav {
    position: relative;
    right: auto;
    top: auto;
    background: #f0801e;
    padding: 0 20px;
    float: none;
    margin: 0 0 20px 0;
}
@media (min-width: 768px) {
    .mobile-subnav {
        display: none;
    }
}



/***************************************************
			        SLIDER
***************************************************/


.g-slider {
    z-index: 1;
    overflow: hidden;
    max-width: 1440px;
    margin: -67px auto 0 auto;
}
.g-slider li {
    position: relative;
}


.g-slider li div {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 1200px;
    width: 100%;
    padding-right: 50%;
    padding-left: 30px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.g-slider li h1 {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    color: #202020;
    margin-bottom: 20px;
}
.g-slider li h1:first-line {
    font-size: 70px;
    font-weight: 600;
    color: #f0801e;
}


.bx-viewport {
    margin: 0 auto;
}
.bx-viewport img {
    max-width: 100%;
    display: block;
}

.bx-wrapper {
    position: relative;
}

@media (max-width: 767px) {
    .g-slider li h1 {
        font-size: 5vw;
    }
    .g-slider li h1 {
        font-size: 5vw;
    }
    .g-slider li h1:first-line {
        font-size: 8vw;
    }
}


/***************************************************
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;
}

.color1 {
    color: #f0801e;
}

.label {
    display: inline-block;
    width: 100px;
    color: #f0801e;
}

hr {
    background: #C2C2C2;
    height: 1px;
    border: 0;
    margin: 30px 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: #f5f5f5;
    padding: 5px;
    width: 100%;
    font-size: 12px;
    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;
}

/***************************************************
Zewnętrzne pluginy
***************************************************/

.qtip-error{
    background-color: #d8514d!important;
    border-color: #b92c28!important;
    color: #fff!important;
    border-radius: 4px;
}
.qtip-info{
    background-color: #59bfdd!important;
    border-color: #28a4c9!important;
    color: #fff!important;
    border-radius: 4px;
}


/***************************************************
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: 60px;
}

.form-control-lg {
    width: 400px;
}
.form-control-sm {
    width: 100px;
}


/***************************************************
Messages
***************************************************/

.msg {
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;

    color: #C09853;
    border-radius: 3px;
    border: 1px solid #f5e79e;
    background: #fcf8e2; /* Old browsers */
    background: -moz-linear-gradient(top,  #fcf8e2 0%, #f8efc0 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcf8e2), color-stop(100%,#f8efc0)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #fcf8e2 0%,#f8efc0 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #fcf8e2 0%,#f8efc0 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #fcf8e2 0%,#f8efc0 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #fcf8e2 0%,#f8efc0 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcf8e2', endColorstr='#f8efc0',GradientType=0 ); /* IE6-9 */
}

.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 {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-transform: uppercase;

    white-space: nowrap;
    cursor: pointer;

    display: inline-block;
    padding: 15px 30px;
    border: 0;

    background: #f0801e;
    -webkit-transition: background 0.5s, color 0.5s;
    transition: background 0.5s, color 0.5s;
}
.btn:hover {
    color: #fff;
    background: #000;
}
.btn [class*="icon-"] {
    margin-right: 5px;
    margin-top: -2px;
}


.btn-light:hover {
    color: #000;
    background: #fff;
}

/***************************************************
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:'';
}


/***************************************************
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;
}



/***************************************************
podstrona - kontakt
***************************************************/

.contact-wrapper #map {
    width: 100%;
    height: 500px;
}
.contact-wrapper .g-row > div {
    margin-bottom: 50px;
}

/***************************************************
moduł - boxy
***************************************************/

.boxes-wrapper {
    z-index: 999;
    position: relative;
    margin-bottom: 30px;
}
.boxes-wrapper > div {
    margin-bottom: 30px;
}
.boxes-wrapper a {
    display: block;
    margin-left: -10px;
    position: relative;
    -webkit-transition: transform 0.2s;
    transition: transform 0.2s;
}
.boxes-wrapper a:hover {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(1.05);
}
.boxes-wrapper img {
    display: block;
    width: 100%;
}
.boxes-wrapper span {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 0;
    font-size: 38px;
    color: #fff;
    font-weight: 600;
    text-align: right;
    text-transform: uppercase;
    padding-right: 15px;
    height: 20%;
    line-height: 1.6em;
}
.boxes-promotion a {
    margin-left: 0;
    height: 100%;
}
.boxes-promotion span {
    background: #000;
    left: 0;
}

@media (max-width: 1200px) {

    .boxes-wrapper span {
        font-size: 3vw;
    }
}
@media (max-width: 767px) {
    .boxes-wrapper span {
        font-size: 5vw;
        line-height: 1.9em;
    }
}

/***************************************************
moduł - główna o nas
***************************************************/

.about-wrapper:after {
    content: '';
    position: absolute;
    bottom: -20px;
    height: 20px;
    left: calc(50% + 14px);
    right: 0;
    display: block;
    background: #202020;
}
.about-wrapper {
    background: url('/assets/img/about-bg.png') repeat-y center;
    padding: 30px 0;
    position: relative;
}
.about-wrapper .g-col-m-6 {
    position: relative;
    padding-bottom: 50px;
}


@media (min-width: 768px) {
    .about-wrapper:before {
        content: '';
        position: absolute;
        top: -120px;
        height: 120px;
        left: calc(50% - 708px);
        right: 0;
        display: block;
        background: #f5f5f5;
    }
    .about-wrapper .btn {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

.about-gallery {
    padding-left: 60px;
}
.about-gallery h1 {
    color: #f0801e;
}
.about-gallery .btn {
    right: auto;
    left: 60px;
}

@media (max-width: 767px) {
    .about-wrapper {
        background: none;
        padding-bottom: 0;
        padding-top: 0;
    }
    .about-wrapper .container > .g-row {
        margin: 0 -30px;
    }
    .about-wrapper .container > .g-row > div {
        padding: 30px;
    }
    .about-wrapper .container > .g-row > div:first-of-type {
        padding-top: 0;
    }
    .about-wrapper .btn {
        margin-top: 20px;
    }
    .about-gallery {
        margin-right: -30px;
        background: #202020;
    }
}



/***************************************************
podstrona - galeria
***************************************************/

.gallery-wrapper article {
    margin-bottom: 30px;
}
.gallery-wrapper a.photo {
    position: relative;
    display: block;
}
.gallery-wrapper a.photo:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(240, 128, 30, 0.4) url("/assets/img/icon-zoom.png") no-repeat center;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.gallery-wrapper a.photo:hover:after {
    opacity: 1;
}
.gallery-wrapper img {
    width: 100%;
    display: block;
}


/***************************************************
podstrona - referencje
***************************************************/

.reference-wrapper a.photo {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
