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


:root {
  --font-size: 1;
  --color1: #000;
  --borderRadius: 1em;
}

body {
	color: #1b1b1b;
	background-color: #efefef;
}
.burger {
    font-size: var(--font-size);
    cursor: pointer;
    padding: 3em 0.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);
  }
}

.scrolldown {
  --color: white;
  --sizeX: 30px;
  --sizeY: 50px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX / 2);
  border: calc(var(--sizeX) / 10) solid var(--color);
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
  cursor: pointer;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}

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

.navbar-con {
    background: rgba(232,232,232,1.00);
    background: linear-gradient(180deg, rgba(232,232,232,1) 0%, rgba(232,232,232,0) 50%);
    height: 400px;
    font-family: 'Lato', 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: 150px;
	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-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: center;
}
.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") #ebebeb;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.bg-06 {
    background: url("../img/bg-6.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.bg-07 {
    background: url("../img/bg-7.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.ikons-bg {
    background: url("../img/bg-7.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
	border-radius: 50px;
}
.bg-08 {
    background: url("../img/bg-8.jpg") #ebebeb;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 40%;
}
.bg-09 {
    background: url("../img/bg-7.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}
.bg-footer {
    background: url('../img/bg-footer.jpg') #d9d9d9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.finanse-img {
	display: none;
}
@media all and (min-width:1400px){
	.finanse-img {
		display: block;
		margin-top: -550px;
	}
	#kontakt {
		margin-top: -70px;
	}
}

.grid-container {  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 5px 5px;
  grid-auto-flow: row;
  grid-template-areas:
    ". ."
    ". ."
    ". ."
    ". ."
    ". .";
}

@media all and (min-width:992px){
	.grid-container {  display: grid;
	  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	  grid-template-rows: 1fr 1fr;
	  gap: 5px 5px;
	  grid-auto-flow: row;
	  grid-template-areas:
		". . . . ."
		". . . . .";
	}
}



.ikon-container {
	font-size: 18px;
	color: #fff;
	font-weight: 600;
}

.ikon-container img {
	height: 60px;
	opacity: 0.5;
	margin-bottom: 20px;
}

.lokalizacja-con {
	font-size: 25px;
	line-height: 25px;
	color: #fff;
	font-weight: 600;
}
.lokalizacja-con img {
	height: 100px;
	margin-bottom: 20px;
}
@media all and (min-width:992px){
	.lokalizacja-con img {
		height: 130px;
		margin-bottom: 20px;
	}
}
.panel {
	font-size: 14px;
	line-height: 25px;
}

.button-5 {
	padding: 10px;
	border: solid 1px #000;
	color: #000;
	background: transparent;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	transition: all 0.5s;
}
.button-5:hover {
	background: #000;
	color: #fff;
	transition: all 0.5s;
}

.lista-head {
	background: #d3d3d3;
	padding: 20px 0;
}
.lista-body {
	padding: 15px 0;;
}
.lista-body {
	border-bottom: solid 1px #E0E0E0 
}
.lista-body a {
	padding: 5px;
	border: solid 1px #000;
	color: #000;
	background: transparent;
	text-decoration: none;
	display: inline-block;
	font-size: 11px;
	transition: all 0.5s;
}
@media all and (min-width:992px){
	.lista-body a {
		font-size: 14px;
	}
}
.lista-body a:hover {
	background: #000;
	color: #fff;
	transition: all 0.5s;
}

h1, h2 {
    font-family: 'Lato', sans-serif;
}
h1 {
    font-size: 22px;
	line-height: 22px;
	font-weight: 600;
}
@media all and (min-width: 1400px) {
    h1 {
        font-size: 40px;
		line-height: 44px;
    }
}
.ngl-1 {
	font-family: 'Lato', sans-serif;
	font-size: 30px;
	line-height: 35px;
	font-weight: 400;
}
.op-1 {
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
}
@media all and (min-width:992px){
	.op-1 {
		font-size: 17px;
		line-height: 20px;
		font-weight: 400;
	}
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}
.ngl-2 {
    font-weight: 800;
    font-size: 18px;
}
.text-ngl {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    line-height: 20px;
}
.button-1 {
    font-family: 'Lato', sans-serif;
    background-color: #fff;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.5s;
    opacity: 0.8;
    outline: 0;
    border: 0;
	display: inline-block;
}
.button-1:hover {
    text-decoration: none;
    opacity: 1;
    transition: all 0.5s;
}
.button-border {
	border: solid 1px #fff;
	background: transparent;
	padding: 25px 80px;
	text-decoration: none;
	display: inline-block;
	color: #fff;
	transition: all 0.5s;
}
.button-border:hover {
	border: solid 1px #fff;
	background: #fff;
	padding: 25px 80px;
	text-decoration: none;
	display: inline-block;
	color: #000;
	transition: all 0.5s;
}

.bg-grd {
background: rgb(11,19,6);
background: linear-gradient(0deg, rgba(11,19,6,1) 0%, rgba(32,59,19,1) 15%, rgba(25,46,15,1) 85%, rgba(11,19,6,1) 100%);
}

#menu-kontakt-button {
	background: url("../img/kontakt-button-bg.png") #2b370e;
	background-repeat: no-repeat;
	background-position: 95% 0%;
	background-size: 22%;
	padding: 15px 80px 15px 20px;
	color: #fff;
	text-decoration: none;
	display: block;
	font-weight: 700;
	line-height: 17px;
}
#menu-kontakt-button span {
	font-weight: 400;
	opacity: 0.6;
}

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



.domy-wartosc-1 {
	font-size: 120px;
	color: #565d47;
	font-weight: 600;
}
.domy-wartosc-2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #000;
	font-weight: 400;
	
}
.ikona {
    opacity: 0.6;
}
@media all and (min-width:992px){
	.domy-wartosc-1 {
	font-size: 150px;
	}
	.domy-wartosc-2 {
		font-size: 14px;
		line-height: 24px;
	}
}

.lisc-con {
        position: absolute;
        overflow: hidden;
        bottom: -20.5vw;
        left: -50vw;
    }
    .lisc {
         width:120%;
    }
@media all and (min-width:992px){
    .lisc-con {
        position: absolute;
        overflow: hidden;
        bottom: -11.9vw;
        left: auto;
		width: 99%;
    }
    .lisc {
         width:100vw;
    }
}

.parent div {
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Lato', 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: 'Lato', 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;
}
#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: rgba(255,255,255,1.00);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(66,66,66,1.00);
    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: 'Lato', 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: #fff;
    opacity: 0.3;
    text-decoration: none;
    transition: all 0.5s;
}
.emest:hover {
    color: #fff;
    opacity: 1;
    text-decoration: none;
    transition: all 0.5s;
}
.button-4 {
    padding: 10px 20px;
    border: 0;
	background: #272E1B;
	color: #fff;
}
.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: #fff;
    color: #000;
    font-size: 15px;
}

.button-3 {
	background-color: #272E1B;
	border: solid 1px #272E1B;
	color: #fff;
	padding: 20px;
	text-decoration: none;
	font-size: 18px;
	display: inline-block;
	width: 280px;
}
.button-3-stroke {
	background-color: transparent;
	border: solid 1px #272E1B;
	color: #272E1B;
	padding: 20px;
	text-decoration: none;
	font-size: 18px;
	display: inline-block;
	width: 280px;
}

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