@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Itim&family=Lato:wght@300;400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap);
@charset "UTF-8";
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  text-wrap: pretty;
  /* Nowoczesne przeglądarki - lepsze niż 'avoid' dla całej strony */
  orphans: 0;
  /* Działa dla elementów blokowych (p, div itp) */
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

[class*=__container] {
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.transition-1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background-color: #ffffff;
}

.transition-1.is-active {
  pointer-events: all;
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited, a:hover {
  text-decoration: none;
}

.container {
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.underline {
  display: block;
  width: 50%;
  margin: 0 auto;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #cfcfcf;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #203F65;
  border-radius: 5px;
}

[data-opavcity-move] {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1.2s cubic-bezier(0.17, 0.16, 0.09, 0.93);
  transition: all 1.2s cubic-bezier(0.17, 0.16, 0.09, 0.93);
}
[data-opavcity-move].animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

[data-opacity] {
  opacity: 0;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
[data-opacity].animate {
  opacity: 1;
}

.fadeIn {
  opacity: 1 !important;
  -webkit-transform: translateY(0px) !important;
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
  transition: transform 1s ease-out, -webkit-transform 1s ease-out;
  transform: translateY(0px) !important;
}

.fadeInTrigger {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
[class*=__title] {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  color: #203F65;
  letter-spacing: 1px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
[class*=__title] .--small {
  position: relative;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(68, 68, 68);
}
[class*=__title] .--small::before {
  display: block;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #203F65;
  margin-right: 1rem;
}
@media screen and (min-width: 990px) {
  [class*=__title] .--small {
    font-size: 1.5rem;
  }
}
[class*=__title] .--big {
  font-size: 2.5rem;
  letter-spacing: 0;
}
[class*=__title] .--white {
  color: white;
}
[class*=__title] .--white::before {
  background-color: white;
}
[class*=__title] .--heroSize {
  font-size: 3rem;
  text-shadow: 2px 2px rgba(82, 82, 82, 0.2039215686);
  font-weight: 300;
}
[class*=__title] .--heroSize em {
  font-style: normal;
  font-weight: 700;
}
@media screen and (min-width: 990px) {
  [class*=__title] .--heroSize {
    font-size: 4.5rem;
  }
}

[class*=__button] {
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  background-color: #C08F40;
  border: 1px solid #C08F40;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
[class*=__button]:hover {
  cursor: pointer;
  background-color: white;
  color: #C08F40;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
[class*=__button]:after {
  content: "➔";
  margin: 0 0 0 4px;
}

[class*=__buttonSmall] {
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  background-color: #C08F40;
  border: 1px solid #C08F40;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
[class*=__buttonSmall]:hover {
  cursor: pointer;
  background-color: white;
  color: #C08F40;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
[class*=__buttonSmall]:after {
  content: "➔";
  margin: 0 0 0 4px;
}

[class*=__buttonSecond] {
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  background-color: #C08F40;
  border: 1px solid #C08F40;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
[class*=__buttonSecond]:hover {
  cursor: pointer;
  background-color: white;
  color: #C08F40;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  top: 0;
  margin: 0;
  background-color: white;
  -webkit-transition: opacity 400ms ease-in-out, visibility 0s 400ms;
  transition: opacity 400ms ease-in-out, visibility 0s 400ms;
}

.show-preloader {
  visibility: visible;
  opacity: 1;
}

.circle {
  background-color: #203F65;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: stretchdelay 0.7s infinite ease-in-out;
  animation: stretchdelay 0.7s infinite ease-in-out;
}

.preloader .circle:nth-child(1) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.preloader .circle:nth-child(2) {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.preloader .circle:nth-child(3) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.preloader .circle:nth-child(4) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
  }
  20% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
  }
}

@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
  }
  20% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
  }
}
.blog__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5rem;
  margin-bottom: 10rem;
  font-size: 1.6rem;
}
.blog__content {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog__sidebar {
  border-left: 2px solid #203F65;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.blog-single {
  width: 100%;
  margin: 2rem;
}
@media screen and (min-width: 768px) {
  .blog-single {
    width: 30%;
  }
}

.blog-image {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.8rem;
  font-weight: 600;
  color: rgb(63, 63, 63);
  margin-bottom: 2rem;
}

.blog-desc {
  font-size: 1.4rem;
  color: gray;
}

.blog-posts {
  margin: 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog__sidebar {
  padding: 3rem 1rem;
  background-color: #203F65;
  border-radius: 1rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
  border-radius: 0.5rem;
  padding: 3rem;
  max-width: 400px;
  min-height: 50%;
  -webkit-box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
}
.wpcf7-form p {
  color: #203F65;
  font-weight: 600;
}
.wpcf7-form input,
.wpcf7-form select {
  background-color: rgb(247, 247, 247);
  padding: 1rem 0.5rem;
  outline: none;
  border: none;
  border-radius: 0.5rem;
  margin: 1rem 0 2.5rem;
  width: 100%;
}

.wpcf7-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8rem 1.2rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  width: 100%;
  position: relative;
  background-color: #C08F40 !important;
  border: 1px solid #C08F40 !important;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.wpcf7-submit:hover {
  cursor: pointer;
  background-color: white !important;
  color: #C08F40;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

/*===== GOOGLE FONTS =====*/
/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  /*===== Colors =====*/
  --first-color: #5B65F5;
  --first-color-light: #C4C7F5;
  --dark-color: #0E1026;
  --white-color: #FBFBFB;
  /*===== Font and typography =====*/
  --body-font: "Open Sans", sans-serif;
  --nav-name-font-size: 1.5rem;
  --normal-font-size: .938rem;
  /*===== z index =====*/
  --z-fixed: 100;
}
@media screen and (min-width: 768px) {
  :root {
    --nav-name-font-size: 1rem;
    --normal-font-size: 1rem;
  }
}

/*===== BASE =====*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  font-size: 1.4rem;
}

.bd-grid {
  max-width: 1390px;
  display: grid;
  grid-template-columns: 100%;
  padding: 1rem 0;
}

/*===== HEADER =====*/
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 1rem;
  background-color: #203f65;
  z-index: var(--z-fixed);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header__toggle {
  font-size: 3rem;
  cursor: pointer;
  color: white;
}
.header__upper {
  display: none;
}
@media screen and (min-width: 575px) {
  .header__upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__upperElement {
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  color: white;
}
.header__upperElement img {
  width: 20px;
  margin-right: 5px;
}
.header__mobile {
  padding: 1rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__mobile {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header__mobileLogo {
    display: none;
  }
}

/*===== NAV =====*/
@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: white;
    border-right: 2px solid #203F65;
    width: 80%;
    height: 100vh;
    padding: 2rem 0;
    z-index: var(--z-fixed);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.nav__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.nav__perfil {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}
.nav__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
}
.nav__img img {
  width: 90px;
}
.nav__name {
  display: block;
  font-size: var(--nav-name-font-size);
  color: var(--white-color);
}
.nav__item {
  margin-bottom: 2rem;
  position: relative;
  font-size: 1.4rem;
}
.nav__item:hover {
  cursor: pointer;
}
.nav__link {
  color: var(--first-color-light);
}

/*Show menu*/
.show {
  left: 0;
}
.show .nav__link {
  color: black;
}

/*=== Dropdown ===*/
.dropdown {
  z-index: 1;
}
.dropdown__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.dropdown__icon {
  font-size: 1.3rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.dropdown__menu {
  display: none;
}
.dropdown__item {
  margin: 1rem 0;
}
.dropdown__item a {
  color: #203F65;
}
.dropdown:hover > .dropdown__menu {
  display: block;
}
.dropdown:hover .dropdown__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 576px) {
  .nav {
    width: 288px;
  }
  .nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .header__toggle {
    display: none;
  }
  .nav {
    width: 100%;
  }
  .nav__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__perfil {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: initial;
    margin-bottom: 0;
  }
  .nav__img {
    margin-right: 0.5rem;
    margin-bottom: 0;
  }
  .nav__img img {
    width: 120px;
  }
  .nav__name {
    color: var(--dark-color);
  }
  .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__item {
    margin: 0 1.5rem;
    padding: 1.4rem 0;
    position: relative;
  }
  .nav__item:hover::after {
    width: 50%;
  }
  .nav__item:after {
    content: "";
    position: absolute;
    background-color: #C08F40;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 0.5rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .nav__link {
    color: white;
  }
  .dropdown {
    position: relative;
  }
  .dropdown__menu {
    position: absolute;
    min-width: 200px;
    margin: 0;
    top: 5rem;
    padding: 0.5rem 1.5rem;
    -webkit-box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
    box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
    border-radius: 0.5rem;
    background-color: white;
  }
  .dropdown__menu a {
    color: black;
  }
  .dropdown__item {
    margin: 2rem 0;
    color: black !important;
  }
}
.header__scroll {
  width: 100%;
  -webkit-box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
}

.scroll {
  width: 100%;
  position: fixed;
  background-color: #203f65;
  top: 0;
}
.scroll .dropdown__menu {
  top: 5rem;
}

#footer {
  padding: 80px 0;
  font-size: 1.4rem;
  background-color: rgb(247, 247, 247);
}
#footer .footer__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  #footer .footer__boxes {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#footer .footer__box {
  min-width: 40%;
  max-width: 300px;
  margin: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#footer .footer__box ul {
  list-style: none;
  padding: 0;
}
#footer .footer__box ul li {
  margin: 1rem 0;
  font-size: 1.4rem;
}
#footer .footer__box ul li:hover {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #footer .footer__box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 250px;
  }
}
#footer .footer__text {
  font-size: 1.2rem;
  color: #3d3d3d;
}
#footer .footer__logo {
  margin-bottom: 2rem;
}
#footer .footer__title {
  margin-bottom: 2rem;
}
#footer .footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
#footer .footer__contact img {
  width: 15px;
  margin-right: 5px;
}

.copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgb(247, 247, 247);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 1.4rem;
  padding: 10px;
  text-align: center;
  color: #203F65;
}
.copyright hr {
  margin: 0 auto;
  margin-bottom: 1rem;
  width: 80%;
  border: 0;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(#203F65), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #203F65, rgba(255, 255, 255, 0));
}

body.page_ header,
body.page_ footer {
  display: none;
}
body.page_ main {
  height: 100vh;
  width: 100vw;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.page_ #errorText {
  font-size: 22px;
  margin: 14px 0;
}
body.page_ #errorLink {
  font-size: 20px;
  padding: 12px;
  border: 1px solid;
  color: #000;
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
body.page_ #errorLink:hover, body.page_ #errorLink:active {
  color: #fff;
  background: #000;
}
body.page_ #g6219 {
  -webkit-transform-origin: 85px 4px;
          transform-origin: 85px 4px;
  -webkit-animation: an1 12s 0.5s infinite ease-out;
          animation: an1 12s 0.5s infinite ease-out;
}
@-webkit-keyframes an1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  5% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  15% {
    -webkit-transform: rotate(-2.5deg);
            transform: rotate(-2.5deg);
  }
  25% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  35% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  45% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  55% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  65% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  85% {
    -webkit-transform: rotate(2.5deg);
            transform: rotate(2.5deg);
  }
  95% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes an1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  5% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  15% {
    -webkit-transform: rotate(-2.5deg);
            transform: rotate(-2.5deg);
  }
  25% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  35% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  45% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  55% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  65% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  85% {
    -webkit-transform: rotate(2.5deg);
            transform: rotate(2.5deg);
  }
  95% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.hero-swiper {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
.hero-swiper .swiper-wrapper {
  height: 100%;
}
.hero-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.hero-swiper .swiper-slide .slide-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}
.hero-swiper .swiper-pagination {
  bottom: 30px !important;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: white;
}

.hero__title {
  font-size: 7rem;
  color: white;
  text-shadow: 1px 1px 1px #6e6e6e;
}

.hero__button {
  display: block;
  margin: 3rem auto;
}

.nav__content {
  padding: 0;
}

#offer {
  background-color: rgb(247, 247, 247);
  padding: 40px 0;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  #offer {
    padding: 80px 0;
  }
}
#offer .offer__boxes {
  margin: 80px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  #offer .offer__boxes {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
#offer .offer__box {
  position: relative;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  background-color: white;
  padding: 2rem;
  border-radius: 5px;
  padding-top: 50px;
  line-height: 2rem;
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#offer .offer__box:hover {
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  #offer .offer__box {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
@media screen and (min-width: 990px) {
  #offer .offer__box {
    -ms-flex-preferred-size: 22%;
        flex-basis: 22%;
    margin-top: 0;
  }
}
#offer .offer__image {
  position: absolute;
  top: -20%;
  left: 2rem;
  background-color: #eff7ff;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid white;
}
#offer .offer__titlebox {
  margin: 1rem 0 2rem;
}
#offer .offer__text {
  text-align: justify;
  color: #3d3d3d;
  margin-bottom: 2rem;
}

#onas {
  padding: 80px 0;
  background-color: white;
  color: #3d3d3d;
}
#onas .whyus__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 990px) {
  #onas .whyus__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#onas .whyus__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#onas .whyus__boxesText {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 990px) {
  #onas .whyus__boxesText {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 60%;
  }
}
#onas .whyus__boxesImage {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 990px) {
  #onas .whyus__boxesImage {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 35%;
  }
}
#onas .whyus__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  background-color: #eff7ff;
  margin-right: 1rem;
  border-radius: 50px;
  width: 70px;
  height: 70px;
}
#onas .whyus__image img {
  width: 50px;
}
#onas .whyus__text {
  margin-top: 1rem;
  font-size: 1.3rem;
}
#onas .whyus__box {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
#onas .whyus__box--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 2rem;
}
@media screen and (min-width: 990px) {
  #onas .whyus__box--flex {
    -ms-flex-preferred-size: 44%;
        flex-basis: 44%;
  }
}
#onas .whyus__mainImage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 1rem;
  z-index: 1;
  width: 100%;
}
#onas .whyus__circle {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 30%;
}
#onas .whyus hr {
  margin: 0 auto;
  margin: 5rem auto;
  width: 100%;
  border: 0;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(#203F65), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #203F65, rgba(255, 255, 255, 0));
}

.card {
  background-color: rgba(238, 238, 238, 0.801);
  border-radius: 1rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  overflow: hidden;
}
.card__container {
  padding: 10rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.card__box {
  width: 100%;
  margin: 1%;
}
@media screen and (min-width: 768px) {
  .card__box {
    width: 30%;
  }
}
.card__body {
  padding: 2rem;
}
.card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card__name {
  text-transform: capitalize;
  font-size: 2.7rem;
  font-weight: 400;
  color: rgb(88, 88, 88);
  margin: 2rem 0 5rem;
}
.card__street {
  text-transform: uppercase;
  color: #C08F40;
  font-size: 1.5rem;
  letter-spacing: 2px;
}
.card__city {
  color: gray;
  font-size: 1.3rem;
}
.card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
}

.sold-image-container {
  position: relative;
  display: inline-block;
}

.sold-image {
  -webkit-filter: grayscale(100%) brightness(70%);
          filter: grayscale(100%) brightness(70%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sold-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.sold-text {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  border: 3px solid white;
  padding: 10px 20px;
  opacity: 0.9;
}

/* Tabela - podstawowe style */
.apartamenty-table {
  width: 80%;
  border-collapse: collapse;
  margin: 20px auto;
}

.apartamenty-table th,
.apartamenty-table td {
  padding: 12px 4px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 1.2rem;
  text-align: center;
}

.apartamenty-table th {
  background-color: #f5f5f5;
  font-weight: bold;
  font-size: 1.4rem;
}

.apartamenty-table th:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Link "zobacz" */
.karta-link {
  display: inline-block;
  padding: 5px 10px;
  background: #0073aa;
  color: white;
  text-decoration: none;
  border-radius: 3px;
}

.karta-link:hover {
  background: #005177;
}

/* Responsywność - układ kart na mobile */
@media (max-width: 768px) {
  .apartamenty-table {
    display: block;
    overflow-x: auto;
  }
  .apartamenty-table thead {
    display: none;
  }
  .apartamenty-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #ddd;
  }
  .apartamenty-table td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #eee;
  }
  .apartamenty-table td::before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 10px;
  }
}
/* Style dla ikon w tabeli */
.apartamenty-table th i {
  margin-right: 8px;
  color: #0073aa;
  /* Kolor ikon */
  font-size: 1.6rem;
  text-align: center;
}

/* Responsywność - ukryj ikony na mobile */
@media (max-width: 768px) {
  .apartamenty-table th i,
  .apartamenty-table td[data-label]::before i {
    display: none !important;
  }
}
/* Ikona w linku "zobacz" */
.karta-link i {
  margin-right: 5px;
}

.tab-container {
  width: 100%;
  margin: auto;
  font-family: sans-serif;
  overflow: hidden;
}

.tab-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.tab-button {
  margin: 1rem;
  padding: 10px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: rgb(73, 73, 73);
  font-weight: bold;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  text-transform: uppercase;
  border-radius: 2px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.tab-button:last-child {
  border-right: none;
}

.tab-button:hover,
.tab-button.active {
  background-color: #C08F40;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: white;
}

.tab-content {
  display: none;
  padding: 20px;
}

.tab-content.active {
  display: block;
}

.realizacje__hero {
  -webkit-box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
  height: 60vh;
  max-height: 600px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.realizacje__title {
  margin-bottom: 1rem;
  text-align: center;
}
.realizacje__heroTytul {
  font-size: 4rem;
  text-align: center;
  color: #C08F40;
  text-shadow: 1px 1px 1px #6e6e6e;
}
@media screen and (min-width: 768px) {
  .realizacje__heroTytul {
    font-size: 8rem;
  }
}
.realizacje__location {
  font-size: 3rem;
  color: #C08F40;
}
.realizacje__container {
  padding: 4rem 2rem;
}
.realizacje__description {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.realizacje__descriptionImage {
  width: 100%;
}
.realizacje__descriptionImage img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .realizacje__descriptionImage {
    width: 45%;
  }
}
.realizacje__descriptionText {
  text-align: justify;
  width: 100%;
  margin: 5rem 0;
  font-size: 1.5rem;
  line-height: 1.5;
  color: rgb(49, 49, 49);
}
.realizacje__descriptionText p {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .realizacje__descriptionText {
    width: 45%;
  }
}
.realizacje__box {
  position: relative;
  height: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.realizacje__city {
  font-size: 2rem;
  color: gray;
  text-shadow: 1px 1px 1px #aaaaaa;
}
.realizacje__street {
  font-size: 2rem;
  color: gray;
  text-shadow: 1px 1px 1px #aaaaaa;
}
.realizacje__button {
  margin: 3rem auto !important;
}

/* SCSS (skompilowany do CSS) */
.features-section {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 4rem auto;
}

.section-title {
  color: #C08F40;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 600;
  font-size: 1.75rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.gold-icon-circle {
  width: 80px;
  height: 80px;
  background-color: #C08F40;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-bottom: 1rem;
}

.gold-icon-circle:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.gold-icon-circle i {
  color: white;
  font-size: 2rem;
}

.feature-text {
  color: #333;
  max-width: 240px;
  line-height: 1.4;
  font-size: 1.4rem;
}

/* Responsywność */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-item {
    margin-bottom: 2rem;
  }
  .feature-item:last-child {
    margin-bottom: 0;
  }
}
.contact {
  background-color: rgb(247, 247, 247);
  padding: 80px 0;
  color: #3d3d3d;
  font-size: 1.2rem;
}
.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.contact__box {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}
.contact__text {
  margin-top: 1rem;
  line-height: 2.5rem;
}
.contact__list {
  margin-top: 3rem;
}
.contact__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem 0;
  font-size: 1.4rem;
}
.contact__element img {
  width: 2.5rem;
  margin-right: 1rem;
}

.form {
  padding: 5rem 0;
  min-height: 40vh;
  background-image: url("../../../assets/img/contact_form.png");
  background-size: cover;
  background-repeat: no-repeat;
}

/* Stylizacja całego formularza */
.wpcf7 form {
  margin-top: 3rem;
  max-width: 600px;
  border-radius: 5px;
}

/* Stylizacja wierszy formularza */
.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

/* Stylizacja grup formularza */
.form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 15px;
}

.form-group-textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  resize: none;
}

/* Ostatnia grupa formularza bez marginesu */
.form-group:last-child {
  margin-right: 0;
}

/* Stylizacja pól tekstowych i textarea */
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group-textarea textarea {
  font-size: 1.4rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  resize: none;
}

/* Stylizacja textarea */
.form-group-textarea textarea {
  height: 100px;
}

.wpcf7-list-item {
  margin: 15px 0 10px 0;
}

label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Stylizacja przycisku wysyłania */
/* Stylizacja przycisku wysyłania przy najechaniu */
/* Stylizacja zgody */
.form-group .wpcf7-acceptance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5rem;
  color: #555555;
}

.form-group .wpcf7-acceptance input {
  margin-right: 5px;
}

/* Stylizacja mobilna */
@media (max-width: 600px) {
  .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-group {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .form-group input[type=submit] {
    width: 100%;
  }
}
.subpage__bgc {
  height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subpage__tit {
  background-color: #203F65;
  color: white;
  padding: 2rem 0;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 5rem;
}

.subpage__mainTitle {
  position: relative;
  font-size: 4rem;
  letter-spacing: 1px;
  color: #203F65;
  font-weight: 500;
}
.subpage__mainTitle:after {
  content: "";
  position: absolute;
  background-color: #C08F40;
  height: 2px;
  width: 50%;
  left: 0;
  bottom: -10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.subpage__boxesbgc {
  background-image: url("../../assets/img/office.jpg"), -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.8)), to(rgb(255, 255, 255)));
  background-image: url("../../assets/img/office.jpg"), linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 50%, rgb(255, 255, 255) 100%);
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  background-blend-mode: overlay;
}

.subpage__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px 0;
}

.subpage__box {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .subpage__box {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
.subpage__box p {
  font-size: 1.5rem;
  line-height: 3rem;
  margin-bottom: 1rem;
  text-align: justify;
}
.subpage__box img {
  border-left: 0.5rem solid #203F65;
  width: 100%;
  position: relative;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  -webkit-box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
  box-shadow: 0px 10px 9px -7px rgb(66, 68, 90);
}
@media screen and (min-width: 768px) {
  .subpage__box img {
    width: 90%;
  }
}

.blogNM {
  padding-bottom: 5rem;
}

.coop__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 70%;
  margin: 12rem auto;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.coop__container--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.coop__column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
}

.coop__financing span {
  color: #203F65;
  font-size: 34px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.coop__arrow i {
  font-size: 40px;
  color: #203F65;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.coop__arrow:hover i {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.coop__logo img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
}

.coop__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.6rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* Responsywność */
@media (max-width: 768px) {
  .coop__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .coop__column {
    margin: 10px 0;
  }
  .coop__arrow i {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .coop__arrow:hover i {
    -webkit-transform: rotate(90deg) translateX(10px);
            transform: rotate(90deg) translateX(10px);
  }
}
.gallery__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 50vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 990px) {
  .gallery__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.gallery__box {
  background-color: rgb(235, 235, 235);
  border-radius: 10px;
  padding: 1rem;
  margin: 2rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.gallery__box:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: antiquewhite;
  cursor: pointer;
}
.gallery__box img {
  width: 100%;
}
