/* Fonty ładowane w app/header.php (preconnect + link lub preload) */
html, body {
    overflow-x: hidden;
}

body
{
    --clr-gray: #414141;
    --clr-light: #868686;
    --clr-gold: #c6a47e;
    --clr-black: #000;
    --clr-white: #fff;
    --fnt-text: 'Barlow';
    --fnt-title: 'Saira Extra Condensed';
    --cns-pad-in:40px;
    --cns-pad-out:60px 0 60px;
    --cns-title-size:64px;
    --cns-title-line:60px;
    --cns-text-size:21px;
    --cns-text-line:26px;
    --cns-cat-size:48px;
    --cns-cat-size:48px;
    
    
    background: var(--clr-gray);
    font-family: var(--fnt-text);
    font-weight: 400;
    font-size: 21px;
    color: var(--clr-light);
    padding: 0;
    margin: 0;
}
@media(max-width:1200px)
{
    body
    {
        --cns-pad-in:20px;
        --cns-pad-out:25px 0 25px;
    }
}

::-webkit-input-placeholder { /* Edge */
    color: white;
  }
  
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: white;
}

::placeholder {
    color: white;
}

a
{
    color: #fff;
    transition: all ease-in 0.3s;
}
a:hover
{
    color: var(--clr-gold);
}

.container-fluid
{
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.container
{
    padding: 0;
}
.row
{
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9
{
    padding: 0;
}

a
{
    text-decoration: none !important;
}

.header-table
{
    display: table;
    table-layout: fixed;
    width: 100%;
    min-height: 80vh;
}
.header-table>.row
{
    display: table-row;
}
.header-table>.row:first-child
{
    min-height: 30vh;
}
.header-table>.row:first-child>.col-xs-12
{
    display: table-cell;
    float: none;
    height: 100%;
}

.header-main
{
    display: block;
    position: relative;
    height: auto;
    min-height: 90vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--clr-white);
    transition: all ease-in .5s;
}

/* LCP + crossfade: dwie warstwy <img> w .header-main-bg-stack */
.header-main-bg-stack
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.header-main-bg-stack .header-main-bg-img
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.header-main-bg-stack .header-main-bg-img.is-active
{
    opacity: 1;
    z-index: 2;
}

.header-main .header-slider-bg
{
    position: relative;
    z-index: 1;
}

.header-slider-bg
{
    width: 100%;
    height: auto;
    min-height: 90vh;
    background-color: rgba(65,65,65,0.4);
    background-image: var(--mk-bg-slider-wave-gray, url(../images/slider-wave-gray.png));
    background-position: bottom center;
    background-repeat: no-repeat;
}
@media(max-width:991px)
{
    .header-main
    {
        height: auto;
        min-height: 90vh;
        overflow: visible;
    }
    .header-slider-bg
    {
        height: auto;
        min-height: 90vh;
        overflow: visible;
        background-size: 180% 20%;
        background-position: right bottom;
    }
}
.header-left-top
{
    background: var(--clr-gray);
    padding: var(--cns-pad-in);
    margin: 0;
    display: block;
    /* height: 33vh; */
    height: 320px;
}

.header-lang
{
    list-style: none outside;
    margin: 0 0 30px;
    padding: 0;
    display: block;
    transition: all ease-out .3s;
}
.header-lang li
{
    display: inline-block;
    padding: 0;
    margin: 0 10px 0 0;
    transition: all ease-out .3s;
}
.header-lang:hover li
{
    filter: blur(1px);
}
.header-lang:hover li:hover
{
    filter: blur(0px);
}

@media(max-width:991px)
{
    .header-lang:hover li
    {
        filter: blur(0px);
    }
    .header-lang:hover li:hover
    {
        filter: blur(0px);
    }
}

@media(max-width:991px)
{
    .header-lang
    {
        text-align: center;
        margin-bottom: 15px;
    }
}

.header-lang li a
{
    display: block;
    filter: grayscale(1);
    transition: all ease-in .3s;
}
.header-lang li a.active,
.header-lang li a:hover
{
    filter: grayscale(0);
}
.header-lang li a img
{
    height: 15px;
}

.header-left-top h1
{
    display: block;
    padding: 0;
    margin: 0;
}
.header-left-top h1 a
{
    display: block;
    margin-bottom: 15px;
}
.header-left-top h1 a img
{
    display: block;
    max-width: 100%;
}
@media(min-width:1100px) and (max-width:1300px)
{
    .header-left-top h1
    {
        margin: 0;
    }
    .header-left-top h1 a img
    {
        display: inline-block;
        max-height: 50px;
    }
}
@media(max-width:1100px)
{
    .header-left-top h1
    {
        margin: 0;
    }
    .header-left-top h1 a img
    {
        display: inline-block;
        max-width: 75%;
    }
}
@media(max-width:991px)
{
    .header-left-top
    {
        height: auto;
        min-height: auto;
    }
    .header-left-top h1
    {
        text-align: center;
        margin: 0;
    }
    .header-left-top h1 a
    {
        display: inline-block;
        width: 30%;
        margin-bottom: 15px;
        text-align: center;
    }
    .header-left-top h1 a img
    {
        display: inline-block;
        max-width: 85%;
    }
    .header-left-top h1 a:first-child
    {
        width: 60%;
    }
}

.header-left-bottom
{
    display: table;
    width: 100%;
    height: 60vh;
}
.header-left-bottom .row
{
    display: table-row;
}
.header-left-bottom .row .col-xs-12
{
    display: table-cell;
    height: 100%;
    float: none;
    clear: both;
    vertical-align: top;
    
}
.header-left-bottom .row .col-md-4
{
    padding: var(--cns-pad-in);
    background: var(--clr-gray);
    text-align: center;
    vertical-align: bottom;
}
.header-left-bottom .header-social
{
    font-family: var(--fnt-title);
    letter-spacing: 10px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}
.header-left-bottom .header-social .header-slogan
{
    display: inline-block;
}
.header-left-bottom .header-social .header-slogan img
{
    max-height: 190px;
    max-width: 100%;
}

.header-left-bottom .header-social .header-social-list
{
    display: block;
    list-style: none outside;
    margin: 30px 0 30px;
    padding: 0;
    transition: all ease-out .3s;
}
.header-left-bottom .header-social .header-social-list li
{
    display: block;
    padding: 10px 0;
    margin: 0;
    opacity: 0.6;
    transition: all ease-out .3s;
}
.header-left-bottom .header-social .header-social-list li a
{
    display: block;
}

.header-left-bottom .header-social .header-social-list:hover li
{
    filter: blur(1px);
}

.header-left-bottom .header-social .header-social-list:hover li:hover
{
    filter: blur(0px);
    opacity: 1;
}

@media(max-width:991px)
{
    .header-left-bottom .header-social .header-social-list:hover li
    {
        filter: blur(0px);
    }

    .header-left-bottom .header-social .header-social-list:hover li:hover
    {
        filter: blur(0);
        opacity: 1;
    }
}
@media(max-width:991px)
{
    .header-left-bottom
    {
        display: block;
        width: 100%;
        height: auto;
    }
    .header-left-bottom .row
    {
        display: block;
    }
    .header-left-bottom .row .col-xs-12
    {
        display: block;
        height: 100%;
        float: left;
        clear: both;
        vertical-align: top;
        padding: 0;
    }
    .header-left-bottom .row .col-md-4
    {
        background: var(--clr-gray);
        text-align: center;
        vertical-align: bottom;
    }
    .header-left-bottom .header-social
    {
        font-family: var(--fnt-title);
        letter-spacing: 10px;
        display: inline-block;
        text-transform: uppercase;
        font-size: 12px;
    }
    
    .header-left-bottom .header-social .header-social-list
    {
        display: block;
        list-style: none outside;
        margin: 10px 0 10px;
        text-align: center;
        padding: 0;
        transition: all ease-out .3s;
    }
    .header-left-bottom .header-social .header-social-list li
    {
        display: inline-block;
        padding: 0;
        margin: 0;
        opacity: 0.6;
        transition: all ease-out .3s;
    }
}
@media(max-width:991px)
{
    .header-left-bottom .header-social .header-slogan
    {
        display: inline-block;
    }
    .header-left-bottom .header-social .header-slogan img
    {
        display: none;
    }
    .header-left-bottom .header-social .header-slogan span
    {
        display: block !important;
    }
}


.header-slider-nav
{
    display: block;
    list-style: none outside;
    padding: 0 15px;
    margin: 30px 0;
    text-align: center;
    transition: all ease-in .3s;
}
.header-slider-nav li
{
    display: inline-block;
    line-height: 42px;
    height: 42px;
    margin: 0;
    transition: all ease-in .3s;
}

.header-slider-nav:hover li
{
    filter: blur(1px);
}
.header-slider-nav:hover li:hover
{
    filter: blur(0);
}
.header-slider-nav:hover li.sep:hover
{
    filter: blur(1px);
}
@media(max-width:991px)
{
    .header-slider-nav:hover li
    {
        filter: blur(0px);
    }
    .header-slider-nav:hover li:hover
    {
        filter: blur(0px);
    }
    .header-slider-nav:hover li.sep:hover
    {
        filter: blur(0px);
    }
}
.header-slider-nav li.sep
{
    width: 40px;
    height: 60px;
    position: relative;
    top:25px;
    margin: 0 -15px;
    opacity: 0.8;
    background-image: var(--mk-bg-slider-nav-sep, url(../images/slider-nav-sep.png));
    background-position: center center;
    background-repeat: no-repeat;
}
.header-slider-nav li.prev a
{
    outline: none !important;
    text-transform: uppercase;
    color: var(--clr-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    line-height: 42px;
    background-image: var(--mk-bg-slider-nav-arrow-left, url(../images/slider-nav-arrow-left.png));
    background-position: left center;
    background-repeat: no-repeat;
    padding: 0 0 0 13px;
    transition: all ease-in .3s;
}
.header-slider-nav li.prev:hover a
{
    background-image: var(--mk-bg-slider-nav-arrow-left-hover, url(../images/slider-nav-arrow-left-hover.png));
    color: var(--clr-gold);
    letter-spacing: 4px;
    padding: 0 0 0 20px;
}
.header-slider-nav li.next a
{
    outline: none !important;
    text-transform: uppercase;
    color: var(--clr-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    line-height: 42px;
    background-image: var(--mk-bg-slider-nav-arrow-right, url(../images/slider-nav-arrow-right.png));
    background-position: right center;
    background-repeat: no-repeat;
    padding: 0 20px 0 0;
    transition: all ease-in .3s;
}
.header-slider-nav li.next:hover a
{
    background-image: var(--mk-bg-slider-nav-arrow-right-hover, url(../images/slider-nav-arrow-right-hover.png));
    color: var(--clr-gold);
    letter-spacing: 4px;
}

@media(max-width:1200px)
{
    .header-slider-nav
    {
        text-align: left;
    }
    .header-slider-nav li
    {
        text-align: left;
    }
    .header-slider-nav li.sep
    {
        display: block;
        background: none !important;
        height: 1px;
        width: 100%;
        position: relative;
        top:0;
        margin: 0;
    }
}

.header-left-bottom .scroll-down
{
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    bottom: 80px;
    color: var(--clr-white);
    font-family: var(--fnt-title);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    opacity: .5;
    transition: all ease-in 0.3s;
}
.header-left-bottom .scroll-down span
{
    display: block;
}
.header-left-bottom .scroll-down span.arrow
{
    padding: 15px 0;
    height: 20px;
    background-image: var(--mk-bg-slider-nav-scroll, url(../images/slider-nav-scroll.png));
    background-position: center center;
    background-repeat: no-repeat;
    transition: all ease-in 0.3s;
}
.header-left-bottom .scroll-down:hover
{
    opacity: 1;
}
.header-left-bottom .scroll-down:hover span.arrow
{
    background-image: var(--mk-bg-slider-nav-scroll-hover, url(../images/slider-nav-scroll-hover.png));
}

@media(max-width:991px)
{
    .header-slider-nav
    {
        display: none;
    }
    .header-left-bottom .scroll-down
    {
        position: relative;
        display: none;
    }
}

.header-navigation
{
    padding: 40px 0 0 40px;
}
.header-phone
{
    font-size: 21px;
    font-family: var(--fnt-title);
    color: var(--clr-white);
    font-weight: 400;
    letter-spacing: 2px;
    transition: all ease-in 0.3s;
}
.header-phone:hover
{
    color: var(--clr-gold);
}

@media(max-width:991px)
{
    .header-navigation-box
    {
        height: 80px;
        display: block;
    }
    .header-navigation
    {
        position: relative;
        padding:10px 20px;
        margin-top: -2px;
        background: var(--clr-gray);
        width: 100%;
        z-index: 9999;
        height: 80px;
    }
    .header-navigation .col-md-3
    {
        display: inline-block;
        float: left;
        position: absolute;
        width: 50%;
        z-index: 999;
    }
    .header-navigation .col-md-3 a
    {
        font-size: 16px;
    }
    .navbar {
        margin-top: 17px;
    }
    .header-navigation.sticky
    {
        top: 0px;
        position: fixed;
        margin: 0 0 0 0;
    }
}


.navbar
{
    min-height: inherit;
    margin-bottom: 0;
    border: 0 !important;
}
.navbar-default
{
    background: none !important;
}
.navbar-header
{
    float: right !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.navbar-default .navbar-collapse
{
    border: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-right: 0;
    padding-left: 0;
}
.navbar-default .navbar-toggle {
    border-color: var(--clr-light);
    border-radius: 0;
    margin: 0;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: var(--clr-gold);
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: var(--clr-gold);
}
.navbar-default .navbar-toggle:hover .icon-bar, .navbar-default .navbar-toggle:focus .icon-bar {
    background-color: var(--clr-gray);
}
.navbar-nav
{
    padding: 0;
    margin: -5px 0 0 0;
    float: right;
}
.navbar-default .navbar-nav li
{
    transition: all ease-in .3s;
}
.navbar-default .navbar-nav li a
{
    font-family: var(--fnt-title);
    color: var(--clr-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    padding: 10px 15px;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover
{
    background: none;
    color: var(--clr-white);
}
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover
{
    background: var(--clr-gray);
    color: var(--clr-gold);
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover
{
    color: var(--clr-gold);
}

.dropdown-menu
{
    background: var(--clr-gray);
    transform-origin: 0 0;
    transform: translate(-50%,0);
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
}
.dropdown-menu .nav-tabs
{
    border: 0;
    display: table;
}
.dropdown-menu .nav-tabs  li
{
    float: none;
    display: table-cell;
    padding: 0;
    margin: 0;
}
.dropdown-menu .nav-tabs  li a
{
    color: var(--clr-light);
    font-size: 16px;
    font-weight: bold;
    border: 0 !important;
    border-radius:0;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover
{
    background: none;
    color: var(--clr-gold);
}
.tab-pane ul
{
    list-style: none outside;
    padding: 0;
    margin: 0;
    display: table;
    width: 660px;
    height: 180px;
    table-layout: fixed;
}
.tab-pane ul li
{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 !important;
    margin: 0;
    position: relative;
    transition: all linear .6s;
}
.tab-pane ul li div.cat-box
{
    display: table;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    transition: all ease-in .3s;
}
.tab-pane ul li div.cat-box a
{
    display: table-cell;
    vertical-align: middle;
    min-width: 100%;
    min-height: 100%;
    background: rgba(0,0,0,0.4);
    font-weight: bold;
    text-transform: lowercase !important;
    letter-spacing: 0;
    transition: all ease-in .3s;
}
.tab-pane ul li div.cat-box a span.cat-name
{
    display: block;
    font-size: 22px;
    line-height: 24px;
}
.tab-pane ul li div.cat-box a span.cat-btn
{
    display: block;
    height: 0;
    margin: 15px auto 0 auto;
    text-align: center;
    overflow: hidden;
    transition: all ease-in .3s;
}
.tab-pane ul li div.cat-box a span.cat-btn img
{
    height: 32px;
    transition: all ease-in .3s;
}
.tab-pane ul li:hover div.cat-box a
{
    background: rgba(198,164,126,0.8);
    color: #000;
}
.tab-pane ul li:hover div.cat-box a span.cat-btn
{
    height: 32px;
    margin-top: 15px;
}
.tab-pane ul:hover li
{
    filter: blur(1px);
}
.tab-pane ul:hover li:hover
{
    filter: blur(0px);
    z-index: 999;
}
@media(max-width:991px)
{
    .tab-pane ul:hover li
    {
        filter: blur(0px);
    }
    .tab-pane ul:hover li:hover
    {
        filter: blur(0px);
        z-index: 999;
    }
}

.slider-modeko-logo
{
    padding: var(--cns-pad-in);
    height: 80vh;
    display: table-cell;
    vertical-align: middle;
}
.slider-modeko-logo img
{
    position: relative;
    max-height: 100%;
    max-width: 100%;
}
.navbar-collapse.in
{
    overflow: visible;
}

@media(max-width:769px)
{
    .navbar-default .navbar-nav li a:focus, .navbar-default .navbar-nav li a:hover {
        color: var(--clr-gold) !important;
    }
    .navbar-default .navbar-collapse
    {
        position: absolute;
        width: 100vw;
        float: left;
        background: var(--clr-gold);
        padding: 5px;
        left: 0;
        top: 50px;
        transform: translate(-20px,0);
        transform-origin: 0 0;
        transform-style: flat;
    }
    
    .navbar-nav
    {
        float: none;
        clear: both;
        margin: 0;
        padding: 0;
        text-align: center;
    }
    
    .dropdown-menu
    {
        width: 100%;
        transform: translate(0,0);
    }
    
    .dropdown-menu .nav-tabs
    {
        display: none !important;
    }
    
    .tab-content>.tab-pane
    {
        display: block !important;
        opacity: 1 !important;
    }
    
    .tab-pane ul
    {
        display: block;
        width: 100%;
        height: auto;
        table-layout: auto;
    }
    
    .tab-pane ul li
    {
        display: block;
        background-image: none !important;
    }
    
    .tab-pane ul li div.cat-box a
    {
        background: transparent !important;
    }
    .tab-pane ul li div.cat-box a span.cat-name
    {
        font-size: 18px;
        line-height: 20px;
    }
    .tab-pane ul li div.cat-box a span.cat-btn
    {
        display: none !important;
    }
    
    .tab-content
    {
        background: var(--clr-gray);
    }
    
}

.header-slider-title
{
    padding: 40px 0 0 40px;
    font-family: var(--fnt-title);
    text-align: right;
    height: 22vh;
    width: 100%;
    display: table;
}
.header-slider-title h2
{
    display: table-cell;
    vertical-align: bottom;
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    letter-spacing: 8px;
}
.header-slider-content
{
    padding: 40px 0 0 40px;
    text-align: right;
    font-size: 18px;
}

.btn-gold
{
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background: var(--clr-gold);
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    transition:  all ease-in .3s;
}
.btn-gold:hover
{
    background: var(--clr-gray);
    color: var(--clr-gold);
}

.btn-gray
{
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background: var(--clr-light);
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    transition:  all ease-in .3s;
}
.btn-gray:hover
{
    background: var(--clr-gold);
    color: var(--clr-gray);
}

.header-slider-buttons
{
    text-align: right;
    padding: 40px 0 0 40px;
}
@media(max-width:1200px)
{
    .header-slider-title, .header-slider-content, .header-slider-buttons
    {
        padding: 20px 20px;
    }
}

.page-content-intro .page-categories-item.hvr-grow:hover, 
.page-content-intro .page-categories-item.hvr-grow:focus, 
.page-content-intro .page-categories-item.hvr-grow:active {
    z-index: 999;
    position: relative;
}

.header-slider-mobile
{
    display: none;
}
@media(max-width:991px)
{
    
    .header-slider-title, .header-slider-content, .header-slider-buttons
    {
        padding: 20px 20px 0;
    }
    .header-slider-container
    {
        display: none;
    }
    .header-slider-mobile
    {
        display: block;
        padding: var(--cns-pad-in);
        text-align: center;
    }
    .header-slider-title
    {
        height: auto;
    }
    .header-slider-mobile .header-slider-title h2
    {
        padding-top: 10px;
        font-size: 32px;
        text-align: center;
        line-height: 32px;
    }
    .header-slider-content
    {
        text-align: center;
    }
    .header-slider-mobile .header-slider-buttons
    {
        text-align: center;
    }
    .header-slider-mobile .header-slider-buttons a
    {
        font-size: 12px;
        margin-bottom: 15px;
    }
}

.page-grey
{
    padding: 40px 0 0;
    background: var(--clr-gray);
}
.page-grey .page-content-intro
{
    display: table;
    width: 100%;
    table-layout: fixed;
    vertical-align: middle;
    height: 280px;
}
.page-grey .page-content-intro .row
{
    display: table-row;
}
.page-grey .page-content-intro .col-xs-12
{
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    float: none;
}
.page-grey .page-content-intro h3
{
    padding: var(--cns-pad-in);
    font-weight: 700;
    font-size: 64px;
    font-family: var(--fnt-title);
    color: var(--clr-gold);
    text-align: right;
}
.page-grey .page-content-intro h3 span
{
    color: #fff;
    display: block;
}
.page-grey .page-content-intro p
{
    display: inline-block;
    margin: 0;
    padding: var(--cns-pad-in);
}

.page-categories-list
{
    display: table;
    height: 400px;
    width: 100%;
    table-layout: fixed;
}
.page-categories-list .page-categories-item
{
    position: relative;
    transition: all ease-in 0.3s;
    width: 100.1%;
}
.page-categories-list:hover .page-categories-item
{
    filter: blur(2px);
}
.page-categories-list:hover .page-categories-item:hover
{
    filter: blur(0px);
    z-index: 999;
}
@media(max-width:991px)
{
    .page-categories-list:hover .page-categories-item
    {
        filter: blur(0px);
    }
    .page-categories-list:hover .page-categories-item:hover
    {
        filter: blur(0px);
        z-index: 999;
    }
}
.page-categories-list .row
{
    /* display: table-row; */
    display: block;
}
.page-categories-list .row .col-xs-12
{
    /* display: table-cell;
    float: none; */
    
    height: 100%;
    vertical-align: middle;
}

.page-categories-item
{
    width: 100.1%;
    height: 400px;
    display: table;
    vertical-align: middle;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-categories-bg
{
    background: rgba(0,0,0,0.4);
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding: var(--cns-pad-in);
    text-align: center;
    transition: all ease-in .6s;
}
.page-categories-bg a,
.page-categories-bg > span
{
    color: var(--clr-white);
    display: block;
    transition: all ease-in .6s;
}
.page-categories-bg a strong,
.page-categories-bg > span strong
{
    display: block;
    font-size: 48px;
    line-height: 40px;
    font-family: var(--fnt-title);
    margin-bottom: 25px;
}
.page-categories-bg a span.text,
.page-categories-bg > span span.text
{
    font-size: 18px;
    display: block;
    height: 0;
    overflow: hidden;
    color: var(--clr-gray);
    margin-bottom: 20px;
    filter: opacity(0);
    transition: all ease-in .6s;
}
.page-categories-bg a span.button,
.page-categories-bg small span.button
{
    display: block;
    height: 0;
    overflow: hidden;
    transition: all ease-out .4s;
}
.page-categories-bg a span.button img,
.page-categories-bg small span.button img
{
    height: 48px;
}

.page-categories-bg:hover
{
    background: rgba(198,164,126,0.9);
}
.page-categories-bg:hover a
{
    color: var(--clr-white);
}
.page-categories-bg:hover a span.text
{
    height: auto;
    filter: opacity(1);
}
.page-categories-bg:hover a span.button
{
    height: 48px;
}

.page-changecolor-up
{
    background-image: var(--mk-bg-changecolor-up, url(../images/bg-changecolor-up.png));
    background-color: #000;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 290px;
    margin-bottom: -50px;
}
.page-changecolor-down
{
    background-image: var(--mk-bg-changecolor-down, url(../images/bg-changecolor-down.png));
    background-color: #000;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 290px;
    margin-top: -150px;
}

.page-black
{
    background: #000;
}
.page-black .page-content-intro h3
{
    padding: var(--cns-pad-in);
    font-weight: 700;
    font-size: 64px;
    font-family: var(--fnt-title);
    color: var(--clr-gold);
    text-align: left;
}
.page-black .page-content-intro h3 span
{
    color: var(--clr-light);
    display: block;
}
.page-black .page-content-intro p
{
    display: inline-block;
    margin: 0;
    padding: var(--cns-pad-in);
    text-align: justify;
}

.page-white
{
    background: var(--clr-white);
    
}
@media(max-width:991px)
{
    .page-white
    {
        padding: 0 20px;
    }
}
.page-white .page-content-intro h3
{
    padding: var(--cns-pad-in);
    font-weight: 700;
    font-size: 64px;
    font-family: var(--fnt-title);
    color: var(--clr-gold);
    text-align: right;
}
.page-white .page-content-intro h3 span
{
    color: var(--clr-light);
    display: block;
}
.page-white .page-content-intro p
{
    display: block;
    margin: 0;
    padding: var(--cns-pad-in);
    text-align: right;
}

.page-footer
{
    padding: 80px 0 0 0;
    background: #fff;
}
.page-footer h4
{
    font-family: var(--fnt-title);
    margin: 20px 0 0 0;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--clr-gold);
}
.footer-menu
{
    padding: var(--cns-pad-in);
    background: #fff;
}
.footer-menu .footer-menu-list
{
    list-style: none outside;
    margin: 40px 0 0;
    padding: 0;
}
.footer-menu .footer-menu-list li
{
    display: block;
}
.footer-menu .footer-menu-list li a
{
    color: var(--clr-gray);
    font-size: 18px;
    font-family: var(--fnt-title);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all ease-in 0.3s;
}
.footer-menu .footer-menu-list li a:hover
{
    color: var(--clr-gold);
}
.footer-rights-dekstop
{
    width: 100%;
    padding: var(--cns-pad-in);
    background: var(--clr-black);
    text-align: center;
    font-size: 18px;
}
.footer-rights-dekstop img
{
    margin: 20px 0;
    height: 36px;
}

.footer-categories
{
    background: var(--clr-gray);
    padding: var(--cns-pad-in);
    
}

.footer-categories-list
{
    margin: 40px 0 0 0;
    list-style: none outside;
    padding: 0;
    display: table;
    width: 100%;
    height: 220px;
    table-layout: fixed;
}
.footer-categories-list li
{
    display: table-cell;
}
.footer-categories-list li a
{
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    transition: all ease-in 0.3s;
}
.footer-categories-list li a .footer-cat-thumb
{
    display: table;
    width: 100%;
    height: 150px;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-categories-list li a .footer-cat-thumb .footer-cat-bg
{
    display: table-cell;
    vertical-align: middle;
    background: rgba(0,0,0,0.4);
    transition: all ease-in 0.3s;
}
.footer-categories-list li a .footer-cat-thumb .footer-cat-bg img
{
    filter: opacity(0);
    width: 32px;
    transition: all ease-in 0.3s;
}
.footer-categories-list li a .footer-cat-name
{
    font-size: 18px;
    line-height: 18px;
    padding: 15px 15px 0 0;
    font-family: var(--fnt-title);
    color: var(--clr-light);
    text-transform: uppercase;
    transition: all ease-in 0.3s;
}
.footer-categories-list:hover li a
{
    filter: blur(1px);
}
.footer-categories-list:hover li a:hover
{
    filter: blur(0px);
    z-index: 999;
}
@media(max-width:991px)
{
    .footer-categories-list:hover li a
    {
        filter: blur(0px);
    }
    .footer-categories-list:hover li a:hover
    {
        filter: blur(0px);
        z-index: 999;
    }
}
.footer-categories-list li a:hover .footer-cat-thumb .footer-cat-bg
{
    background: rgba(198,164,126,0.9);
}
.footer-categories-list li a:hover .footer-cat-thumb .footer-cat-bg img
{
    filter: opacity(1);
}
.footer-categories-list li a:hover .footer-cat-name
{
    color: var(--clr-white);
}

@media(max-width:1400px)
{
    .footer-categories-list li a .footer-cat-name
    {
        font-size: 15px;
        line-height: 15px;
    }
}

@media(max-width:991px)
{
    
    .page-categories-list
    {
        display: block;
        height: auto;
        width: 100%;
        table-layout: fixed;
    }
    .page-categories-list .page-categories-item
    {
        position: relative;
        transition: all ease-in 0.3s;
    }
    .page-categories-list .row
    {
        display: block;
    }
    .page-categories-list .row .col-xs-12
    {
        display: block;
        height: 100%;
        vertical-align: middle;
        float: left;
    }
    .page-categories-item
    {
        width: 100%;
        height: 300px;
        display: table;
        vertical-align: middle;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .page-categories-bg
    {
        background: rgba(0,0,0,0.4);
        display: table-cell;
        width: 100%;
        height: 100%;
        vertical-align: middle;
        padding: 0;
        text-align: center;
        transition: all ease-in .6s;
    }
    .page-categories-bg a,
    .page-categories-bg > span
    {
        color: var(--clr-white);
        display: table;
        transition: all ease-in .6s;
        width: 100%;
        height: 100%;
        padding: var(--cns-pad-in);
        vertical-align: middle;
    }
    .page-categories-bg a strong,
    .page-categories-bg > span strong
    {
        display: table-cell;
        font-size: 32px;
        line-height: 32px;
        font-family: var(--fnt-title);
        margin-bottom: 0;
        width: 100%;
        height: 100%;
        vertical-align: middle;
    }
    .page-categories-bg a span.text,
    .page-categories-bg > span span.text
    {
        font-size: 18px;
        display: none !important;
        height: 0;
        overflow: hidden;
        color: var(--clr-gray);
        margin-bottom: 20px;
        filter: opacity(0);
        transition: all ease-in .6s;
    }
    .page-categories-bg a span.button,
    .page-categories-bg small span.button
    {
        display: none !important;
        height: 0;
        overflow: hidden;
        transition: all ease-out .4s;
    }
    .page-categories-bg a span.button img,
    .page-categories-bg small span.button img
    {
        height: 48px;
    }
    
    .footer-categories-list
    {
        margin: 40px 0 0 0;
        list-style: none outside;
        padding: 0;
        display: table;
        width: 100%;
    }
    .footer-categories-list li
    {
        display: table-cell;
        width: 33%;
        height: 220px;
        float: left;
        margin-bottom: 10px;
    }
    .footer-categories-list li a
    {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        transition: all ease-in 0.3s;
    }
    .footer-categories-list li a .footer-cat-thumb
    {
        display: table;
        width: 100%;
        height: 160px;
        text-align: center;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .footer-categories-list li a .footer-cat-thumb .footer-cat-bg
    {
        display: table-cell;
        vertical-align: middle;
        background: rgba(0,0,0,0.4);
        transition: all ease-in 0.3s;
    }
    .footer-categories-list li a .footer-cat-thumb .footer-cat-bg img
    {
        filter: opacity(0);
        width: 32px;
        transition: all ease-in 0.3s;
    }
    .footer-categories-list li a .footer-cat-name
    {
        font-size: 18px;
        line-height: 18px;
        padding: 15px 15px 0 0;
        font-family: var(--fnt-title);
        color: var(--clr-light);
        text-transform: uppercase;
        transition: all ease-in 0.3s;
    }
    .footer-categories-list:hover li a
    {
        filter: blur(1px);
    }
    .footer-categories-list:hover li a:hover
    {
        filter: blur(0px);
        z-index: 999;
    }
    @media(max-width:991px)
    {
        .footer-categories-list:hover li a
        {
            filter: blur(0px);
        }
        .footer-categories-list:hover li a:hover
        {
            filter: blur(0px);
            z-index: 999;
        }
    }
    .footer-categories-list li a:hover .footer-cat-thumb .footer-cat-bg
    {
        background: rgba(198,164,126,0.9);
    }
    .footer-categories-list li a:hover .footer-cat-thumb .footer-cat-bg img
    {
        filter: opacity(1);
    }
    .footer-categories-list li a:hover .footer-cat-name
    {
        color: var(--clr-white);
    }
    
}

@media(max-width:991px)
{
    .page-grey .page-content-intro, .page-black .page-content-intro, .page-white .page-content-intro
    {
        display: block;
        width: 100%;
        height: auto;
    }
    .page-grey .page-content-intro .row, .page-black .page-content-intro .row, .page-white .page-content-intro .row
    {
        display: block;
    }
    .page-grey .page-content-intro .col-xs-12, .page-black .page-content-intro .row, .page-white .page-content-intro .row
    {
        display: block;
        float: left;
    }
    .page-grey .page-content-intro h3, .page-black .page-content-intro h3, .page-white .page-content-intro h3
    {
        padding: var(--cns-pad-in);
        font-weight: 700;
        font-size: 64px;
        font-family: var(--fnt-title);
        text-align: center;
    }
    .page-grey .page-content-intro p, .page-black .page-content-intro p, .page-white .page-content-intro p
    {
        display: block;
        text-align: center;
    }
}

.subpage-content>.container-fluid>.row
{
    padding: var(--cns-pad-out);
}
.subpage-content img
{
    max-width: 100%;
}
.subpage-content .page-content-intro p
{
    padding: 20px;
}
.subpage-content  h4
{
    padding: 20px;
    font-weight: 700;
    font-size: 32px;
    font-family: var(--fnt-title);
    color: var(--clr-gold);
    text-align: left;
}
.subpage-content  h4 span
{
    color: #fff;
}
.subpage-content  p strong
{
    font-family: var(--fnt-title);
    color: var(--clr-white);
    display: block;
}
.subpage-content .page-grey .page-content-intro .col-xs-12
{
    vertical-align: top;
}
@media(max-width:991px)
{
    .subpage-content  h4
    {
        text-align: center;
    }
}

.gab-info
{
    list-style: none outside;
    padding: 0;
    margin: var(--cns-pad-in);
    display: table;
    width: 80%;
    min-height: 300px;
    float: right;
    table-layout: fixed;
}
.gab-info li
{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    height: 100%;
}
.gab-info li img
{
    display: block;
    margin: 0 auto;
}
.gab-info li.one
{
    background: var(--clr-gray);
    color: var(--clr-white);
}
.gab-info li.two
{
    background: var(--clr-light);
    color: var(--clr-white);
}
.gab-info li.three
{
    background: var(--clr-gold);
    color: var(--clr-white);
}

.prod-wiz
{
    display: block;
    padding: var(--cns-pad-in);
    margin: var(--cns-pad-out);
    text-align: center;
}
.prod-wiz .prod-wiz-image
{
    display: block;
    text-align: left;
}
.prod-wiz .prod-wiz-attach
{
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    text-align: left;
}
.prod-wiz .prod-wiz-attach img.pin
{
    position: absolute;
    float: left;
    z-index: 999;
    width: 48px;
    height: auto;
    margin-top:-24px;
    margin-left:-24px;
}

.page-realizacje-list
{
    display: table;
    height: 400px;
    width: 100%;
    table-layout: fixed;
}
.page-realizacje-list .page-realizacje-item
{
    position: relative;
    transition: all ease-in 0.3s;
}
.page-realizacje-list:hover .page-realizacje-item
{
    filter: blur(2px);
}
.page-realizacje-list:hover .page-realizacje-item:hover
{
    filter: blur(0px);
    z-index: 999;
}
@media(max-width:991px)
{
    .page-realizacje-list:hover .page-realizacje-item
    {
        filter: blur(0px);
    }
    .page-realizacje-list:hover .page-realizacje-item:hover
    {
        filter: blur(0px);
        z-index: 999;
    }
}
.page-realizacje-list .row
{
    display: table-row;
}
.page-realizacje-list .row .col-xs-12
{
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    float: none;
}
.page-realizacje-item
{
    width: 100%;
    height: 400px;
    display: table;
    vertical-align: middle;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-realizacje-bg
{
    background: rgba(0,0,0,0.4);
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding: var(--cns-pad-in);
    text-align: center;
    transition: all ease-in .6s;
}
.page-realizacje-bg small
{
    color: var(--clr-white);
    display: block;
    transition: all ease-in .6s;
}
.page-realizacje-bg small span.button
{
    display: block;
    height: 0;
    overflow: hidden;
    transition: all ease-out .4s;
}
.page-realizacje-bg small span.button img
{
    height: 48px;
    width: auto;
}

.page-realizacje-bg:hover
{
    background: rgba(0,0,0,0.2);
}
.page-realizacje-bg:hover small span.button
{
    height: 48px;
}
.page-changecolor-up {
    margin-bottom: 0px;
    margin-top: -240px;
}
.page-grey .page-content-intro .row {
    display: block;
}
.page-grey .page-content-intro .row > div {
    display: block;
}

.page-grey .page-content-intro .page-content-intro .row > div {
    display: block;
}

.subsite .page-grey .page-content-intro .row > div {
    display: block;
    float: left;
}
.checkbox_pp {
    font-size: 16px;
    width: 90%;
    padding: 10px;
}
.checkbox_pp label {
    margin-bottom: 10px;
    font-weight: 400 !important;
}
.subsite .page-grey {
    padding: 40px 15px 0 15px;
}
.page-black .page-content-intro h3 {
    padding: 4px 40px 40px 40px;
}


@media(max-width:991px)
{
    .page-realizacje-list
    {
        display: block;
        height: auto;
        width: 100%;
        table-layout: fixed;
    }
    .page-realizacje-list .page-realizacje-item
    {
        position: relative;
        transition: all ease-in 0.3s;
    }
    .page-realizacje-list .row
    {
        display: block;
    }
    .page-realizacje-list .row .col-xs-12
    {
        display: block;
        height: 100%;
        vertical-align: middle;
        float: left;
    }
    .page-realizacje-item
    {
        width: 100%;
        height: 300px;
        display: table;
        vertical-align: middle;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .page-realizacje-bg
    {
        background: rgba(0,0,0,0.4);
        display: table-cell;
        width: 100%;
        height: 100%;
        vertical-align: middle;
        padding: var(--cns-pad-in);
        text-align: center;
        transition: all ease-in .6s;
    }
    .page-realizacje-bg small
    {
        color: var(--clr-white);
        display: block;
        transition: all ease-in .6s;
    }
    .page-realizacje-bg small span.button
    {
        display: block !important;
        height: 48px;
        overflow: hidden;
        transition: all ease-out .4s;
    }
    .page-realizacje-bg small span.button img
    {
        height: 48px;
    }
}

.prod-form
{
    display: block;
    margin-top: var(--cns-pad-in);
    margin-bottom: var(--cns-pad-in);
}
.prod-form .prod-form-row
{
    display: block;
}
.prod-form .prod-form-row .prod-form-text, .prod-form .prod-form-row .prod-form-area
{
    display: block;
    width: 90%;
    padding: 10px;
    margin: 1%;
    border-radius: 50px;
    border: 0;
    outline: none !important;
    background: var(--clr-light);
    color: #fff;
    font-family: var(--fnt-title);
}
.prod-form .prod-form-row .prod-form-area
{
    border-radius: 30px;
}
.prod-form .prod-form-row.form-el-2 .prod-form-text
{
    width: 44%;
    float: left;
}

.prod-form .prod-form-row.form-el-3
{
    text-align: center;
}
.prod-form .prod-form-row.form-el-3 button
{
    border: 0;
}
.subsite .subpage-content .page-realizacje-bg {
    background: transparent;
}


@media(max-width:991px)
{
    .page-categories-bg,
    .page-categories-bg a,
    .page-categories-bg >span,
    .page-categories-list .page-categories-item {
        transition: none!important;
    }
    .hvr-grow:hover, 
    .hvr-grow:focus, 
    .hvr-grow:active {
        -webkit-transform: scale(1.0)!important;
        transform: scale(1.0)!important;
    }
}

.page-content-intro table
{
    width: 90%;
    margin: 0 30px;
    max-width: 100%;
    border: 0;
    table-layout: auto;
}
.page-content-intro table tr:first-child td
{
    padding: 5px;
    font-size: 18px;
}
.bg-white a {
    color: #414141;
}
@media(max-width:991px)
{
    .page-content-intro table
    {
        width: 100%;
        margin: 0 auto;
        max-width: 100%;
        border: 0;
        table-layout: fixed;
    }
    .page-content-intro table tr:first-child td
    {
        padding: 5px;
        font-size: 18px;
    }
}
.g-recaptcha {
    margin-bottom: 15px;
}
@media(max-width:768px)
{
    .prod-form .prod-form-row .prod-form-text, .prod-form .prod-form-row .prod-form-area {
        width: 98%;
    }
    .prod-form .prod-form-row.form-el-2 input.prod-form-text:first-child {
        width: 46%;
    }
    .prod-form .prod-form-row.form-el-2 .prod-form-text:nth-child(2) {
        width: 46%;
        float: right;
    }
    .text-center-xs {
        text-align: center!important;
    }
    .g-recaptcha {
        /* transform:scale(0.77);
        transform-origin:0 0; */
        margin: 15px auto -5px auto;
        text-align: center;
        display: inline-block;
    }
}