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


/* 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: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #333;
    background: #eee;
    margin: 0;
    min-width: 320px;
}
body.main {
    background: #eee url("/assets/img/bg-1360-2.jpg") no-repeat center top;
    -webkit-background-size: calc(80% + 300px);
    background-size: calc(80% + 300px);
}
@media (min-width: 1360px) {
    body.main {
        background: #eee url("/assets/img/bg-2.jpg") no-repeat center top;
        background-size: auto;
    }
}


a {
    color: #333;
}
a:hover {
    color: #fed4a2;
}


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

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

.header-wrapper {
    position: relative;
    margin-bottom: 30px;
}
.header-wrapper .container {
    height: 150px;
}
body.sub .header-wrapper {
    background: #22201e url("/assets/img/bg-2.jpg") no-repeat center top;
}
body.sub .header-wrapper .container {
    border-bottom: 4px solid #fed4a2;
}
.header-logo {
    display: inline-block;
    position: relative;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}


main .container, main.container {
    padding: 0 10px;
}
main.container {
    min-height: 400px;
}


@media (max-width: 1199px) {
    .header-logo img {
        width: 250px;
    }
}

@media (max-width: 1023px) {
    .header-wrapper .container {
        height: 100px;
    }
}

@media (max-width: 534px) {
    .header-logo img {
        width: 200px;
    }
}


.footer-wrapper {
    border-top: 4px solid #f6cd9d;
    padding: 50px 10px;
    margin-top: 30px;
    background: #000;
    color: #fff;
}
.footer-logo img {
    margin-top: -15px;
}
.footer-links {
    text-align: center;
}
.footer-links li {
    display: inline-block;
    margin: 0 10px;
}
.footer-links li a {
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
}
.footer-links li a:hover {
    color: #fed4a2;
}

.footer-logo img {
    width: 100%;
}

.footer-social {
    text-align: right;
}
.footer-social img {
    vertical-align: middle;
}
.footer-social .icon-fb {
    margin-right: 0;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);

}


.footer-make {
    color: #656565;
    font-size: 13px;
    text-align: center;
    position: relative;
}
.footer-make .studiomh {
    position: absolute;
    right: 0;
    display: inline-block;
	color: #656565;
}

@media (max-width: 767px) {
    .footer-social {
        text-align: center;
    }
	.footer-make .studiomh {
		position: relative;
		right: auto;
		display: block;
		margin-top: 20px;
		text-align: center;
	}
}





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

.g-pdd {
    margin-top: -30px;
}
.g-pdd > * {
    padding-top: 30px;
}
.g-pdd-30 {
    margin-top: -30px;
}
.g-pdd-30 > div {
    padding-top: 30px;
}


@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: 68px;
    font-weight: 800;
    margin: 50px 0;
}
.content h2 {
    font-weight: bold;
    font-size: 35px;
    margin: 20px 0 15px 0;
}
.content h3 {
    font-weight: 300;
    font-size: 26px;
    margin: 15px 0 10px 0;
}
.content h4 {
    font-weight: 300;
    font-size: 18px;
    text-transform: uppercase;
    color: #fed4a2;
    margin: 15px 0 10px 0;
}

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

.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: 50px;
    right: 0;
}
.navbar > ul > li {
    float: left;
    position: relative;
}
.navbar > ul > li > a {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    padding: 12px;
    display: block;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: border .15s linear;
    -moz-transition: border .15s linear;
    -webkit-transition: border .15s linear;
}
.navbar > ul > li:not(.navbar-social) > a:hover, .navbar > ul:not(.navbar-social) > li.current > a {
    color: #fed4a2;
    border: 3px solid #fed4a2;
}

.navbar-sub {
    display: none;
    position: absolute;
    top: 50px;
    left: 50%;
    width: 200px;
    background: #fed4a2;
    border-radius: 8px;
    padding: 10px 20px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 99;
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
}
.navbar > ul > li:hover .navbar-sub {
    display: block;
}
.navbar-sub li a {
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin: 5px 0;
}
.navbar-sub li a:hover {
    color: #000;
    text-decoration: underline;
}

.navbar .navbar-social {
    margin-right: 0;
}
.navbar .icon-fb, .navbar .icon-insta {
    margin: -20px 0;
}

@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: 20px;
    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: #fff;
    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: #fff;
    box-shadow: 0 6px 0 #fff,
    0 -6px 0 #fff;
    content: '';
}

@media (max-width: 534px) {
    .mobile-nav span {
        width: 25px;
        overflow: hidden;
    }
}

.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 0;
    padding: 0;
    list-style: none;
}
.sidr li {
    border-bottom: 1px solid #e4e4e4;
}
.sidr a {
    display: block;
    padding: 5px 20px;
    margin: 5px 0;
    color: #000;
    font-weight: 500;
    text-decoration: none;
}
.sidr a:hover {
    color: #fed4a2;
}

.sidr-class-navbar-sub {
    margin: 0!important;
    display: none;
}
.sidr-class-navbar-sub li {
    border-top: 1px solid #e4e4e4;
    border-bottom: 0;
    padding-left: 30px;
}
.sidr-class-navbar-sub a {
    font-size: 16px;
}


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

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

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



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

.slider-wrapper {
    margin: 0 auto 150px auto;
    z-index: 1;
}

.slider-wrapper .slick-slide {
    position: relative;
    padding-bottom: 15px;
}
.slider-wrapper .slick-slide img {
    max-width: 100%;
    margin: 0 auto;
}



/* PAGER */

.slick-dots {
    text-align: center;
    font-size: .85em;
    font-weight: bold;
    color: #666;
    padding: 7px 2px;
    z-index: 99;
    position: absolute;
    bottom: 10px;
    right: 50%;
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);
}
.slick-dots li {
    float: left;
}
.slick-dots li button {
    text-indent: -9999px;
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 5px;
    outline: 0;
    position: relative;
    background: #fff;
    border: 0;
    cursor: pointer;
    border-radius: 50%;
}
.slick-dots li button:hover,
.slick-dots li.slick-active button {
    background: #fed4a2;
}





/***************************************************
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: 190px;
    color: #a7a7a7;
}

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-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(0,0,0,0.6);
    padding: 5px;
    width: 100%;
    font-size: 12px;
    color: #fff;
    text-align: center;
}
#cookies a {
    color: #fff;
}
#cookies .ok {
    background: #000;
    border: 2px solid #fed4a2;
    border-radius: 5px;
    color: #fff;
    padding: 1px 3px;
    margin: 0 5px;
}
body.hasCookies {
    margin-bottom: 20px;
}


.price-big {
    background: #fed4a2;
    font-size: 90px;
    font-weight: 800;
    color: #000;
    padding: 0 20px;
    border-radius: 8px;
}
.price-big small {
    font-size: 45px;
    text-transform: uppercase;
}



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

.qtip-error{
    background-color: #d8514d!important;
    border-color: #d8514d!important;
    color: #fff!important;
    border-radius: 5px;
    font-size: 12px!important;
    line-height: 1.2em!important;
}
.qtip-info{
    background-color: #f07c01!important;
    border-color: #f07c01!important;
    color: #fff!important;
    border-radius: 8px;
    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 {
    color: #333;
    background: transparent;
    padding: 6px 8px;
    margin: 0;
    border: 2px solid #ddd;
    border-radius: 6px;
    width: 100%;
}
.form-control:hover {
    border-color: #fed4a2;
}
select.form-control {
}
textarea.form-control {
    height: 150px;
}

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

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


.form-btns {
    margin-top: 30px;
}


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

.msg {
    text-align: center;
    font-weight: 800;
    padding: 15px;
    margin-bottom: 15px;

    color: #000;
    background: #fed4a2;
    border-radius: 6px;
    border: 0;
}

.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: 24px;
    font-weight: 800;
    text-align: center;
    line-height: 1em;

    vertical-align: middle;
    cursor: pointer;

    display: inline-block;
    padding: 15px 20px;

    border: 3px solid #f6cd9d;
    border-radius: 6px;

    transition: all .15s linear;
    -moz-transition: all .15s linear;
    -webkit-transition: all .15s linear;
}
.btn:hover {
    color: #000;
    border: 3px solid #fed4a2;
    background: #fed4a2;
}

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

.icon-fb {
    width: 60px;
    height: 60px;
    background-color: transparent;
    background-position: -4px -3px;
    border: 3px solid #fff;
    border-radius: 50%;
}
.footer-social .icon-fb {
    background-position: -44px -3px;
    border: 3px solid #969696;
}
a:hover .icon-fb  {
    border: 3px solid #fed4a2;
}
.sidr-class-icon-fb {
    background: none;
}
.sidr-class-icon-fb:after {
    content: 'Facebook';
}
.icon-insta {
    width: 30px;
    height: 30px;
    background-color: #c79f35;
    background-position: -30px 0;
    border-radius: 50%;
}



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

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


/***************************************************
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 menu
***************************************************/

.menuMain-wrapper {
    border: 3px solid #f6cd9d;
    border-radius: 6px;
    position: relative;
    padding: 40px;
    margin: 0 10px 90px 10px;
}

.menuMain-wrapper h1 {
    line-height: 40px;
    position: absolute;
    top: -27px;
    left: 32px;
    margin: 0;
    padding: 0 5px;
    background: #eee;
}

.menuMain-header {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

@media (min-width: 980px) {
    .menuMain-wrapper .btn {
        position: absolute;
        bottom: 0;
        left: 20px;
        right: 0;
    }
    .menuMain-header {
        margin-bottom: 0;
    }
}

.menuMain-item {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}
.menuMain-item h2 {
    margin: 0;
    line-height: 1em;
}
.menuMain-item h3 {
    margin: 10px 0;
    text-transform: uppercase;
}
.menuMain-item h4 {
    color: #f07c01;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}



@media (min-width: 768px) {
    .menuMain-item {
        text-align: right;
        padding-bottom: 50px;
    }
    .menuMain-item .price-big {
        position: absolute;
        right: 0;
        bottom: -70px;
    }
}

@media (max-width: 979px) {
    .menuMain-wrapper {
        padding: 40px 20px;
    }
}



.boxesMain-wrapper {
    margin: 0 40px
}
.mainBoxes-item {
    color: #fed4a2;
    font-size: 69px;
    font-weight: 800;
    text-align: center;
    display: block;
    border-radius: 5px;
    position: relative;
    line-height: 220px;
    height: 220px;
}
.mainBoxes-item:after {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    content: ' ';
    border: 3px solid #fed4a2;
    border-radius: 6px;
}
.mainBoxes-item:hover {
    color: #fed4a2;
}
.mainBoxes-item:before {
    border-radius: 5px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    background: rgba(255, 237, 0, 0.2);
    opacity: 0;
    transition: opacity .15s linear;
    -moz-transition: opacity .15s linear;
    -webkit-transition: opacity .15s linear;
}
.mainBoxes-item:hover:before {
    opacity: 1;
}

.mainBoxes-place {
    background: url("/assets/img/mainBoxes-miejsce.jpg");
    background-size: cover;
}
.mainBoxes-card {
    background: #0b0b0a;
    padding-left: 50%;
    text-align: left;
}
.mainBoxes-card span {
    color: #fff;
    font-size: 40px;
    line-height: 1em;
    text-align: right;
    position: absolute;
    right: calc(50% + 40px);
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}


@media (max-width: 1199px) {

    .boxesMain-wrapper {
        margin: 0;
    }
}


@media (max-width: 767px) {
    .mainBoxes-item {
        font-size: 54px;
    }

    .mainBoxes-card {
        padding-left: 0;
        padding-top: 80px;
        text-align: center;
        line-height: 140px;
        height: auto;
    }
    .mainBoxes-card span {
        font-size: 32px;
        text-align: center;
        position: absolute;
        right: 20px;
        left: 20px;
        top: 80px;
    }

}



.aboutMain-wrapper {
    background: url("/assets/img/about-2.jpg") no-repeat center;
    padding: 50px 0;
}
.aboutMain-wrapper .container {
    max-width: 800px;
    text-align: center;
}
.aboutMain-wrapper .btn {
    margin-top: 30px;
}


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

.contact-wrapper #map {
    width: 100%;
    height: 500px;
}
.contact-wrapper .mapTitle {
    width: 170px;
    font-size: 14px;
    line-height: 1.5em;
}

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

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



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


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


.offer-menu {
    border: 3px solid #f6cd9d;
    border-radius: 6px;
    position: relative;
    padding: 40px;
    margin: 0 10px 90px 10px;
}

.offer-menu h2 {
    line-height: 40px;
    position: absolute;
    top: -25px;
    left: 32px;
    margin: 0;
    padding: 0 5px;
    background: #eee;
}

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

.offer-menu-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #bfbfbf;
    position: relative;
}
.offer-menu-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.offer-menu-item h3 {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    display: block;
    float: left;
    width: calc(100% - 100px);
}
.offer-menu-item-2 h3 {
    width: calc(100% - 200px);
}
.offer-menu-item-3 h3 {
    width: calc(100% - 300px);
}
/*.offer-menu-item.offer-menu-item-capacity h3 {*/
    /*width: calc(100% - 120px);*/
/*}*/

.offer-menu-item p {
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
    width: calc(100% - 100px);
}
.offer-menu-item-2 p {
    width: calc(100% - 200px);
}
.offer-menu-item-3 p {
    width: calc(100% - 300px);
}

.offer-menu-item span.offer-menu-price {
    font-size: 16px;
    font-weight: 800;
    text-align: right;
    float: right;
    width: 100px;
}
.offer-menu-item span.offer-menu-capacity {
    font-size: 16px;
    font-weight: normal;
}

.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: #fed4a2;
    font-weight: bold;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 2px;
}

@media (max-width: 534px) {
    .offer-menu {
        border: 0;
        border-radius: 0;
        border-top: 3px solid #fed4a2;
        padding: 40px 0;
        margin: 0 0 90px 0;
    }

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

