@charset "utf-8";
/* CSS Document */


:root {
  --font-size: 1;
  --color1: #f0ffff;
  --borderRadius: 1em;
}
.burger {
    font-size: var(--font-size);
    cursor: pointer;
    padding: 3em 1.5em;
    transform: scale(.7);
}
.burger.showHitArea {
  border: 1px solid olive;
}
.burger > div {
  width: 4em;
  height: 0.5em;
  border-radius: var(--borderRadius);
  background: var(--color1);
}
.burger > div::before, .burger > div::after {
  transition: font-size 0s;
  content: "";
  display: block;
  position: absolute;
  width: 4em;
  height: 0.5em;
  background: var(--color1);
  border-radius: var(--borderRadius);
}
.burger > div::before {
  margin-top: -1.5em;
}
.burger > div::after {
  margin-top: 1.5em;
}

.burger2 > div {
  transition: background 0.4s, font-size 0s;
}
.burger2 > div::before, .burger2 > div::after {
  transition: font-size 0s;
  transform-origin: center center;
}
.burger2.toggled > div::before {
  -webkit-animation: burg2top 0.4s linear forwards;
          animation: burg2top 0.4s linear forwards;
}
.burger2.toggled > div {
  background: transparent;
}
.burger2.toggled > div::after {
  -webkit-animation: burg2bottom 0.4s linear forwards;
          animation: burg2bottom 0.4s linear forwards;
}
.burger2.unToggled > div::before {
  -webkit-animation: burg2topReset 0.4s linear forwards;
          animation: burg2topReset 0.4s linear forwards;
}
.burger2.unToggled > div {
  background: var(--color1);
}
.burger2.unToggled > div::after {
  -webkit-animation: burg2bottomReset 0.4s linear forwards;
          animation: burg2bottomReset 0.4s linear forwards;
}
@-webkit-keyframes burg2top {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(55deg);
  }
  100% {
    margin-top: 0em;
    transform: rotate(45deg);
  }
}
@keyframes burg2top {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(55deg);
  }
  100% {
    margin-top: 0em;
    transform: rotate(45deg);
  }
}
@-webkit-keyframes burg2bottom {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(-55deg);
  }
  100% {
    margin-top: 0em;
    transform: rotate(-45deg);
  }
}
@keyframes burg2bottom {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(-55deg);
  }
  100% {
    margin-top: 0em;
    transform: rotate(-45deg);
  }
}
@-webkit-keyframes burg2topReset {
  0% {
    margin-top: 0em;
    transform: rotate(45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: 1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: 1.5em;
    transform: rotate(0deg);
  }
}
@keyframes burg2topReset {
  0% {
    margin-top: 0em;
    transform: rotate(45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: 1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: 1.5em;
    transform: rotate(0deg);
  }
}
@-webkit-keyframes burg2bottomReset {
  0% {
    margin-top: 0em;
    transform: rotate(-45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: -1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: -1.5em;
    transform: rotate(0deg);
  }
}
@keyframes burg2bottomReset {
  0% {
    margin-top: 0em;
    transform: rotate(-45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: -1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: -1.5em;
    transform: rotate(0deg);
  }
}

.mobilemenu {
    color: #fff;
}
.menu-tool {
    z-index: 999;
}
.navbar-con.scrolled {
    height: auto;
    background: rgba(255,255,255,1);
	
}
.navbar-mobilemenu {
    height: 300px;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%);
}
.navbar-mobilemenu.open {
    height: 100vh;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%), url("../img/bg-1-m.jpg");
    background-size: cover;
    background-position: center;
}

.navbar-con {
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%);
    height: 400px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.navbar-con nav {
	padding: 2rem;
	transition: padding 0.5s;
}
.navbar-con.scrolled nav {
	padding: 0.5rem;
	transition: padding 0.5s;
}

.navbar-con .navbar-brand img {
	width: 200px;
	transition: width 0.5s;
}
.navbar-con.scrolled .navbar-brand img {
	width: 170px;
	transition: width 0.5s;
}

.mobilemenucon {
    display: none;
}

.navbar-mobilemenu.open .mobilemenucon {
    display: flex;
}
.mobilemenu a {
    font-size: 1.5em;
    line-height: 2.5em;
}
.mobile-tel {
    color: #fff;
    font-size: 2em;
    text-decoration: none;
    background-color: #caaf7d;
    width: 80vw;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}
.mobile-tel:hover {
    text-decoration: none;
    color:#fff;
}
.mobile-fb {
    width:20vw;
    background-color: #212121;
}
.bg-image {
    background-image: url("../img/bg-2.jpg");
    background-position: center center;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    animation: bg-1 50s ease-out both;
    fill-mode: backwards;
}
.bg-01 {
    background: url("../img/bg-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 100px #1F1F1F;
}
.bg-02 {
    background: url("../img/bg-2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 80% 0%;
}
.bg-03 {
    background: url("../img/bg-3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 50%;
}
.bg-04 {
    background: url("../img/bg-4.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
}
.bg-footer {
    background: url('../img/bg-footer.jpg') #555555;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.finanse-img {
	display: none;
}
@media all and (min-width:992px){
	.finanse-img {
		display: block;
		margin-top: -550px;
	}
	#kontakt {
		margin-top: -70px;
	}
}


.bg-01 {
    min-height: 60vh;
}
.bg-02 {
    min-height: 40vh;
}
@media all and (min-width:992px) {
    .bg-01 {
        min-height: 100vh;
    }
    .bg-02 {
        min-height: 100vh;
    }
}

h1, h2 {
    font-family: 'Noto Sans', sans-serif;
}
h1 {
    font-size: 30px;
	line-height: 30px;
}
@media all and (min-width: 1400px) {
    h1 {
        font-size: 40px;
		line-height: 40px;
    }
}

.ngl-0 {
		font-family: 'Noto Sans', sans-serif;
		font-weight: 700;
		font-size: 35px;
	}
@media all and (min-width:992px){
	.ngl-0 {
		font-size: 85px;
		line-height: 85px;
	}
}

.ngl-0-op {
	font-family: 'Noto Sans', sans-serif;
    font-size: 25px;
}

p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
}
.ngl-2 {
    font-weight: 800;
    font-size: 18px;
}
.text-ngl {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    line-height: 20px;
}
.background-2 {
	background-color: #5a217a;
}
.background-3 {
	background-image: url("../img/bg-0.jpg");
	background-size: cover;
	background-position: center;
}
.background-4 {
	background-color: #b99500;
}
.button-1 {
    font-family: 'Noto Sans', sans-serif;
    background-color: #6f1ba1;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.5s;
    opacity: 0.9;
    outline: 0;
    border: 0;
}
.button-1:hover {
    text-decoration: none;
    opacity: 1;
    transition: all 0.5s;
}
.text-25 {
	font-size: 25px;
}
.opacity50 {
	color: #af8ec1;
}
.opacity50 strong {
	color:#fff;
}
.hr-line-1 {
    height: 2px;
    width: 200px;
    background: #fff;
    display: inline-block;
    opacity: 0.5;
}
.hr-line-2 {
    height: 2px;
    width: 200px;
    background: #a9884f;
    display: inline-block;
    opacity: 0.5;
}
.hr-line-3 {
    height: 4px;
    width: 70%;
    background: #dcc186;
    display: inline-block;
    opacity: 1;
}
.hr-line-4 {
    height: 4px;
    width: 35%;
    background: #dcc186;
    display: inline-block;
    opacity: 1;
}
.bg-grey {
    background-color: #eeeeee;
}
@media all and (min-width:992px){
    .parent {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }
    .div1 { grid-area: 1 / 1 / 2 / 2; }
    .div2 { grid-area: 1 / 2 / 2 / 3; }
    .div3 { grid-area: 1 / 3 / 2 / 4; }
    .div4 { grid-area: 1 / 4 / 2 / 5; }
    .div5 { grid-area: 1 / 5 / 2 / 6; }
}
.parent div {
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Noto Sans', sans-serif;
}
.parent div img {
    margin: 20px 0;
    height: 90px;
}
.ikony {
    padding: 80px 0;
    box-shadow: 0 0 50px 10px #8C8C8C;
}
.link-1, .link-1:hover {
    color: #dcc086;
    text-decoration: none;
}
.kontakt {
    line-height: 35px;
}
.mapa {
    box-shadow: -50px 0px 80px 0px #e9e9e9;
}
#pasek {
    font-family: 'Noto Sans', sans-serif;
}
.pasek-text {
    font-size: 18px;
    color: #A6A6A6
}
.pasek-text span {
    font-weight: 800;
    color: #000;
}
#lokal {
    font-size: 24px;
    font-weight: 800;
}
.button-2 {
    padding: 10px 15px;
    color: #525252;
    text-decoration: none;
    border: solid 2px #525252;
    transition: all 0.5s;
    display: inline-block;
}
.button-2:hover {
    color: #fff;
    background: #000;
    text-decoration: none;
    border: solid 2px #525252;
    transition: all 0.5s;
}
#formularz5 input, #formularz5 textarea {
    width: 100%;
    background: transparent;
    outline: none;
    border: 0;
    padding: 5px;
    border-bottom: 2px solid #000;
    color: #000;
    font-size: 20px;
    font-weight: 300;
    margin: 1em 0;
position: relative;
  z-index: 9999;
}
#formularz5 input::-webkit-input-placeholder, #formularz5 textarea::-webkit-input-placeholder {
    color: #000;
    opacity: 0.8;
}

#formularz5 .check-con label {
    color: #000;
}
#formularz5 .check-con label {
    color: #000;
}
.css-checkbox + label {
    position: relative;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    height: 27px;
    color: rgb(0, 0, 0);
}
.css-checkbox + label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    width: 35px;
    height: 35px;
    background-color: rgb(237, 231, 216);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(222, 209, 178);
    border-radius: 2px;
    box-shadow: none;
}
.css-checkbox:checked + label::after {
    content: " "; background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjMzMzMjMwIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+");
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    left: 0px;
    top: 0px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 30px;
    width: 36px;
}
.check-con input {
    margin: 0;
    height: 0;
    outline: 0;
    line-height: 0;
    display: none;
}
.check-con {
    line-height: 15px;
    margin: 0;
    height: fit-content;
}
.check-con label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.8em;
    line-height: 1.2em;
    color: #fff;
}
.text-1, .text-1:hover {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    margin-top: 10px;
    display: block;
}
.succes {
    background-color: #008d5085;
    padding: 1rem;
    color: #fff;
}
.error {
    background-color: #8d001685;
    padding: 1rem;
    color: #fff;
}
.emest {
    color: #000;
    opacity: 0.5;
    text-decoration: none;
    transition: all 0.5s;
}
.emest:hover {
    color: #000;
    opacity: 1;
    text-decoration: none;
    transition: all 0.5s;
}
.button-4 {
    padding: 10px 20px;
    border: 0;
}
.con-kontakt {
    position: fixed;
    right: 0;
    top: 45%;
    z-index: 9999;
}
.kon-b, .kon-b-mob {
    background-color: #caaf7d;
    padding: 10px;
}
.kon-b-2 {
    background-color: #4F4F4F;
    padding: 10px;
}

.nav-link {
    font-size: 12px;
}
#kontakt-button {
    background-color: #6f1ba1;
    color: #fff;
    font-size: 15px;
}

@media all and (min-width:1200px) {
    .nav-link {
        font-size: 15px;
    }
    #kontakt-button {
        font-size: 25px;
    }
}

.lista-head div {
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #ededed;
    padding: 15px 0;
}
.lista-body div {
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 5px 0;
}
.col-con {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nrc {
    font-size: 11px;
}.lista-karta, .lista-karta:hover {
    color: #000;
    text-decoration: none;
    background-color: #000;
    color: #fff;
    padding: 5px 15px;
}
.but-2, .but-2:hover {
    background-color: #A78C5A;
    color: #000;
    text-decoration: none;
    padding: 5px 10px;
    color: #fff;
    cursor: pointer;
}
.lista-status.wolny {
    color: #68CD2B;
}
.lista-body {
    border-bottom: solid 1px #ededed;
}
.standard {
	list-style: none;
}
.standard li {
	padding: 5px 0;
}
.icons {
    font-size: 17px;
    font-family: 'Noto-sans', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
}
.icons img {
    opacity: 0.7;
	height: 100px;
	margin: 20px 0;
}


@media (max-width: 991.98px) {
  .ukryj-na-mobile {
    display: none !important;
  }
}

