 input#password.form-control{
      max-width:50%;
      height:50px;
      border:pink 1px solid;
    }
button.btn.btn-info{
  color:black;
  background-color:transparent;
  height:50px;
 margin: 0px;
    width: 150px;
    border: pink solid 1px;
    border-radius: 0px 25px 25px 0px!important;
}
.input-group{
    display:flex;
    justify-content: center;
}
.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  border-radius: 2px;
 
  color: #fff;
}

.center {
  position: absolute;
  width: 220px;
  height: 220px;
  top: 90px;
  left: 90px;
}
.square {
    /*width: 100%;
    padding-bottom: 100%;*/
    width:100%;
    padding-bottom:100%;
    background-size: cover;
    background-position: center;
    border:solid 1px white;
    border-radius:25px;
    
    -webkit-box-shadow: 0px 0px 7px 5px rgba(0,0,0,0.21);
-moz-box-shadow: 0px 0px 7px 5px rgba(0,0,0,0.21);
box-shadow: 0px 0px 7px 5px rgba(0,0,0,0.21);


}
.dot-1 {
  position: absolute;
  z-index: 3;
  width: 30px;
  height: 30px;
  top: 95px;
  left: 95px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation: jump-jump-1 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
          animation: jump-jump-1 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

.dot-2 {
  position: absolute;
  z-index: 2;
  width: 60px;
  height: 60px;
  top: 80px;
  left: 80px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation: jump-jump-2 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
          animation: jump-jump-2 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

.dot-3 {
  position: absolute;
  z-index: 1;
  width: 90px;
  height: 90px;
  top: 65px;
  left: 65px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation: jump-jump-3 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
          animation: jump-jump-3 2s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

@-webkit-keyframes jump-jump-1 {
  0%, 70% {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes jump-jump-1 {
  0%, 70% {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes jump-jump-2 {
  0%, 40% {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes jump-jump-2 {
  0%, 40% {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes jump-jump-3 {
  0%, 10% {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes jump-jump-3 {
  0%, 10% {
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.btn {
    border-width: 2px;
    font-weight: 400;
    font-size: 0.8571em;
    line-height: 1.35em;
    margin: auto;
    margin-top: 20px;
    margin-bottom:100px;
    border: none;
    border-radius: 0.1875rem;
    padding: 11px 22px;
    cursor: pointer;
    background-color: #888;
    color: #FFFFFF;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn:active:hover {
    background-color: #979797;
    color: #FFFFFF;
    box-shadow: none;
}

.btn:hover {
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.17);
}

.btn:disabled,
.btn:disabled:hover,
.btn:disabled:focus,
.btn:disabled:active {
    background-color: #888;
    border-color: #888;
}

.btn.btn-simple {
    color: #888;
    border-color: #d84ca7;
   
}

.btn.btn-simple:hover,
.btn.btn-simple:focus,
.btn.btn-simple:active {
    background-color: #d64ca3;
    box-shadow: none;
    color:white;
   
}
.btn.btn-simple:focus,
.btn.btn-simple:active {
    background-color: transparent;
    box-shadow: none;
    color:black;
    letter-spacing:0px;
    width: 150px;
   
}
.btn:hover,
.btn:focus {
    opacity: 1;
    filter: alpha(opacity=100);
    outline: 0 !important;
}

.btn:active {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0 !important;
}

.btn:disabled {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.btn-round {
    border-width: 1px;
    border-radius: 30px !important;
    padding: 11px 23px;
}

.btn-round.btn-simple {
    padding: 10px 22px;
    width: 150px;
}

.btn-simple {
    border: 1px solid;
    border-color: #888;
    padding: 10px 22px;
   background-color: #cc0083;
}

.btn-simple:disabled,
.btn-simple:disabled:hover,
.btn-simple:disabled:focus,
.btn-simple:disabled:active {
    background-color: transparent;
}

.btn-lg {
    font-size: 1em;
    border-radius: 0.25rem;
    padding: 15px 48px;
}

.btn-lg.btn-simple {
    padding: 14px 20px;
}
.btn-simple.btn-black{
    border-width:1px;
    border-color:#cc0083;
    box-sizing: border-box;
     
}

.form-control::-moz-placeholder {
    color: #DDDDDD;
    opacity: 1;
    filter: alpha(opacity=100);
}

.form-control:-moz-placeholder {
    color: #DDDDDD;
    opacity: 1;
    filter: alpha(opacity=100);
}

.form-control::-webkit-input-placeholder {
    color: #DDDDDD;
    opacity: 1;
    filter: alpha(opacity=100);
}

.form-control:-ms-input-placeholder {
    color: #DDDDDD;
    opacity: 1;
    filter: alpha(opacity=100);
}

.form-control {
    background-color: transparent;
    border: 1px solid #E3E3E3;
    border-radius: 30px;
    color: #2c2c2c;
    line-height: normal;
    font-size: 0.8571em;
    -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus {
    border: 1px solid #d84ca7;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0 !important;
    color: #2c2c2c;
}

.input-group.input-lg .form-control {
    padding: 14px 18px;
}

.input-group.input-lg .input-group-addon {
    padding: 14px 0 15px 18px;
}

.input-group.input-lg .input-group-addon+.form-control {
    padding: 15px 18px 15px 16px;
}

.input-group .form-control {
    padding: 10px 18px 10px 18px;
}

.input-group .input-group-addon {
    padding: 10px 0 10px 18px;
}

.input-group .input-group-addon+.form-control,
.input-group .input-group-addon~.form-control {
    padding: 10px 19px 11px 16px;
}

.input-group-addon {
    background-color: transparent;
    border: 1px solid #E3E3E3;
    border-radius: 30px;
    color: #0b0b0b;
    padding: -0.5rem 0 -0.5rem -0.3rem;
    -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.input-group-addon+.form-control,
.input-group-addon~.form-control {
    padding: -0.5rem 0.7rem;
    padding-left: 18px;
}

.input-group-addon i {
    width: 17px;
}

.input-group {
    margin-bottom: 10px;
}

.input-group-addon:first-child {
    border-right: 0 none;
}

.input-group .form-control:last-child {
    border-left: 0 none;
}

textarea.form-control {
    max-width: 100%;
    padding: 10px 10px 0 0;
    resize: none;
    border: none;
    border-bottom: 1px solid #E3E3E3;
    border-radius: 0;
    line-height: 2;
}

textarea.form-control:focus,
textarea.form-control:active {
    border-left: none;
    border-top: none;
    border-right: none;
}


h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1;
}

small {
    font-size: 90%;
    /*! font-style: italic; */
    font-weight: 100;
}

a {
    color: #000000;
    transition: all .5s;
}

a:hover,
a:focus {
    color: #d84ca7;
    text-decoration: none;
   
   
    
    
}
.category a:hover{
   letter-spacing: 2px;
    transform: 1s linear all;  
}
h1 {
    font-size: 2.9em;
    /*! line-height: .7; */
    margin-bottom: 0px;
    font-weight: 900;
}

small {
    
    
    font-size: 36%;
    text-transform:uppercase;
    letter-spacing: 6px;
    font-weight: 300;
    line-height: .1em;

    
}
 p.subtitle {
        text-transform: uppercase;
        font-size: 1em;
        letter-spacing: 6px;
        /*! line-height: 1.3; */
     font-weight:300;
        margin-top: 10px;
    }
.thin{
  font-weight: 300;
    font-size: 100%;
    font-style:italic;
    
}
h2 {
    font-size: 2.6em;
    margin-bottom: 10px;
    line-height: .5em;
}

h3 {
    font-size: 2em;
    margin-bottom: 30px;
    line-height: 1em;
}
.sub-page h3{
    margin-bottom:0px;
}
h4 {
    font-size: 1.714em;
    line-height: 1.3em;
    margin-top: 0px;
    margin-bottom: 15px;
    font-style:italic;
}

#impressum h1{
    font-size: 2em; 
    margin-top:50px;
}
#impressum h2{
    font-size: 1.5em; 
    margin-top:20px;
}
#impressum h3{
    font-size: 1.2em; 
    margin-top:20px;
}
p {
    line-height: 1.61em;
   
 
    font-size: 1em;
}
p strong{
    font-size:1.5em;
   
    
}
p em{
    font-size:1.5em;
    font-weight:100;
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
    display:block;
    padding-left:20px;
    padding-right:20px;
    opacity:.4;
    }

p.description {
    font-size: 1.14em;
}
p.story{
    font-size: 1.1em;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 7px;
    line-height: 1.4;
    
    
}
.circle{
    
    display: block;
    border:solid 5px #dc4ea9;
    position:relative;
    border-radius: 50%;
    box-sizing: border-box;
    
   
    height:190px;
    padding-top:190px;
    width:200px;
    background-color: #dc4ea9;
    color:white;
    margin:auto;
    
    
    margin-bottom: 30px;
}

#info .circle{
 border:solid 10px #dc4ea9;   
   background-color: #dc4ea9;
    color:#fff; 
    height:150px;
    padding-top:150px;
    width:170px;
    margin-bottom:0px;
    opacity:1;
}
#gestalt-content p{
   /*column-count: 2; 
    column-gap: 30px;*/
}
#dla-kogo h2{
    line-height: 1em;
}
#cennik-content .circle h3{
   font-size:1.5em; 
    margin-top:-133px;
    margin-bottom:5px;
}
#info .circle h3{
   font-size:1.6em; 
    margin-top:-90px;
    margin-bottom: 0px;
   
}
#cennik-content .circle p{
   margin:0px; 
}
#cennik-content p{
  
    margin-top:40px;
}
.title {
    font-weight: 900;
}

.description {
  
}

.category {
    font-weight: 300;
    color: #000000;
    transition: all .5s;
}


body {
    color: #595959;
    font-size: 16px;
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background-color: white;
}

.main {
    position: relative;
    padding: 0px;
}


/* Animations */

.nav-item .nav-link,
.navbar {
    -webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    -ms-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
}

.navbar {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    min-height: 53px;
    margin-bottom: 0px;
    padding: 0px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.navbar a {
    vertical-align: middle;
}

.navbar a:not(.btn):not(.dropdown-item) {
    color: #000000;
}

.navbar p {
    display: inline-block;
    margin: 0;
    font-size: 1.2em;
    letter-spacing: .7px;
    color:white;
}

.navbar-toggler p, span.text{
   display:block; 
 font-size: 1.1em;
 opacity:1; 
    color:black;
 /*! text-transform: uppercase; */
 margin-top: 12px;
 margin-left: -6px;
 /*! font-weight: 600; */
}

.navbar .navbar-nav .nav-link:not(.btn) {
    text-transform: uppercase;
    font-size: 0.7142em;
    padding: 0.5rem 0.7rem;
    line-height: 1.625rem;
}

.navbar .navbar-nav .nav-item .nav-link:not(.btn):focus,
.navbar .navbar-nav .nav-item .nav-link:not(.btn):hover,
.navbar .navbar-nav .nav-item .nav-link:not(.btn):active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.1875rem;
}

.navbar .navbar-brand {
    text-transform: uppercase;
    font-size: 0.8571em;
    padding:0px;
    line-height: 1.625rem;
}
.navbar .container-fluid{
    padding:0px;
    margin:0px;
}

.navbar .navbar-toggler {
    width: 38px;
    height: 38px;
    outline: 0;
    cursor: pointer;
    margin: 20px;
    font-size: 13px;
    padding: 0px;
    /*! border:solid 4px #fb0095; */
    padding-left:6px;
    padding-top:11px;
    background-color: #dc4ea9;
    border-radius: 50px;
}

.navbar .navbar-toggler:hover .navbar-toggler-bar.bar2 {
    width: 22px;
}

.navbar.navbar-transparent {
    background-color: transparent !important;
    box-shadow: none;
    color: #ffffff;
    padding-top: 37px;
    padding-left: 37px;
    padding-right: 37px;
}

.bg-white {
    background-color: #FFFFFF !important;
}



img {
    max-width: 100%;
    
}

#kontakt-content .rounded-circle {
   
    width: 35px;
    /*border:solid 3px #dc4ea9;*/
    background: #dc4ea9;
    margin-bottom:10px;
}
/*#kontakt-content li:nth-child(1) .rounded-circle{
    border:solid 3px #dc4ea9;
    background: #dc4ea9;
}
#kontakt-content li:nth-child(2) .rounded-circle{
    border:solid 2px #eb008b;
}
#kontakt-content li:nth-child(3) .rounded-circle{
    border:solid 1px #eb008b;
}*/
/* --------------------------------

Nucleo Outline Web Font - nucleoapp.com/
License - nucleoapp.com/license/
Created using IcoMoon - icomoon.io

-------------------------------- */

@font-face {
    font-family: 'Nucleo Outline';
    src: url("../fonts/nucleo-outline.eot");
    src: url("../fonts/nucleo-outline.eot") format("embedded-opentype"), url("../fonts/nucleo-outline.woff2") format("woff2"), url("../fonts/nucleo-outline.woff") format("woff"), url("../fonts/nucleo-outline.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}


/*------------------------
    base class definition
-------------------------*/

.now-ui-icons {
    display: inline-block;
    font: normal normal normal 14px/1 'Nucleo Outline';
    font-size: inherit;
    speak: none;
    text-transform: none;
    /* Better Font Rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}




.now-ui-icons.ui-1_email-85:before {
    content: "\ea2a";
}

.now-ui-icons.users_circle-08:before {
    content: "\ea23";
}


.footer {
    padding: 24px 20px;
    padding-top:12px;
   
    
}

.footer nav {
    display: inline-block;
    float: left;
}

.footer ul {
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
    padding-left:20px;
}

.footer ul li {
    display: inline-block;
}

.footer ul li a {
    color: inherit;
    padding: 0.5rem;
    font-size: 0.8571em;
    
    text-decoration: none;
}

.footer ul li a:hover {
    text-decoration: none;
    color: #d64ca3;
}

.footer .copyright {
    font-size: 0.8571em;
}

.footer:after {
    display: table;
    clear: both;
    content: " ";
}

.index-page .page-header {
    height: 100vh;
}

.index-page .page-header .category-absolute {
    position: absolute;
    position:fixed;
    top: 100vh;
    margin-top: -170px;
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
   
}
.index-page .page-header .category-absolute img {max-height: 100px;}


.section {
    /*! padding: 0px 100px; */
    position: relative;
  
    min-height:100vh;
}

.section.slide {
   padding:0px 0px; 
}
.section.slide-fixed{
    position:fixed;
    left:0px;
    top:0px;
    height:100vh;
    width:100%;
}
#info{
   /* background:url('../img/animacja/kolo.png') no-repeat center center;*/
}

#intro{
    min-height:1000vh;
    border-bottom:solid 1px black;
    
}
#wizyta{
    min-height:50vh;
    background-color: #c90077;
    color:white;
}
.page-header {
    height: 100vh;
    max-height: 1050px;
    padding:0px;
  
    position: relative;
    background-position: center center;
    background-size: cover;
}

.page-header-image {
   
    position:fixed;
    
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: -1;
}
#dlon{
 background-position: bottom left;   
}

.page-header>.page-header-image {margin: 0px;}

.container-fluid>.content-center {
    position: absolute;
    top: 70%;
   
    -ms-transform: translate(0%, -40%);
    -webkit-transform: translate(0%, -40%);
    transform: translate(0%, -40%);
    text-align: left;
    padding: 0;
    padding-top: 50px;
    padding-left: 130px;
    padding-right: 130px;
  
    width: 97%;
  
}

.opaque .container-fluid>.content-center {
    position: absolute;
    top: 50%;
   
    -ms-transform: translate(0%, -40%);
    -webkit-transform: translate(0%, -40%);
    transform: translate(0%, -40%);
   
    padding: 0;
    padding-top: 50px;
    padding-left: 130px;
    padding-right: 95px;
  
    width: 97%;
  
}
#slide-8 .container-fluid>.content-center,#info .container-fluid>.content-center{
   top: 50%;   
}
#info .container-fluid>.content-center{
   top: 50%;  
    padding:0px;
    margin:0px;
    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.page-header .category {
    /* color: rgba(255, 255, 255, 0.5); */
}

[data-background-color="black"] {
    background-color: #2c2c2c;
}

[data-background-color] {
    color: #FFFFFF;
}

[data-background-color] a:not(.btn):not(.dropdown-item) {
    color: #FFFFFF;
}

@media screen and (max-width: 3091px) {
    .sidebar-collapse  .navbar-collapse {
        position: fixed;
        display: block;
        top: 0;
        height: 100% !important;
        width: 300px;
        right: 0;
        z-index: 1032;
        visibility: visible;
        background-color: #999;
        overflow-y: visible;
        border-top: none;
        text-align: left;
        max-height: none !important;
        -webkit-transform: translate3d(300px, 0, 0);
        -moz-transform: translate3d(300px, 0, 0);
        -o-transform: translate3d(300px, 0, 0);
        -ms-transform: translate3d(300px, 0, 0);
        transform: translate3d(300px, 0, 0);
        -webkit-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        -moz-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        -o-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        -ms-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
    }
    .sidebar-collapse  .navbar-collapse:before {
        background: #a61078;
        display: block;
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .sidebar-collapse  .navbar-collapse .navbar-nav:not(.navbar-logo) .nav-link {
        margin: 0 1rem;
        margin-top: 0.3125rem;
    }
    .sidebar-collapse  .navbar-collapse .navbar-nav:not(.navbar-logo) .nav-link:not(.btn) {
        color: #FFFFFF;
    }
    .sidebar-collapse  .navbar .navbar-nav {
        margin-top: 53px;
    }
    .sidebar-collapse  .navbar .navbar-nav .nav-link {
        padding-top: 0.75rem;
        padding-bottom: .75rem;
    }
    .sidebar-collapse  .navbar .navbar-translate {
        width: 100%;
        position: relative;
        display: flex;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transform: translate3d(0px, 0, 0);
        -moz-transform: translate3d(0px, 0, 0);
        -o-transform: translate3d(0px, 0, 0);
        -ms-transform: translate3d(0px, 0, 0);
        transform: translate3d(0px, 0, 0);
        -webkit-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        -moz-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        -o-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        -ms-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
    }
    .sidebar-collapse  .navbar .navbar-toggler-bar {
        display: block;
        position: relative;
        width: 24px;
        height: 1px;
       
        border-radius: 4px;
        background: #fff;
    }
    .sidebar-collapse  .navbar .navbar-toggler-bar+.navbar-toggler-bar {
        margin-top: 6px;
    }
    .sidebar-collapse  .navbar .navbar-toggler-bar.bar2 {
        transition: width .2s linear;
        height: 1px;
        /*! background: #eb008b; */
    }
     .sidebar-collapse  .navbar .navbar-toggler-bar.bar3 {
        height: 1px;
         /*! background: #a0006f; */
    }
 
    .sidebar-collapse .bar1 {
        top: 0px;
        -webkit-animation: topbar-back 500ms linear 0s;
        -moz-animation: topbar-back 500ms linear 0s;
        animation: topbar-back 500ms 0s;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
    .sidebar-collapse .bar2 {
        opacity: 1;
    }
    .sidebar-collapse .bar3 {
        bottom: 0px;
        -webkit-animation: bottombar-back 500ms linear 0s;
        -moz-animation: bottombar-back 500ms linear 0s;
        animation: bottombar-back 500ms 0s;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
    @keyframes topbar-back {
        0% {
            top: 6px;
            transform: rotate(135deg);
        }
        45% {
            transform: rotate(-10deg);
        }
        75% {
            transform: rotate(5deg);
        }
        100% {
            top: 0px;
            transform: rotate(0);
        }
    }
    @-webkit-keyframes topbar-back {
        0% {
            top: 6px;
            -webkit-transform: rotate(135deg);
        }
        45% {
            -webkit-transform: rotate(-10deg);
        }
        75% {
            -webkit-transform: rotate(5deg);
        }
        100% {
            top: 0px;
            -webkit-transform: rotate(0);
        }
    }
    @-moz-keyframes topbar-back {
        0% {
            top: 6px;
            -moz-transform: rotate(135deg);
        }
        45% {
            -moz-transform: rotate(-10deg);
        }
        75% {
            -moz-transform: rotate(5deg);
        }
        100% {
            top: 0px;
            -moz-transform: rotate(0);
        }
    }
    @keyframes bottombar-back {
        0% {
            bottom: 6px;
            transform: rotate(-135deg);
        }
        45% {
            transform: rotate(10deg);
        }
        75% {
            transform: rotate(-5deg);
        }
        100% {
            bottom: 0px;
            transform: rotate(0);
        }
    }
    @-webkit-keyframes bottombar-back {
        0% {
            bottom: 6px;
            -webkit-transform: rotate(-135deg);
        }
        45% {
            -webkit-transform: rotate(10deg);
        }
        75% {
            -webkit-transform: rotate(-5deg);
        }
        100% {
            bottom: 0px;
            -webkit-transform: rotate(0);
        }
    }
    @-moz-keyframes bottombar-back {
        0% {
            bottom: 6px;
            -moz-transform: rotate(-135deg);
        }
        45% {
            -moz-transform: rotate(10deg);
        }
        75% {
            -moz-transform: rotate(-5deg);
        }
        100% {
            bottom: 0px;
            -moz-transform: rotate(0);
        }
    }
   
    .sidebar-collapse .wrapper {
        -webkit-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        -moz-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        -o-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        -ms-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
    }
    @keyframes topbar-back {
        0% {
            top: 6px;
            transform: rotate(135deg);
        }
        45% {
            transform: rotate(-10deg);
        }
        75% {
            transform: rotate(5deg);
        }
        100% {
            top: 0px;
            transform: rotate(0);
        }
    }
    @-webkit-keyframes topbar-back {
        0% {
            top: 6px;
            -webkit-transform: rotate(135deg);
        }
        45% {
            -webkit-transform: rotate(-10deg);
        }
        75% {
            -webkit-transform: rotate(5deg);
        }
        100% {
            top: 0px;
            -webkit-transform: rotate(0);
        }
    }
    @-moz-keyframes topbar-back {
        0% {
            top: 6px;
            -moz-transform: rotate(135deg);
        }
        45% {
            -moz-transform: rotate(-10deg);
        }
        75% {
            -moz-transform: rotate(5deg);
        }
        100% {
            top: 0px;
            -moz-transform: rotate(0);
        }
    }
    @keyframes bottombar-back {
        0% {
            bottom: 6px;
            transform: rotate(-135deg);
        }
        45% {
            transform: rotate(10deg);
        }
        75% {
            transform: rotate(-5deg);
        }
        100% {
            bottom: 0px;
            transform: rotate(0);
        }
    }
    @-webkit-keyframes bottombar-back {
        0% {
            bottom: 6px;
            -webkit-transform: rotate(-135deg);
        }
        45% {
            -webkit-transform: rotate(10deg);
        }
        75% {
            -webkit-transform: rotate(-5deg);
        }
        100% {
            bottom: 0px;
            -webkit-transform: rotate(0);
        }
    }
    @-moz-keyframes bottombar-back {
        0% {
            bottom: 6px;
            -moz-transform: rotate(-135deg);
        }
        45% {
            -moz-transform: rotate(10deg);
        }
        75% {
            -moz-transform: rotate(-5deg);
        }
        100% {
            bottom: 0px;
            -moz-transform: rotate(0);
        }
    }
    .footer .copyright {
        text-align: right;
    }
}

@media screen and (min-width: 992px) {
    @keyframes topbar-back {
        0% {
            top: 6px;
            transform: rotate(135deg);
        }
        45% {
            transform: rotate(-10deg);
        }
        75% {
            transform: rotate(5deg);
        }
        100% {
            top: 0px;
            transform: rotate(0);
        }
    }
    @-webkit-keyframes topbar-back {
        0% {
            top: 6px;
            -webkit-transform: rotate(135deg);
        }
        45% {
            -webkit-transform: rotate(-10deg);
        }
        75% {
            -webkit-transform: rotate(5deg);
        }
        100% {
            top: 0px;
            -webkit-transform: rotate(0);
        }
    }
    @-moz-keyframes topbar-back {
        0% {
            top: 6px;
            -moz-transform: rotate(135deg);
        }
        45% {
            -moz-transform: rotate(-10deg);
        }
        75% {
            -moz-transform: rotate(5deg);
        }
        100% {
            top: 0px;
            -moz-transform: rotate(0);
        }
    }
    @keyframes bottombar-back {
        0% {
            bottom: 6px;
            transform: rotate(-135deg);
        }
        45% {
            transform: rotate(10deg);
        }
        75% {
            transform: rotate(-5deg);
        }
        100% {
            bottom: 0px;
            transform: rotate(0);
        }
    }
    @-webkit-keyframes bottombar-back {
        0% {
            bottom: 6px;
            -webkit-transform: rotate(-135deg);
        }
        45% {
            -webkit-transform: rotate(10deg);
        }
        75% {
            -webkit-transform: rotate(-5deg);
        }
        100% {
            bottom: 0px;
            -webkit-transform: rotate(0);
        }
    }
    @-moz-keyframes bottombar-back {
        0% {
            bottom: 6px;
            -moz-transform: rotate(-135deg);
        }
        45% {
            -moz-transform: rotate(10deg);
        }
        75% {
            -moz-transform: rotate(-5deg);
        }
        100% {
            bottom: 0px;
            -moz-transform: rotate(0);
        }
    }
    .navbar-nav .nav-item:not(:last-child) {
        margin-right: 5px;
    }
    .footer .copyright {
        float: right;
        padding-right:20px;
    }
}

@media screen and (max-width: 576px) {
    .footer .copyright {
        text-align: center;
        display: block;
    }
    
    .footer nav {
    display: block;
    float: none;
}
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .index-page .category-absolute {
        top: 90vh;
    }
}

.n-logo{
    max-height:115px;
}

.quick-links{
    position:fixed;
    bottom:0%;
    left:100%;
    margin-left: -100px;
    margin-bottom:37px;
    z-index:2;
    /*! display:none; */
}

.quick-links img{
    /*! border:solid 3px #000; */
    height: 40px;
    margin: 5px;
     transition:all .2s linear;
    background-color: #dc4ea9;
}

.quick-links a:hover img{
    border:solid 3px #eb008b;
    height:40px;
   background-color: #fb0095;
   
}
.quick-links .border-1 img{
  border:solid 1px #000;   
}
.quick-links .border-2 img{
  border:solid 2px #000;   
}
.quick-links .border-3 img{
  /*! border:solid 3px #000; */   
}
 .scroll img{
    
}
.scroll:hover img{
    
    
}
.opaque{
    background-color: white;
    padding-top:50px;
    color: #231f20;
    border-top: solid white 22px;
    
    border-bottom: solid #c6c6c6 1px;
}

.gallery a img{
  margin-bottom:15px; 
    margin-top:15px;
    -webkit-box-shadow: 0px 0px 11px 1px  rgba(0,0,0,0.21);
-moz-box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.21);
box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.21);
}
#start.section.opaque {
        background-position:left bottom;
    }
.pink-dot li{
    list-style:none;
    
    list-style-image:url('../img/dot.png');
}

.semi-opaque{
    background-color:#f8f8f8b3; 
}
#o-mnie-content{
    background-size: 50%;   
}
.content{
    padding: 55px;
}

.frame{
    display:block;
    position:fixed;
    top:0px;
    left:0px;
    border:solid #fff 15px;
    height:100%;
    width:100%;
    z-index: 10000;
    pointer-events:none;
   /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.05+100 */
background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%, rgba(0,0,0,0.02) 100%); /* FF3.6-15 */
background: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(0,0,0,0.02) 100%); /* Chrome10-25,Safari5.1-6 */
background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%,rgba(0,0,0,0.02) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#0d000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.frame .frame{
    position:relative;
    -webkit-box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.21);
-moz-box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.21);
box-shadow: 0px 0px 11px 7px rgba(0,0,0,0.21);
border:solid #fff 22px;
}

.section .frame{
    
  position:absolute;  
    
}

@media screen and (max-width: 1000px) {

.page-header-image {
   
    background-position: top center;
    
}

.n-logo{
    max-height:75px;
}
.container-fluid>.content-center{
    padding-left:90px;
}

.content{
    padding:90px;
}

}


@media screen and (max-width: 767px) {

.page-header-image {
  background-position: center 50px; 
   background-size: 500px;
  
}
    
   .sub-page .page-header-image {
   background-position: 75% bottom;
   background-size: auto 100%;
   background-repeat:no-repeat;
   position:relative;
}
    
    
.page-header>.page-header-image {
    margin:0px;
}

.n-logo{
    max-height:75px;
}
.container-fluid>.content-center,.opaque .container-fluid>.content-center{
    padding:15px;
    /*! height:auto; */
    /*! padding-top: 100px; */
    /*! padding-bottom: 100px; */
    /*! position:relative; */
    /*! transform: none; */
    width: 97%;
    /*! top: 0px; */
}

    #cennik-content .container-fluid>.content-center{
        position:relative;
        transform: none;
        height:auto;
        
    }
    
   
.page-header .container-fluid>.content-center,#about-me .container-fluid>.content-center {
    position: absolute;
    bottom: 0%;
    -ms-transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    text-align: left;
    width: auto;
    padding:0px;
    top: 40%;
}
.opaque{
  padding-top:100px;
    background-size:500px;
    
    }
 #start.section.opaque {
        background-position:center bottom;
    }
    .more-button img{
        max-width:40px;
    }




.frame{
    display:none;
      border:solid white 7px;
}
.frame .frame{
border:solid white 15px;

}



.content{
    padding:15px;
}

 .quick-links{
    display:none;
}

.navbar.navbar-transparent{
    padding:0px;
    padding-bottom:0px;
    background-color:white !important;
    border: solid white 10px;
}
.wrapper{
    border: solid white 10px;
}
.main{
    padding:0px;
}
.icon-treatment{
    max-height: 120px;
    height: 120px !important;
    width: 120px;
}


h1 {
    font-size: 2.3em;
    line-height: 1;
    margin-bottom: 0px;
    
}

small{
    font-weight: 300;
    font-size: 30%;
    
 
}
    p.subtitle {
        text-transform: uppercase;
        font-size: .7em;
        letter-spacing: 6px;
        line-height: 1.3;
    }
    .thin{
      font-weight: 300;
    
    }
h2 {
    line-height: .3em;
    margin-bottom: 0px;
}
    
#gestalt h2 {
    line-height: 1em;
    margin-bottom: 0px;
}
h3 {
    font-size: 2em;
    margin-bottom: 30px;
    line-height: 1em;
}

h4 {
    font-size: 1.714em;
    line-height: 1.45em;
    margin-top: 0px;
    margin-bottom: 15px;
}
#contact{
    padding:30px;
}


#contact a img{
    height:35px;
    margin-top:10px;
   margin-bottom:10px;
}

}
#contact a img{
    height:35px;
    margin-top:5px;
   margin-bottom:5px;
   margin-right:15px;
}



.btn.scroll{
    background:url(../img/ikony-arrow-black.png) no-repeat left top;
   
}
.btn.more{
   /* background:url(../img/ikony-arrow-black-right.png) no-repeat left top;*/
    background-color:white;
    color:#cc0083;
    font-weight:300;
    
    text-align: center;
}


.sub-page .btn.scroll, .btn.no-float{
    float:none;
    display:inline-block;
}



span.slim{
    font-weight: 100;
}
.page-header-image{
    opacity: 1;
}
.sub-page .page-header-image{
    opacity:1;
}
#photo1, #photo2, #photo3, #photo4{
    opacity:1;
}

.nav-open .sidebar-collapse .navbar-collapse {
        -webkit-transform: translate3d(0px, 0, 0);
        -moz-transform: translate3d(0px, 0, 0);
        -o-transform: translate3d(0px, 0, 0);
        -ms-transform: translate3d(0px, 0, 0);
        transform: translate3d(0px, 0, 0);
    }
    .nav-open .sidebar-collapse .wrapper {
       /* -webkit-transform: translate3d(-150px, 0, 0);
        -moz-transform: translate3d(-150px, 0, 0);
        -o-transform: translate3d(-150px, 0, 0);
        -ms-transform: translate3d(-150px, 0, 0);
        transform: translate3d(-150px, 0, 0);*/
    }
    .nav-open .sidebar-collapse .navbar-translate {
        -webkit-transform: translate3d(-275px, 0, 0);
        -moz-transform: translate3d(-275px, 0, 0);
        -o-transform: translate3d(-275px, 0, 0);
        -ms-transform: translate3d(-275px, 0, 0);
        transform: translate3d(-275px, 0, 0);
    }
    .nav-open .sidebar-collapse.menu-on-left .navbar-collapse {
        -webkit-transform: translate3d(0px, 0, 0);
        -moz-transform: translate3d(0px, 0, 0);
        -o-transform: translate3d(0px, 0, 0);
        -ms-transform: translate3d(0px, 0, 0);
        transform: translate3d(0px, 0, 0);
    }
    .nav-open .sidebar-collapse.menu-on-left .navbar-translate {
        -webkit-transform: translate3d(300px, 0, 0);
        -moz-transform: translate3d(300px, 0, 0);
        -o-transform: translate3d(300px, 0, 0);
        -ms-transform: translate3d(300px, 0, 0);
        transform: translate3d(300px, 0, 0);
    }
    .nav-open .sidebar-collapse.menu-on-left .wrapper {
        -webkit-transform: translate3d(150px, 0, 0);
        -moz-transform: translate3d(150px, 0, 0);
        -o-transform: translate3d(150px, 0, 0);
        -ms-transform: translate3d(150px, 0, 0);
        transform: translate3d(150px, 0, 0);
    }
    .nav-open .sidebar-collapse.menu-on-left #bodyClick {
        right: auto;
        left: 300px;
    }
    .sidebar-collapse #bodyClick {
        height: 100%;
        width: 100%;
        position: fixed;
        opacity: 1;
        top: 0;
        left: auto;
        right: 300px;
        content: "";
        z-index: 9999;
        overflow-x: hidden;
        background-color: #9b353500;
        -webkit-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        -moz-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        -o-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        -ms-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
        transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
    }
    
     .sidebar-collapse .toggled .bar1 {
        top: 7px;
        -webkit-animation: topbar-x 500ms linear 0s;
        -moz-animation: topbar-x 500ms linear 0s;
        animation: topbar-x 500ms 0s;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
    .sidebar-collapse .toggled .bar2 {
        opacity: 0;
    }
    .sidebar-collapse .toggled .bar3 {
        bottom: 7px;
        -webkit-animation: bottombar-x 500ms linear 0s;
        -moz-animation: bottombar-x 500ms linear 0s;
        animation: bottombar-x 500ms 0s;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
@media screen and (max-width: 420px) {
  .nav-open .sidebar-collapse .navbar-translate {
        -webkit-transform: translate3d(-206px, 0, 0);
        -moz-transform: translate3d(-206px, 0, 0);
        -o-transform: translate3d(-206px, 0, 0);
        -ms-transform: translate3d(-206px, 0, 0);
        transform: translate3d(-206px, 0, 0);
    }
    .navbar-translate{
        z-index:1033;
    } 
    .navbar-translate span.text{
        opacity:0;
    }
    .sidebar-collapse .navbar .navbar-nav {
    margin-top: 70px;
}
}
    @keyframes topbar-x {
        0% {
            top: 0px;
            transform: rotate(0deg);
        }
        45% {
            top: 6px;
            transform: rotate(145deg);
        }
        75% {
            transform: rotate(130deg);
        }
        100% {
            transform: rotate(135deg);
        }
    }
    @-webkit-keyframes topbar-x {
        0% {
            top: 0px;
            -webkit-transform: rotate(0deg);
        }
        45% {
            top: 6px;
            -webkit-transform: rotate(145deg);
        }
        75% {
            -webkit-transform: rotate(130deg);
        }
        100% {
            -webkit-transform: rotate(135deg);
        }
    }
    @-moz-keyframes topbar-x {
        0% {
            top: 0px;
            -moz-transform: rotate(0deg);
        }
        45% {
            top: 6px;
            -moz-transform: rotate(145deg);
        }
        75% {
            -moz-transform: rotate(130deg);
        }
        100% {
            -moz-transform: rotate(135deg);
        }
    }
    @keyframes topbar-back {
        0% {
            top: 6px;
            transform: rotate(135deg);
        }
        45% {
            transform: rotate(-10deg);
        }
        75% {
            transform: rotate(5deg);
        }
        100% {
            top: 0px;
            transform: rotate(0);
        }
    }
    @-webkit-keyframes topbar-back {
        0% {
            top: 6px;
            -webkit-transform: rotate(135deg);
        }
        45% {
            -webkit-transform: rotate(-10deg);
        }
        75% {
            -webkit-transform: rotate(5deg);
        }
        100% {
            top: 0px;
            -webkit-transform: rotate(0);
        }
    }
    @-moz-keyframes topbar-back {
        0% {
            top: 6px;
            -moz-transform: rotate(135deg);
        }
        45% {
            -moz-transform: rotate(-10deg);
        }
        75% {
            -moz-transform: rotate(5deg);
        }
        100% {
            top: 0px;
            -moz-transform: rotate(0);
        }
    }
    @keyframes bottombar-x {
        0% {
            bottom: 0px;
            transform: rotate(0deg);
        }
        45% {
            bottom: 6px;
            transform: rotate(-145deg);
        }
        75% {
            transform: rotate(-130deg);
        }
        100% {
            transform: rotate(-135deg);
        }
    }
    @-webkit-keyframes bottombar-x {
        0% {
            bottom: 0px;
            -webkit-transform: rotate(0deg);
        }
        45% {
            bottom: 6px;
            -webkit-transform: rotate(-145deg);
        }
        75% {
            -webkit-transform: rotate(-130deg);
        }
        100% {
            -webkit-transform: rotate(-135deg);
        }
    }
    @-moz-keyframes bottombar-x {
        0% {
            bottom: 0px;
            -moz-transform: rotate(0deg);
        }
        45% {
            bottom: 6px;
            -moz-transform: rotate(-145deg);
        }
        75% {
            -moz-transform: rotate(-130deg);
        }
        100% {
            -moz-transform: rotate(-135deg);
        }
    }
    @keyframes bottombar-back {
        0% {
            bottom: 6px;
            transform: rotate(-135deg);
        }
        45% {
            transform: rotate(10deg);
        }
        75% {
            transform: rotate(-5deg);
        }
        100% {
            bottom: 0px;
            transform: rotate(0);
        }
    }
    @-webkit-keyframes bottombar-back {
        0% {
            bottom: 6px;
            -webkit-transform: rotate(-135deg);
        }
        45% {
            -webkit-transform: rotate(10deg);
        }
        75% {
            -webkit-transform: rotate(-5deg);
        }
        100% {
            bottom: 0px;
            -webkit-transform: rotate(0);
        }
    }
    @-moz-keyframes bottombar-back {
        0% {
            bottom: 6px;
            -moz-transform: rotate(-135deg);
        }
        45% {
            -moz-transform: rotate(10deg);
        }
        75% {
            -moz-transform: rotate(-5deg);
        }
        100% {
            bottom: 0px;
            -moz-transform: rotate(0);
        }
    }
    @-webkit-keyframes fadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    @-moz-keyframes fadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    @keyframes fadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }