/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
html,
body {
  border: 0;
  font-family: "Helvetica-Neue", "Helvetica", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
@font-face {
  font-family: DolceVita;
  src: url('../fonts/Dolce%20Vita%20Heavy%20Bold.ttf');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Calibri;
  src: url('../fonts/calibri.ttf');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Calibri;
  src: url('../fonts/calibri-bold.ttf');
  font-weight: 700;
  font-style: normal;
}
/*Colors*/
/*Classes*/
.vertical-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.center {
  margin-left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.uppercase {
  text-transform: uppercase;
}
.hidden {
  opacity: 0;
}
.visible {
  opacity: 1;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation: fadeIn .5s ease;
  -webkit-animation: fadeIn .5s ease;
  -moz-animation: fadeIn .5s ease;
}
.shadow {
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 768px) {
  .mobileHide {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .desktopHide {
    display: none !important;
  }
}
.clearfix {
  overflow: auto;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
/*Mixins*/
.easy-transform-fast {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.easy-transform-slow {
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
* {
  font-family: 'Calibri';
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 16px;
  color: #000000;
}
body,
html {
  line-height: 0;
  overflow-x: hidden;
  font-size: 16px;
}
img {
  max-width: 100%;
}
h1 {
  font-size: 2rem;
  line-height: 2rem;
}
h2 {
  font-size: 1.875rem;
  line-height: 1.875rem;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.5rem;
}
h4 {
  font-size: 1.25rem;
  line-height: 1.25rem;
}
a,
a:link,
a:focus,
a:visited {
  color: #000000;
  text-decoration: none;
}
p {
  font-size: 1.125rem;
  line-height: 1.1875rem;
  margin-bottom: 15px;
}
.col-20 {
  width: 20%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .col-20 {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .col-20 {
    width: 50%;
  }
}
.col-40 {
  width: 40%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .col-40 {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .col-40 {
    width: 100%;
  }
}
.col-60 {
  width: 60%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .col-60 {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .col-60 {
    width: 100%;
  }
}
.col-80 {
  width: 80%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .col-80 {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .col-80 {
    width: 100%;
  }
}
.col-100 {
  width: 100%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .col-100 {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .col-100 {
    width: 100%;
  }
}
.col-25 {
  width: 25%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .col-25 {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .col-25 {
    width: 50%;
  }
}
.col-50 {
  width: 50%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .col-50 {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .col-50 {
    width: 100%;
  }
}
.col-75 {
  width: 75%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .col-75 {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .col-75 {
    width: 100%;
  }
}
.col-100 {
  width: 100%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .col-100 {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .col-100 {
    width: 100%;
  }
}
.col-33 {
  width: 33.33333333%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .col-33 {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .col-33 {
    width: 100%;
  }
}
.col-66 {
  width: 66.66666667%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .col-66 {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .col-66 {
    width: 100%;
  }
}
.col-100 {
  width: 100%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .col-100 {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .col-100 {
    width: 100%;
  }
}
.row-10 {
  overflow: hidden;
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (max-width: 480px) {
  .row-10 {
    margin-left: 0;
    margin-right: 0;
  }
}
.row-10 .col {
  padding: 0 10px;
}
.row-15 {
  overflow: hidden;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 480px) {
  .row-15 {
    margin-left: 0;
    margin-right: 0;
  }
}
.row-15 .col {
  padding: 0 15px;
}
.btn-big {
  padding: 20px 45px;
  font-size: 1rem;
  line-height: 1.1428571428571428rem;
  display: inline-block;
}
.btn.active {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-red,
a.btn-red:link,
a.btn-red:focus,
a.btn-red:visited {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}
.btn-red:hover,
a.btn-red:link:hover,
a.btn-red:focus:hover,
a.btn-red:visited:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-green,
a.btn-green:link,
a.btn-green:focus,
a.btn-green:visited {
  background-color: #008000;
  border-color: #008000;
  color: #ffffff;
}
.btn-green:hover,
a.btn-green:link:hover,
a.btn-green:focus:hover,
a.btn-green:visited:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.container {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 992px) {
  .container {
    width: 95%;
  }
}
nav {
  z-index: 2;
  width: 100%;
  overflow: hidden;
  /*.hamburger-inner::after{
        bottom: -17px;
    }
    .hamburger-inner::before{
        top: -17px;
    }*/
}
@media only screen and (max-width: 992px) {
  nav .nav-container {
    text-align: center;
  }
}
nav .nav-container .nav-logo {
  float: left;
  width: auto;
}
@media only screen and (max-width: 992px) {
  nav .nav-container .nav-logo {
    float: none;
  }
}
nav .nav-container .nav-logo a {
  display: inline-block;
  width: auto;
  height: 100%;
  line-height: 120px;
}
nav .nav-container .nav-logo a img {
  width: auto;
  max-height: 35px;
  vertical-align: middle;
}
nav .nav-container .menu {
  float: right;
  list-style: none;
  padding: 40px 0;
}
@media only screen and (max-width: 992px) {
  nav .nav-container .menu {
    display: none;
  }
}
nav .nav-container .menu li.current-menu-item a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
nav .nav-container .menu li.current-menu-item a:hover {
  color: #7fbcd9;
}
nav .nav-container .menu li.current-menu-item a:hover:after {
  width: 100%;
}
nav .nav-container .menu li.current-menu-item a:hover:before {
  width: 5px;
}
nav .nav-container .menu li.current-menu-item a:after {
  width: 100%;
}
nav .nav-container .menu li.current-menu-item a:before {
  width: 5px;
}
nav .nav-container .menu li {
  float: left;
  padding: 0 15px;
}
nav .nav-container .menu li a {
  color: #444341;
  font-size: 1.125rem;
  line-height: 40px;
  text-transform: uppercase;
  position: relative;
}
nav .nav-container .menu li a:hover:after {
  width: 100%;
}
nav .nav-container .menu li a:hover:before {
  width: 5px;
}
nav .nav-container .menu li a:after {
  position: absolute;
  content: "";
  background-color: #000;
  height: 6px;
  bottom: -9px;
  width: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
nav .nav-container .menu li a:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.2s;
  position: absolute;
  content: "";
  background-color: #fff;
  height: 6px;
  bottom: -9px;
  width: 0;
  right: 20px;
  z-index: 2;
  -ms-transform: skewX(-40deg);
  /* IE 9 */
  -webkit-transform: skewX(-40deg);
  /* Safari 3-8 */
  transform: skewX(-40deg);
}
nav .hamburger {
  display: none;
}
@media only screen and (max-width: 992px) {
  nav .hamburger {
    display: inline-block;
    /*.hamburger-box{
                width: 70px;
                height: 70px;
                .hamburger-inner, .hamburger-inner::after, .hamburger-inner::before{
                    .borderRadius(0px);
                    width: 70px;
                    height: 8px;
                }
            }*/
  }
}
nav .social-media-wrap {
  display: inline-block;
  line-height: 120px;
  position: absolute;
  right: 0;
  padding-right: 4%;
}
@media only screen and (max-width: 992px) {
  nav .social-media-wrap {
    display: none;
  }
}
nav .social-media-wrap a {
  vertical-align: middle;
  display: inline-block;
  width: 35px;
  height: 35px;
  padding-left: 5px;
}
nav .social-media-wrap a svg {
  fill: #444341;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
nav .social-media-wrap a svg:hover {
  fill: #949391;
}
.home nav {
  position: absolute;
}
.top {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.top .headers-wrap {
  bottom: 25%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.top .headers-wrap h1,
.top .headers-wrap h2 {
  font-family: 'DolceVita';
  color: #ffffff;
  letter-spacing: -5px;
}
.top .headers-wrap h1 {
  font-size: 6rem;
  line-height: 6rem;
}
@media only screen and (max-width: 768px) {
  .top .headers-wrap h1 {
    font-size: 4rem;
    line-height: 4rem;
  }
}
.top .headers-wrap h2 {
  font-size: 3.05rem;
  line-height: 4.75rem;
}
.sidenav {
  position: fixed;
  background-color: #ffffff;
  height: 100vh;
  width: 300px;
  top: 0;
  left: -100%;
  z-index: 2;
  -webkit-box-shadow: 7px 0px 17px -7px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 7px 0px 17px -7px rgba(0, 0, 0, 0.65);
  box-shadow: 7px 0px 17px -7px rgba(0, 0, 0, 0.65);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidenav .hamburger {
  position: absolute;
  top: 15px;
  right: 15px;
}
.sidenav .hamburger .hamburger-inner,
.sidenav .hamburger .hamburger-inner::after,
.sidenav .hamburger .hamburger-inner::before {
  background-color: #ffffff;
}
.sidenav ul {
  list-style: none;
  padding: 90px 0 0 0;
  text-align: center;
}
.sidenav ul li {
  margin-bottom: 15px;
}
.sidenav ul li a {
  color: #000000;
}
.sidenav.open {
  left: 0;
}
.sidenav.open .hamburger .hamburger-inner,
.sidenav.open .hamburger .hamburger-inner::after,
.sidenav.open .hamburger .hamburger-inner::before {
  background-color: #000000;
}
footer {
  overflow: hidden;
  padding: 4px 0;
  display: block;
  width: 100%;
  margin-top: 60px;
}
@media only screen and (max-width: 480px) {
  footer {
    text-align: center;
  }
}
footer .copyright {
  text-align: left;
}
@media only screen and (max-width: 480px) {
  footer .copyright {
    text-align: center;
  }
}
footer .copyright p {
  font-size: 0.7rem;
  line-height: 0.7rem;
  margin: 0;
  vertical-align: middle;
  display: inline-block;
  color: #444341;
}
footer .made-by {
  text-align: right;
}
@media only screen and (max-width: 480px) {
  footer .made-by {
    text-align: center;
  }
}
footer .made-by p,
footer .made-by a {
  font-size: 0.7rem;
  line-height: 0.7rem;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  color: #444341;
}
footer .made-by a {
  font-weight: 700;
  color: #000000;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
footer .made-by a:hover {
  color: #444341;
}
.architektura {
  overflow: hidden;
}
.architektura article {
  margin-top: 80px;
  margin-bottom: 80px;
  overflow: hidden;
}
.architektura article .col.col-50.col-slider {
  margin-top: 30px;
}
.architektura article .col.col-50.col-text {
  padding-right: 12%;
}
@media only screen and (max-width: 768px) {
  .architektura article .col.col-50.col-text {
    margin-bottom: 40px;
    text-align: center;
    padding-right: 0;
  }
}
.architektura article .col.col-50.col-text .general-info {
  padding-bottom: 30px;
}
.architektura article .col.col-50.col-text .general-info a h3 {
  color: #ffffff;
  background-color: #2f447b;
}
.architektura article .col.col-50.col-text .general-info h3 {
  font-size: 1.125rem;
  line-height: 1.8rem;
  font-weight: 700;
  padding-left: 2px;
}
.architektura article .col.col-50.col-text .content table {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.125rem;
}
.architektura article .col.col-50.col-text .content table tr > td {
  line-height: 1.5rem;
}
.architektura article .col.col-50.col-text .content table tr > td:first-of-type {
  padding-right: 20px;
}
.architektura article .col.col-50.col-text .content table tr > td::after {
  content: ".";
  visibility: hidden;
  opacity: 0;
}
.architektura article .col.col-50.col-text .content p {
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin-bottom: 0;
  padding-right: 12%;
}
@media only screen and (max-width: 768px) {
  .architektura article .col.col-50.col-text .content p {
    padding-right: 0;
  }
}
.col.col-50.col-slider {
  position: relative;
}
.col.col-50.col-slider .arrows-wrapper-prev,
.col.col-50.col-slider .arrows-wrapper-next {
  position: absolute;
  z-index: 3;
  height: 100%;
  width: 10%;
}
.col.col-50.col-slider .arrows-wrapper-prev .single-arrow-wrapper-prev,
.col.col-50.col-slider .arrows-wrapper-next .single-arrow-wrapper-prev,
.col.col-50.col-slider .arrows-wrapper-prev .single-arrow-wrapper-next,
.col.col-50.col-slider .arrows-wrapper-next .single-arrow-wrapper-next {
  display: inline-block;
  position: relative;
  height: 100%;
  width: 100%;
  /*&:hover{
                cursor: pointer;
            }*/
}
.col.col-50.col-slider .arrows-wrapper-prev .single-arrow-wrapper-prev svg,
.col.col-50.col-slider .arrows-wrapper-next .single-arrow-wrapper-prev svg,
.col.col-50.col-slider .arrows-wrapper-prev .single-arrow-wrapper-next svg,
.col.col-50.col-slider .arrows-wrapper-next .single-arrow-wrapper-next svg {
  width: 40px;
  height: 40px;
  padding: 0 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  border-radius: 100%;
  border: 3px solid #ffffff;
  background-color: #505457;
  stroke: #ffffff;
  fill: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.col.col-50.col-slider .arrows-wrapper-prev .single-arrow-wrapper-prev svg:hover,
.col.col-50.col-slider .arrows-wrapper-next .single-arrow-wrapper-prev svg:hover,
.col.col-50.col-slider .arrows-wrapper-prev .single-arrow-wrapper-next svg:hover,
.col.col-50.col-slider .arrows-wrapper-next .single-arrow-wrapper-next svg:hover {
  background-color: rgba(80, 84, 87, 0.5);
  cursor: pointer;
}
.col.col-50.col-slider .arrows-wrapper-prev .single-arrow-wrapper-prev svg,
.col.col-50.col-slider .arrows-wrapper-next .single-arrow-wrapper-prev svg {
  left: 10px;
}
.col.col-50.col-slider .arrows-wrapper-prev .single-arrow-wrapper-next svg,
.col.col-50.col-slider .arrows-wrapper-next .single-arrow-wrapper-next svg {
  right: 10px;
}
.col.col-50.col-slider .arrows-wrapper-prev {
  left: 0;
}
.col.col-50.col-slider .arrows-wrapper-next {
  right: 0;
}
.col.col-50.col-slider .img-wrap {
  width: 100%;
  height: 380px;
}
.col.col-50.col-slider .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.architektura-archive {
  margin: 60px 0;
}
.architektura-archive .row-15 .col {
  padding: 15px;
}
.architektura-archive .col.col-25 a {
  position: relative;
  display: block;
}
.architektura-archive .col.col-25 a .aspect-ratio-wrap {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.architektura-archive .col.col-25 a .aspect-ratio-wrap img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.architektura-archive .col.col-25 a:hover .title-wrap {
  opacity: 1;
}
.architektura-archive .col.col-25 a .title-wrap {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(68, 67, 65, 0.7);
}
.architektura-archive .col.col-25 a .title-wrap h2 {
  font-size: 1.45rem;
  line-height: 3.05rem;
  font-weight: 300;
  color: #ffffff;
}
.rewitalizacja {
  overflow: hidden;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .rewitalizacja h2 {
    text-align: center;
  }
}
.rewitalizacja article {
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}
.rewitalizacja article .col.col-50.col-slider {
  margin-top: 30px;
}
.rewitalizacja article .col.col-50.col-text {
  padding-right: 30px;
}
@media only screen and (max-width: 768px) {
  .rewitalizacja article .col.col-50.col-text {
    padding-right: 0;
    text-align: center;
  }
}
.rewitalizacja article .col.col-50.col-text .general-info {
  padding-right: 12%;
  padding-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .rewitalizacja article .col.col-50.col-text .general-info {
    padding-right: 0;
  }
}
.rewitalizacja article .col.col-50.col-text .general-info a h3 {
  color: #ffffff;
  background-color: #2f447b;
}
.rewitalizacja article .col.col-50.col-text .general-info h3 {
  font-size: 1.125rem;
  line-height: 1.8rem;
  font-weight: 700;
  padding-left: 2px;
}
.rewitalizacja article .col.col-50.col-text .content .content-text {
  padding-top: 20px;
}
@media only screen and (max-width: 768px) {
  .rewitalizacja article .col.col-50.col-text .content .content-text {
    margin-bottom: 20px;
  }
}
.rewitalizacja article .col.col-50.col-text .content .content-text p {
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin-bottom: 0;
  padding-right: 12%;
}
.rewitalizacja article .col.col-50.col-text .content .content-text table {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.125rem;
  padding-right: 12%;
}
.rewitalizacja article .col.col-50.col-text .content .content-text table tr > td {
  line-height: 1.5rem;
}
.rewitalizacja article .col.col-50.col-text .content .content-text table tr > td:first-of-type {
  padding-right: 20px;
}
.rewitalizacja article .col.col-50.col-text .content .content-text table tr > td::after {
  content: ".";
  visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .rewitalizacja article .col.col-50.col-text .content .content-img {
    margin-bottom: 20px;
    width: 100%;
  }
}
.rewitalizacja article .col.col-50.col-text .content .content-img img {
  width: 100%;
}
.doradztwo {
  overflow: hidden;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .doradztwo h2 {
    text-align: center;
  }
}
.doradztwo article {
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}
.doradztwo article .col.col-50.col-slider {
  margin-top: 30px;
}
.doradztwo article .col.col-50.col-text {
  padding-right: 5%;
}
@media only screen and (max-width: 768px) {
  .doradztwo article .col.col-50.col-text {
    text-align: center;
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.doradztwo article .col.col-50.col-text .general-info {
  padding-bottom: 30px;
}
.doradztwo article .col.col-50.col-text .general-info a {
  pointer-events: none;
}
.doradztwo article .col.col-50.col-text .general-info a h3 {
  color: #ffffff;
  background-color: #2f447b;
  padding-left: 5px;
}
.doradztwo article .col.col-50.col-text .general-info h3 {
  font-size: 1.125rem;
  line-height: 1.7rem;
  font-weight: 700;
}
.doradztwo article .col.col-50.col-text .content p {
  font-size: 1.125rem;
  line-height: 1.1rem;
  margin-bottom: 20px;
}
.doradztwo article .col.col-50.col-text .content table {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.125rem;
}
.doradztwo article .col.col-50.col-text .content table tr > td {
  line-height: 1.5rem;
}
.doradztwo article .col.col-50.col-text .content table tr > td:first-of-type {
  padding-right: 20px;
}
.doradztwo article .col.col-50.col-text .content table tr > td::after {
  content: ".";
  visibility: hidden;
  opacity: 0;
}
.kolektyw-top {
  width: 100%;
  height: 50vh;
}
.kolektyw-top .kolektyw-slider-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.kolektyw-top .kolektyw-slider-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kolektyw-top .kolektyw-slider-wrap div {
  height: 100%;
}
.kolektyw-text {
  text-align: center;
  margin-top: 60px;
}
.kolektyw-text .text {
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 60px;
}
.kolektyw-text .text h2 {
  margin-bottom: 20px;
}
.kolektyw-text .members-wrap {
  margin-top: 20px;
  margin-left: 10%;
  margin-right: 10%;
}
.kolektyw-text .members-wrap .row-10 {
  display: flex;
  flex-wrap: wrap;
}
.kolektyw-text .members-wrap .member {
  margin-bottom: 30px;
}
.kolektyw-text .members-wrap .member .img-wrap {
  position: relative;
  /*&::after{
                    content: "";
                    background-color: @white;
                    width: 100%;
                    height: 50%;
                    display: block;
                    position: absolute;
                    top: 0;
                    right: 0;
                    z-index: 1;
                }*/
}
.kolektyw-text .members-wrap .member .img-wrap img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  z-index: 2;
  position: relative;
  border-bottom: 10px solid black;
}
.kolektyw-text .members-wrap .member .text-wrap {
  background-color: #f8f8f8;
  padding-top: 30px;
  padding-bottom: 30px;
}
.kolektyw-text .members-wrap .member .text-wrap h3 {
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-bottom: 35px;
}
.kolektyw-text .members-wrap .member .text-wrap p {
  padding: 0px 5px;
}
.kontakt {
  margin-top: 40px;
  min-height: 90vh;
}
@media only screen and (max-width: 992px) {
  .kontakt {
    text-align: center;
  }
}
@media only screen and (max-width: 992px) {
  .kontakt h2 {
    margin-bottom: 30px;
  }
}
.kontakt article {
  overflow: hidden;
}
.kontakt article .col-text {
  margin-bottom: 20px;
}
.kontakt article .col-text p {
  margin-top: 20px;
  margin-right: 70px;
}
@media only screen and (max-width: 992px) {
  .kontakt article .col-text p {
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt article .col-text p {
    text-align: center;
    margin-right: 0;
  }
}
.single-page-style {
  margin: 60px 0;
}
/*
font-family: 'Roboto', sans-serif;
light - 300
regular - 400
medium - 500
bold - 700
black - 900

font-family: 'Big Shoulders Text', cursive;
medium - 500
bold - 700
*/
