﻿@charset "utf-8";
@import "/assets/css/reset.css";
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,700&display=swap');


/* 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: Poppins, Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #565656;
    background: #fff;
    margin: 0;
    min-width: 320px;
    padding-top: 160px;
}
body.main {
    background: #f8f8f8;
}

a {
    color: #565656;
}
a:hover {
    color: #ba751f;
}


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

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

.header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    background: #f8f8f8;
    z-index: 999;
}
.header-wrapper .container {
    height: 160px;
    transition: all .15s linear;
    -moz-transition: all .15s linear;
    -webkit-transition: all .15s linear;
}
.header-logo {
    position: relative;
    left: 0;
    top: 21px;
    transition: all .15s linear;
    -moz-transition: all .15s linear;
    -webkit-transition: all .15s linear;
}
.header-logo img {
    height: 118px;
    transition: all .15s linear;
    -moz-transition: all .15s linear;
    -webkit-transition: all .15s linear;
}

.header-langs {
    display: inline-block;
    height: 30px;
    position: absolute;
    top: 15px;
    right: 23px;
}
.header-langs a {
    display: block;
}
.header-langs a span.current {
    display: inline-block;
}

.header-langs a span {
    font-size: 14px;
    text-transform: uppercase;
    color: #19171d;
    padding: 3px 0;
    display: none;
    width: 35px;
    text-align: center;
}
.header-langs.opened span {
    color: #fff;
    display: inline-block;
    background: #ba751f;
}
.header-langs.opened a:hover span {
    color: #eedac1;
}


.sticky .header-wrapper {
    z-index: 9;
    box-shadow: 0 0 3px 1px rgba(0,0,0,0.1);
}
.sticky .header-wrapper .container {
    height: 80px;
}
.sticky .header-logo {
    top: 10px;
}
.sticky .header-logo img {
    height: 60px;
}


@media (min-width: 1024px) {
.sticky .header-langs {
    display: none;
}
}

@media (max-width: 1023px) {
    body {
        padding-top: 80px;
    }
    .header-wrapper .container {
        height: 80px;
    }
    .header-logo {
        top: 10px;
    }
    .header-logo img {
        height: 60px;
    }

    .header-langs {
        top: 25px;
        right: 20px;
    }
}




.footer-wrapper {
    padding: 30px 0 50px 0;
    background: #f8f8f8;
}
.sub .footer-wrapper {
}
.footer-links {
    text-align: left;
}
.footer-links li {
    display: inline-block;
}
.footer-links li:after {
    content: '';
    display: inline-block;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    background: #07abb5;
    margin: 0 11px 3px 15px;
}
.footer-links li:last-child:after {
    display: none;
}
.footer-links li a {
    font-weight: 500;
}

.footer-logo img {
    width: 150px;
}


.footer-copy {
    text-align: right;
}
.footer-copy .studiomh {
	color: #bdbdbd;
    display: block;
    position: absolute;
	bottom: -30px;
	right: 20px;
}

@media (max-width: 767px) {
    .footer-links {
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-links li:after {
        margin: 0 6px 3px 10px;
    }
    .footer-copy {
        margin-top: 30px;
        text-align: center;
    }
}





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


[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-pdd {
    margin-top: -20px;
}
.g-pdd > * {
    padding-top: 20px;
}
.g-pdd-50 {
    margin-top: -50px;
}
.g-pdd-50 > * {
    padding-top: 50px;
}


@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: 40px;
    text-align: center;
    color: #07abb5;
    margin: 50px 0;
    padding-bottom: 30px;
    position: relative;
}
.content h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 120px;
    height: 3px;
    background: #07abb5;
    margin-left: -60px;
}
.content h2 {
    font-weight: bold;
    font-size: 14px;
    margin: 20px 0 15px 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;
    line-height: 1.5em;
}

/*.content ul {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    line-height: 1.5em;
}
.content ul li {
    position: relative;
    padding-left: 30px;
}
.content ul li::before {
    content: "";
    position: absolute;
    background: #28cb80;
    display: block;
    width: 6px;
    height: 6px;
    top: 7px;
    left: 10px;
    border-radius: 50%;
}*/


.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;
    top: 60px;
    right: 20px;
    transition: all .15s linear;
    -moz-transition: all .15s linear;
    -webkit-transition: all .15s linear;
}
.navbar > ul > li {
    float: left;
    margin: 0 20px;
    position: relative;
}
.navbar > ul > li > a {
    color: #ba751f;
    font-size: 20px;
    padding: 0 0 20px 0;
    display: block;
    transition: all .15s linear;
    -moz-transition: all .15s linear;
    -webkit-transition: all .15s linear;
    border-bottom: 3px solid #f8f8f8;
}
.navbar > ul > li > a:hover, .navbar > ul > li.current > a {
    border-bottom: 3px solid #ba751f;
}
.navbar > ul > li:hover .navbar-sub {
    display: block;
}
.navbar .navbar-social {
    margin-right: 0;
}
.navbar .navbar-social a {
    border-bottom: none!important;
}
.navbar .icon-fb, .navbar .icon-insta {
    margin: -8px 0 -7px;
}


.navbar .navbar-sub {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 300px;
    background: #ba751f;
    z-index: 999;
    padding: 10px 0;
    display: none;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.navbar .navbar-sub li {
    margin: 5px 0;
}
.navbar .navbar-sub a {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    line-height: 2.5em;
    display: block;
    transition: all .15s linear;
    -moz-transition: all .15s linear;
    -webkit-transition: all .15s linear;
}
.navbar .navbar-sub a:hover {
    background: #fff;
    color: #ba751f;
}
.navbar .navbar-sub li.current a {
    color: #e0c6a0;
}


.sticky .navbar {
    top: 24px;
}


@media (max-width: 1023px) {
    .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: 1023px) {
    .mobile-offcanvas {
        display: block;
    }
}

.mobile-nav {
    float: right;
    display: block;
    height: 52px;
    line-height: 52px;
    text-align: center;
    text-decoration: none;
    position: absolute;
    right: 80px;
    top: 50%;
    margin-top: -26px;
}

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

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

.mobile-nav span {
    position: relative;
    padding-left: 35px;
    color: #ba751f;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}
.mobile-nav span::after {
    display: block;
    position: absolute;
    top: 24px;
    left: 0;
    width: 25px;
    height: 3px;
    background: #ba751f;
    box-shadow: 0 6px 0 #ba751f,
    0 -6px 0 #ba751f;
    content: '';
}

@media (max-width: 534px) {

    .mobile-nav {
        right: 60px;
    }
    .mobile-nav span {
        width: 25px;
        overflow: hidden;
    }
}



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

.sidr ul {
    margin: 30px 10px;
    padding: 0;
    list-style: none;
}
.sidr li {
    border-bottom: 1px solid #d4a365;
}
.sidr a {
    display: block;
    padding: 5px;
    margin: 5px 0;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}
.sidr a:hover {
    color: #fff;
    text-decoration: underline;
}


.sidr-class-navbar-sub {
    margin: 0!important;
}
.sidr-class-navbar-sub li {
    border-top: 1px solid #d4a365;
    border-bottom: 0;
    padding-left: 20px;
}
.sidr-class-navbar-sub a {
    font-size: 13px;
    text-transform: none;
}
.sidr-class-icon-fb {
    background: none!important;
}
.sidr-class-icon-fb:after {
    content: 'Facebook';
}


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

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

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


/***************************************************
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;
}

a.img figure {
    position: relative;
}
a.img figure img {
    display: block;
    border-radius: 5px;
}
a.img figure:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background: #f6cd9d;
    opacity: 0;
    transition: opacity .15s linear;
    -moz-transition: opacity .15s linear;
    -webkit-transition: opacity .15s linear;
    border-radius: 5px;
}
a.img:hover figure:after {
    opacity: 0.4;
}

img.photo:not(.noPhoto), a.photo img, a.video img {
    cursor: pointer;
    margin: 10px;
    border: 1px solid #ba751f;
}
a.photo img, a.video img {
    margin: 0;
}
img.photo:not(.noPhoto):hover, a.photo:hover img, a.video:hover img {
    opacity: 0.8;
}

.img-6-right, .img-6-left, .img-4-right, .img-4-left {
    width: 100%;
    margin: 20px 0;
}
@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;
    }
}

.video {
    position: relative;
    display: block;
}
.video:after {
    content: '';
    width: 50px;
    height: 50px;
    display: block;
    background: url(/assets/img/sprites.png?3) -108px 0;
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
}

.pagination {
    text-align: center;
    margin: 30px 0 0 0;
}
.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(0,0,0,0.5);
    padding: 5px;
    width: 100%;
    font-size: 12px;
    color: #fff;
    text-align: center;
    z-index: 999;
}
#cookies a{
    color: #fff;
}
#cookies .ok {
    background: #000;
    color: #fff;
    padding: 1px 3px;
    margin: 0 5px;
}
body.hasCookies {
    margin-bottom: 20px;
}



.videodetector {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}

.videodetector iframe,
.videodetector object,
.videodetector embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



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

.qtip-error{
    background-color: #d8514d!important;
    border-color: #b92c28!important;
    color: #fff!important;
    border-radius: 0;
    font-size: 12px!important;
    line-height: 1.2em!important;
}
.qtip-info{
    background-color: #07abb5!important;
    border-color: #07abb5!important;
    color: #fff!important;
    border-radius: 0;
    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: 150px;
}

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

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



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

.msg {
    text-align: center;
    font-size: 16px;
    padding: 15px;
    margin-bottom: 15px;

    color: #fff;
    border-radius: 0px;
    background: #07abb5;}

.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: 14px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-transform: uppercase;

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

    display: inline-block;
    padding: 12px 24px;
    border: 0;
    border-radius: 0;

    background: #ba751f;

    transition: background .15s linear;
    -moz-transition: background .15s linear;
    -webkit-transition: background .15s linear;
}
.btn:hover {
    color: #fff;
    background: #ce8222;
}

.btn [class*="icon-"] {
    margin-right: 5px;
    margin-top: -2px;
}

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

.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?3);
}

.icon-fb {
    width: 42px;
    height: 42px;
    background-position: 0 0;
}
a:hover .icon-fb {
    background-position: 0 -42px;
}


/***************************************************
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: 300px;
}

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


.gallery-wrapper article h3 {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}
.gallery-wrapper article img {
    width: 100%;
    display: block;
}

/***************************************************
moduł - główna
***************************************************/

.main-wrapper .container {
    max-width: 1600px;
}
.main-wrapper img {
    width: 100%;
    margin: 50px 0;
}

@media (max-width: 534px) {
    .main-wrapper .container {
        max-width: 1600px;
        min-height: calc(100vh - 300px);
    }
}



/***************************************************
moduł - podstrona
***************************************************/

main {
    min-height: calc(100vh - 310px);
    background: #fff;
    padding: 50px 0;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-around;
}

.grid h1 {
    font-size: 24px;
    margin: 15px 0;
}

.grid h2 {
    font-size: 16px;
    margin: 15px 0;
    font-weight: 900;
}

.grid p {
    margin: 10px 0;
}

.grid ul {
    list-style: disc;
    margin-left: 10px;
}

.col {
    flex: 1;
    padding: 20px;
}

