/*
 *  Owl Carousel - Core
 */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
  z-index: 0; }
.owl-carousel .owl-animated-out {
  z-index: 1; }
.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

/*
 * 	Green theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

.border-b-secondary {
  border-bottom: 20px solid #ffd344; }

.border-t-secondary {
  border-top: 20px solid #ffd344; }

.border-b-grey {
  border-bottom: 20px solid #fdfcfa; }

.border-t-grey {
  border-top: 20px solid #fdfcfa; }

body {
  font-family: "Montserrat", sans-serif;
  max-width: 2440px;
  margin-left: auto;
  margin-right: auto;
  float: none; }
  body h1, body h2 {
    color: #000;
    font-size: 244%;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif; }
  body h3 {
    font-size: 131%;
    color: #ffd344;
    text-transform: uppercase;
    font-size: 131%;
    font-weight: 700;
    font-family: "Montserrat", sans-serif; }
  body h4 {
    color: #000;
    font-weight: 700;
    font-size: 131%;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif; }
  body p, body ul li {
    font-size: 100%;
    font-family: "Montserrat", sans-serif; }
  body a {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    font-size: 100%;
    font-family: "Montserrat", sans-serif; }
    body a:hover {
      color: #ffd344;
      text-decoration: none; }
  body ul {
    list-style: none;
    padding-left: 30px; }
    body ul li {
      color: #000;
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      font-family: "Montserrat", sans-serif; }
      body ul li:before {
        content: " ";
        border-radius: 5px;
        display: inline-block;
        margin-right: 1vw;
        background-color: #007e47;
        background-size: 12px;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 50%;
        width: 24px;
        min-width: 24px;
        height: 24px;
        margin-top: 0; }

nav ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.hidden-element {
  display: none; }

.dropdown-menu {
  min-width: unset; }

.dropdown-item {
  margin-bottom: 0; }

.form-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap; }
  .form-group input[type="text"], .form-group input[type="email"], .form-group select {
    margin: 0 20px;
    flex: 1; }

.form-group-find {
  flex-wrap: nowrap; }
  .form-group-find input[type="text"] {
    width: 100%; }
  .form-group-find input[type="submit"] {
    margin-right: 20px; }

input.form-control {
  height: 62px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 31px;
  background-color: #f5f5f5;
  border: 1px solid #dfdfdf;
  color: #007e47;
  padding-left: 40px;
  padding-right: 40px; }
  input.form-control::placeholder {
    color: rgba(0, 0, 0, 0.4); }
input.input-image {
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 25px;
  padding-left: 50px; }

textarea.form-control {
  padding-left: 40px;
  padding-right: 40px;
  font-size: 20px;
  font-weight: 700;
  padding-top: 20px; }
  textarea.form-control::placeholder {
    color: rgba(0, 0, 0, 0.4); }

select.form-control {
  height: 44px;
  font-size: 16px;
  border-radius: 0px;
  border: 1px solid #dfdfdf;
  color: #007e47;
  padding: 0px 15px;
  background-color: #f5f5f5; }

.hidden-select .dropdown-menu {
  border: 1px solid #000;
  border-radius: 0;
  padding: 0; }
.hidden-select .dropdown-toggle {
  cursor: pointer;
  background-color: transparent;
  border: none; }
  .hidden-select .dropdown-toggle:hover {
    color: #ffd344; }
  .hidden-select .dropdown-toggle:focus {
    outline: none; }
.hidden-select .dropdown-item {
  cursor: pointer;
  padding: 0; }
  .hidden-select .dropdown-item button {
    background-color: transparent;
    border: none;
    padding: 5px 10px;
    width: 100%;
    text-align: left;
    width: fit-content;
    width: -moz-fit-content; }
    .hidden-select .dropdown-item button:focus, .hidden-select .dropdown-item button:active, .hidden-select .dropdown-item button:hover {
      outline: none; }
  .hidden-select .dropdown-item:before {
    display: none; }
  .hidden-select .dropdown-item:focus, .hidden-select .dropdown-item:active, .hidden-select .dropdown-item:hover {
    background-color: #1e90ff; }
    .hidden-select .dropdown-item:focus button, .hidden-select .dropdown-item:active button, .hidden-select .dropdown-item:hover button {
      color: #fff; }

.checkbox-label {
  cursor: pointer;
  color: #000;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  text-transform: initial;
  display: flex;
  align-items: center;
  margin: 0 10px 20px 10px;
  transition: 0.3s;
  -webkit-transition: 0.3s; }
  .checkbox-label input[type='checkbox'] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0; }
  .checkbox-label .checkbox-styled {
    min-width: 25px;
    min-height: 25px;
    max-width: 25px;
    max-height: 25px;
    background-color: #f5f5f5;
    border: 1px solid #dfdfdf;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px; }
    .checkbox-label .checkbox-styled span {
      color: #ffffff00;
      font-size: 24px; }
    .checkbox-label .checkbox-styled.checked span {
      color: #000; }
  .checkbox-label:hover {
    color: #ffd344; }

.btn, .elementor-button {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  border-radius: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 120%;
  background-color: transparent; }
  .btn:hover, .elementor-button:hover {
    background-color: transparent; }

.overflow-y-hidden {
  overflow-y: hidden !important; }

.gradient-text {
  background: -webkit-linear-gradient(0deg, #29abe2 0%, #8cc63f 50%, #fbb03b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.btn-primary, .subsite .btn-primary {
  border-radius: 10px;
  border: 2px solid #ffd344;
  color: #fff;
  font-weight: 500;
  font-size: 89%;
  padding: 12px 54px;
  background-color: #ffd344;
  text-transform: uppercase;
  white-space: nowrap; }
  .btn-primary:hover, .btn-primary:active, .btn-primary:focus, .subsite .btn-primary:hover, .subsite .btn-primary:active, .subsite .btn-primary:focus {
    border: 2px solid #ffd344;
    background-color: transparent;
    color: #29203e; }

.btn-secondary, .subsite .btn-secondary {
  border-radius: 10px;
  border: 2px solid #007e47;
  color: #fff;
  font-weight: 500;
  font-size: 89%;
  padding: 12px 54px;
  background-color: #007e47;
  text-transform: uppercase;
  white-space: nowrap; }
  .btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus, .subsite .btn-secondary:hover, .subsite .btn-secondary:active, .subsite .btn-secondary:focus {
    border: 2px solid #007e47;
    background-color: transparent;
    color: #29203e; }

.module-title {
  font-size: 200%;
  font-family: "Montserrat", sans-serif;
  color: #000;
  padding-top: 45px;
  padding-bottom: 45px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase; }

button {
  transition: 0.3s;
  -webkit-transition: 0.3s; }

.btn-menu {
  display: none; }
  .btn-menu span {
    display: block;
    height: 3px;
    width: 40px;
    background-color: #ffd344;
    border-radius: 4px;
    margin-top: 7px;
    margin-bottom: 7px; }

form {
  position: relative; }
  form .r-name {
    position: absolute;
    top: 0px;
    right: 0px;
    opacity: -1;
    z-index: -1; }

.max-linie-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; }

.max-linie-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.max-linie-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; }

.max-linie-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; }

.max-linie-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical; }

header {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 8; }
  header.sticked {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    transform: translateY(0px); }

main {
  padding-top: 128px;
  min-height: calc(100vh - 154px);
  overflow-x: hidden; }

figure.image {
  display: inline-block;
  width: 50% !important;
  padding: 10px; }
  figure.image img {
    width: 100% !important; }

#foto-block-start {
  background-color: #fdfcfa;
  padding: 3.5vw 0; }
  #foto-block-start .foto-logo {
    display: flex;
    justify-content: center; }
  #foto-block-start .foto-block .wrapper {
    justify-content: flex-start;
    flex-direction: row; }
  #foto-block-start .foto-block .text {
    order: 1;
    width: 50%;
    padding-left: calc(50vw - 840px); }
    #foto-block-start .foto-block .text h1 {
      color: #007e47; }
    #foto-block-start .foto-block .text p {
      color: #29203e; }
  #foto-block-start .foto-block .foto {
    order: 2;
    width: 495px;
    height: auto;
    min-height: auto;
    max-width: 50%; }
    #foto-block-start .foto-block .foto img {
      height: auto; }
  #foto-block-start .foto-block .text-inner {
    justify-content: flex-start; }

#apartamenty .full-form #find-real-estate-more {
  max-width: 1130px; }

.real-estate-listing {
  margin: 0 auto;
  background-color: #fdfcfa; }
  .real-estate-listing h1 {
    font-size: 120%;
    letter-spacing: 1px;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    padding: 3.5vw 0;
    margin: 0; }
  .real-estate-listing .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
  .real-estate-listing .one-element {
    box-shadow: 5px 5px 15px 3px #ddd;
    display: block;
    width: 432px;
    margin-bottom: 40px; }
    .real-estate-listing .one-element:nth-child(odd) {
      margin-right: 20px; }
    .real-estate-listing .one-element:hover {
      box-shadow: 0 0 15px 3px #fff; }
  .real-estate-listing h3 {
    color: #007e47;
    margin-bottom: 0;
    font-size: 18px; }
  .real-estate-listing .city {
    color: #6a6a6a;
    font-size: 13px; }
  .real-estate-listing .foto {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 268px;
    position: relative;
    overflow: hidden;
    padding-bottom: 8px;
    background-color: #fff; }
    .real-estate-listing .foto img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: 0.5s;
      -webkit-transition: 0.5s; }
  .real-estate-listing .center-text {
    color: #6a6a6a;
    margin-bottom: 20px; }
    .real-estate-listing .center-text p {
      margin-bottom: 0; }
  .real-estate-listing .wiecej {
    text-decoration: underline;
    color: #007e47; }
  .real-estate-listing .reservation {
    position: absolute;
    right: 0;
    bottom: 0; }
    .real-estate-listing .reservation p {
      margin-bottom: 0; }
  .real-estate-listing .text {
    background-color: #fff;
    padding: 17px 20px 25px 20px; }
  .real-estate-listing .bottom-text {
    border-top: 1px solid #fdfcfa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    color: #007e47;
    font-weight: 600;
    min-height: 55px; }
    .real-estate-listing .bottom-text p {
      margin-bottom: 0; }
  .real-estate-listing .rooms {
    display: flex;
    align-items: center; }
    .real-estate-listing .rooms p {
      margin-right: 25px;
      background-repeat: no-repeat;
      background-size: 25px;
      background-position: center left;
      padding-left: 30px; }
  .real-estate-listing .price {
    font-size: 130%; }

#front-text {
  text-align: center;
  padding-bottom: 5vw; }
  #front-text h1 {
    background: -webkit-linear-gradient(130deg, #755147 20%, #f1d3b3 39%, #b37f55 64%, #774f2f 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 337%;
    text-transform: initial;
    width: fit-content;
    width: -moz-fit-content;
    margin: 5vw auto 2vw auto; }
  #front-text h2 {
    font-size: 131%;
    font-weight: 700;
    color: #000; }
  #front-text p {
    font-size: 94%;
    color: #000000;
    font-weight: 300;
    line-height: 150%; }
  #front-text strong {
    font-weight: 700;
    font-style: italic; }

#foto-block-full-img .wrapper {
  position: relative; }
#foto-block-full-img .foto {
  z-index: 0;
  max-height: 693px; }
  #foto-block-full-img .foto img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right; }
#foto-block-full-img .text {
  position: absolute;
  z-index: 1;
  background-image: none;
  height: 100%; }
#foto-block-full-img h2 {
  font-size: 163%;
  margin: 0;
  color: #ffffff;
  font-weight: 300;
  text-transform: initial; }
#foto-block-full-img h4 {
  font-size: 125%;
  color: #ffffff;
  font-weight: 300;
  font-style: italic; }
#foto-block-full-img p {
  font-size: 94%;
  color: #29203e;
  font-weight: 300; }
#foto-block-full-img strong {
  font-weight: 700;
  margin: 0.5vw 0;
  display: block; }
#foto-block-full-img .podpis {
  margin-top: 1vw; }
  #foto-block-full-img .podpis img {
    width: 10.5vw; }

#reg-info {
  color: #fff;
  font-size: 1.2em; }

.box-flex {
  display: flex; }
  .box-flex input {
    position: relative;
    top: 6px; }

.left-sidebar {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 999; }
  .left-sidebar ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end; }
    .left-sidebar ul li {
      display: flex;
      justify-content: flex-end;
      width: 65px;
      transition: 0.5s;
      -webkit-transition: 0.5s; }
      .left-sidebar ul li a {
        padding: 20px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%; }
        .left-sidebar ul li a img {
          width: 25px; }
      .left-sidebar ul li.fb a {
        background-color: #3b5999; }
      .left-sidebar ul li.lin a {
        background-color: #0077b5; }
      .left-sidebar ul li:hover {
        width: 100px; }

#contact-info {
  padding-bottom: 4vw; }
  #contact-info .wrapper {
    display: flex;
    max-width: 1020px;
    margin: 0 auto;
    justify-content: space-between; }
  #contact-info h2 {
    margin-top: 20px;
    margin-bottom: 0; }
  #contact-info a {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 23px;
    color: #29203e;
    font-weight: 300;
    display: block; }
    #contact-info a:hover {
      color: #ffd344; }
  #contact-info .one-worker {
    margin-bottom: 40px; }
  #contact-info .address {
    padding-right: 20px; }
    #contact-info .address .telephone {
      display: flex;
      align-items: center;
      font-weight: 700; }
      #contact-info .address .telephone:before {
        display: block;
        content: " ";
        background-image: url("/img/tel.svg");
        background-size: 18px;
        background-position: center;
        background-repeat: no-repeat;
        width: 30px;
        min-width: 30px;
        height: 30px;
        background-color: #ffd344;
        border-radius: 50%;
        margin-right: 10px; }
    #contact-info .address .email {
      display: flex;
      align-items: center;
      font-weight: 700; }
      #contact-info .address .email:before {
        display: block;
        content: " ";
        background-image: url("/img/email.svg");
        background-size: 18px;
        background-position: center;
        background-repeat: no-repeat;
        width: 30px;
        min-width: 30px;
        height: 30px;
        background-color: #ffd344;
        border-radius: 50%;
        margin-right: 10px; }

.bread {
  background-color: #fdfcfa;
  border-bottom: 1px solid #c5c5c5; }
  .bread ul.breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    height: 80px;
    margin-bottom: 0;
    background-color: transparent; }
    .bread ul.breadcrumb li {
      font-size: 14px;
      font-weight: 400;
      color: rgba(41, 32, 62, 0.7);
      text-transform: uppercase; }
      .bread ul.breadcrumb li .arrow {
        width: 10px;
        height: 10px;
        transform: rotate(45deg);
        border-right: 2px solid #898989;
        border-top: 2px solid #898989;
        display: inline-block;
        margin: 0 10px; }
      .bread ul.breadcrumb li a {
        font-size: 14px;
        font-weight: 400;
        color: rgba(41, 32, 62, 0.7); }
        .bread ul.breadcrumb li a:hover {
          color: #005e8e; }
      .bread ul.breadcrumb li.home img {
        width: 19px;
        filter: invert(84%) sepia(18%) saturate(7438%) hue-rotate(29deg) brightness(99%) contrast(76%);
        position: relative;
        bottom: 2px; }

#terms-group label {
  color: #fff; }
#terms-group a {
  color: #49d4ff; }

#search-job form {
  display: flex;
  justify-content: center; }
  #search-job form input {
    height: 44px; }
  #search-job form input[type="text"] {
    width: 500px; }
  #search-job form .btn {
    margin-left: 15px; }

#top-belt {
  background-color: #f4f4f4; }
  #top-belt .container-fluid {
    padding-top: 0; }
  #top-belt .inner {
    display: flex;
    align-items: center;
    height: 50px; }
  #top-belt .top-contact {
    width: 100%;
    display: flex;
    flex: 1 1;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    display: flex;
    justify-content: space-between; }
    #top-belt .top-contact .left {
      display: flex;
      align-items: center; }
    #top-belt .top-contact a, #top-belt .top-contact p {
      font-size: 89%;
      color: #000;
      margin: 0;
      font-weight: 400; }
    #top-belt .top-contact p {
      text-transform: uppercase;
      display: inline-block;
      color: rgba(0, 0, 0, 0.6); }
    #top-belt .top-contact a {
      margin-left: 15px; }
      #top-belt .top-contact a:hover {
        color: #ffd344; }
    #top-belt .top-contact .link {
      text-transform: uppercase;
      margin-left: 50px;
      color: rgba(0, 0, 0, 0.6); }
      #top-belt .top-contact .link.contact {
        font-weight: 700;
        color: #ffd344; }
    #top-belt .top-contact .telephone {
      font-size: 125%;
      font-weight: 600;
      background-position: left center;
      background-repeat: no-repeat;
      background-size: 21px;
      padding-left: 30px; }

#main-nav {
  background-color: #fff;
  position: relative; }
  #main-nav .telephone {
    margin-left: 100px; }
    #main-nav .telephone a {
      display: flex;
      align-items: center;
      white-space: nowrap;
      font-size: 150%;
      color: #000; }
      #main-nav .telephone a:before {
        display: block;
        content: " ";
        min-width: 50px;
        height: 50px;
        background-image: url("/img/tel.svg");
        background-repeat: no-repeat;
        background-size: 30px;
        background-position: center center;
        background-color: #55b141;
        margin-right: 15px;
        border-radius: 50%; }
      #main-nav .telephone a strong {
        margin-left: 3px;
        font-weight: 700; }
      #main-nav .telephone a:hover {
        color: #007e47; }
  #main-nav .language {
    font-size: 16px;
    height: 50px; }
    #main-nav .language .dropdown-toggle {
      color: #fff; }
  #main-nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    #main-nav .inner #logo {
      display: flex;
      align-items: center; }
  #main-nav .btn-menu {
    z-index: 1; }

#main-menu {
  display: flex;
  align-items: center;
  z-index: 1;
  width: 100%; }
  #main-menu .page-nav li:last-child a {
    padding-right: 0; }
  #main-menu .menu-button {
    margin-left: 30px;
    margin-right: 20px; }

.page-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  width: 100%; }
  .page-nav li {
    margin-bottom: 0px; }
    .page-nav li a {
      font-size: 89%;
      font-weight: 600;
      display: block;
      padding: 53px 0px;
      min-width: 100px;
      text-align: center;
      color: #000;
      white-space: nowrap;
      text-transform: uppercase; }
      .page-nav li a:after {
        display: block;
        content: " ";
        width: 0px;
        height: 3px;
        background-image: linear-gradient(90deg, #ffd344 0%, #007e47 100%);
        transition: 0.3s;
        -webkit-transition: 0.3s; }
      .page-nav li a:hover:after {
        width: 100%; }
    .page-nav li:before {
      display: none; }
  .page-nav .dropdown .dropdown-toggle:after {
    color: #fff; }
  .page-nav .dropdown .dropdown-menu {
    border: none;
    border-radius: 0px;
    box-shadow: none;
    border-top: 3px solid #ffd344;
    padding: 5px 0px;
    left: 0px;
    right: auto;
    top: calc(100% - 2px);
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.5);
    background-color: #007e47;
    min-width: 100%; }
    .page-nav .dropdown .dropdown-menu li {
      width: 100%; }
      .page-nav .dropdown .dropdown-menu li a {
        padding: 15px 10px;
        width: 100%; }

.full-form .form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: grey;
  padding-top: 11vw;
  padding-bottom: 3vw; }
.full-form #find-real-estate {
  width: 650px; }
  .full-form #find-real-estate .input-image {
    background-color: #fff; }
  .full-form #find-real-estate .buttons {
    margin-top: 20px; }
.full-form .logo_consulting {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 80px; }
.full-form #find-real-estate-more {
  max-width: 1080px;
  margin: 0 auto; }
.full-form .top-group .dropdown-toggle {
  color: #000; }
  .full-form .top-group .dropdown-toggle:hover {
    color: #ffd344; }
.full-form .open-zaawansowane a {
  cursor: pointer;
  color: #fff; }
  .full-form .open-zaawansowane a:hover {
    color: #ffd344; }
.full-form #zaawansowane {
  padding-top: 80px; }
.full-form .checkboxy {
  padding: 0 10px; }

.language {
  display: flex;
  align-items: center; }
  .language a {
    padding: 3px 12px;
    display: block; }
    .language a:hover {
      transform: translateY(-2px); }

.simple-steps h3 {
  text-align: center;
  color: #000;
  font-weight: 600;
  font-size: 125%; }
.simple-steps p {
  text-align: center;
  color: #29203e;
  font-weight: 400; }
.simple-steps .wrapper {
  display: flex;
  max-width: 1340px;
  margin: 0 auto;
  flex-wrap: wrap; }
.simple-steps .one-step {
  padding: 0 15px;
  width: 25%; }
.simple-steps .foto {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
  .simple-steps .foto img {
    max-width: 100%;
    height: auto; }

#layerslider {
  height: 700px;
  z-index: 0; }
  #layerslider .ls-wrapper {
    width: 100% !important;
    height: 100% !important; }
  #layerslider .foto {
    background-position: center;
    background-repeat: no-repeat;
    width: 50%;
    height: 500px;
    float: right; }
  #layerslider .ls-layer {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center; }
    #layerslider .ls-layer .slider-bg {
      width: 100vw;
      height: 100%;
      background-position: left center;
      background-repeat: no-repeat;
      background-size: auto 100%;
      position: relative; }
      #layerslider .ls-layer .slider-bg .container {
        height: 100%; }
      #layerslider .ls-layer .slider-bg .wrapper {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; }
        #layerslider .ls-layer .slider-bg .wrapper ul li {
          font-size: 125%;
          color: #000;
          margin-bottom: 30px; }
        #layerslider .ls-layer .slider-bg .wrapper h2 {
          font-size: 170%;
          color: #007e47;
          font-weight: 700;
          text-transform: uppercase;
          white-space: normal;
          margin-bottom: 20px;
          text-align: left; }
        #layerslider .ls-layer .slider-bg .wrapper p {
          font-size: 125%;
          color: #000;
          line-height: 1.5rem;
          font-weight: 400;
          white-space: normal; }
        #layerslider .ls-layer .slider-bg .wrapper .buttons {
          display: flex;
          justify-content: center;
          margin-top: 25px; }
          #layerslider .ls-layer .slider-bg .wrapper .buttons .btn:nth-child(2) {
            margin-left: 15px; }
        #layerslider .ls-layer .slider-bg .wrapper .text {
          width: 50%;
          background-color: rgba(253, 252, 250, 0.9);
          padding: 40px 50px 40px calc(50vw - 775px);
          position: absolute;
          left: 0 !important;
          bottom: 0 !important; }
    #layerslider .ls-layer .slider-image {
      width: 100vw;
      height: 100%;
      background-position: right center;
      background-repeat: no-repeat;
      background-size: cover; }

.title-module {
  color: #000;
  font-size: 244%;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase; }

#three-columns, #three-columnspart2 {
  padding-top: 60px; }
  #three-columns .one-element, #three-columnspart2 .one-element {
    padding: 10px;
    padding-bottom: 30px; }
    #three-columns .one-element .one-element-inner, #three-columnspart2 .one-element .one-element-inner {
      background-color: #fff;
      padding: 20px;
      box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.31); }
      #three-columns .one-element .one-element-inner .element-img .image-holder, #three-columnspart2 .one-element .one-element-inner .element-img .image-holder {
        overflow: hidden;
        border: 5px solid #fff; }
      #three-columns .one-element .one-element-inner .element-img span, #three-columnspart2 .one-element .one-element-inner .element-img span {
        display: block;
        height: 320px;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        -webkit-transition: 1s; }
      #three-columns .one-element .one-element-inner .element-txt h2, #three-columnspart2 .one-element .one-element-inner .element-txt h2 {
        font-size: 175%;
        color: #000;
        font-weight: 600;
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
        margin: 0;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
        align-items: center; }
      #three-columns .one-element .one-element-inner .element-txt p, #three-columnspart2 .one-element .one-element-inner .element-txt p {
        font-size: 100%;
        color: #000;
        font-weight: 500;
        text-align: center;
        padding-bottom: 30px;
        margin: 0; }
      #three-columns .one-element .one-element-inner .element-more, #three-columnspart2 .one-element .one-element-inner .element-more {
        display: flex;
        justify-content: center;
        padding-bottom: 20px; }
      #three-columns .one-element .one-element-inner:hover .element-img .image-holder span, #three-columnspart2 .one-element .one-element-inner:hover .element-img .image-holder span {
        transition: 1s;
        transform: scale(1.2, 1.2); }

#title-and-text {
  margin: 2.5vw auto; }
  #title-and-text h1, #title-and-text h2 {
    margin-bottom: 2vw; }
  #title-and-text .border-bg {
    padding: 1.5vw 6vw;
    background-color: #e9e9e9;
    border-radius: 48px; }
    #title-and-text .border-bg p {
      font-size: 100%;
      line-height: 1.4rem;
      margin-bottom: 0;
      text-align: center; }

.paralax_group .paralax-slider-bg {
  position: relative;
  overflow: hidden; }
.paralax_group .paralax-img {
  position: absolute;
  width: 140%;
  height: 140%;
  object-fit: cover;
  object-position: top center;
  z-index: -1; }
.paralax_group .wrapper {
  display: flex;
  padding-top: 153px; }
  .paralax_group .wrapper .text {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    position: relative; }
    .paralax_group .wrapper .text .text-inner {
      width: 555px;
      padding-left: 0; }
    .paralax_group .wrapper .text h1, .paralax_group .wrapper .text h2 {
      font-size: 290%;
      text-transform: uppercase;
      font-weight: 700; }
    .paralax_group .wrapper .text h3 {
      font-size: 145%;
      text-transform: uppercase;
      font-weight: 700; }
    .paralax_group .wrapper .text ul {
      list-style: none; }
      .paralax_group .wrapper .text ul li {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        font-size: 155%;
        color: #000;
        font-weight: 500; }
        .paralax_group .wrapper .text ul li:before {
          content: " ";
          display: inline-block;
          width: 38px;
          min-width: 38px;
          height: 38px;
          background-image: url("/img/ul-check.svg");
          background-size: calc(100% - 16px);
          background-repeat: no-repeat;
          background-position: center;
          background-color: #fff;
          border-radius: 50%;
          margin-right: 20px; }
    .paralax_group .wrapper .text .buttons {
      display: flex;
      justify-content: center; }
      .paralax_group .wrapper .text .buttons .btn:nth-child(2) {
        margin-left: 25px; }
  .paralax_group .wrapper .owl-carousel {
    width: 50%; }
    .paralax_group .wrapper .owl-carousel .owl-stage-outer, .paralax_group .wrapper .owl-carousel .owl-stage, .paralax_group .wrapper .owl-carousel .owl-item, .paralax_group .wrapper .owl-carousel .one-element, .paralax_group .wrapper .owl-carousel .foto {
      height: 100%; }
    .paralax_group .wrapper .owl-carousel img {
      height: 100%;
      object-fit: cover; }

.pagination {
  display: flex;
  justify-content: center;
  align-items: center; }
  .pagination .button-nav {
    color: #007e47;
    margin-left: 15px;
    margin-right: 15px; }
    .pagination .button-nav:hover {
      color: #005e8e; }
  .pagination .numbers {
    display: flex; }
    .pagination .numbers a {
      width: 30px;
      height: 38px;
      border: 1px solid #007e47;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 4px;
      margin-right: 4px;
      color: #29203e; }
      .pagination .numbers a.active {
        background-color: #007e47;
        color: #fff; }
      .pagination .numbers a:hover:not(.active) {
        border-color: #005e8e;
        background-color: #005e8e;
        color: #fff; }
    .pagination .numbers span {
      align-self: flex-end; }

#big-slider .inner {
  position: relative; }
#big-slider .special-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end; }
  #big-slider .special-wrapper .special-container {
    bottom: -1px;
    position: relative;
    z-index: 31;
    width: 100%;
    height: 9vw;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover; }

#serach-belt {
  position: relative; }
  #serach-belt .form-control {
    padding-left: 30px;
    padding-right: 45px; }
  #serach-belt .btn-search {
    border-radius: 0px;
    width: 50px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    position: absolute;
    padding: 0;
    height: 100%; }
    #serach-belt .btn-search img {
      width: 26px; }

.button-more {
  padding-top: 50px;
  padding-bottom: 50px; }

.offer-list .one-offer {
  border-top: 10px solid #fdfcfa; }
  .offer-list .one-offer .one-offer-inner {
    display: flex;
    padding: 20px;
    color: #005e8e; }
    .offer-list .one-offer .one-offer-inner .head {
      display: flex;
      justify-content: space-between; }
      .offer-list .one-offer .one-offer-inner .head .title-wrapper {
        display: flex; }
        .offer-list .one-offer .one-offer-inner .head .title-wrapper a h2 {
          font-size: 100%;
          margin-bottom: 5px;
          color: #29203e;
          font-weight: 600; }
        .offer-list .one-offer .one-offer-inner .head .title-wrapper a:hover h2 {
          color: #005e8e; }
    .offer-list .one-offer .one-offer-inner .foto {
      height: 148px;
      width: 258px;
      margin-right: 20px;
      display: flex;
      justify-content: center;
      align-items: flex-start; }
      .offer-list .one-offer .one-offer-inner .foto img {
        width: 100%;
        max-height: 150px;
        object-fit: contain;
        object-position: center center;
        background-color: #fff; }
    .offer-list .one-offer .one-offer-inner p {
      color: #005e8e;
      font-weight: 600; }
      .offer-list .one-offer .one-offer-inner p strong {
        color: #29203e; }
    .offer-list .one-offer .one-offer-inner .date p {
      color: #29203e;
      font-size: 130%;
      margin-bottom: 0; }
    .offer-list .one-offer .one-offer-inner .text {
      flex: 1 1 100%; }
      .offer-list .one-offer .one-offer-inner .text .description p {
        line-height: 20px;
        color: #6a6a6a;
        font-weight: 400;
        font-size: 100%; }
      .offer-list .one-offer .one-offer-inner .text .salary p {
        font-size: 110%;
        font-weight: 600; }
        .offer-list .one-offer .one-offer-inner .text .salary p strong {
          font-weight: 600; }
      .offer-list .one-offer .one-offer-inner .text p {
        font-size: 120%; }
    .offer-list .one-offer .one-offer-inner .buttons {
      text-align: right; }
      .offer-list .one-offer .one-offer-inner .buttons .btn img {
        transition: 0.3s;
        -webkit-transition: 0.3s; }
      .offer-list .one-offer .one-offer-inner .buttons .btn:hover img {
        transform: translateX(5px); }

#last-offers {
  margin-bottom: 5vw; }

#last-review .inner {
  padding-top: 1px;
  padding-bottom: 15px;
  background-color: #fdfcfa; }

.review-list .one-review {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px; }
  .review-list .one-review p {
    margin: 0;
    color: #29203e;
    font-size: 120%;
    line-height: 120%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; }
  .review-list .one-review .foto {
    margin-right: 45px; }
    .review-list .one-review .foto img {
      width: 136px;
      height: 136px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center center; }
  .review-list .one-review .wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center; }

.double-block {
  display: flex;
  flex-wrap: wrap; }
  .double-block .one-block {
    color: #29203e;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 15px;
    margin-bottom: 15px;
    flex: 1 1 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column; }
    .double-block .one-block .button {
      margin-top: auto; }
    .double-block .one-block h2 {
      color: #005e8e; }

#logos-carousel .container {
  max-width: 1200px; }

.logos-carousel-master {
  padding: 5vw 0; }
  .logos-carousel-master .one-logo .foto {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .logos-carousel-master .one-logo .foto img {
      width: auto;
      max-width: 100%;
      max-height: 100%;
      object-position: center center; }

.news-carousel {
  position: relative;
  margin-bottom: 30px; }
  .news-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    border-radius: 50%;
    opacity: 0.7;
    position: absolute;
    top: calc(50% - 25px);
    border: 1px solid #C4C4C4 !important; }
    .news-carousel .owl-nav button img {
      width: 12px; }
    .news-carousel .owl-nav button.owl-prev {
      transform: rotate(180deg);
      left: -60px; }
    .news-carousel .owl-nav button.owl-next {
      right: -60px; }
    .news-carousel .owl-nav button:hover {
      opacity: 1; }
    .news-carousel .owl-nav button:focus {
      outline: none; }
  .news-carousel .one-news {
    color: #29203e;
    display: block; }
    .news-carousel .one-news img {
      height: 400px;
      width: 100%;
      object-fit: cover;
      object-position: center center; }
    .news-carousel .one-news .wrapper {
      display: flex; }
    .news-carousel .one-news h3 {
      color: #005e8e;
      text-transform: uppercase;
      font-size: 140%;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical; }
    .news-carousel .one-news p {
      font-size: 120%;
      line-height: 22px;
      text-align: left;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical; }
    .news-carousel .one-news .date {
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: 86px;
      flex-direction: column;
      background-color: #fdfcfa;
      font-size: 140%; }
      .news-carousel .one-news .date span {
        line-height: 26px; }
        .news-carousel .one-news .date span:last-child {
          letter-spacing: 2px; }
        .news-carousel .one-news .date span:first-child {
          font-size: 130%; }
    .news-carousel .one-news .text {
      padding: 20px; }

.gallery-carousel-master .owl-nav button.owl-prev {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  opacity: 0.5;
  outline: none;
  position: absolute;
  left: 10px;
  border: 2px solid #ffd344 !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center; }
  .gallery-carousel-master .owl-nav button.owl-prev img {
    width: 40%; }
  .gallery-carousel-master .owl-nav button.owl-prev:hover {
    opacity: 1; }
.gallery-carousel-master .owl-nav button.owl-next {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  opacity: 0.5;
  outline: none;
  position: absolute;
  right: 10px;
  border: 2px solid #ffd344 !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center; }
  .gallery-carousel-master .owl-nav button.owl-next img {
    width: 40%; }
  .gallery-carousel-master .owl-nav button.owl-next:hover {
    opacity: 1; }
.gallery-carousel-master .one-foto .foto {
  height: 21vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; }
  .gallery-carousel-master .one-foto .foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; }
  .gallery-carousel-master .one-foto .foto:hover .open-full {
    display: flex; }
.gallery-carousel-master .one-foto .open-full {
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  display: none; }
  .gallery-carousel-master .one-foto .open-full a {
    width: 36px;
    height: 36px;
    display: block;
    background-image: url("/img/fullscreen.svg");
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat; }
  .gallery-carousel-master .one-foto .open-full:hover {
    background-color: #000; }

#one-real-estate-gallery {
  margin-bottom: 0;
  position: relative; }
  #one-real-estate-gallery .zarezerwowany {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center; }
    #one-real-estate-gallery .zarezerwowany img {
      z-index: 1; }

#simple-real-estate {
  margin-bottom: 6vw; }
  #simple-real-estate .container {
    max-width: 800px; }
  #simple-real-estate h1 {
    text-transform: initial;
    margin-bottom: 25px;
    color: #000;
    margin-top: 3vw; }
  #simple-real-estate .adress {
    width: 100%;
    text-align: center;
    margin-bottom: 45px; }
  #simple-real-estate .properties {
    display: flex;
    justify-content: space-between; }
  #simple-real-estate .property {
    flex: 1 1 25%;
    display: flex;
    flex-direction: column;
    align-items: center; }
    #simple-real-estate .property .foto {
      height: 37px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px; }
    #simple-real-estate .property p {
      font-size: 87%;
      letter-spacing: 1px;
      color: #29203e;
      font-weight: 400; }
    #simple-real-estate .property strong {
      font-size: 185%;
      color: #000;
      font-weight: 400; }
  #simple-real-estate .bottom-line {
    width: 162px;
    height: 3px;
    margin: 4vw auto;
    background-image: -webkit-linear-gradient(135deg, #755147 0%, #f1d3b3 39%, #b37f55 64%, #774f2f 91%); }
  #simple-real-estate .description p {
    font-size: 100%;
    letter-spacing: 1px;
    line-height: 144%;
    color: #29203e;
    font-weight: 300;
    text-align: justify;
    margin-bottom: 20px; }
  #simple-real-estate .price_before p {
    font-weight: 700;
    text-decoration: underline;
    font-size: 100%;
    letter-spacing: 1px;
    color: #000;
    text-align: center; }
  #simple-real-estate .price_before .string-to-price {
    white-space: nowrap; }
  #simple-real-estate h2 {
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 150%;
    margin-bottom: 45px;
    text-align: center; }
  #simple-real-estate .tags {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    #simple-real-estate .tags .tag {
      background-image: -webkit-linear-gradient(135deg, #755147 0%, #f1d3b3 39%, #b37f55 64%, #774f2f 91%);
      padding: 1px;
      margin-bottom: 20px;
      margin-left: 2px;
      margin-right: 2px;
      flex: 1; }
      #simple-real-estate .tags .tag p {
        font-size: 87%;
        letter-spacing: 1px;
        color: #000;
        font-weight: 300;
        text-align: center;
        width: 100%;
        height: 100%;
        margin-bottom: 0;
        background-color: #fff;
        padding: 5px;
        white-space: nowrap; }

.news-carousel-master .one-news img {
  height: 325px; }
.news-carousel-master .one-news h3 {
  text-align: left;
  font-size: 115%;
  color: #203b85;
  font-weight: 500; }
.news-carousel-master .one-news p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 100%; }
.news-carousel-master .one-news .wrapper {
  background-color: #f1f1f2; }
.news-carousel-master .one-news .date {
  background-color: #007e47;
  color: #fff; }
  .news-carousel-master .one-news .date span:first-child {
    font-weight: bold; }

#consulting-services-carousel .news-carousel-services {
  max-width: 1100px;
  padding-bottom: 7vw; }
  #consulting-services-carousel .news-carousel-services .owl-nav button.owl-prev {
    outline: none;
    padding-right: 10px;
    position: absolute;
    left: 250px;
    top: -115px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center; }
    #consulting-services-carousel .news-carousel-services .owl-nav button.owl-prev img {
      width: 21px;
      height: 47px;
      transform: rotate(180deg);
      transition: 0.3s;
      -webkit-transition: 0.3s; }
    #consulting-services-carousel .news-carousel-services .owl-nav button.owl-prev.disabled {
      opacity: 0.5; }
    #consulting-services-carousel .news-carousel-services .owl-nav button.owl-prev:hover:not(.disabled) img {
      width: 30px;
      height: 35px; }
  #consulting-services-carousel .news-carousel-services .owl-nav button.owl-next {
    outline: none;
    padding-left: 10px;
    position: absolute;
    right: 250px;
    top: -115px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center; }
    #consulting-services-carousel .news-carousel-services .owl-nav button.owl-next img {
      width: 21px;
      height: 47px;
      transition: 0.3s;
      -webkit-transition: 0.3s; }
    #consulting-services-carousel .news-carousel-services .owl-nav button.owl-next.disabled {
      opacity: 0.5; }
    #consulting-services-carousel .news-carousel-services .owl-nav button.owl-next:hover:not(.disabled) img {
      width: 30px;
      height: 35px; }
  #consulting-services-carousel .news-carousel-services .title-carousel-services {
    display: flex;
    justify-content: center; }
    #consulting-services-carousel .news-carousel-services .title-carousel-services h2 {
      background: -webkit-linear-gradient(180deg, #755147 30%, #f1d3b3 45%, #b37f55 55%, #774f2f 70%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 70px;
      margin-top: 5vw; }
  #consulting-services-carousel .news-carousel-services .owl-stage-outer {
    box-shadow: 0px 0px 15px 10px #fdfcfa;
    background-color: #fdfcfa; }
  #consulting-services-carousel .news-carousel-services .owl-item {
    padding: 6px; }
  #consulting-services-carousel .news-carousel-services .one-news {
    background-color: #fff;
    display: block; }
    #consulting-services-carousel .news-carousel-services .one-news .ikonka {
      position: absolute;
      width: 62px;
      height: 62px;
      border: 4px solid #000;
      background-image: -webkit-linear-gradient(135deg, #755147 0%, #f1d3b3 39%, #b37f55 64%, #774f2f 91%);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      right: 25px;
      top: -32px; }
      #consulting-services-carousel .news-carousel-services .one-news .ikonka img {
        width: 60%;
        height: auto; }
    #consulting-services-carousel .news-carousel-services .one-news .foto img {
      height: 190px; }
    #consulting-services-carousel .news-carousel-services .one-news h3 {
      font-size: 94%;
      letter-spacing: 1px;
      color: #000;
      font-weight: 700;
      text-align: left;
      margin-top: 0;
      margin-bottom: 1.5vw;
      text-transform: uppercase;
      max-width: 230px; }
    #consulting-services-carousel .news-carousel-services .one-news p {
      color: #000;
      font-weight: 300;
      font-size: 94%;
      line-height: 140%; }
    #consulting-services-carousel .news-carousel-services .one-news .wrapper {
      padding: 20px 25px 45px 25px;
      position: relative; }
    #consulting-services-carousel .news-carousel-services .one-news .date {
      background-color: #007e47;
      color: #fff; }
      #consulting-services-carousel .news-carousel-services .one-news .date span:first-child {
        font-weight: bold; }

.uslugi-three-columns {
  padding-bottom: 50px; }
  .uslugi-three-columns h2 {
    font-size: 238%;
    font-weight: 400; }
    .uslugi-three-columns h2 strong {
      color: #007e47;
      font-weight: 700; }
  .uslugi-three-columns .one-element {
    display: block;
    padding-right: 20px;
    margin-bottom: -50px; }
    .uslugi-three-columns .one-element .inner {
      display: flex;
      flex-direction: column;
      align-items: center; }
    .uslugi-three-columns .one-element img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 50%; }
    .uslugi-three-columns .one-element .foto {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 372px;
      height: 372px; }
    .uslugi-three-columns .one-element h3 {
      font-weight: 600;
      font-size: 175%;
      text-align: center;
      text-transform: uppercase;
      max-width: 330px;
      margin-left: auto;
      margin-right: auto; }
    .uslugi-three-columns .one-element p {
      text-align: center;
      color: #000;
      max-width: 330px;
      margin-left: auto;
      margin-right: auto; }
    .uslugi-three-columns .one-element .text {
      background-color: #fff;
      border-bottom-left-radius: 25px;
      border-bottom-right-radius: 25px;
      padding: 15px 5px 5px 5px;
      position: relative;
      top: -100px;
      min-height: 100px;
      width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical; }
    .uslugi-three-columns .one-element:nth-child(3n) {
      padding-right: 15px; }
    .uslugi-three-columns .one-element:hover .text {
      background-color: #fdfcfa; }

.company-videos .company-carousel {
  position: relative;
  margin-bottom: 30px; }
  .company-videos .company-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    border-radius: 50%;
    opacity: 0.7;
    position: absolute;
    top: calc(50% - 25px);
    border: 1px solid #C4C4C4 !important; }
    .company-videos .company-carousel .owl-nav button img {
      width: 12px; }
    .company-videos .company-carousel .owl-nav button.owl-prev {
      transform: rotate(180deg);
      left: -60px; }
    .company-videos .company-carousel .owl-nav button.owl-next {
      right: -60px; }
    .company-videos .company-carousel .owl-nav button:hover {
      opacity: 1; }
    .company-videos .company-carousel .owl-nav button:focus {
      outline: none; }
  .company-videos .company-carousel .one-company {
    color: #29203e;
    display: block; }
    .company-videos .company-carousel .one-company .foto {
      position: relative; }
      .company-videos .company-carousel .one-company .foto img {
        height: 16vw;
        width: 100%;
        object-fit: cover;
        object-position: center center; }
      .company-videos .company-carousel .one-company .foto .play {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center; }
        .company-videos .company-carousel .one-company .foto .play .btn-play {
          background-color: rgba(0, 126, 71, 0.8);
          width: 80px;
          height: 80px;
          display: flex;
          justify-content: center;
          align-items: center;
          border-radius: 50%;
          cursor: pointer;
          transition: 0.3s;
          -webkit-transition: 0.3s; }
          .company-videos .company-carousel .one-company .foto .play .btn-play img {
            background-image: url("/img/play.svg");
            filter: invert(100%) sepia(0%) saturate(7498%) hue-rotate(266deg) brightness(104%) contrast(103%);
            width: 40%;
            height: auto; }
          .company-videos .company-carousel .one-company .foto .play .btn-play:hover {
            transform: scale(0.9); }
    .company-videos .company-carousel .one-company .wrapper {
      display: flex; }
      .company-videos .company-carousel .one-company .wrapper h3 {
        background: -webkit-linear-gradient(0deg, #00418f 0%, #009ddd 42%, #61b36b 82%, #95c10b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center; }
      .company-videos .company-carousel .one-company .wrapper p {
        text-align: left;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical; }
      .company-videos .company-carousel .one-company .wrapper .text {
        padding: 20px;
        width: 100%; }

#subpage-title {
  font-weight: 600;
  font-size: 267%;
  letter-spacing: 8px;
  color: #000;
  height: 8vw;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 45px 10px;
  justify-content: center;
  background: -webkit-linear-gradient(0deg, #007e47 0%, #73a949 50%, #ffed00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  width: -moz-fit-content; }

#subpage-title-contakt {
  font-size: 150%;
  letter-spacing: 1px;
  color: #000;
  text-align: center;
  margin: 3.5vw 1vw; }

.google-maps {
  width: 100%; }
  .google-maps iframe {
    width: 100%;
    height: 30vw;
    min-height: 200px; }

#footer .bottom-menu {
  width: 100%; }
  #footer .bottom-menu .linki {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
  #footer .bottom-menu .wrapper {
    display: flex;
    justify-content: space-between;
    height: 100px;
    width: 100%;
    flex-wrap: wrap; }
  #footer .bottom-menu a {
    text-transform: uppercase;
    color: #6a6a6a;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 500;
    padding: 0 30px; }
    #footer .bottom-menu a:hover {
      color: #ffd344; }
#footer #footer-logo img {
  max-width: 235px; }
#footer .address-footer p {
  color: #000;
  font-weight: 400;
  font-size: 100%; }
#footer .social-media {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap; }
  #footer .social-media li {
    width: 37px;
    min-width: 37px;
    height: 37px;
    background-image: -webkit-linear-gradient(135deg, #755147 0%, #f1d3b3 39%, #b37f55 64%, #774f2f 91%);
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #000; }
    #footer .social-media li.facebook a {
      background-image: url("/img/fb.svg"); }
    #footer .social-media li.linkedin a {
      background-image: url("/img/linkedin.svg"); }
    #footer .social-media li.instagram a {
      background-image: url("/img/ig.svg"); }
    #footer .social-media li.youtube a {
      background-image: url("/img/youtube.svg"); }
    #footer .social-media li.tripadvisor a {
      background-image: url("/img/tripadvisor.svg");
      background-size: 80%; }
    #footer .social-media li a {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 60%; }
    #footer .social-media li:before {
      content: none; }
    #footer .social-media li:hover {
      border: 2px solid #fff; }
#footer .contact h3 {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 30px; }
#footer .contact a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px; }
  #footer .contact a.telephone:before {
    display: none;
    width: fit-content;
    -moz-width: fit-content;
    background-image: url("/img/telephone.svg"); }
  #footer .contact a.email:before {
    background-image: url("/img/email.svg"); }
  #footer .contact a:before {
    content: " ";
    background-color: #008bd1;
    width: 36px;
    min-width: 36px;
    height: 36px;
    background-size: cover;
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    border: 2px solid transparent;
    border-radius: 70%;
    display: inline-block;
    margin-right: 20px; }
  #footer .contact a:hover {
    color: #ffd344; }
#footer .pages {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100%; }
  #footer .pages .link {
    display: flex;
    justify-content: flex-start; }
  #footer .pages a {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 5px; }
    #footer .pages a:hover {
      text-decoration: underline; }
#footer .copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 15px 15px; }
  #footer .copyright p {
    margin: 0;
    font-weight: 700;
    font-size: 100%;
    color: #000; }
  #footer .copyright a {
    color: rgba(6, 6, 6, 0.6);
    font-size: 100%; }
    #footer .copyright a:hover {
      color: #005e8e; }
#footer .author {
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  font-weight: 300;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center; }
  #footer .author p {
    margin-bottom: 0; }
  #footer .author a {
    margin: 0;
    font-weight: 300;
    font-size: 100%;
    color: #6a6a6a;
    text-transform: initial;
    padding: 0; }
    #footer .author a:hover {
      color: #000; }
#footer .bottom-footer {
  background-color: #fdfcfa; }
#footer .inner {
  display: flex;
  justify-content: space-between; }
#footer .footer-bg {
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px; }
#footer .one-column {
  width: 20%; }

#miniNav {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #fdfcfa;
  z-index: 9;
  overflow-y: scroll; }
  #miniNav .menu-button {
    margin: 0; }
  #miniNav .btn-close {
    color: #005e8e;
    position: absolute;
    top: 49px;
    right: 11px;
    font-size: 26px; }
    #miniNav .btn-close:hover {
      color: #49d4ff; }
    #miniNav .btn-close.sticked {
      top: 6px; }
  #miniNav .inner {
    padding-top: 115px;
    padding-bottom: 30px;
    position: relative; }
  #miniNav .nav-logo {
    margin-bottom: 20px; }
  #miniNav .page-nav {
    margin: 0 auto;
    list-style: none;
    padding: 0;
    order: 2;
    margin-bottom: 20px; }
    #miniNav .page-nav li {
      border-top: 2px solid #007e47;
      width: 100%; }
      #miniNav .page-nav li a {
        padding: 15px 10px;
        font-size: 17px;
        color: #000;
        width: 100%;
        text-align: left; }
      #miniNav .page-nav li:last-child {
        border-bottom: 2px solid #007e47; }
    #miniNav .page-nav .dropdown {
      flex-direction: column; }
    #miniNav .page-nav .dropdown-toggle {
      width: 100%; }
      #miniNav .page-nav .dropdown-toggle:after {
        color: #ffd344; }
    #miniNav .page-nav .dropdown-menu {
      width: 100%;
      position: relative;
      box-shadow: none;
      border-top: 3px solid #007e47;
      border-bottom: 2px solid #007e47;
      font-size: 90%;
      background-color: transparent; }
      #miniNav .page-nav .dropdown-menu li {
        background-image: url("/img/owl-nav.svg");
        background-repeat: no-repeat;
        background-position: 5px center;
        background-size: 15px;
        padding-left: 20px; }
      #miniNav .page-nav .dropdown-menu li:first-child {
        border-top: none; }
      #miniNav .page-nav .dropdown-menu li:last-child {
        border-bottom: none; }

.table-responsive .table {
  width: 100%;
  display: flex !important;
  flex-direction: column;
  margin-bottom: 0;
  background-color: #fdfcfa; }
  .table-responsive .table thead {
    background-color: #ffd344;
    color: #fff; }
  .table-responsive .table thead, .table-responsive .table tbody {
    flex-direction: column;
    display: flex;
    width: 100%;
    min-width: fit-content;
    min-width: -moz-fit-content; }
  .table-responsive .table tr {
    width: 100%;
    display: flex; }
  .table-responsive .table th {
    width: 100%;
    padding: 10px 10px;
    border-color: #fff;
    text-align: center;
    text-transform: uppercase; }
  .table-responsive .table td {
    width: 100%;
    padding: 5px 10px;
    border-color: #fff; }
  .table-responsive .table tbody tr {
    border-bottom: 1px solid #007e47;
    transition: 0.3s;
    -webkit-transition: 0.3s; }
    .table-responsive .table tbody tr:hover {
      background-color: rgba(255, 211, 68, 0.3); }

.page-nav.menu-small {
  display: none; }

.btn-menu.menu-small {
  display: block; }

@media (max-width: 767px) {
  #miniNav #main-menu .page-nav {
    flex-direction: column; }
    #miniNav #main-menu .page-nav li a {
      padding: 5px 15px;
      font-size: 120%; } }
#news-real-estate {
  background-color: #fdfcfa;
  padding: 3.5vw 0; }
  #news-real-estate h1, #news-real-estate h2 {
    margin-top: 3.5vw;
    margin-bottom: 3.5vw;
    text-transform: uppercase;
    font-size: 124%; }

.real-estate-carousel {
  max-width: 925px;
  margin: 0 auto; }
  .real-estate-carousel .owl-nav button.owl-prev {
    outline: none;
    padding-right: 10px;
    position: absolute;
    left: -10px;
    top: 130px;
    border: 2px solid #ffd344;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center; }
    .real-estate-carousel .owl-nav button.owl-prev img {
      width: 40%;
      transform: rotate(180deg); }
    .real-estate-carousel .owl-nav button.owl-prev.disabled {
      opacity: 0.5; }
  .real-estate-carousel .owl-nav button.owl-next {
    outline: none;
    padding-left: 10px;
    position: absolute;
    right: -10px;
    top: 130px;
    border: 2px solid #ffd344;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center; }
    .real-estate-carousel .owl-nav button.owl-next img {
      width: 40%; }
    .real-estate-carousel .owl-nav button.owl-next.disabled {
      opacity: 0.5; }
  .real-estate-carousel .owl-item {
    padding: 15px; }
  .real-estate-carousel .one-element {
    box-shadow: 5px 5px 15px 3px #ddd;
    display: block; }
    .real-estate-carousel .one-element:hover {
      box-shadow: 0 0 15px 3px #fff; }
  .real-estate-carousel h3 {
    color: #007e47;
    margin-bottom: 0;
    font-size: 18px; }
  .real-estate-carousel .city {
    color: #6a6a6a;
    font-size: 13px; }
  .real-estate-carousel .foto {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 268px;
    position: relative;
    overflow: hidden;
    padding-bottom: 8px;
    background-color: #fff; }
    .real-estate-carousel .foto img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: 0.5s;
      -webkit-transition: 0.5s; }
  .real-estate-carousel .center-text {
    color: #6a6a6a;
    margin-bottom: 20px; }
    .real-estate-carousel .center-text p {
      margin-bottom: 0; }
  .real-estate-carousel .wiecej {
    text-decoration: underline;
    color: #007e47; }
  .real-estate-carousel .reservation {
    position: absolute;
    right: 0;
    bottom: 0; }
    .real-estate-carousel .reservation p {
      margin-bottom: 0; }
  .real-estate-carousel .text {
    background-color: #fff;
    padding: 17px 20px 25px 20px; }
  .real-estate-carousel .bottom-text {
    border-top: 1px solid #fdfcfa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    color: #007e47;
    font-weight: 600;
    min-height: 55px; }
    .real-estate-carousel .bottom-text p {
      margin-bottom: 0; }
  .real-estate-carousel .rooms {
    display: flex;
    align-items: center; }
    .real-estate-carousel .rooms p {
      margin-right: 25px;
      background-repeat: no-repeat;
      background-size: 25px;
      background-position: center left;
      padding-left: 30px; }
  .real-estate-carousel .price {
    font-size: 130%; }

#title-block .inner {
  display: flex;
  justify-content: space-between; }
  #title-block .inner .text {
    width: 100%; }
    #title-block .inner .text h1 {
      margin-bottom: 10px; }
    #title-block .inner .text .salary {
      font-size: 130%;
      margin-bottom: 20px; }
  #title-block .inner .photo {
    min-width: 800px;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center; }
    #title-block .inner .photo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: cover;
      object-position: center center; }

.steps-dots {
  padding-top: 60px;
  padding-bottom: 60px; }
  .steps-dots .title {
    background-image: url("../img/dots-l.png"), url("../img/dots-r.png");
    background-repeat: no-repeat;
    background-position: left 175px top 10px, right 175px top 10px;
    height: 120px;
    display: flex;
    justify-content: center;
    width: 100%; }
    .steps-dots .title h2 {
      text-align: center;
      margin-bottom: 0;
      max-width: 980px;
      padding: 0; }
  .steps-dots .inner {
    text-align: center;
    display: flex; }
  .steps-dots .arrow img {
    width: 76px;
    margin-top: 82px; }
  .steps-dots .one-step {
    flex: 1 1 22%; }
    .steps-dots .one-step .inside {
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      background-color: #11266e;
      border: 20px solid #007e47;
      width: 240px;
      height: 240px;
      margin-left: auto;
      margin-right: auto;
      float: none;
      margin-bottom: 20px;
      position: relative; }
      .steps-dots .one-step .inside > img {
        width: 50%; }
      .steps-dots .one-step .inside .number {
        font-size: 112px;
        font-weight: 600;
        color: #fff; }
      .steps-dots .one-step .inside .circle {
        position: absolute;
        width: 106px;
        height: 106px;
        background-size: 70px;
        background-repeat: no-repeat;
        background-position: center center;
        border-radius: 50%;
        border: 5px solid #007e47;
        background-color: #fff;
        right: -30px;
        bottom: -30px;
        display: none; }
    .steps-dots .one-step .text {
      padding: 0 20px; }
    .steps-dots .one-step p {
      color: #29203e; }
    .steps-dots .one-step h3 {
      font-size: 137%;
      font-weight: 600;
      color: #000;
      text-transform: uppercase; }

.acr-slide .card {
  margin-bottom: 12px;
  border: 1px solid #005e8e;
  border-radius: 15px;
  overflow: hidden; }
  .acr-slide .card .card-header {
    background-color: #005e8e;
    padding: 0px 0px;
    background-image: url("../img/down-arrow.svg");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 20px; }
    .acr-slide .card .card-header h5 .btn-link {
      font-size: 120%;
      color: #fff;
      text-decoration: none;
      outline: none !important;
      box-shadow: none !important;
      padding: 10px 45px;
      margin: 0;
      width: 100%;
      text-align: left;
      height: 100%;
      font-family: "Montserrat", sans-serif; }
  .acr-slide .card .card-body {
    font-size: 120%; }

.text-block-more {
  background-image: url(/img/text-block-more.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center; }
  .text-block-more .wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 50px; }
  .text-block-more .inner {
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 20px; }
  .text-block-more .one-block {
    margin-bottom: 25px; }
  .text-block-more h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 168%;
    color: #203b85;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10px; }
  .text-block-more p:first-child {
    text-align: center;
    width: 100%;
    background-color: #fdfcfa;
    padding: 15px 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #000; }
  .text-block-more ul {
    padding: 0 65px; }
  .text-block-more .buttons .btn:nth-child(2) {
    margin-left: 15px;
    background-color: #fdfcfa; }

#consulting #contact-block {
  background-image: url(/img/consulting_kontakt.jpg); }
  #consulting #contact-block form .form-group .contact-checkbox-label {
    color: #fff; }
    #consulting #contact-block form .form-group .contact-checkbox-label a {
      color: #fff; }
      #consulting #contact-block form .form-group .contact-checkbox-label a:hover {
        color: #ffd344; }
  #consulting #contact-block h2 {
    color: #fff; }
  #consulting #contact-block p {
    color: #fff; }

#foto-block-zastosowanie h2 {
  font-size: 325%;
  color: #007e47;
  font-weight: 700;
  margin-bottom: 2vw; }

.foto-block {
  background-color: #203b85; }
  .foto-block:nth-child(even) .wrapper {
    flex-direction: row-reverse; }
    .foto-block:nth-child(even) .wrapper .text {
      display: flex;
      justify-content: flex-end; }
  .foto-block .wrapper {
    display: flex;
    justify-content: space-between; }
    .foto-block .wrapper .block-icon {
      display: flex; }
      .foto-block .wrapper .block-icon .icon {
        min-width: 106px;
        width: 106px;
        height: 106px;
        border-radius: 50%;
        border: 5px solid #e5e5e5;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 2vw; }
        .foto-block .wrapper .block-icon .icon img {
          width: 60%;
          height: auto; }
    .foto-block .wrapper .text {
      width: 100%;
      display: flex;
      justify-content: flex-start;
      max-width: 50%; }
      .foto-block .wrapper .text .text-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 870px;
        height: 100%;
        max-width: 100%; }
        .foto-block .wrapper .text .text-inner h1, .foto-block .wrapper .text .text-inner h2, .foto-block .wrapper .text .text-inner h3 {
          text-align: center;
          width: 100%; }
        .foto-block .wrapper .text .text-inner h3 {
          font-size: 237%;
          color: #007e47;
          font-weight: 700;
          margin-bottom: 2vw; }
        .foto-block .wrapper .text .text-inner p {
          color: #29203e;
          font-size: 100%;
          text-align: justify; }
        .foto-block .wrapper .text .text-inner .buttons {
          display: flex;
          justify-content: flex-end;
          align-items: center;
          width: 100%; }
          .foto-block .wrapper .text .text-inner .buttons .btn:nth-child(2) {
            margin-left: 25px; }
    .foto-block .wrapper .foto-block-pause {
      height: auto;
      min-width: 75px; }
    .foto-block .wrapper .foto {
      width: 100%;
      min-height: 31vw; }
      .foto-block .wrapper .foto img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
  .foto-block .footer-foto-block {
    display: flex;
    justify-content: center; }
    .foto-block .footer-foto-block .dot-foto-block {
      width: 75px;
      height: 75px;
      background-color: #49d4ff; }
  .foto-block.normal {
    background-color: transparent; }
    .foto-block.normal .wrapper .text .text-inner h1 {
      font-size: 260%; }

#realizacje .wrapper {
  display: flex;
  justify-content: space-between; }
#realizacje .one-element {
  width: calc(33.3% - 10px); }
#realizacje .foto {
  width: 100%; }
  #realizacje .foto img {
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%; }
#realizacje .text {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 2vw; }
#realizacje h3 {
  text-align: center; }
#realizacje p {
  text-align: center; }

#doradcy .wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 7vw; }
#doradcy .one-element {
  width: calc(50% - 4vw);
  padding: 20px;
  box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.31);
  display: flex;
  justify-content: space-between; }
#doradcy .foto {
  width: 242px;
  height: 312px;
  padding-left: 5px; }
  #doradcy .foto img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
#doradcy a {
  color: #000;
  display: block;
  padding-left: 30px;
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center left; }
  #doradcy a.tel {
    background-image: url(/img/tel.svg); }
  #doradcy a.email {
    background-image: url(/img/email.svg); }
  #doradcy a:hover {
    color: #ffd344; }
#doradcy ul li {
  margin-bottom: 5px; }
#doradcy .text {
  padding-left: 2vw; }

.apply-form .elementor-field-group .elementor-select-wrapper:before {
  display: none !important; }

#application-block {
  background-color: #203b85; }
  #application-block .wrapper {
    display: flex;
    justify-content: space-between; }
    #application-block .wrapper .text {
      width: 100%; }
      #application-block .wrapper .text .text-inner {
        padding-top: 45px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        height: 100%;
        padding-left: 64px; }
        #application-block .wrapper .text .text-inner h1 {
          color: #fff;
          font-size: 5.6em;
          line-height: 0.8em;
          margin-bottom: 20px; }
        #application-block .wrapper .text .text-inner p {
          font-size: 1.8em;
          line-height: 1.1em;
          color: #fff;
          padding: 0% 38% 0% 0%; }
    #application-block .wrapper .form-block-pause {
      height: auto;
      min-width: 75px; }
  #application-block .footer-form-block {
    display: flex;
    justify-content: center; }
    #application-block .footer-form-block .dot-form-block {
      width: 75px;
      height: 75px;
      background-color: #49d4ff; }

#form-block .inner {
  display: flex; }
  #form-block .inner .text {
    width: 100%; }
    #form-block .inner .text .wrapper {
      display: flex;
      justify-content: flex-start; }
      #form-block .inner .text .wrapper .one-box {
        flex: 1 1 50%; }
    #form-block .inner .text a {
      color: #005e8e; }
      #form-block .inner .text a:hover {
        color: #49d4ff; }
  #form-block .inner #applicationForm h2 {
    padding-top: 50px; }
  #form-block .inner #applicationForm form {
    max-width: 800px;
    float: right; }
    #form-block .inner #applicationForm form .form-group label {
      color: #54595f; }
    #form-block .inner #applicationForm form .form-group .contact-checkbox-label {
      color: #54595f; }
      #form-block .inner #applicationForm form .form-group .contact-checkbox-label a:hover {
        color: #005e8e; }
    #form-block .inner #applicationForm form .form-group input[type="file"] {
      color: #54595f; }
    #form-block .inner #applicationForm form .checkbox-label {
      display: flex;
      padding-left: 20px;
      font-size: 120%; }
    #form-block .inner #applicationForm form input[type="checkbox"] {
      width: 15px;
      height: 15px;
      margin-top: 7px;
      margin-right: 15px;
      border-color: transparent; }
    #form-block .inner #applicationForm form .form-control {
      border: 1px solid #00a7e3; }
    #form-block .inner #applicationForm form textarea.form-control {
      height: 130px;
      border-radius: 18px; }
#form-block .container-fluid {
  padding-top: 0; }

.line-background {
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top; }

.company-block {
  padding-bottom: 100px; }
  .company-block .wrapper {
    display: flex;
    align-items: center;
    flex-direction: column; }
    .company-block .wrapper .video-preview {
      padding-bottom: 160px; }
      .company-block .wrapper .video-preview .foto {
        position: relative; }
        .company-block .wrapper .video-preview .foto > img {
          width: 100%; }
        .company-block .wrapper .video-preview .foto .play {
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
          display: flex;
          justify-content: center;
          align-items: center; }
          .company-block .wrapper .video-preview .foto .play .btn-play {
            background-color: rgba(0, 126, 71, 0.8);
            width: 106px;
            height: 106px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
            -webkit-transition: 0.3s; }
            .company-block .wrapper .video-preview .foto .play .btn-play img {
              background-image: url("/img/play.svg");
              filter: invert(100%) sepia(0%) saturate(7498%) hue-rotate(266deg) brightness(104%) contrast(103%);
              width: 40%; }
            .company-block .wrapper .video-preview .foto .play .btn-play:hover {
              transform: scale(0.9); }
        .company-block .wrapper .video-preview .foto .logo {
          position: absolute;
          left: 0;
          right: 0;
          bottom: -115px;
          display: flex;
          justify-content: center;
          align-items: center; }
          .company-block .wrapper .video-preview .foto .logo .logo-inner {
            box-shadow: 0px 0px 9px 10px rgba(46, 95, 173, 0.08);
            padding: 35px;
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            min-width: 231px;
            min-height: 231px;
            max-width: 231px;
            max-height: 231px;
            box-sizing: border-box;
            overflow: hidden; }
            .company-block .wrapper .video-preview .foto .logo .logo-inner img {
              object-fit: contain;
              object-position: center;
              box-sizing: border-box;
              max-width: 100%; }
    .company-block .wrapper .description {
      margin-bottom: 120px; }
      .company-block .wrapper .description p {
        font-size: 16px;
        line-height: 25px;
        color: #29203e;
        margin-bottom: 20px;
        text-align: justify; }
    .company-block .wrapper .socials {
      display: flex;
      justify-content: space-around;
      margin-bottom: 90px;
      width: 100%; }
      .company-block .wrapper .socials .social {
        margin: 0 10px;
        display: flex;
        align-items: center; }
        .company-block .wrapper .socials .social .foto {
          width: 50px;
          height: 50px;
          display: flex;
          justify-content: center;
          align-items: center;
          margin-right: 20px;
          padding: 12px;
          border-radius: 50%;
          background-color: #f1f1f1; }
          .company-block .wrapper .socials .social .foto img {
            max-width: 100%;
            max-height: 100%;
            filter: invert(43%) sepia(84%) saturate(2535%) hue-rotate(167deg) brightness(103%) contrast(101%); }
        .company-block .wrapper .socials .social span {
          font-size: 17px;
          color: #29203e;
          font-weight: 400; }
        .company-block .wrapper .socials .social.link:hover span {
          color: #005e8e; }

#questions {
  display: flex;
  justify-content: center;
  padding-top: 30px; }
  #questions #start-faq h2 {
    font-size: 37px;
    line-height: 57px;
    text-align: center;
    margin: 0;
    padding-bottom: 30px; }
  #questions #start-faq #accordion .card {
    margin-bottom: 12px;
    border: 1px solid #005e8e;
    border-radius: 15px;
    overflow: hidden; }
    #questions #start-faq #accordion .card .card-header {
      background-color: #005e8e;
      padding: 0px 0px;
      background-image: url(../img/down-arrow-white.svg);
      background-position: right 15px center;
      background-repeat: no-repeat;
      background-size: 20px;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
      #questions #start-faq #accordion .card .card-header h5 {
        margin: 0; }
        #questions #start-faq #accordion .card .card-header h5 button {
          padding-right: 45px;
          width: 100%;
          text-align: left; }
          #questions #start-faq #accordion .card .card-header h5 button:focus {
            box-shadow: none; }
        #questions #start-faq #accordion .card .card-header h5 span {
          text-transform: lowercase;
          display: block;
          color: #fff;
          font-family: "Montserrat", sans-serif; }
        #questions #start-faq #accordion .card .card-header h5 span:first-letter {
          text-transform: uppercase; }
      #questions #start-faq #accordion .card .card-header:hover {
        background-color: #005e8e; }
    #questions #start-faq #accordion .card .collapse .card-body {
      flex: 1 1 auto;
      min-height: 1px; }
      #questions #start-faq #accordion .card .collapse .card-body ul {
        list-style: none outside none;
        padding: 0; }
        #questions #start-faq #accordion .card .collapse .card-body ul li {
          white-space: pre-wrap;
          font-size: 16px;
          line-height: 30px;
          font-weight: 400;
          font-family: "Montserrat", sans-serif;
          margin: 0;
          color: #29203e; }
          #questions #start-faq #accordion .card .collapse .card-body ul li:before {
            content: "\00a0";
            min-width: 15px;
            min-height: 15px;
            max-width: 15px;
            max-height: 15px;
            border-radius: 50%;
            display: flex;
            float: left;
            background-color: #005e8e;
            margin-top: 6px;
            margin-right: 10px; }

#workers {
  background-color: #fdfcfa; }
  #workers .wrapper .one-worker {
    margin-bottom: 2vw;
    padding: 0px 20px; }
    #workers .wrapper .one-worker .inner {
      padding: 40px 90px;
      height: 100%; }
      #workers .wrapper .one-worker .inner .worker-title p {
        padding-bottom: 10px;
        margin-bottom: 0;
        color: #29203e;
        font-weight: 400;
        font-style: italic;
        font-size: 125%;
        text-align: center;
        width: 100%;
        display: block; }
      #workers .wrapper .one-worker .inner h3 {
        font-size: 144%;
        color: #000;
        font-weight: 300;
        text-align: center;
        margin-bottom: 0; }
      #workers .wrapper .one-worker .inner p {
        font-size: 94%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        color: #000000;
        font-weight: 300;
        text-align: center; }
        #workers .wrapper .one-worker .inner p a {
          font-size: 100%;
          display: block;
          margin-left: 5px;
          margin-right: 5px;
          color: #54595f; }
      #workers .wrapper .one-worker .inner .foto {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        width: 240px;
        height: 240px;
        margin: 0 auto 20px auto;
        position: relative; }
        #workers .wrapper .one-worker .inner .foto img {
          width: auto;
          max-width: 100%;
          max-height: 300px;
          border-radius: 50%;
          width: 100%;
          height: 100%;
          background-color: #fff; }
        #workers .wrapper .one-worker .inner .foto .elipsa {
          position: absolute;
          width: 89%;
          height: 89%;
          background-color: transparent; }

#full-contact-block .info-block {
  max-width: 525px;
  margin: 0 auto; }
  #full-contact-block .info-block .wrapper {
    display: flex;
    justify-content: space-between; }
  #full-contact-block .info-block .linki {
    justify-content: flex-start; }
  #full-contact-block .info-block .address {
    white-space: nowrap;
    margin-right: 4vw; }
  #full-contact-block .info-block a {
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 500; }
    #full-contact-block .info-block a span {
      background-position: center;
      background-repeat: no-repeat;
      background-size: 24px;
      min-width: 42px;
      width: 42px;
      height: 42px;
      background-color: #ffd344;
      border-radius: 50%;
      margin-right: 10px;
      display: flex;
      justify-content: center;
      align-items: center; }
    #full-contact-block .info-block a:hover {
      color: #ffd344; }
  #full-contact-block .info-block .tel {
    margin-right: 4vw; }
    #full-contact-block .info-block .tel span {
      background-image: url("/img/tel-footer.svg"); }
  #full-contact-block .info-block .email span {
    background-image: url("/img/email-footer.svg"); }
  #full-contact-block .info-block h4 {
    margin-top: 2vw;
    margin-bottom: 1.5vw; }
#full-contact-block .form {
  margin: 0 auto; }

#contact-block {
  padding-top: 3vw;
  background-color: #fdfcfa;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover; }
  #contact-block textarea {
    border-radius: 15px; }
  #contact-block h2 {
    font-size: 238%;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 0; }
    #contact-block h2 strong {
      color: #007e47;
      font-weight: 700; }
  #contact-block .text p {
    font-size: 1.4em; }
  #contact-block .form {
    text-align: center; }
    #contact-block .form > p {
      margin-bottom: 25px;
      font-size: 15px; }

#contact-form {
  width: 100%; }
  #contact-form form {
    padding: 0px 15px 30px 15px; }
    #contact-form form .row-530 {
      max-width: 1020px;
      margin: 0 auto; }
    #contact-form form .form-group {
      margin-bottom: 20px;
      padding: 0px 5px; }
      #contact-form form .form-group input[type="text"], #contact-form form .form-group input[type="email"] {
        width: 100%;
        margin: 0;
        background-color: #fff; }
      #contact-form form .form-group input[type="file"] {
        font-size: 1.2em;
        color: white;
        width: 100%; }
      #contact-form form .form-group .contact-checkbox-label {
        cursor: pointer;
        font-size: 80%;
        color: #9e9e9e;
        font-weight: 400;
        font-family: "Montserrat", sans-serif;
        letter-spacing: 0;
        text-transform: initial;
        display: flex; }
        #contact-form form .form-group .contact-checkbox-label .regulamin {
          text-align: left;
          margin-top: 5px; }
        #contact-form form .form-group .contact-checkbox-label .checkbox-styled {
          width: 25px;
          min-width: 25px;
          height: 25px;
          min-height: 25px;
          border-radius: 10px;
          border: 2px solid #49d4ff;
          display: inline-block;
          position: relative;
          top: 3px;
          margin-right: 5px;
          display: none; }
          #contact-form form .form-group .contact-checkbox-label .checkbox-styled span {
            color: #ffffff00;
            position: relative;
            font-size: 24px;
            bottom: 6px;
            left: 0px; }
        #contact-form form .form-group .contact-checkbox-label .checkbox-styled.checked {
          background-color: #005e8e; }
          #contact-form form .form-group .contact-checkbox-label .checkbox-styled.checked span {
            color: #fff; }
        #contact-form form .form-group .contact-checkbox-label a {
          color: #000; }
          #contact-form form .form-group .contact-checkbox-label a:hover {
            color: #ffd344; }
    #contact-form form input[type="submit"] {
      margin: 0 auto; }

#movie-modal {
  z-index: -999;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8); }
  #movie-modal .modal-inner {
    position: relative;
    transform: scale(0);
    transform-origin: right;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    overflow: hidden;
    margin: 30px;
    width: 80%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center; }
    #movie-modal .modal-inner .close-modal {
      position: absolute;
      top: 0px;
      right: 0px;
      background-color: #000;
      z-index: 9999;
      box-shadow: none;
      border: none;
      color: #fff; }
    #movie-modal .modal-inner .movie-container {
      max-height: 100%;
      max-width: 100%;
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center; }
      #movie-modal .modal-inner .movie-container .wideo {
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
        height: fit-content;
        height: -moz-fit-content;
        width: auto;
        border-radius: 15px 0px 15px 15px;
        position: relative; }
  #movie-modal.open {
    z-index: 999;
    opacity: 1; }
    #movie-modal.open .modal-inner {
      transform: scale(1); }

#news-tile .one-news {
  margin-bottom: 40px; }
  #news-tile .one-news .foto {
    position: relative; }
    #news-tile .one-news .foto .date {
      position: absolute;
      top: 0px;
      right: 0px;
      background-color: #007e47;
      color: #fff;
      padding: 2px 10px; }
    #news-tile .one-news .foto img {
      height: 350px;
      width: 100%;
      max-width: 100%;
      object-fit: cover;
      object-position: center center; }
  #news-tile .one-news .wrapper .date {
    justify-content: center;
    align-items: center;
    min-width: 86px;
    flex-direction: column;
    background-color: #007e47;
    font-size: 100%; }
    #news-tile .one-news .wrapper .date span {
      line-height: 26px;
      color: #fff; }
      #news-tile .one-news .wrapper .date span:first-child {
        font-size: 130%;
        font-weight: bold; }
  #news-tile .one-news .wrapper .text {
    padding: 20px; }
    #news-tile .one-news .wrapper .text h3 {
      text-align: left;
      font-size: 115%;
      color: #203b85;
      font-weight: 500;
      text-transform: uppercase;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      font-family: "Montserrat", sans-serif;
      margin-top: 0; }
    #news-tile .one-news .wrapper .text p {
      font-size: 85%;
      color: #29203e;
      line-height: 22px;
      text-align: left;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      font-family: "Montserrat", sans-serif; }

.content-news h2:first-child, .content-news h3:first-child, .content-news h4:first-child {
  margin-top: 0; }
.content-news h2 {
  font-size: 220%;
  margin-top: 1em; }
.content-news h3 {
  font-size: 200%;
  margin-top: 1em; }
.content-news h4 {
  font-size: 180%;
  margin-top: 1em; }

.better-info {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 300;
  justify-content: center;
  align-items: center;
  padding: 30px; }
  .better-info .wrapper {
    max-width: 600px;
    color: #29203e;
    font-weight: 500;
    position: relative;
    padding: 70px 30px 20px 30px;
    background-color: #fff; }
    .better-info .wrapper.success {
      background-position: center top 20px;
      background-repeat: no-repeat;
      background-size: 45px;
      background-image: url("../img/info-success.svg"); }
    .better-info .wrapper.warning {
      background-position: center top 20px;
      background-repeat: no-repeat;
      background-size: 45px;
      background-image: url("../img/info-warning.svg"); }
    .better-info .wrapper.danger {
      background-position: center top 20px;
      background-repeat: no-repeat;
      background-size: 45px;
      background-image: url("../img/info-danger.svg"); }
    .better-info .wrapper.info {
      background-position: center top 20px;
      background-repeat: no-repeat;
      background-size: 45px;
      background-image: url("../img/info-info.svg"); }
    .better-info .wrapper .btn-close {
      color: #005e8e;
      position: absolute;
      right: 5px;
      top: 5px;
      font-size: 20px; }
    .better-info .wrapper a {
      color: #005e8e; }
      .better-info .wrapper a:hover {
        text-decoration: underline; }

.box {
  padding: 50px;
  width: 100%; }
  .box.grey-bg {
    background-color: #fdfcfa; }
  .box.sky-bg {
    background-color: #def7ff; }

.subsite h1, .subsite h2, .subsite h3, .subsite h4, .subsite h5, .subsite h6 {
  color: #007e47;
  font-family: "Montserrat", sans-serif; }
.subsite h2 {
  font-size: 220%;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 600; }
.subsite h3 {
  margin-bottom: 1rem;
  margin-top: 2rem; }
.subsite h1 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 220%;
  margin-bottom: 30px; }
.subsite p, .subsite ul, .subsite ol, .subsite a {
  font-size: 110%;
  color: #29203e; }
.subsite p a, .subsite ul li a, .subsite ol li a {
  font-size: 100%;
  color: #005e8e; }
  .subsite p a:hover, .subsite ul li a:hover, .subsite ol li a:hover {
    color: #007e47; }
.subsite ul {
  list-style: square; }
  .subsite ul li::marker {
    color: #005e8e; }
.subsite p {
  line-height: 120%;
  margin-bottom: 10px; }
.subsite .big-paragraf {
  font-size: 140%; }
.subsite .subsite-content p {
  color: #29203e;
  text-align: justify; }
.subsite .subsite-content a {
  font-size: 1em;
  line-height: 1.2em;
  color: #203b85; }
  .subsite .subsite-content a:hover {
    color: #49d4ff; }
.subsite .subsite-content img {
  max-width: 100%; }
.subsite .table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }
  .subsite .table table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529; }
  .subsite .table td {
    min-width: 200px; }
.subsite .title-inner {
  background-color: #fdfcfa;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom -120px center;
  display: flex;
  justify-content: center;
  position: relative; }
  .subsite .title-inner h1, .subsite .title-inner h2 {
    margin: 0; }
  .subsite .title-inner .back-to-start {
    position: absolute;
    right: 2vw;
    bottom: 0; }
    .subsite .title-inner .back-to-start img {
      width: calc(100px + 8vw); }
    .subsite .title-inner .back-to-start a {
      display: flex;
      align-items: center;
      color: #fff; }
      .subsite .title-inner .back-to-start a:hover {
        color: #ffd344; }
    .subsite .title-inner .back-to-start .caret {
      font-size: 175%;
      height: 100%;
      display: block; }

#subsite-foto-block .subsite-text {
  padding-top: 2.5vw;
  padding-right: 2.5vw;
  padding-bottom: 2.5vw; }
  #subsite-foto-block .subsite-text p {
    text-align: justify; }
#subsite-foto-block .subsite-foto {
  padding: 0; }
  #subsite-foto-block .subsite-foto img {
    width: calc(50vw);
    height: 100%;
    object-fit: cover; }

@media (max-width: 575px) {
  header.sticked {
    transform: translateY(0px); }
    header.sticked #main-nav {
      margin-bottom: 0px; }

  #foto-block-start .foto-logo img {
    width: 60%; }

  main {
    padding-top: 62px;
    min-height: calc(100vh - 166px); }

  #full-form-sprzedaj #find-real-estate-more .selecty2 .form-control:first-child {
    margin-right: 0; }

  #subsite-foto-block .subsite-text {
    padding-right: 15px; }
  #subsite-foto-block .subsite-foto img {
    width: 100%;
    height: auto; }

  figure.image {
    display: block;
    width: 100% !important; }
    figure.image img {
      width: 100% !important; }

  #miniNav #main-menu .page-nav li a {
    padding: 10px 15px; }
  #miniNav .page-nav li a {
    padding: 15px 10px; }
  #miniNav .inner ul {
    width: 100%;
    align-items: flex-start; }

  #foto-block-full-img .wrapper {
    flex-direction: column-reverse; }
  #foto-block-full-img .foto {
    height: 50vw; }
  #foto-block-full-img .text {
    position: relative;
    background-color: #000; }
    #foto-block-full-img .text .text-inner {
      width: 100%;
      padding: 20px 0; }
  #foto-block-full-img .podpis img {
    width: 30vw; }

  #contact-info .container {
    padding-right: 10px;
    padding-left: 10px; }
  #contact-info .wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    width: -moz-fit-content; }
  #contact-info .address {
    margin-bottom: 30px;
    padding-left: 60px;
    background-size: 50px; }
  #contact-info p {
    font-size: 14px;
    letter-spacing: 0px; }
  #contact-info a {
    font-size: 14px;
    letter-spacing: 0px; }
  #contact-info .tel {
    padding-left: 25px; }
  #contact-info .email {
    padding-left: 25px; }

  #main-nav .inner {
    padding: 5px 0; }
    #main-nav .inner #logo a img {
      width: 110px; }
    #main-nav .inner #logo .motto {
      font-size: 60%; }

  .left-sidebar ul li {
    width: 40px; }
    .left-sidebar ul li a {
      padding: 10px; }
      .left-sidebar ul li a img {
        width: 20px; }
    .left-sidebar ul li:hover {
      width: 60px; }

  body {
    font-size: 75%; }
    body ul li {
      margin-bottom: 10px; }
      body ul li:before {
        width: 20px;
        min-width: 20px;
        height: 20px;
        margin-right: 10px;
        background-size: 12px; }
    body p {
      font-size: 110%; }

  .paralax_group {
    font-size: 70%; }
    .paralax_group .wrapper {
      padding-top: 59px;
      flex-direction: column-reverse; }
      .paralax_group .wrapper .text {
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        width: 100%;
        justify-content: center; }
        .paralax_group .wrapper .text .text-inner {
          width: 100%;
          padding-left: 15px; }
        .paralax_group .wrapper .text ul {
          padding-left: 0; }
          .paralax_group .wrapper .text ul li {
            margin-bottom: 10px; }
            .paralax_group .wrapper .text ul li:before {
              width: 25px;
              min-width: 25px;
              height: 25px;
              margin-right: 10px;
              background-size: calc(100% - 12px); }
        .paralax_group .wrapper .text .buttons .btn {
          padding: 8px 18px; }
      .paralax_group .wrapper .owl-carousel {
        width: 100%; }

  .simple-steps .one-step {
    width: 100%; }
  .simple-steps .foto img {
    max-height: 120px; }

  #simple-real-estate h1 {
    margin-bottom: 15px; }
  #simple-real-estate .properties {
    max-width: 300px;
    margin: 0 auto;
    flex-wrap: wrap; }
  #simple-real-estate .property {
    flex: 1 1 50%; }
    #simple-real-estate .property p {
      text-align: center; }
  #simple-real-estate .tags .tag {
    margin-bottom: 10px; }

  .gallery-carousel-master .one-foto .foto {
    height: 60vw; }
  .gallery-carousel-master .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: 10px !important; }
  .gallery-carousel-master .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    right: 10px !important; }

  .bread {
    display: none; }

  .uslugi-three-columns h2 {
    font-size: 200%; }
  .uslugi-three-columns .one-element {
    padding: 0 10px; }
    .uslugi-three-columns .one-element .foto {
      width: 90vw;
      height: 90vw; }
    .uslugi-three-columns .one-element:nth-child(3n) {
      padding-right: 10px; }

  #terms-group {
    display: flex; }
    #terms-group input[type="checkbox"] {
      position: relative;
      left: 5px;
      top: 5px; }

  #top-belt .inner {
    height: 38px; }

  #logo a img {
    width: 190px; }

  #layerslider {
    height: fit-content !important;
    position: relative; }
    #layerslider > .ls-inner {
      background-color: #fff !important;
      height: fit-content; }
      #layerslider > .ls-inner > .ls-layers {
        height: fit-content !important;
        position: relative !important;
        overflow: initial !important; }
        #layerslider > .ls-inner > .ls-layers > .ls-background-videos {
          display: none; }
        #layerslider > .ls-inner > .ls-layers > .ls-slide-backgrounds {
          height: 50vw;
          position: relative !important;
          overflow: initial !important; }
          #layerslider > .ls-inner > .ls-layers > .ls-slide-backgrounds .ls-bg-outer {
            position: relative !important;
            height: fit-content !important;
            overflow: initial !important;
            display: block !important;
            transform: none !important; }
            #layerslider > .ls-inner > .ls-layers > .ls-slide-backgrounds .ls-bg-outer > .ls-bg-wrap {
              height: fit-content !important;
              transform: none !important; }
              #layerslider > .ls-inner > .ls-layers > .ls-slide-backgrounds .ls-bg-outer > .ls-bg-wrap img {
                width: 100vw !important;
                height: 50vw !important;
                transform: none !important;
                object-fit: cover; }
        #layerslider > .ls-inner > .ls-layers > .ls-in-out {
          position: relative !important;
          transform: none !important;
          height: fit-content !important; }
          #layerslider > .ls-inner > .ls-layers > .ls-in-out > .ls-layer {
            height: fit-content !important;
            display: block !important; }
            #layerslider > .ls-inner > .ls-layers > .ls-in-out > .ls-layer .slider-bg {
              position: relative;
              background: -webkit-linear-gradient(0deg, #00418f 0%, #009ddd 42%, #61b36b 82%, #95c10b 100%); }
              #layerslider > .ls-inner > .ls-layers > .ls-in-out > .ls-layer .slider-bg .container {
                max-width: 100%; }
              #layerslider > .ls-inner > .ls-layers > .ls-in-out > .ls-layer .slider-bg .wrapper {
                padding-top: 20px;
                padding-bottom: calc(20px + 10vw); }
                #layerslider > .ls-inner > .ls-layers > .ls-in-out > .ls-layer .slider-bg .wrapper .text {
                  max-width: 100%;
                  margin-left: 15px; }
                  #layerslider > .ls-inner > .ls-layers > .ls-in-out > .ls-layer .slider-bg .wrapper .text h2 {
                    font-size: 130%; }
                  #layerslider > .ls-inner > .ls-layers > .ls-in-out > .ls-layer .slider-bg .wrapper .text .play {
                    margin-top: 20px; }
                    #layerslider > .ls-inner > .ls-layers > .ls-in-out > .ls-layer .slider-bg .wrapper .text .play .btn-play {
                      border: 3px solid #fff;
                      width: 50px;
                      height: 50px;
                      margin-right: 15px; }
                  #layerslider > .ls-inner > .ls-layers > .ls-in-out > .ls-layer .slider-bg .wrapper .text .text-inner p {
                    font-size: 100%; }

  #last-offers .module-title {
    font-size: 180%; }

  #big-slider .inner {
    padding-left: 0; }
  #big-slider .xs-text {
    position: relative;
    background-color: #fdfcfa; }
    #big-slider .xs-text ul li {
      color: #000; }
    #big-slider .xs-text .buttons .btn {
      padding: 11px 25px; }
    #big-slider .xs-text h2 {
      font-size: 160%;
      color: #000;
      font-weight: 700;
      text-transform: uppercase;
      white-space: normal;
      margin-bottom: 30px; }
      #big-slider .xs-text h2 span {
        color: #007e47; }
    #big-slider .xs-text .container {
      max-width: 100%; }
    #big-slider .xs-text .wrapper {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 20px;
      padding-bottom: calc(20px + 10vw); }
      #big-slider .xs-text .wrapper .text {
        max-width: 100%;
        margin-left: 15px; }
        #big-slider .xs-text .wrapper .text .play {
          cursor: pointer;
          display: inline-flex;
          align-items: center;
          margin-top: 20px; }
          #big-slider .xs-text .wrapper .text .play .btn-play {
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            transition: 0.3s;
            -webkit-transition: 0.3s;
            border: 3px solid #fff;
            width: 50px;
            height: 50px;
            margin-right: 15px; }
            #big-slider .xs-text .wrapper .text .play .btn-play img {
              width: 40%;
              filter: invert(100%) sepia(0%) saturate(7498%) hue-rotate(266deg) brightness(104%) contrast(103%); }
          #big-slider .xs-text .wrapper .text .play p {
            font-size: 120%;
            color: #ffffff;
            font-weight: 400;
            margin-bottom: 0;
            text-transform: uppercase; }
          #big-slider .xs-text .wrapper .text .play:hover .btn-play {
            transform: scale(0.9); }
        #big-slider .xs-text .wrapper .text .text-inner {
          width: fit-content;
          width: -moz-fit-content;
          margin: 0 auto; }
          #big-slider .xs-text .wrapper .text .text-inner p {
            font-size: 100%;
            color: #000;
            font-weight: 400;
            white-space: normal; }
  #big-slider .special-wrapper {
    align-items: flex-end;
    left: 0; }
    #big-slider .special-wrapper .special-container {
      width: 100%;
      padding: 20px 15px;
      margin: 0; }
      #big-slider .special-wrapper .special-container h2 {
        font-size: 160%; }
      #big-slider .special-wrapper .special-container p {
        font-size: 100%;
        margin-bottom: 15px; }
      #big-slider .special-wrapper .special-container .buttons {
        font-size: 85%; }
        #big-slider .special-wrapper .special-container .buttons input {
          font-size: 95%; }
        #big-slider .special-wrapper .special-container .buttons .btn {
          height: 42px; }
        #big-slider .special-wrapper .special-container .buttons .form-control {
          height: 42px; }

  .news-carousel .owl-nav button {
    top: calc(50% - 30px);
    width: 30px;
    height: 30px; }
    .news-carousel .owl-nav button img {
      width: 8px; }
    .news-carousel .owl-nav button.owl-prev {
      left: -35px; }
    .news-carousel .owl-nav button.owl-next {
      right: -35px; }
  .news-carousel .one-news .wrapper .text {
    padding: 10px; }
  .news-carousel .one-news .wrapper .date {
    font-size: 120%;
    min-width: 65px; }
  .news-carousel .one-news .wrapper h3 {
    font-size: 110%; }
  .news-carousel .one-news .wrapper p {
    font-size: 100%;
    text-align: left; }
  .news-carousel .one-news .foto {
    position: relative; }
  .news-carousel .one-news img {
    height: 220px; }
  .news-carousel .one-news .date {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #005e8e;
    color: #fff;
    padding: 2px 10px; }

  .news-carousel-master .one-news img {
    height: 160px; }
  .news-carousel-master .owl-nav button.owl-next {
    right: -15px;
    background-color: white; }
  .news-carousel-master .owl-nav button.owl-prev {
    left: -15px;
    background-color: white; }

  .company-block {
    padding-bottom: 40px; }
    .company-block .wrapper .video-preview {
      padding-bottom: 80px; }
      .company-block .wrapper .video-preview .foto .play .btn-play {
        width: 50px;
        height: 50px; }
      .company-block .wrapper .video-preview .foto .logo {
        bottom: -76px; }
        .company-block .wrapper .video-preview .foto .logo .logo-inner {
          width: 120px;
          height: 120px;
          min-width: 120px;
          min-height: 120px;
          padding: 20px; }
    .company-block .wrapper .description {
      margin-bottom: 30px; }
    .company-block .wrapper .socials {
      margin-bottom: 50px; }
      .company-block .wrapper .socials .social span {
        display: none; }

  #foto-block-start .foto-block .wrapper {
    flex-direction: column-reverse;
    align-items: center; }
    #foto-block-start .foto-block .wrapper .text {
      width: 100%; }

  #footer-logo {
    margin-top: 15px;
    margin-bottom: 20px; }
    #footer-logo img {
      width: 200px; }

  input.form-control, select.form-control {
    height: 35px;
    font-size: 14px;
    padding: 0px 10px; }

  textarea.form-control {
    font-size: 14px;
    padding: 10px 10px; }

  input.input-image {
    padding-left: 35px !important;
    background-position: 5px center; }

  .full-form #zaawansowane {
    padding-top: 30px; }
  .full-form #find-real-estate {
    padding: 0 15px;
    width: 100%; }
  .full-form #find-real-estate-more .selecty1 .form-control {
    flex: 1 1 100%;
    margin-bottom: 15px; }
  .full-form #find-real-estate-more .selecty2 .form-control {
    flex: 1 1 35%;
    margin-bottom: 15px; }
  .full-form #find-real-estate-more .checkboxy .checkbox-label {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 10px; }
  .full-form .logo_consulting {
    margin-top: 30px; }
    .full-form .logo_consulting img {
      max-width: 50vw; }

  .real-estate-carousel {
    max-width: 450px; }
    .real-estate-carousel .foto {
      height: 185px; }
    .real-estate-carousel .owl-nav button.owl-prev {
      width: 40px;
      height: 40px;
      left: -5px;
      top: 85px; }
    .real-estate-carousel .owl-nav button.owl-next {
      width: 40px;
      height: 40px;
      right: -5px;
      top: 85px; }
    .real-estate-carousel .bottom-text {
      flex-wrap: wrap;
      padding-top: 5px; }
      .real-estate-carousel .bottom-text .rooms {
        padding-top: 15px; }
      .real-estate-carousel .bottom-text .price {
        padding-top: 15px; }

  #footer .bottom-menu .wrapper {
    height: 60px; }
  #footer .bottom-menu a {
    padding: 0 15px; }
  #footer .one-column {
    width: 100%; }
  #footer .contact a:before {
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin-right: 10px; }
  #footer .contact h3 {
    margin-bottom: 15px; }
  #footer .pages {
    margin-bottom: 20px; }
    #footer .pages .link {
      width: 50%;
      justify-content: flex-start; }
  #footer .inner {
    flex-wrap: wrap; }
  #footer .footer-bg {
    padding: 15px 10px; }
  #footer .copyright {
    flex-wrap: wrap;
    justify-content: center; }
    #footer .copyright p {
      margin-bottom: 5px; }
  #footer .author {
    font-size: 13px; }

  .double-block h2 {
    font-size: 160%; }
  .double-block .one-block {
    max-width: 100%;
    flex: 1 1 100%; }

  .offer-list .one-offer .one-offer-inner {
    padding: 15px;
    flex-direction: column; }
    .offer-list .one-offer .one-offer-inner .head {
      display: block; }
      .offer-list .one-offer .one-offer-inner .head .title-wrapper {
        display: block; }
        .offer-list .one-offer .one-offer-inner .head .title-wrapper a h2 {
          text-align: center; }
    .offer-list .one-offer .one-offer-inner .text .description p {
      font-size: 110%; }
    .offer-list .one-offer .one-offer-inner .text p strong {
      width: 78px; }
    .offer-list .one-offer .one-offer-inner .foto {
      margin-right: 0px;
      margin-bottom: 10px;
      position: relative;
      width: 100%;
      height: auto; }
      .offer-list .one-offer .one-offer-inner .foto img {
        width: 100%;
        max-width: 150px;
        object-fit: contain; }
      .offer-list .one-offer .one-offer-inner .foto .date {
        background-color: #005e8e;
        position: absolute;
        top: 0px;
        right: 0px;
        display: none !important; }
        .offer-list .one-offer .one-offer-inner .foto .date p {
          margin: 0;
          color: #fff;
          padding: 2px 10px; }
    .offer-list .one-offer .one-offer-inner .adress {
      margin-bottom: 10px; }

  .module-title {
    font-size: 150%;
    padding: 30px 0; }

  #last-review .inner {
    padding-top: 1px; }

  .review-list .one-review {
    padding: 10px; }
    .review-list .one-review .wrapper {
      align-items: flex-start; }
      .review-list .one-review .wrapper .foto {
        margin-right: 15px; }
    .review-list .one-review .foto img {
      width: 55px;
      height: 55px; }
    .review-list .one-review .review p {
      margin-bottom: 10px; }

  .text-block-more h2 {
    font-size: 150%; }
  .text-block-more .one-block {
    padding: 0; }
  .text-block-more ul {
    padding: 0 10px; }
  .text-block-more p:first-child {
    padding: 15px 10px;
    -webkit-line-clamp: 4; }
  .text-block-more .wrapper {
    padding-top: 50px;
    padding-bottom: 30px; }
  .text-block-more .buttons {
    display: flex;
    align-items: center;
    flex-direction: column; }
    .text-block-more .buttons .btn {
      padding: 11px 25px; }
      .text-block-more .buttons .btn:nth-child(2) {
        margin-left: 0;
        margin-top: 15px; }

  #serach-belt {
    margin-bottom: 30px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto; }
    #serach-belt .form-control {
      height: 48px; }

  #gazelle {
    padding: 15px;
    justify-content: center; }
    #gazelle img {
      height: auto;
      width: 33%;
      margin-left: 5px;
      margin-right: 5px; }

  #miniNav .page-nav li a {
    font-size: 15px; }
  #miniNav .inner {
    padding-top: 100px; }
  #miniNav .btn-close {
    top: 37px;
    right: 11px; }
    #miniNav .btn-close.sticked {
      top: 0px; }
  #miniNav .nav-logo img {
    width: 160px; }

  .steps-dots {
    padding-top: 45px; }
    .steps-dots .title {
      background-image: none;
      height: auto;
      margin-bottom: 20px; }
    .steps-dots .inner {
      flex-direction: column; }
      .steps-dots .inner .one-step .inside {
        width: 140px;
        height: 140px;
        border-width: 10px; }
        .steps-dots .inner .one-step .inside .number {
          font-size: 60px; }
        .steps-dots .inner .one-step .inside .circle {
          width: 60px;
          height: 60px;
          background-size: 40px;
          right: -13px;
          bottom: -18px; }
      .steps-dots .inner .arrow img {
        width: 35px;
        margin-top: 10px;
        margin-bottom: 20px;
        transform: rotate(90deg); }

  #title-block .inner {
    flex-direction: column; }
    #title-block .inner .photo {
      min-width: 100%; }
      #title-block .inner .photo img {
        max-width: 210px; }

  #foto-block-zastosowanie h2 {
    font-size: 200%; }

  .foto-block:nth-child(even) .wrapper {
    flex-direction: column-reverse; }
  .foto-block .wrapper {
    flex-direction: column-reverse; }
    .foto-block .wrapper .text {
      max-width: 100%; }
      .foto-block .wrapper .text .text-inner h1 {
        width: 100%;
        text-align: center; }
      .foto-block .wrapper .text .text-inner h3 {
        font-size: 160%; }
      .foto-block .wrapper .text .text-inner p {
        text-align: center;
        width: 100%;
        padding: 0 10px; }
      .foto-block .wrapper .text .text-inner .buttons .btn {
        padding: 8px 18px; }
  .foto-block.normal .wrapper .text .text-inner {
    padding-left: 15px; }
    .foto-block.normal .wrapper .text .text-inner h1 {
      font-size: 160%; }
    .foto-block.normal .wrapper .text .text-inner p {
      text-align: left;
      padding-left: 0; }

  #foto-block-why-szczecin .foto-block {
    padding-bottom: 0px; }
    #foto-block-why-szczecin .foto-block:nth-child(even) .wrapper {
      flex-direction: column-reverse; }
      #foto-block-why-szczecin .foto-block:nth-child(even) .wrapper .text .text-inner {
        padding-right: 0; }

  .company-videos .company-carousel .one-company .foto img {
    height: 50vw; }
  .company-videos .company-carousel .one-company .foto .play .btn-play {
    width: 50px;
    height: 50px; }
  .company-videos .company-carousel .one-company .wrapper .text h3 {
    font-size: 120%; }

  #application-block .wrapper {
    flex-direction: column; }
    #application-block .wrapper .text .text-inner {
      padding-left: 0;
      padding-top: 30px; }
      #application-block .wrapper .text .text-inner h1 {
        width: 100%; }
      #application-block .wrapper .text .text-inner p {
        text-align: center;
        width: 100%;
        padding: 0 10px; }

  #applicationForm form .form-group input[type="text"], #applicationForm form .form-group input[type=email], #applicationForm form .form-group select {
    min-height: 40px; }
  #applicationForm form .btn {
    margin: 0 auto;
    display: block; }

  #form-block .inner {
    flex-direction: column; }
    #form-block .inner .text .wrapper {
      flex-wrap: wrap; }
      #form-block .inner .text .wrapper .one-box {
        flex: 1 1 100%; }
    #form-block .inner #applicationForm {
      display: flex;
      justify-content: center; }
      #form-block .inner #applicationForm form {
        float: none;
        padding-top: 0; }
        #form-block .inner #applicationForm form h2 {
          padding-top: 0px; }

  #workers .wrapper .one-worker .inner {
    padding: 20px 38px; }
    #workers .wrapper .one-worker .inner .foto {
      width: 200px;
      height: 200px; }

  #foto-block-consulting {
    padding-top: 0; }
    #foto-block-consulting .wrapper {
      flex-direction: column; }
    #foto-block-consulting .foto {
      display: flex;
      justify-content: flex-end; }
      #foto-block-consulting .foto img {
        max-width: 50%; }
    #foto-block-consulting .text-inner {
      width: 100%;
      background-image: none; }
    #foto-block-consulting .text {
      padding-bottom: 0; }

  #consulting-services-carousel .news-carousel-services .title-carousel-services h2 {
    margin-bottom: 20px; }
  #consulting-services-carousel .news-carousel-services .owl-nav button.owl-prev {
    top: -54px;
    left: calc(50% - 140px); }
    #consulting-services-carousel .news-carousel-services .owl-nav button.owl-prev img {
      width: 12px;
      height: auto; }
    #consulting-services-carousel .news-carousel-services .owl-nav button.owl-prev:hover:not(.disabled) img {
      width: 20px;
      height: 20px; }
  #consulting-services-carousel .news-carousel-services .owl-nav button.owl-next {
    top: -54px;
    right: calc(50% - 140px); }
    #consulting-services-carousel .news-carousel-services .owl-nav button.owl-next img {
      width: 12px;
      height: auto; }
    #consulting-services-carousel .news-carousel-services .owl-nav button.owl-next:hover:not(.disabled) img {
      width: 20px;
      height: 20px; }

  #contact-block h2 {
    font-size: 160%;
    margin-bottom: 15px;
    margin-top: 20px; }
  #contact-block .text {
    margin-bottom: 15px; }
    #contact-block .text h2 {
      margin-top: 0; }
    #contact-block .text p {
      font-size: 110%; }

  #contact-form form {
    font-size: 90%;
    padding: 0; }
    #contact-form form .form-group input[type="text"], #contact-form form .form-group input[type=email], #contact-form form .form-group select {
      min-height: 40px; }
    #contact-form form .btn {
      margin: 0 auto;
      display: block; }

  .box {
    padding: 30px 15px; }

  .subsite p, .subsite ul, .subsite ol, .subsite a {
    font-size: 90%; }
  .subsite h1, .subsite h2 {
    margin-bottom: 20px; }
  .subsite h2 {
    font-size: 150%; }
  .subsite h3 {
    font-size: 130%; }
  .subsite .subsite-content {
    column-count: 1;
    margin-bottom: 0 !important; }
  .subsite .title-inner {
    background-position: bottom center; }
  .subsite .big-paragraf {
    font-size: 100%; }

  #subpage-title {
    padding: 40px 10px;
    letter-spacing: 2px;
    font-size: 200%;
    height: auto; }

  .acr-slide .card .card-header h5 .btn-link {
    font-size: 100%;
    padding: 5px 30px 5px 15px; }

  #search-job h3 {
    font-size: 1.1rem; }
  #search-job form .form-control {
    font-size: 110%; }
  #search-job form .inner {
    flex-direction: column;
    align-items: center; }
  #search-job form input[type="text"] {
    width: 90vw;
    height: 110%; }
  #search-job form .btn {
    font-size: 110%;
    padding: 6px 20px;
    margin-top: 15px; }
  #search-job form .btn-green {
    padding: 8px 30px; }

  #news-tile .one-news {
    margin-bottom: 20px; }
    #news-tile .one-news .foto img {
      height: auto;
      max-height: 300px; }
    #news-tile .one-news .wrapper {
      flex-direction: column; }
      #news-tile .one-news .wrapper .text h3 {
        font-size: 110%; } }
@media (min-width: 576px) and (max-width: 767px) {
  header.sticked {
    transform: translateY(0px); }

  #logo img {
    max-width: 108px; }

  #full-form-sprzedaj #find-real-estate-more .selecty1 .form-control {
    flex: 1 1 30%; }
    #full-form-sprzedaj #find-real-estate-more .selecty1 .form-control:nth-child(3) {
      margin-bottom: 0; }
  #full-form-sprzedaj #find-real-estate-more .selecty2 .form-control {
    margin-right: 0; }
    #full-form-sprzedaj #find-real-estate-more .selecty2 .form-control:last-child {
      margin-right: 20px; }

  body {
    font-size: 75%; }
    body ul li {
      margin-bottom: 10px; }
      body ul li:before {
        width: 20px;
        min-width: 20px;
        height: 20px;
        margin-right: 10px;
        background-size: 12px; }

  #foto-block-full-img .wrapper {
    min-height: 350px;
    flex-direction: row; }
  #foto-block-full-img .foto img {
    object-position: calc(50vw - 500px) center; }
  #foto-block-full-img .text .text-inner {
    width: 280px; }

  .gallery-carousel-master .one-foto .foto {
    height: 30vw; }
  .gallery-carousel-master .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px); }
  .gallery-carousel-master .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px); }

  #workers .wrapper .one-worker .inner {
    padding: 20px 38px; }

  #foto-block-consulting {
    padding-top: 0; }
    #foto-block-consulting .wrapper {
      flex-direction: column; }
    #foto-block-consulting .foto {
      display: flex;
      justify-content: flex-end; }
      #foto-block-consulting .foto img {
        max-width: 50%; }
    #foto-block-consulting .text-inner {
      width: 100%;
      background-image: none; }
    #foto-block-consulting .text {
      padding-bottom: 0; }

  #consulting-services-carousel .news-carousel-services .owl-nav button.owl-prev {
    top: -107px;
    left: calc(50% - 200px); }
  #consulting-services-carousel .news-carousel-services .owl-nav button.owl-next {
    top: -107px;
    right: calc(50% - 200px); }

  #simple-real-estate .property p {
    text-align: center; }
  #simple-real-estate .tags .tag {
    margin-bottom: 15px; }

  #contact-info .address {
    padding-left: 0;
    padding-bottom: 70px;
    height: fit-content;
    height: -moz-fit-content;
    background-position: bottom center;
    background-size: 50px; }

  input.input-image {
    padding-left: 35px !important;
    background-position: 5px center; }

  #find-real-estate-more .selecty1 .form-control {
    flex: 1 1 20%; }
    #find-real-estate-more .selecty1 .form-control:nth-child(1), #find-real-estate-more .selecty1 .form-control:nth-child(2), #find-real-estate-more .selecty1 .form-control:nth-child(3) {
      margin-bottom: 20px; }
  #find-real-estate-more .selecty2 .form-control {
    flex: 1 1 20%; }
  #find-real-estate-more .checkboxy .checkbox-label {
    flex: 0 0 29%; }

  input.form-control, select.form-control {
    height: 40px;
    font-size: 15px;
    padding: 0px 10px; }

  textarea.form-control {
    font-size: 15px;
    padding: 10px 10px; }

  select.form-control {
    padding-right: 0; }

  .btn-primary {
    padding: 10px 35px; }

  .btn-secondary {
    padding: 10px 35px; }

  main {
    padding-top: 61px;
    min-height: calc(100vh - 129px); }

  .paralax_group {
    font-size: 80%; }
    .paralax_group .wrapper {
      padding-top: 61px;
      flex-direction: column-reverse; }
      .paralax_group .wrapper .text {
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        width: 100%;
        justify-content: center; }
        .paralax_group .wrapper .text .text-inner {
          width: 540px;
          padding-left: 15px; }
        .paralax_group .wrapper .text ul {
          padding-left: 0; }
          .paralax_group .wrapper .text ul li {
            margin-bottom: 10px; }
            .paralax_group .wrapper .text ul li:before {
              width: 30px;
              min-width: 30px;
              height: 30px;
              margin-right: 10px; }
        .paralax_group .wrapper .text .buttons .btn {
          padding: 11px 25px; }
      .paralax_group .wrapper .owl-carousel {
        width: 100%; }

  .uslugi-three-columns .one-element {
    padding: 0 10px; }
    .uslugi-three-columns .one-element .foto {
      width: 240px;
      height: 240px; }
    .uslugi-three-columns .one-element .text {
      top: -60px; }
    .uslugi-three-columns .one-element:nth-child(3n) {
      padding-right: 10px; }

  #three-columns .one-element .one-element-inner .element-img span {
    height: 250px; }

  .simple-steps .one-step {
    width: 50%; }
  .simple-steps .foto img {
    max-height: 150px; }

  #foto-block-start .foto-logo img {
    width: 60%; }

  #miniNav .page-nav li a {
    padding: 15px 10px;
    font-size: 16px; }
  #miniNav .inner ul {
    width: 100%;
    align-items: flex-start;
    max-width: 500px; }

  .page-nav li a {
    padding: 30px 30px; }

  #main-menu {
    margin-left: auto;
    width: auto; }

  #main-nav .bg-block {
    width: calc((100vw + 250px) / 2); }
  #main-nav .inner {
    padding: 5px 0; }

  .bread ul.breadcrumb {
    height: auto; }
    .bread ul.breadcrumb li {
      font-size: 13px; }
      .bread ul.breadcrumb li a {
        font-size: 13px; }
      .bread ul.breadcrumb li .arrow {
        width: 8px;
        height: 8px;
        margin: 0 5px; }
      .bread ul.breadcrumb li .home img {
        width: 17px; }

  .left-sidebar ul li {
    width: 45px; }
    .left-sidebar ul li a {
      padding: 10px; }
    .left-sidebar ul li:hover {
      width: 60px; }

  #layerslider {
    height: 420px; }
    #layerslider .ls-layer .slider-bg .container {
      max-width: 100%; }
    #layerslider .ls-layer .slider-bg .wrapper .text {
      padding: 20px 20px 20px calc(50vw - 255px); }
      #layerslider .ls-layer .slider-bg .wrapper .text .play .btn-play {
        border: 4px solid #fff;
        width: 60px;
        height: 60px; }
      #layerslider .ls-layer .slider-bg .wrapper .text .text-inner p {
        font-size: 100%;
        line-height: 1rem; }
    #layerslider .ls-layer .slider-bg .wrapper ul li {
      margin-bottom: 20px; }
      #layerslider .ls-layer .slider-bg .wrapper ul li:before {
        background-size: 12px; }

  #last-offers .module-title {
    font-size: 150%; }

  #realizacje .wrapper {
    flex-direction: column; }
  #realizacje .one-element {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4vw; }
  #realizacje .foto {
    width: 35%; }
  #realizacje .text {
    width: 60%; }

  #big-slider .inner {
    padding-left: 0; }
  #big-slider .special-wrapper {
    align-items: flex-end;
    left: 0; }
    #big-slider .special-wrapper .special-container {
      width: 100%;
      padding: 20px 30px;
      margin: 0; }
      #big-slider .special-wrapper .special-container h2 {
        font-size: 140%; }
      #big-slider .special-wrapper .special-container p {
        font-size: 100%;
        margin-bottom: 15px; }

  .news-carousel .one-news .wrapper .text {
    padding: 10px; }
  .news-carousel .one-news .wrapper .date {
    font-size: 120%;
    min-width: 65px; }
  .news-carousel .one-news .wrapper h3 {
    font-size: 110%; }
  .news-carousel .one-news .wrapper p {
    font-size: 100%;
    text-align: left; }
  .news-carousel .one-news img {
    height: 220px; }

  .news-carousel-master .one-news img {
    height: 160px; }
  .news-carousel-master .owl-nav button.owl-next {
    right: -25px;
    background-color: white; }
  .news-carousel-master .owl-nav button.owl-prev {
    left: -25px;
    background-color: white; }

  #footer .copyright {
    order: 2; }
  #footer .linki {
    padding-top: 20px;
    order: 1;
    width: 100%; }
  #footer .author {
    order: 3; }
  #footer .bottom-menu a {
    padding: 0 15px; }
  #footer .bottom-menu .wrapper {
    height: 70px; }
  #footer .bottom-menu a {
    padding: 0 15px; }
  #footer .logo-column {
    width: 50%;
    order: 1; }
  #footer .contact {
    width: 50%;
    order: 4;
    padding-left: 0; }
    #footer .contact a:before {
      width: 30px;
      min-width: 30px;
      height: 30px;
      margin-right: 10px; }
  #footer .pages {
    width: 50%;
    padding-left: 20px;
    order: 3; }
    #footer .pages .link {
      width: 33%; }
  #footer .inner {
    flex-wrap: wrap; }
  #footer .socials {
    order: 2;
    width: 50%; }
  #footer .copyright {
    flex-direction: column; }
    #footer .copyright p {
      margin-bottom: 5px; }
  #footer .author {
    font-size: 13px;
    padding: 20px 0; }

  .real-estate-carousel .owl-nav button.owl-prev {
    top: 130px; }
  .real-estate-carousel .owl-nav button.owl-next {
    top: 130px; }

  .double-block h2 {
    font-size: 160%; }
  .double-block .one-block {
    max-width: 100%;
    flex: 1 1 100%; }

  .text-block-more .buttons .btn {
    padding: 15px 30px; }

  .offer-list .one-offer {
    font-size: 78%;
    padding: 15px; }
    .offer-list .one-offer .text p strong {
      width: 78px; }
    .offer-list .one-offer .foto {
      width: 180px;
      margin-right: 15px; }
      .offer-list .one-offer .foto img {
        max-height: 125px; }
    .offer-list .one-offer .adress {
      margin-bottom: 10px; }

  .module-title {
    font-size: 150%; }

  .review-list .one-review .wrapper .foto {
    margin-right: 15px; }
  .review-list .one-review .foto img {
    width: 105px;
    height: 105px; }
  .review-list .one-review .review p {
    margin-bottom: 10px; }

  #gazelle {
    justify-content: center; }
    #gazelle img {
      height: 55px;
      margin-left: 5px;
      margin-right: 5px; }

  .steps-dots {
    padding-top: 45px; }
    .steps-dots .title {
      background-image: none;
      height: auto;
      margin-bottom: 20px; }
    .steps-dots .inner {
      flex-direction: column; }
      .steps-dots .inner .one-step .inside {
        width: 140px;
        height: 140px;
        border-width: 10px; }
        .steps-dots .inner .one-step .inside .number {
          font-size: 60px; }
        .steps-dots .inner .one-step .inside .circle {
          width: 60px;
          height: 60px;
          background-size: 40px;
          right: -13px;
          bottom: -18px; }
      .steps-dots .inner .arrow img {
        width: 35px;
        margin-top: 10px;
        margin-bottom: 20px;
        transform: rotate(90deg); }

  #title-block .inner {
    flex-direction: column; }
    #title-block .inner .photo {
      min-width: 100%;
      max-width: 100%; }

  .foto-block:nth-child(even) .wrapper {
    flex-direction: column-reverse; }
  .foto-block .wrapper {
    flex-direction: column-reverse; }
    .foto-block .wrapper .foto {
      margin-bottom: 0px; }
    .foto-block .wrapper .text {
      max-width: 100%; }
      .foto-block .wrapper .text .text-inner {
        padding-left: 15px; }
        .foto-block .wrapper .text .text-inner .buttons {
          justify-content: center; }
        .foto-block .wrapper .text .text-inner h1 {
          width: 100%;
          text-align: center; }
        .foto-block .wrapper .text .text-inner p {
          text-align: center;
          width: 100%;
          padding: 0 10px; }
        .foto-block .wrapper .text .text-inner .buttons .btn {
          padding: 11px 25px; }
  .foto-block.normal .wrapper .text .text-inner h1 {
    font-size: 200%; }
  .foto-block.normal .wrapper .text .text-inner p {
    text-align: left;
    padding-left: 0; }

  #application-block .wrapper {
    flex-direction: column; }
    #application-block .wrapper .text .text-inner {
      padding-left: 0;
      padding-top: 30px; }
      #application-block .wrapper .text .text-inner h1 {
        width: 100%; }
      #application-block .wrapper .text .text-inner p {
        text-align: center;
        width: 100%;
        padding: 0 10px; }
    #application-block .wrapper form .btn {
      margin: 0 auto;
      display: block; }

  #form-block .inner {
    flex-direction: column; }
    #form-block .inner .text .wrapper {
      flex-wrap: wrap; }
      #form-block .inner .text .wrapper .one-box {
        flex: 1 1 100%; }
    #form-block .inner #applicationForm {
      display: flex;
      justify-content: center; }
      #form-block .inner #applicationForm form {
        float: none; }
        #form-block .inner #applicationForm form h2 {
          padding-top: 0px; }

  #contact-block h2 {
    font-size: 1.7rem; }
  #contact-block .text {
    margin-bottom: 15px; }
    #contact-block .text p {
      font-size: 1.2em; }

  .box {
    padding: 30px 15px; }

  .subsite h1, .subsite h2 {
    margin-bottom: 20px;
    font-size: 220%; }
  .subsite h2 {
    font-size: 180%; }
  .subsite h3 {
    font-size: 170%; }
  .subsite .subsite-content {
    column-count: 1;
    font-size: 75%; }
  .subsite .big-paragraf {
    font-size: 120%; }

  #subsite-foto-block .subsite-text {
    padding-right: 15px; }
  #subsite-foto-block .subsite-foto img {
    width: 100%;
    height: auto; }

  .company-block .wrapper .video-preview {
    padding-bottom: 80px; }
    .company-block .wrapper .video-preview .foto .play .btn-play {
      width: 50px;
      height: 50px; }
    .company-block .wrapper .video-preview .foto .logo {
      bottom: -76px; }
      .company-block .wrapper .video-preview .foto .logo .logo-inner {
        width: 150px;
        height: 150px;
        min-width: 150px;
        min-height: 150px;
        padding: 20px; }
  .company-block .wrapper .description {
    margin-bottom: 40px; }
  .company-block .wrapper .socials {
    flex-direction: column;
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto;
    margin-bottom: 40px; }
    .company-block .wrapper .socials .social {
      margin-bottom: 15px; }

  #questions #start-faq #accordion .card {
    font-size: 80%; }
    #questions #start-faq #accordion .card .btn {
      font-size: 85%; }

  #search-job h3 {
    font-size: 1.2rem; }
  #search-job form input[type="text"] {
    width: 300px;
    height: 40px;
    font-size: 0.9rem; }
  #search-job form .btn {
    font-size: 108%;
    padding: 6px 40px; }

  #news-tile .one-news .foto img {
    height: 220px; }
  #news-tile .one-news .wrapper {
    flex-direction: column; }

  .company-videos .company-carousel .one-company .foto img {
    height: 27vw; }
  .company-videos .company-carousel .one-company .foto .play .btn-play {
    width: 60px;
    height: 60px; }
  .company-videos .company-carousel .one-company .wrapper .text h3 {
    font-size: 140%; } }
@media (min-width: 768px) and (max-width: 991px) {
  header.sticked {
    transform: translateY(0px); }

  #logo img {
    max-width: 148px; }

  body {
    font-size: 80%; }

  #workers .wrapper .one-worker .inner {
    padding: 40px 38px; }

  #foto-block-full-img .wrapper {
    min-height: 320px; }

  #foto-block-consulting .foto {
    padding-left: 30px; }
  #foto-block-consulting .text-inner {
    width: 450px; }

  #consulting-services-carousel .news-carousel-services .owl-nav button.owl-prev {
    top: -107px;
    left: calc(50% - 200px); }
  #consulting-services-carousel .news-carousel-services .owl-nav button.owl-next {
    top: -107px;
    right: calc(50% - 200px); }

  #contact-info .address {
    padding-left: 75px; }

  main {
    padding-top: 80px;
    min-height: calc(100vh - 129px); }

  .paralax_group {
    font-size: 75%; }
    .paralax_group .wrapper {
      padding-top: 84px; }
      .paralax_group .wrapper .text .text-inner {
        width: 345px; }
      .paralax_group .wrapper .text ul {
        padding-left: 0; }
        .paralax_group .wrapper .text ul li {
          margin-bottom: 10px; }
          .paralax_group .wrapper .text ul li:before {
            width: 30px;
            min-width: 30px;
            height: 30px;
            margin-right: 10px; }
      .paralax_group .wrapper .buttons .btn {
        padding: 11px 25px; }

  .simple-steps .one-step {
    width: 50%; }
  .simple-steps .foto img {
    max-height: 200px; }

  .uslugi-three-columns .one-element .foto {
    width: 280px;
    height: 280px; }

  #miniNav .inner .page-nav {
    width: 100%;
    align-items: flex-start;
    max-width: 690px; }

  .page-nav li a {
    padding: 25px 10px; }

  #main-nav .bg-block {
    width: calc((100vw + 100px) / 2); }
  #main-nav .inner {
    padding: 5px 0; }

  #main-menu {
    margin-left: auto;
    width: auto; }

  .real-estate-carousel .owl-nav button.owl-prev {
    top: 105px; }
  .real-estate-carousel .owl-nav button.owl-next {
    top: 105px; }

  #news-real-estate .container {
    max-width: 100%; }
  #news-real-estate .owl-item {
    padding: 10px; }
  #news-real-estate .one-element {
    box-shadow: 5px 5px 5px 2px #ddd; }
  #news-real-estate .bottom-text {
    flex-direction: column;
    align-items: flex-start; }
  #news-real-estate .price {
    margin-top: 15px; }
  #news-real-estate .foto {
    height: 230px; }

  #layerslider {
    height: 500px; }
    #layerslider .ls-layer .slider-bg .wrapper h2 {
      font-size: 200%; }
    #layerslider .ls-layer .slider-bg .wrapper ul li {
      margin-bottom: 20px; }
      #layerslider .ls-layer .slider-bg .wrapper ul li:before {
        width: 20px;
        min-width: 20px;
        height: 20px;
        background-size: 12px; }
    #layerslider .ls-layer .slider-bg .wrapper .text {
      padding: 30px 30px 30px calc(50vw - 345px); }
      #layerslider .ls-layer .slider-bg .wrapper .text .text-inner p {
        font-size: 100%; }

  .left-sidebar ul li {
    width: 55px; }
    .left-sidebar ul li a {
      padding: 15px; }
    .left-sidebar ul li:hover {
      width: 80px; }

  #big-slider .special-wrapper .special-container h2 {
    font-size: 220%; }
  #big-slider .special-wrapper .special-container p {
    font-size: 125%; }

  .bread ul.breadcrumb {
    height: 60px; }

  .company-videos .company-carousel .one-company .foto img {
    height: 20vw; }
  .company-videos .company-carousel .one-company .foto .play .btn-play {
    width: 60px;
    height: 60px; }
  .company-videos .company-carousel .one-company .wrapper .text h3 {
    font-size: 140%; }

  .news-carousel .one-news .wrapper .text {
    padding: 10px; }
  .news-carousel .one-news .wrapper .date {
    font-size: 120%;
    min-width: 65px; }
  .news-carousel .one-news .wrapper h3 {
    font-size: 110%; }
  .news-carousel .one-news .wrapper p {
    font-size: 100%;
    text-align: left; }
  .news-carousel .one-news .foto img {
    height: 220px; }

  .news-carousel-master .owl-nav button.owl-next {
    right: -25px;
    background-color: white; }
  .news-carousel-master .owl-nav button.owl-prev {
    left: -25px;
    background-color: white; }

  #footer .copyright {
    order: 2; }
  #footer .linki {
    padding-top: 20px;
    order: 1;
    width: 100%; }
  #footer .author {
    order: 3; }
  #footer .bottom-menu a {
    padding: 0 15px; }
  #footer .pages {
    padding-left: 30px; }
    #footer .pages .link {
      width: 25%; }
  #footer .inner {
    flex-wrap: wrap; }
  #footer .one-column {
    width: 33%; }

  select.form-control, .form-group input[type="text"], input[type="email"] {
    padding: 0px 10px;
    margin: 0 10px;
    height: 40px;
    font-size: 14px; }

  textarea.form-control {
    padding: 10px 10px;
    font-size: 14px; }

  .form-group-find input[type="text"] {
    padding-left: 45px; }

  .double-block .one-block {
    max-width: 100%;
    flex: 1 1 100%; }

  .offer-list .one-offer {
    font-size: 85%; }
    .offer-list .one-offer .text p strong {
      width: 84px; }
    .offer-list .one-offer .foto {
      width: 180px; }
      .offer-list .one-offer .foto img {
        max-height: 125px; }

  .gallery-carousel-master .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px); }
  .gallery-carousel-master .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px); }

  .review-list .one-review {
    font-size: 85%; }
    .review-list .one-review .foto img {
      width: 105px;
      height: 105px; }
    .review-list .one-review .review p {
      margin-bottom: 10px; }

  #last-offers .module-title {
    font-size: 200%; }

  .steps-dots {
    padding-top: 45px; }
    .steps-dots .title {
      background-image: none;
      height: auto;
      margin-bottom: 20px; }
    .steps-dots .inner {
      flex-direction: column; }
      .steps-dots .inner .one-step .inside {
        width: 140px;
        height: 140px;
        border-width: 10px; }
        .steps-dots .inner .one-step .inside .number {
          font-size: 60px; }
        .steps-dots .inner .one-step .inside .circle {
          width: 60px;
          height: 60px;
          background-size: 40px;
          right: -13px;
          bottom: -18px; }
      .steps-dots .inner .arrow img {
        width: 35px;
        margin-top: 10px;
        margin-bottom: 20px;
        transform: rotate(90deg); }

  #title-block .inner {
    flex-direction: column; }
    #title-block .inner .photo {
      min-width: 100%;
      max-width: 100%; }

  .foto-block:nth-child(even) .wrapper {
    flex-direction: column-reverse; }
  .foto-block .wrapper .text {
    max-width: 100%; }
    .foto-block .wrapper .text .text-inner {
      width: 100%; }
      .foto-block .wrapper .text .text-inner .buttons {
        justify-content: center; }
      .foto-block .wrapper .text .text-inner h1 {
        text-align: center; }
      .foto-block .wrapper .text .text-inner p {
        text-align: center; }
  .foto-block.normal .wrapper {
    flex-direction: column-reverse; }
    .foto-block.normal .wrapper .text .text-inner p {
      text-align: left; }

  #realizacje .wrapper {
    flex-direction: column; }
  #realizacje .one-element {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4vw; }
  #realizacje .foto {
    width: 35%; }
  #realizacje .text {
    width: 60%; }

  #doradcy .wrapper {
    flex-direction: column; }
  #doradcy .one-element {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 4vw auto; }

  #application-block .wrapper {
    flex-direction: column; }
    #application-block .wrapper .text {
      font-size: 70%; }
      #application-block .wrapper .text .text-inner {
        padding-left: 0;
        padding-top: 30px; }
        #application-block .wrapper .text .text-inner h1 {
          width: 100%; }
        #application-block .wrapper .text .text-inner p {
          text-align: center;
          width: 100%;
          padding: 0 10px; }
    #application-block .wrapper form .btn {
      margin: 0 auto;
      display: block; }

  #form-block .inner {
    flex-direction: column; }
    #form-block .inner .text .wrapper {
      flex-wrap: wrap; }
      #form-block .inner .text .wrapper .one-box {
        flex: 1 1 100%; }
    #form-block .inner #applicationForm {
      display: flex;
      justify-content: center; }
      #form-block .inner #applicationForm form {
        float: none; }
        #form-block .inner #applicationForm form h2 {
          padding-top: 0px; }

  #questions #start-faq #accordion .card {
    font-size: 85%; }
    #questions #start-faq #accordion .card .btn {
      font-size: 90%; }

  #contact-block .info-block {
    margin-bottom: 4vw; }
  #contact-block h2 {
    font-size: 1.8rem; }
  #contact-block .text {
    margin-bottom: 15px; }
    #contact-block .text p {
      font-size: 1.3em; }

  .box {
    padding: 30px 15px; }

  .subsite {
    font-size: 95%; }
    .subsite h1, .subsite h2 {
      margin-bottom: 20px; }
    .subsite h2 {
      font-size: 180%; }
    .subsite h3 {
      font-size: 170%; }

  .company-block .wrapper .video-preview {
    padding-bottom: 120px; }
    .company-block .wrapper .video-preview .foto .logo {
      bottom: -90px; }
      .company-block .wrapper .video-preview .foto .logo .logo-inner {
        min-width: 180px;
        max-width: 180px;
        max-height: 180px;
        min-height: 180px;
        padding: 30px; }
  .company-block .wrapper .description {
    margin-bottom: 50px; }
  .company-block .wrapper .socials {
    flex-direction: column;
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto;
    margin-bottom: 50px; }
    .company-block .wrapper .socials .social {
      margin-bottom: 15px; } }
@media (min-width: 992px) and (max-width: 1199px) {
  header.sticked {
    transform: translateY(0px); }

  body {
    font-size: 80%; }

  #zalety .foto {
    min-width: 220px;
    width: 220px;
    height: 220px; }

  #full-contact-block .info-block a span {
    background-size: 20px;
    min-width: 36px;
    width: 36px;
    height: 36px; }

  #workers .wrapper .one-worker .inner {
    padding: 40px 38px; }

  #foto-block-consulting .pion-line {
    left: calc(50% - 485px); }
  #foto-block-consulting .text-inner {
    width: 500px; }

  #consulting-services-carousel .news-carousel-services .owl-nav button.owl-prev {
    top: -110px; }
  #consulting-services-carousel .news-carousel-services .owl-nav button.owl-next {
    top: -110px; }

  main {
    padding-top: 104px; }

  #miniNav {
    height: auto;
    bottom: unset;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4); }
    #miniNav .inner {
      padding-bottom: 0; }
      #miniNav .inner ul {
        margin-bottom: 0; }

  .page-nav li a {
    padding: 30px 15px;
    font-size: 100%; }

  #logo img {
    max-width: 200px; }

  #main-nav .bg-block {
    width: calc((100vw - 270px) / 2); }
  #main-nav .inner {
    padding: 5px 0; }
    #main-nav .inner #logo .motto {
      font-size: 90%; }

  .paralax_group .wrapper {
    padding-top: 145px; }
    .paralax_group .wrapper .text .text-inner {
      width: 465px; }
    .paralax_group .wrapper .buttons .btn {
      padding: 15px 32px; }

  #layerslider {
    height: 558px; }
    #layerslider .ls-layer .slider-bg .wrapper .text {
      padding: 40px 50px 40px calc(50vw - 460px); }
    #layerslider .ls-layer .slider-bg .wrapper ul li {
      margin-bottom: 20px; }
      #layerslider .ls-layer .slider-bg .wrapper ul li:before {
        background-size: 16px; }

  .text-block-more .buttons .btn {
    padding: 16px 25px; }

  .steps-dots .title {
    height: 110px;
    background-position: left 105px top 7px, right 105px top 7px; }
    .steps-dots .title h2 {
      max-width: 530px; }
  .steps-dots .one-step h3 {
    font-size: 118%; }
  .steps-dots .one-step .text {
    padding: 0 5px; }
  .steps-dots .one-step .inside {
    width: 200px;
    height: 200px; }

  .bread ul.breadcrumb {
    height: 60px; }

  #big-slider .special-wrapper .special-container h2 {
    font-size: 250%; }
  #big-slider .special-wrapper .special-container p {
    font-size: 145%; }

  .uslugi-three-columns .one-element img {
    height: 200px; }

  .company-videos .company-carousel .one-company .foto img {
    height: 20vw; }

  .news-carousel .one-news .wrapper .text {
    padding: 10px; }
  .news-carousel .one-news .wrapper .date {
    font-size: 120%;
    min-width: 65px; }
  .news-carousel .one-news .wrapper h3 {
    font-size: 110%; }
  .news-carousel .one-news .wrapper p {
    font-size: 100%;
    text-align: left; }
  .news-carousel .one-news .foto img {
    height: 220px; }

  .news-carousel-master .owl-nav button.owl-next {
    right: -25px;
    background-color: white; }
  .news-carousel-master .owl-nav button.owl-prev {
    left: -25px;
    background-color: white; }

  #footer {
    font-size: 95%; }
    #footer .copyright {
      order: 2; }
    #footer .linki {
      padding-top: 20px;
      order: 1;
      width: 100%; }
    #footer .author {
      order: 3; }

  #title-block .inner .text {
    font-size: 90%; }

  #steps .title h2 {
    font-size: 36px;
    padding-bottom: 42px;
    background-size: 92px;
    background-position: left 96px top 18px, right 96px top 18px; }
  #steps .inner .one-step .inside {
    width: 140px;
    height: 140px;
    border-width: 10px; }
    #steps .inner .one-step .inside .number {
      font-size: 60px; }
    #steps .inner .one-step .inside .circle {
      width: 60px;
      height: 60px;
      background-size: 40px;
      right: -13px;
      bottom: -18px; }
  #steps .inner .one-step .text p {
    font-size: 18px; }
  #steps .inner .arrow img {
    width: 35px;
    margin-top: 50px; }

  #title-block .inner .photo {
    min-width: 50%;
    max-width: 50%; }

  .foto-block .wrapper .text .text-inner {
    width: 465px;
    padding-right: 15px; }
  .foto-block .wrapper .foto-block-pause {
    min-width: 60px; }
  .foto-block .footer-foto-block .dot-foto-block {
    width: 60px;
    height: 60px; }
  .foto-block.normal .wrapper .text .text-inner {
    padding-top: 20px; }

  #application-block .wrapper .text {
    font-size: 75%; }
    #application-block .wrapper .text .text-inner {
      justify-content: flex-start;
      padding-top: 50px; }
      #application-block .wrapper .text .text-inner p {
        padding: 0% 20% 0% 0%; }
  #application-block .wrapper .form-block-pause {
    min-width: 60px; }
  #application-block .footer-form-block .dot-form-block {
    width: 60px;
    height: 60px; }

  .company-block .wrapper .description {
    margin-bottom: 50px; }
  .company-block .wrapper .socials {
    flex-direction: column;
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto;
    margin-bottom: 50px; }
    .company-block .wrapper .socials .social {
      margin-bottom: 15px; }

  #form-block .inner {
    font-size: 90%; }
    #form-block .inner #applicationForm form h2 {
      padding-top: 5px; }

  #questions #start-faq #accordion .card {
    font-size: 90%; }
    #questions #start-faq #accordion .card .btn {
      font-size: 100%; }

  .box {
    padding: 30px 15px; }

  .subsite {
    font-size: 95%; }
    .subsite h1, .subsite h2 {
      margin-bottom: 20px; } }
@media (min-width: 1200px) and (max-width: 1599px) {
  body {
    font-size: 95%; }
    body ul li:before {
      margin-top: 3px; }

  header.sticked {
    transform: translateY(0px); }

  main {
    padding-top: 128px; }

  #workers .wrapper .one-worker .inner {
    padding: 40px 38px; }

  #foto-block-consulting .pion-line {
    left: calc(50% - 570px); }
  #foto-block-consulting .text-inner {
    width: 600px; }

  .box {
    padding: 40px 30px; }

  #main-menu .menu-button {
    margin-left: 5px;
    margin-right: 20px; }
  #main-menu .btn-blue {
    padding: 6px 22px; }

  #main-nav .bg-block {
    width: calc((100vw - 390px) / 2); }

  .language a {
    padding: 3px 8px; }

  .simple-steps {
    font-size: 90%; }

  #layerslider {
    height: 600px; }
    #layerslider .ls-layer .slider-bg {
      background-size: auto 110%; }
      #layerslider .ls-layer .slider-bg .wrapper .text {
        padding: 40px 50px 40px calc(50vw - 555px); }

  #big-slider .special-wrapper .special-container h2 {
    font-size: 250%; }
  #big-slider .special-wrapper .special-container p {
    font-size: 145%; }

  .steps-dots .title {
    background-position: left 125px top 10px, right 125px top 10px; }
    .steps-dots .title h2 {
      max-width: 670px; }
  .steps-dots .one-step h3 {
    font-size: 120%; }
  .steps-dots .one-step .text {
    padding: 0 5px; }

  .text-block-more h2 {
    font-size: 145%; }
  .text-block-more p:first-child {
    padding: 15px 10px; }
  .text-block-more .buttons .btn {
    padding: 15px 40px; }

  .news-carousel .one-news .wrapper .text {
    padding: 10px; }
  .news-carousel .one-news .wrapper .date {
    font-size: 120%;
    min-width: 65px; }
  .news-carousel .one-news .wrapper h3 {
    letter-spacing: 0; }
  .news-carousel .one-news img {
    height: 260px; }

  .news-carousel-master .owl-nav button.owl-next {
    right: -25px;
    background-color: white; }
  .news-carousel-master .owl-nav button.owl-prev {
    left: -25px;
    background-color: white; }

  #steps .title h2 {
    padding-bottom: 42px;
    background-size: 92px;
    background-position: left 108px top 30px, right 108px top 30px; }
  #steps .inner .one-step .inside {
    width: 200px;
    height: 200px;
    border-width: 15px; }
    #steps .inner .one-step .inside .number {
      font-size: 92px; }
    #steps .inner .one-step .inside .circle {
      width: 80px;
      height: 80px;
      background-size: 60px;
      right: -24px;
      bottom: -24px; }
  #steps .inner .arrow img {
    width: 50px;
    margin-top: 74px; }

  #title-block .inner .photo {
    min-width: 600px;
    max-width: 600px; }

  .foto-block .wrapper .text .text-inner {
    padding-right: 20px;
    width: 555px; }
  .foto-block .wrapper .foto-block-pause {
    min-width: 70px; }
  .foto-block .footer-foto-block .dot-foto-block {
    width: 70px;
    height: 70px; }
  .foto-block.normal .wrapper .text .text-inner {
    padding-top: 20px; }

  #form-block .inner form {
    min-width: 600px;
    max-width: 600px; }

  #application-block .wrapper .text {
    font-size: 85%; }
  #application-block .wrapper .form-block-pause {
    min-width: 70px; }
  #application-block .footer-form-block .dot-form-block {
    width: 70px;
    height: 70px; }

  #questions #start-faq #accordion .card {
    font-size: 90%; }
    #questions #start-faq #accordion .card .btn {
      font-size: 110%; }

  #footer .bottom-menu a {
    padding: 0 10px; }

  .subsite .subsite-content {
    font-size: 90%; }
    .subsite .subsite-content h2 {
      margin-bottom: 20px; }

  .uslugi-three-columns .one-element .foto {
    width: 350px;
    height: 350px; } }
@media (min-width: 1600px) {
  main {
    min-height: calc(100vh - 596.59px); }

  .container {
    max-width: 1570px; }

  .container-1090 {
    max-width: 1120px; }

  .container-news {
    max-width: 1300px; }

  #foto-block-why-szczecin h2 {
    font-size: 180%; }
  #foto-block-why-szczecin p, #foto-block-why-szczecin a, #foto-block-why-szczecin ul, #foto-block-why-szczecin ol {
    font-size: 100%; }

  #title-block .box {
    padding-top: 30px;
    padding-bottom: 30px; }

  #form-block .box {
    padding-top: 30px;
    padding-bottom: 30px; }

  .paralax_group .wrapper {
    padding-top: 164px; }
    .paralax_group .wrapper .text .text-inner {
      width: 760px; } }

/*# sourceMappingURL=main.css.map */
