/*
 *  Owl Carousel - Core
 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&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; }

@keyframes preloader {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
body {
  font-family: "Poppins", sans-serif;
  max-width: 2440px;
  margin-left: auto;
  margin-right: auto;
  float: none; }
  body h1, body h2 {
    color: #111111; }
  body h3 {
    font-size: 160%;
    color: #111111; }
  body h4 {
    color: #111111; }
  body p, body ul li {
    font-size: 100%;
    font-weight: 300;
    color: #111111; }
  body a {
    transition: 0.3s;
    -webkit-transition: 0.3s; }
    body a:hover {
      color: #fafafa;
      text-decoration: none; }
  body ul {
    list-style: none;
    padding-left: 0; }
    body ul li {
      display: flex;
      align-items: center;
      margin-bottom: 10px; }
  body .content figure {
    margin: 15px; }
    body .content figure.image-style-align-center {
      display: flex;
      justify-content: center; }
    body .content figure.image-style-align-left {
      display: flex;
      justify-content: flex-start; }
    body .content figure.image-style-align-right {
      display: flex;
      justify-content: flex-end;
      float: right;
      max-width: 50%; }

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: 48px;
  font-size: 16px;
  border-radius: 0px;
  background-color: #f5f5f5;
  border: 1px solid #dfdfdf;
  color: #000; }
  input.form-control:placeholder {
    color: rgba(0, 0, 0, 0.5); }
input.input-image {
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 25px;
  padding-left: 50px; }

select.form-control {
  height: 44px;
  font-size: 16px;
  border-radius: 0px;
  border: 1px solid #dfdfdf;
  color: #000;
  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: #fafafa; }
  .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: #111111;
  font-weight: 400;
  font-family: "Poppins", 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: #111111; }
  .checkbox-label:hover {
    color: #fafafa; }

.btn, .elementor-button {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  border-radius: 15px;
  font-family: "Poppins", 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(130deg, #755147 20%, #f1d3b3 39%, #b37f55 64%, #774f2f 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.btn-primary, .subsite .btn-primary {
  font-size: 112%;
  border-radius: 0px;
  border: 2px solid #ae9b77;
  background-color: #fff;
  color: #0e81ac;
  font-weight: 400;
  font-size: 100%;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  padding: 10px 53px; }
  .btn-primary:hover, .subsite .btn-primary:hover {
    border-color: #0e81ac !important;
    background-color: #fff !important;
    color: #0e81ac !important; }
  .btn-primary:active, .btn-primary:focus, .subsite .btn-primary:active, .subsite .btn-primary:focus {
    border-color: #0e81ac !important;
    background-color: #0e81ac !important;
    color: #fff !important; }

.btn-secondary, .subsite .btn-secondary {
  border-radius: 0;
  border: 5px solid rgba(255, 255, 255, 0.27);
  color: #fff;
  font-weight: 400;
  font-size: 144%;
  padding: 3px 43px;
  background-color: #ff0000;
  text-transform: uppercase; }
  .btn-secondary:hover, .subsite .btn-secondary:hover {
    background-color: #e05410;
    color: #fff; }

.module-title {
  font-size: 200%;
  font-family: "Poppins", 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: #111111;
    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; }

.btn-white {
  background-color: #fff;
  text-transform: uppercase;
  padding: 12px 60px;
  border: 2px solid #ae9b77; }

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);
    padding-top: 0px;
    transform: translateY(-45px); }
    header.sticked #main-nav .inner #logo img {
      width: 210px; }
    header.sticked .page-nav li a span {
      padding: 24px 35px; }

main {
  padding-top: 142px;
  position: relative;
  min-height: calc(100vh - 85px); }

.start-title {
  max-width: 1000px;
  margin: 0 auto; }
  .start-title h1 {
    font-size: 200%;
    font-weight: 400; }
  .start-title h2 {
    font-size: 300%;
    color: #0e81ac;
    margin: 20px 0;
    padding-top: 20px;
    margin-top: 0;
    font-weight: 400; }
  .start-title h3 + h2 {
    padding-top: 0; }

#galleries {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px; }
  #galleries .single-gallery {
    flex: 1 1 30%;
    margin: 15px;
    max-width: 453.33px;
    background-color: #fafafa; }
    #galleries .single-gallery img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center top;
      margin-bottom: 5px;
      transition: 0.3s;
      -webkit-transition: 0.3s; }
    #galleries .single-gallery .foto {
      overflow: hidden;
      height: 280px; }
    #galleries .single-gallery span {
      margin: 0; }
      #galleries .single-gallery span h4 {
        margin: 0;
        padding: 15px; }
    #galleries .single-gallery:hover img {
      transform: scale(1.04) rotate(1deg); }

#gallery-simple {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 45px; }
  #gallery-simple .one-image {
    overflow: hidden;
    flex: 1 1 30%;
    margin: 15px;
    max-width: 486.67px; }
    #gallery-simple .one-image img {
      object-fit: cover;
      object-position: center top;
      width: 100%;
      height: 340px;
      transition: 0.3s;
      -webkit-transition: 0.3s; }
    #gallery-simple .one-image:hover img {
      transform: scale(1.04) rotate(1deg); }

.wideo-block {
  padding-top: 5.5vw; }
  .wideo-block .wrapper {
    display: flex;
    flex-wrap: wrap; }
  .wideo-block .text {
    width: 50%; }
  .wideo-block .wideo {
    width: 50%; }
    .wideo-block .wideo iframe {
      width: 100%;
      height: 420px; }
  .wideo-block .text-inner {
    padding-right: 3vw; }
    .wideo-block .text-inner h3 {
      font-size: 194%;
      font-weight: 400;
      color: #0ba0c0; }
    .wideo-block .text-inner p, .wideo-block .text-inner ul li {
      font-size: 110%;
      color: #010101;
      font-weight: 300;
      font-family: "Poppins", sans-serif;
      text-align: justify; }
    .wideo-block .text-inner .price {
      font-weight: 400;
      color: #0ba0c0;
      font-size: 26px;
      text-align: center;
      margin: 15px 0; }
    .wideo-block .text-inner .kwota {
      color: #0e81ac; }
    .wideo-block .text-inner .buttons {
      display: flex;
      justify-content: center; }

.text-two-foto .text-inner {
  display: flex;
  flex-wrap: wrap; }
  .text-two-foto .text-inner h2 {
    font-size: 300%;
    color: #0ba0c0;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    padding-top: 2.5vw;
    margin-top: 0;
    margin-bottom: 2vw;
    width: 100%; }
  .text-two-foto .text-inner p, .text-two-foto .text-inner ul li {
    width: 100%; }
  .text-two-foto .text-inner h3, .text-two-foto .text-inner h4 {
    width: 100%; }
  .text-two-foto .text-inner figure.image {
    width: auto !important;
    display: inline-block;
    flex: 1 1 50%; }
    .text-two-foto .text-inner figure.image img {
      width: 100%;
      padding: 2vw 10px; }

#wynajem-sal .foto-block .wrapper {
  position: relative;
  display: flex;
  min-height: 600px;
  overflow: hidden;
  background-color: #0ba0c0; }
  #wynajem-sal .foto-block .wrapper .foto {
    margin-right: auto;
    width: 50%; }
    #wynajem-sal .foto-block .wrapper .foto figure {
      margin-bottom: 0; }
      #wynajem-sal .foto-block .wrapper .foto figure img {
        height: 600px;
        width: auto; }
  #wynajem-sal .foto-block .wrapper .text {
    position: absolute;
    right: 0;
    width: 50vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #0ba0c0;
    transform: skew(20deg); }
    #wynajem-sal .foto-block .wrapper .text .text-inner {
      max-width: 495px;
      margin-left: 150px;
      margin-right: auto;
      margin-bottom: 100px;
      transform: skew(-20deg); }
      #wynajem-sal .foto-block .wrapper .text .text-inner h2 {
        font-size: 280%;
        color: #0ba0c0;
        font-weight: 400;
        margin-top: 10px;
        margin-bottom: 30px; }
      #wynajem-sal .foto-block .wrapper .text .text-inner p {
        font-size: 137%;
        color: #000;
        font-weight: 250; }
      #wynajem-sal .foto-block .wrapper .text .text-inner .buttons {
        display: flex;
        justify-content: center; }

#tytul {
  display: flex;
  justify-content: center; }
  #tytul .wrapper {
    max-width: 730px;
    margin-top: 4vw;
    margin-bottom: 4vw; }
    #tytul .wrapper img {
      margin-bottom: 2vw; }
    #tytul .wrapper p {
      font-weight: 500;
      font-size: 106%; }

.preloader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 9999999; }
  .preloader img {
    transition: 3s;
    -webkit-transition: 3s;
    width: 5vw;
    animation-name: preloader;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; }

#apartamenty .full-form .open-zaawansowane a {
  display: flex; }
  #apartamenty .full-form .open-zaawansowane a:after {
    content: " ";
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-image: url("/img/two-down-arrows.svg");
    background-repeat: no-repeat;
    background-position: center right;
    display: block;
    background-size: 15px; }
#apartamenty .full-form #zaawansowane {
  display: none;
  padding-top: 40px; }
#apartamenty .full-form #find-real-estate-more {
  max-width: 1130px; }

.real-estate-listing {
  margin: 0 auto;
  background-color: #f3f5f5; }
  .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 {
    border: 5px solid #ecb784;
    box-shadow: 5px 5px 15px 3px #ddd;
    display: block;
    width: 432px;
    margin-bottom: 40px;
    margin-left: 10px;
    margin-right: 10px;
    max-width: 100%; }
    .real-estate-listing .one-element:hover .foto > img {
      min-width: 120%;
      transition: 0.5s;
      -webkit-transition: 0.5s; }
  .real-estate-listing h3 {
    color: #000;
    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 {
      min-width: 100%;
      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: #000; }
  .real-estate-listing .reservation {
    position: absolute;
    right: 0;
    bottom: 0; }
    .real-estate-listing .reservation .reservation-inner {
      position: relative; }
    .real-estate-listing .reservation p {
      position: absolute;
      font-weight: 600;
      font-size: 16px;
      width: 100%;
      text-align: center;
      margin-top: 4px; }
  .real-estate-listing .text {
    background-color: #fff;
    padding: 17px 20px 5px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
  .real-estate-listing .bottom-text {
    border-top: 1px solid #f3f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    color: #000;
    font-weight: 600;
    min-height: 55px;
    flex-wrap: wrap; }
    .real-estate-listing .bottom-text p {
      margin-top: 20px;
      margin-bottom: 0;
      white-space: nowrap; }
  .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-start .wrapper .text .text-inner {
  text-shadow: none; }

#foto-block-full-img .foto-block .wrapper .text .text-inner {
  text-shadow: 0 0 5px #000000, 0 0 10px #000000, 0 0 7px #000000; }
#foto-block-full-img .text-inner {
  width: 800px; }
#foto-block-full-img .wrapper {
  min-height: 530px;
  position: relative; }
#foto-block-full-img .foto {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000; }
  #foto-block-full-img .foto img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    position: relative;
    right: -20%; }
#foto-block-full-img .text {
  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: 150%;
  color: #fafafa;
  font-weight: 500;
  text-decoration: underline;
  font-style: italic; }
#foto-block-full-img p, #foto-block-full-img ul li {
  font-size: 94%;
  color: #aaaaaa;
  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: 1150px;
    margin: 0 auto;
    justify-content: space-between; }
  #contact-info h2 {
    display: flex;
    align-items: center;
    color: #0ba0c0;
    justify-content: center;
    font-size: 220%;
    font-weight: 600; }
  #contact-info p {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 23px;
    color: #111111;
    font-weight: 400; }
  #contact-info a {
    color: #0ba0c0;
    font-weight: 400;
    display: contents; }
    #contact-info a:hover {
      color: #111111; }
  #contact-info .one-worker {
    margin-bottom: 40px; }
  #contact-info .address {
    padding-left: 110px;
    background-image: url("/img/kontakt-mark.png");
    background-size: 61px;
    background-position: left top;
    background-repeat: no-repeat;
    padding-right: 20px; }
  #contact-info .tel {
    padding-left: 35px;
    background-image: url("/img/min-tel.png");
    background-size: 18px;
    background-position: left center;
    background-repeat: no-repeat; }
  #contact-info .email {
    padding-left: 35px;
    background-image: url("/img/min-email.png");
    background-size: 18px;
    background-position: left center;
    background-repeat: no-repeat; }

.bread {
  background-color: #f3f5f5;
  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(121, 121, 121, 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(121, 121, 121, 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-bar {
  background-color: #fff;
  border-bottom: 1px solid #bcbcbc;
  height: 45px;
  max-width: 100vw; }
  #top-bar .telephone {
    background-color: #0ba0c0;
    transform: skew(-15deg);
    padding: 0 65px;
    height: 100%;
    display: flex;
    align-items: center; }
    #top-bar .telephone a {
      transform: skew(15deg);
      display: block;
      background-repeat: no-repeat;
      background-position: left center;
      font-size: 18px;
      line-height: 20px;
      color: #54595f;
      font-weight: 300;
      padding-left: 35px;
      line-height: 30px;
      filter: brightness(1000%);
      font-weight: 500; }
      #top-bar .telephone a strong {
        font-weight: 500; }
      #top-bar .telephone a:hover {
        background-position: 5px center; }
  #top-bar .right {
    display: flex; }
  #top-bar .social {
    margin-right: 15px; }
    #top-bar .social a {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      background-color: #0ba0c0;
      border: 2px solid #0ba0c0; }
      #top-bar .social a img {
        max-height: 25px;
        filter: invert(100%);
        transition: 0.2s;
        -webkit-transition: 0.2s; }
      #top-bar .social a:hover {
        background-color: #0ba0c0;
        border: 2px solid #0ba0c0; }
        #top-bar .social a:hover img {
          max-height: 22px; }
  #top-bar .container {
    height: 100%; }
  #top-bar .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; }
    #top-bar .wrapper .left {
      height: 100%;
      display: flex;
      padding-left: 17px; }
    #top-bar .wrapper .center {
      height: 100%; }

#main-nav {
  background-color: white;
  opacity: 0; }
  #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;
    padding: 0px 0; }
    #main-nav .inner #logo {
      display: flex;
      align-items: center; }
      #main-nav .inner #logo img {
        width: 255px;
        transition: 0.3s;
        -webkit-transition: 0.3s; }
      #main-nav .inner #logo .motto {
        margin-left: 15px; }
        #main-nav .inner #logo .motto .first {
          font-size: 190%;
          line-height: 100%;
          color: #000;
          font-weight: 700;
          margin-bottom: 0;
          white-space: nowrap;
          text-transform: uppercase; }
        #main-nav .inner #logo .motto .second {
          font-size: 145%;
          line-height: 100%;
          color: #797979;
          font-weight: 700;
          margin-bottom: 0;
          white-space: nowrap;
          text-transform: uppercase; }
  #main-nav .bg-block {
    background-color: white;
    transform: skew(-30deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: -100px;
    width: calc((100vw - 770px) / 2);
    z-index: 0; }
  #main-nav .btn-menu {
    z-index: 1;
    margin-left: auto; }

#social-media {
  display: flex;
  align-items: center;
  margin: 0; }
  #social-media li {
    margin-bottom: 0; }
    #social-media li a {
      margin-left: 4px;
      margin-right: 4px; }
      #social-media li a img {
        width: 20px; }

#main-menu {
  display: flex;
  align-items: center;
  z-index: 1; }
  #main-menu .menu-button {
    margin-left: 30px;
    margin-right: 20px; }
  #main-menu.mini-menu {
    top: 0;
    position: absolute;
    background-color: #fff;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    left: 0;
    transform: translateY(-100%);
    align-items: flex-start;
    overflow-y: auto; }
    #main-menu.mini-menu .page-nav {
      margin: 0 auto;
      list-style: none;
      padding: 0;
      order: 2;
      margin-bottom: 20px;
      flex-direction: column;
      max-width: 500px; }
      #main-menu.mini-menu .page-nav li {
        border-top: 1px solid #0ba0c0;
        margin-left: 0;
        width: 100%; }
        #main-menu.mini-menu .page-nav li a {
          padding: 0;
          font-size: 17px;
          color: #111111;
          width: 100%; }
          #main-menu.mini-menu .page-nav li a span {
            padding: 15px 10px; }
        #main-menu.mini-menu .page-nav li:first-child {
          margin-top: 5vw; }
        #main-menu.mini-menu .page-nav li:last-child {
          border-bottom: 1px solid #0ba0c0; }
      #main-menu.mini-menu .page-nav .dropdown {
        flex-direction: column;
        background-color: transparent; }
        #main-menu.mini-menu .page-nav .dropdown:hover {
          background-color: transparent; }
      #main-menu.mini-menu .page-nav .dropdown-toggle {
        width: 100%; }
        #main-menu.mini-menu .page-nav .dropdown-toggle:after {
          color: #fafafa; }
      #main-menu.mini-menu .page-nav .dropdown-menu {
        width: 100%;
        position: relative;
        box-shadow: none;
        border-top: 3px solid #0ba0c0;
        border-bottom: 2px solid #0ba0c0;
        font-size: 90%;
        background-color: transparent; }
        #main-menu.mini-menu .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; }
          #main-menu.mini-menu .page-nav .dropdown-menu li:first-child {
            margin-top: 0;
            border-top: none; }
          #main-menu.mini-menu .page-nav .dropdown-menu li:last-child {
            border-bottom: none; }
    #main-menu.mini-menu.open {
      transform: translateY(0); }

.page-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%; }
  .page-nav li {
    margin-bottom: 0px;
    margin-left: 20px; }
    .page-nav li a {
      font-weight: 500;
      display: block;
      padding: 0;
      font-size: 100%;
      color: #111111;
      white-space: nowrap;
      text-transform: uppercase;
      transition: 0s; }
      .page-nav li a span {
        width: fit-content;
        width: -moz-fit-content;
        display: block;
        padding: 40px 35px; }
      .page-nav li a:hover {
        background-color: #0ba0c0;
        color: #000; }
    .page-nav li:before {
      display: none; }
  .page-nav .dropdown:hover {
    background-color: #0ba0c0;
    color: #000; }
  .page-nav .dropdown .dropdown-toggle {
    display: flex;
    align-items: center; }
    .page-nav .dropdown .dropdown-toggle .caret {
      display: inline-block;
      margin-left: 0.255em;
      vertical-align: 0.255em;
      content: "";
      border-top: 0.3em solid;
      border-right: 0.3em solid transparent;
      border-bottom: 0;
      border-left: 0.3em solid transparent; }
    .page-nav .dropdown .dropdown-toggle:after {
      display: none; }
  .page-nav .dropdown .dropdown-menu {
    border: none;
    border-radius: 0px;
    box-shadow: none;
    border-top: 3px solid #0ba0c0;
    padding: 5px 0px;
    left: 0px;
    right: auto;
    top: calc(100% - 2px);
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.5);
    background-color: white;
    min-width: 100%; }
    .page-nav .dropdown .dropdown-menu li {
      width: 100%;
      margin-left: 0; }
      .page-nav .dropdown .dropdown-menu li a {
        width: 100%; }
        .page-nav .dropdown .dropdown-menu li a span {
          padding: 15px 10px; }

.full-form .full-form-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }
.full-form .form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #0003;
  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: #fff; }
  .full-form .top-group .dropdown-toggle:hover {
    color: #fafafa; }
.full-form .open-zaawansowane a {
  cursor: pointer;
  color: #fff; }
  .full-form .open-zaawansowane a:hover {
    color: #fafafa; }
.full-form #zaawansowane {
  padding-top: 80px; }
.full-form .checkboxy {
  padding: 0 10px; }
  .full-form .checkboxy .checkbox-label {
    width: calc(20% - 20px); }

.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: #111111;
  font-weight: 600;
  font-size: 125%; }
.simple-steps p {
  text-align: center;
  color: #797979;
  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: 400px;
  z-index: 0; }
  #layerslider .ls-bottom-nav-wrapper {
    top: 0px;
    height: 50px; }
    #layerslider .ls-bottom-nav-wrapper .ls-bottom-slidebuttons {
      padding: 10px 0; }
      #layerslider .ls-bottom-nav-wrapper .ls-bottom-slidebuttons a {
        width: 0 !important;
        height: 0 !important;
        border-left: 10px solid transparent !important;
        border-right: 10px solid transparent !important;
        border-bottom: 20px solid #0ba0c0 !important;
        border-radius: 0 !important;
        opacity: 0.5; }
        #layerslider .ls-bottom-nav-wrapper .ls-bottom-slidebuttons a.ls-nav-active {
          opacity: 1; }
        #layerslider .ls-bottom-nav-wrapper .ls-bottom-slidebuttons a:hover {
          opacity: 1; }
  #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%; }
      #layerslider .ls-layer .slider-bg .container {
        height: 100%; }
      #layerslider .ls-layer .slider-bg .wrapper {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center; }
        #layerslider .ls-layer .slider-bg .wrapper ul li {
          color: #fff;
          margin-bottom: 30px; }
          #layerslider .ls-layer .slider-bg .wrapper ul li:before {
            background-color: transparent;
            background-image: url("/img/check.svg");
            background-size: 21px;
            background-position: center;
            background-repeat: no-repeat; }
        #layerslider .ls-layer .slider-bg .wrapper h2 {
          font-size: 238%;
          color: #ffffff;
          font-weight: 600;
          text-transform: uppercase;
          white-space: normal;
          margin-bottom: 30px; }
          #layerslider .ls-layer .slider-bg .wrapper h2 span {
            color: #000; }
        #layerslider .ls-layer .slider-bg .wrapper p {
          font-size: 120%;
          color: #ffffff;
          font-weight: 400;
          white-space: normal; }
        #layerslider .ls-layer .slider-bg .wrapper .buttons {
          margin-top: 50px; }
          #layerslider .ls-layer .slider-bg .wrapper .buttons .btn:nth-child(2) {
            margin-left: 15px; }
        #layerslider .ls-layer .slider-bg .wrapper .text {
          max-width: 550px; }
          #layerslider .ls-layer .slider-bg .wrapper .text .play {
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            margin-top: 40px; }
            #layerslider .ls-layer .slider-bg .wrapper .text .play .btn-play {
              display: flex;
              justify-content: center;
              align-items: center;
              border: 5px solid #fff;
              width: 70px;
              height: 70px;
              border-radius: 50%;
              margin-right: 25px;
              transition: 0.3s;
              -webkit-transition: 0.3s; }
              #layerslider .ls-layer .slider-bg .wrapper .text .play .btn-play img {
                width: 40%;
                filter: invert(100%) sepia(0%) saturate(7498%) hue-rotate(266deg) brightness(104%) contrast(103%); }
            #layerslider .ls-layer .slider-bg .wrapper .text .play p {
              font-size: 120%;
              color: #ffffff;
              font-weight: 400;
              margin-bottom: 0;
              text-transform: uppercase; }
            #layerslider .ls-layer .slider-bg .wrapper .text .play:hover .btn-play {
              transform: scale(0.9); }
    #layerslider .ls-layer .slider-image {
      width: 100vw;
      height: 100%;
      background-position: right center;
      background-repeat: no-repeat;
      background-size: cover; }

.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: #111111;
        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: #000;
    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 #000;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 4px;
      margin-right: 4px;
      color: #797979; }
      .pagination .numbers a.active {
        background-color: #000;
        color: #fff; }
      .pagination .numbers a:hover:not(.active) {
        border-color: #005e8e;
        background-color: #005e8e;
        color: #fff; }
    .pagination .numbers span {
      align-self: flex-end; }

#slide-down {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 10%;
  margin-left: auto;
  margin-right: auto;
  left: calc(50% - 44px);
  cursor: pointer;
  display: none; }
  #slide-down img {
    width: 24px; }

#big-slider {
  margin-top: 0px;
  margin-bottom: 60px; }
  #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 #f3f5f5; }
  .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: #797979;
          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: #797979; }
    .offer-list .one-offer .one-offer-inner .date p {
      color: #797979;
      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: #f3f5f5; }

.review-list .one-review {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px; }
  .review-list .one-review p {
    margin: 0;
    color: #797979;
    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 {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap; }
  .double-block .one-block {
    color: #797979;
    display: flex;
    align-items: center;
    margin-left: -30px;
    margin-right: -30px; }
    .double-block .one-block .button {
      display: flex;
      flex-direction: column;
      margin-left: 30px;
      margin-right: 30px;
      flex: 1 1 40%; }
      .double-block .one-block .button a {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fafafa;
        padding: 22px;
        font-size: 150%;
        margin-top: 7px;
        margin-bottom: 7px;
        background-position: left 40px center;
        background-size: 54px;
        background-repeat: no-repeat; }
        .double-block .one-block .button a strong {
          margin-right: 7px; }
        .double-block .one-block .button a:first-child {
          background-image: url("../img/ikona1.png"); }
        .double-block .one-block .button a:last-child {
          background-image: url("../img/ikona1.png"); }
    .double-block .one-block h2 {
      text-transform: #111111;
      text-transform: uppercase; }
    .double-block .one-block p strong {
      font-weight: 700; }
    .double-block .one-block .text {
      margin-left: 30px;
      margin-right: 30px;
      flex: 1 1 60%; }

#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; }

.start-news .news-carousel .owl-nav {
  display: none; }

.nasze-plusy h2 {
  font-size: 250%; }

.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: #797979;
    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: #111111;
      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: transparent;
      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 {
      background-color: #f3f5f5;
      padding: 20px; }

.gallery-carousel-master .owl-nav button.owl-prev {
  transition: 0s;
  -webkit-transition: 0s;
  opacity: 0.5;
  outline: none;
  position: absolute;
  left: 10px;
  border: 2px solid #fafafa !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: 0s;
  -webkit-transition: 0s;
  opacity: 0.5;
  outline: none;
  position: absolute;
  right: 10px;
  border: 2px solid #fafafa !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;
    z-index: 1; }
    #one-real-estate-gallery .zarezerwowany .reservation-inner {
      position: relative; }
    #one-real-estate-gallery .zarezerwowany p {
      position: absolute;
      font-weight: 600;
      font-size: 16px;
      width: 100%;
      text-align: center;
      margin-top: 6px; }
    #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: #797979;
      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: #797979;
    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: #111111;
  font-weight: 500; }
.news-carousel-master .one-news p {
  color: #111111;
  font-size: 100%; }
.news-carousel-master .one-news .date {
  background-color: #000;
  color: #fff; }
  .news-carousel-master .one-news .date span:first-child {
    font-weight: bold; }

#form-foto-block {
  background-color: #fafafa; }
  #form-foto-block .inner {
    display: flex; }
    #form-foto-block .inner .foto {
      flex: 1 1 50%; }
      #form-foto-block .inner .foto img {
        height: 100%; }
    #form-foto-block .inner #contact-form {
      flex: 1 1 50%;
      padding-top: 30px;
      padding-bottom: 30px; }
      #form-foto-block .inner #contact-form h2 {
        text-transform: uppercase;
        font-weight: 600;
        margin-top: 15px; }
    #form-foto-block .inner .form-tel {
      margin-bottom: 20px; }
      #form-foto-block .inner .form-tel a {
        display: flex;
        align-items: center;
        color: #0ba0c0;
        justify-content: center;
        font-size: 220%;
        font-weight: 600; }
        #form-foto-block .inner .form-tel a img {
          margin-right: 20px;
          width: 36px; }

#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 #f3f5f5;
    background-color: #f3f5f5; }
  #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: #000;
      color: #fff; }
      #consulting-services-carousel .news-carousel-services .one-news .date span:first-child {
        font-weight: bold; }

.uslugi-three-columns {
  padding-top: 3vw;
  margin: 0 auto;
  padding-bottom: 3vw; }
  .uslugi-three-columns .one-element {
    display: block;
    margin-bottom: 2px;
    padding-left: 2px;
    padding-right: 2px; }
    .uslugi-three-columns .one-element .inner {
      background-color: #f3f5f5;
      position: relative; }
    .uslugi-three-columns .one-element img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      object-position: center; }
    .uslugi-three-columns .one-element .foto {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative; }
      .uslugi-three-columns .one-element .foto figure {
        overflow: hidden;
        margin-bottom: 0;
        width: 100%; }
        .uslugi-three-columns .one-element .foto figure img {
          transition-duration: 1s;
          margin: 0 auto;
          display: block; }
          .uslugi-three-columns .one-element .foto figure img:hover {
            transform: scale(1.2);
            -webkit-transform: scale(1.2);
            -moz-transform: scale(1.2);
            z-index: 0; }
      .uslugi-three-columns .one-element .foto .foto-text {
        position: absolute;
        bottom: 0;
        left: 0;
        display: flex; }
        .uslugi-three-columns .one-element .foto .foto-text .foto-text-inner {
          padding: 10px 20px 10px 20px;
          background-color: #fff; }
          .uslugi-three-columns .one-element .foto .foto-text .foto-text-inner p {
            font-weight: 400;
            text-align: left;
            color: #0e81ac;
            font-size: 110%;
            margin-bottom: 0px; }
            .uslugi-three-columns .one-element .foto .foto-text .foto-text-inner p:last-child {
              color: rgba(14, 129, 172, 0.7); }
        .uslugi-three-columns .one-element .foto .foto-text .trojkat {
          width: 0;
          height: 0; }
    .uslugi-three-columns .one-element h2 {
      color: #0ba0c0;
      font-size: 35px;
      font-weight: 400;
      font-size: 155%;
      text-align: center;
      text-transform: uppercase;
      margin-bottom: 15px;
      margin-bottom: 0; }
    .uslugi-three-columns .one-element p {
      text-align: center;
      font-weight: 300;
      color: #000;
      font-size: 94%; }
    .uslugi-three-columns .one-element strong {
      font-weight: 700;
      text-decoration: underline;
      font-size: 97%; }
    .uslugi-three-columns .one-element .text {
      padding: 15px 15px 15px 15px;
      display: flex;
      align-items: center;
      justify-content: center; }
    .uslugi-three-columns .one-element .buttons {
      display: flex;
      justify-content: center; }

.start-news {
  /*    background-image: url(/img/blue_bg.png), url(/img/blue_bg_left.png);
      background-repeat: no-repeat;
      background-position: right center, left center;
      background-size: auto 477px;*/ }

.galeria-start {
  margin-bottom: 50px; }
  .galeria-start .one-foto {
    position: relative; }
    .galeria-start .one-foto:hover .bg {
      opacity: 1; }
    .galeria-start .one-foto .bg {
      position: absolute;
      transition: 0.3s;
      -webkit-transition: 0.3s;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: rgba(0, 0, 0, 0.4);
      opacity: 0; }
      .galeria-start .one-foto .bg img {
        height: auto;
        object-fit: contain;
        width: 5vw;
        min-width: 50px; }

.nasze-plusy {
  background-color: #0ba0c0; }
  .nasze-plusy h3 {
    font-size: 220%;
    font-weight: 400;
    padding-top: 30px; }
  .nasze-plusy h2 {
    font-size: 300%;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px; }

.plusy-lista .wrapper {
  display: flex;
  flex-wrap: wrap; }
.plusy-lista .one-plus {
  margin-bottom: 60px; }
.plusy-lista figure {
  display: flex;
  justify-content: center;
  margin-bottom: 20px; }
  .plusy-lista figure img {
    height: 70px;
    width: auto; }
.plusy-lista h3 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-top: 0;
  font-size: 150%; }
.plusy-lista p {
  color: #fff;
  font-weight: 400;
  text-align: center; }
.plusy-lista .buttons {
  display: flex;
  justify-content: center; }
  .plusy-lista .buttons a {
    border-color: #fff;
    padding: 8px 26px;
    font-size: 100%;
    text-transform: initial; }
    .plusy-lista .buttons a:hover {
      color: #fff; }

.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: #797979;
    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, 0, 0, 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-size: 280%;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  background-color: rgba(11, 160, 192, 0.9);
  width: 100%;
  padding: 3vw 10px;
  justify-content: center;
  margin-bottom: 0; }

#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%;
  background-color: #0e103f; }
  #footer .bottom-menu .wrapper {
    display: flex;
    justify-content: space-between;
    height: 100px;
    width: 100%;
    flex-wrap: wrap; }
  #footer .bottom-menu a {
    text-transform: lowercase;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 45px; }
    #footer .bottom-menu a:hover {
      color: #000; }
#footer #footer-logo img {
  max-width: 235px; }
#footer .address-footer p {
  color: #111111;
  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 #111111; }
    #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: #fafafa; }
#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 .author {
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  font-weight: 300;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center; }
  #footer .author p {
    margin-bottom: 0; }
  #footer .author a {
    font-weight: 700;
    color: #0ba0c0; }
    #footer .author a:hover {
      color: #000; }
#footer .bottom-footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; }
  #footer .bottom-footer .wrapper .copyright p {
    font-size: 100%;
    color: #111111;
    font-weight: 300;
    margin-bottom: 0; }
#footer .inner {
  display: flex;
  justify-content: space-between; }
#footer .footer-bg {
  background-color: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px; }
#footer .one-column {
  width: 20%; }

#miniNav {
  display: none;
  position: fixed;
  top: 89px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #fff;
  z-index: 11;
  overflow-y: scroll; }
  #miniNav .menu-button {
    margin: 0; }
  #miniNav .btn-close {
    color: #111111;
    position: absolute;
    top: 49px;
    right: 11px;
    font-size: 26px; }
    #miniNav .btn-close:hover {
      color: #fafafa; }
    #miniNav .btn-close.sticked {
      top: 6px; }
  #miniNav .inner {
    padding-top: 75px;
    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: 1px solid #0ba0c0;
      margin-left: 0; }
      #miniNav .page-nav li a {
        padding: 15px 10px;
        font-size: 17px;
        color: #111111; }
      #miniNav .page-nav li:first-child {
        border: none; }
    #miniNav .page-nav .dropdown {
      flex-direction: column; }
    #miniNav .page-nav .dropdown-toggle {
      width: 100%; }
      #miniNav .page-nav .dropdown-toggle:after {
        color: #fafafa; }
    #miniNav .page-nav .dropdown-menu {
      width: 100%;
      position: relative;
      box-shadow: none;
      border-top: 3px solid #fafafa;
      border-bottom: 2px solid #fafafa;
      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; }

.page-foto {
  width: 100%;
  overflow: hidden;
  position: relative; }
  .page-foto img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center; }

.table-responsive .table {
  width: 100%;
  display: flex !important;
  flex-direction: column;
  margin-bottom: 0;
  background-color: #f3f5f5; }
  .table-responsive .table thead {
    background-color: #005e8e;
    color: #fff; }
  .table-responsive .table thead, .table-responsive .table tbody {
    flex-direction: column;
    width: 100%;
    display: flex; }
  .table-responsive .table tr {
    width: 100%;
    display: flex; }
  .table-responsive .table th {
    width: 100%;
    padding: 10px 10px;
    border-color: #fff; }
  .table-responsive .table td {
    width: 100%;
    padding: 5px 10px;
    border-color: #fff; }

.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: #f3f5f5;
  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: 1400px;
  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 #fafafa;
    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 #fafafa;
    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: 0; }
  .real-estate-carousel .one-element {
    border: 5px solid #ecb784;
    display: block; }
    .real-estate-carousel .one-element:hover .foto > img {
      min-width: 120%; }
  .real-estate-carousel h3 {
    color: #000;
    margin-bottom: 0;
    font-size: 18px; }
  .real-estate-carousel .city {
    min-height: 19px;
    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 {
      min-width: 100%;
      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: #000; }
  .real-estate-carousel .reservation {
    position: absolute;
    right: 0;
    bottom: 0; }
    .real-estate-carousel .reservation .reservation-inner {
      position: relative; }
    .real-estate-carousel .reservation p {
      margin-bottom: 0;
      position: absolute;
      font-weight: 500;
      font-size: 16px;
      width: 100%;
      text-align: center;
      margin-top: 5px; }
  .real-estate-carousel .text {
    background-color: #fff;
    padding: 17px 20px 25px 20px; }
  .real-estate-carousel .bottom-text {
    border-top: 1px solid #f3f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    color: #000;
    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 #000;
      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 #000;
        background-color: #fff;
        right: -30px;
        bottom: -30px;
        display: none; }
    .steps-dots .one-step .text {
      padding: 0 20px; }
    .steps-dots .one-step p {
      color: #797979; }
    .steps-dots .one-step h3 {
      font-size: 137%;
      font-weight: 600;
      color: #111111;
      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: "Poppins", 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: #f3f5f5;
    padding: 15px 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #111111; }
  .text-block-more ul {
    padding: 0 65px; }
  .text-block-more .buttons .btn:nth-child(2) {
    margin-left: 15px;
    background-color: #f3f5f5; }

#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: #fafafa; }
  #consulting #contact-block h2 {
    color: #fff; }
  #consulting #contact-block p {
    color: #fff; }

#foto-block-consulting-normal h2 {
  margin-top: 0; }
#foto-block-consulting-normal p {
  font-size: 88%;
  letter-spacing: 1px;
  line-height: 150%;
  color: #797979;
  font-weight: 300; }

#foto-block-consulting {
  padding-top: 4vw;
  position: relative; }
  #foto-block-consulting .foto-block:nth-child(even) .text {
    justify-content: flex-start; }
  #foto-block-consulting .foto-block:nth-child(even) .foto img {
    object-position: center left; }
  #foto-block-consulting .grey-block {
    position: absolute;
    bottom: 0;
    height: 75px;
    left: 0;
    right: 0;
    background-color: #f3f5f5;
    z-index: -2; }
  #foto-block-consulting .pion-line {
    z-index: -1;
    background-color: #000;
    width: 1px;
    height: 145px;
    position: absolute;
    left: calc(50% - 700px);
    bottom: 0; }
  #foto-block-consulting h2 {
    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;
    margin-top: 3vw;
    margin-bottom: 1vw; }
    #foto-block-consulting h2:first-child {
      margin-top: 0; }
  #foto-block-consulting .text-inner {
    width: 750px;
    justify-content: flex-start;
    height: fit-content;
    height: -moz-fit-content;
    padding-top: 0; }
  #foto-block-consulting .text {
    background: none;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 60px; }
  #foto-block-consulting strong {
    font-weight: 700;
    color: #000;
    border-bottom: 2px solid #cf9364; }
  #foto-block-consulting .foto-block .text a:hover {
    color: #000; }
  #foto-block-consulting p {
    color: #000000;
    font-weight: 300;
    line-height: 150%; }
  #foto-block-consulting ul li:before {
    border: none; }
  #foto-block-consulting .foto {
    min-height: auto; }
    #foto-block-consulting .foto img {
      max-height: 580px;
      object-fit: contain;
      object-position: center right; }

.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;
    background-color: #fafafa; }
    .foto-block .wrapper .text {
      width: 100%;
      display: flex;
      justify-content: flex-start; }
      .foto-block .wrapper .text .text-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 775px;
        height: 100%;
        max-width: 100%; }
        .foto-block .wrapper .text .text-inner h4 {
          font-size: 100%;
          color: #797979; }
        .foto-block .wrapper .text .text-inner h1, .foto-block .wrapper .text .text-inner h2 {
          color: #111111;
          font-size: 175%;
          margin-bottom: 20px;
          text-transform: uppercase;
          font-weight: 600; }
        .foto-block .wrapper .text .text-inner p {
          font-size: 100%;
          text-align: justify; }
        .foto-block .wrapper .text .text-inner .buttons {
          display: flex;
          justify-content: 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 .image {
        height: 100%; }
      .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%;
      background: -webkit-linear-gradient(0deg, #29abe2 0%, #8cc63f 50%, #fbb03b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }

#blocks {
  margin-bottom: 60px; }

#o-nas .foto-block .wrapper .foto {
  width: 61%;
  margin-right: 25px; }
  #o-nas .foto-block .wrapper .foto img {
    object-fit: contain; }
#o-nas .foto-block .wrapper .text {
  width: 50%; }
  #o-nas .foto-block .wrapper .text .text-inner {
    width: 710px; }
    #o-nas .foto-block .wrapper .text .text-inner h2 {
      font-size: 340%;
      text-transform: initial;
      font-family: "Poppins", sans-serif; }

.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; }

#applicationForm {
  width: 100%; }
  #applicationForm form {
    padding: 30px 15px 15px 15px;
    max-width: 750px; }
    #applicationForm form .form-group label {
      font-size: 1.2em;
      color: white; }
      #applicationForm form .form-group label a {
        font-size: 100%; }
    #applicationForm form .form-group input[type="text"], #applicationForm form .form-group input[type=email], #applicationForm form .form-group select {
      width: 100%;
      background-color: #F5F7FC;
      border-radius: 25px 25px 25px 25px;
      padding: 10px 0px 10px 15px;
      border-color: #fff;
      font-family: "Poppins", sans-serif;
      font-size: 1.2em;
      border-style: solid;
      border-width: 0px 0px 1px 0px;
      min-height: 47px;
      color: #54595f !important;
      border: none; }
      #applicationForm form .form-group input[type="text"]:focus, #applicationForm form .form-group input[type="text"]:active, #applicationForm form .form-group input[type="text"]:hover, #applicationForm form .form-group input[type=email]:focus, #applicationForm form .form-group input[type=email]:active, #applicationForm form .form-group input[type=email]:hover, #applicationForm form .form-group select:focus, #applicationForm form .form-group select:active, #applicationForm form .form-group select:hover {
        box-shadow: inset 0px 0px 2px 2px #49d4ff; }
      #applicationForm form .form-group input[type="text"]:focus-visible, #applicationForm form .form-group input[type=email]:focus-visible, #applicationForm form .form-group select:focus-visible {
        outline: none; }
    #applicationForm form .form-group select {
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("/img/down-arrow-granat.svg");
      background-position: calc(100% - 10px) center;
      background-repeat: no-repeat;
      background-size: 15px;
      padding-right: 30px; }
    #applicationForm form .form-group input[type="text"]::placeholder, #applicationForm form .form-group input[type=email]::placeholder {
      font-size: 1em;
      color: #ABB4BA; }
    #applicationForm form .form-group input[type="file"] {
      font-size: 1.2em;
      color: white;
      width: 100%; }
    #applicationForm form .form-group .contact-checkbox {
      position: absolute;
      opacity: 0; }
    #applicationForm form .form-group .contact-checkbox-label {
      cursor: pointer;
      font-size: 80%;
      color: #fff;
      font-weight: 400;
      font-family: "Poppins", sans-serif;
      letter-spacing: 0;
      text-transform: initial;
      display: flex; }
      #applicationForm form .form-group .contact-checkbox-label .contact-checkbox {
        position: absolute;
        width: 0;
        height: 0;
        opacity: 0; }
      #applicationForm form .form-group .contact-checkbox-label .checkbox-styled {
        min-width: 25px;
        min-height: 25px;
        max-width: 25px;
        max-height: 25px;
        border-radius: 10px;
        border: 2px solid #49d4ff;
        display: inline-block;
        position: relative;
        top: 3px;
        margin-right: 5px; }
        #applicationForm form .form-group .contact-checkbox-label .checkbox-styled span {
          color: #ffffff00;
          position: relative;
          font-size: 24px;
          bottom: 3px;
          left: 4px; }
      #applicationForm form .form-group .contact-checkbox-label .checkbox-styled.checked {
        background-color: #005e8e; }
        #applicationForm form .form-group .contact-checkbox-label .checkbox-styled.checked span {
          color: #fff; }
      #applicationForm form .form-group .contact-checkbox-label a {
        color: #49d4ff;
        font-size: 1.1em; }
        #applicationForm form .form-group .contact-checkbox-label a:hover {
          color: #fff; }

#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; }

#bottom-navbar {
  background-color: #0ba0c0; }
  #bottom-navbar .navbar {
    margin: 0px;
    border: none;
    border-radius: 0px;
    background-color: transparent;
    padding: 0; }
    #bottom-navbar .navbar .container {
      width: 100%;
      padding-left: 20px; }
      #bottom-navbar .navbar .container .navbar-header .navbar-toggle {
        border: 1px solid #000;
        border-radius: 5px;
        background: yellow;
        margin: 10px 15px; }
        #bottom-navbar .navbar .container .navbar-header .navbar-toggle:hover {
          transition: 0.2s;
          border: 1px solid yellow;
          background: #000; }
          #bottom-navbar .navbar .container .navbar-header .navbar-toggle:hover span {
            background: yellow; }
        #bottom-navbar .navbar .container .navbar-header .navbar-toggle:focus {
          border: 1px solid yellow;
          background: #000; }
          #bottom-navbar .navbar .container .navbar-header .navbar-toggle:focus span {
            background: yellow; }
        #bottom-navbar .navbar .container .navbar-header .navbar-toggle span {
          background: #000; }
      #bottom-navbar .navbar .container .navbar-collapse {
        display: flex !important;
        justify-content: space-between;
        border: none; }
        #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav {
          max-width: 935px;
          display: flex;
          width: 100%;
          justify-content: space-between;
          flex-direction: row;
          margin: 0 auto; }
          #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav li {
            margin-bottom: 0; }
            #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav li a {
              white-space: nowrap;
              font-size: 18px;
              color: #54595f;
              font-weight: 300;
              font-family: "Poppins", sans-serif;
              background: transparent;
              padding: 36px 25px;
              text-transform: uppercase;
              transition: 0.3s;
              -webkit-transition: 0.3s; }
              #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav li a:hover {
                color: #fff;
                background: #0e81ac; }
            #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav li:last-child a {
              color: #8b5626;
              font-weight: 400; }
              #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav li:last-child a:hover {
                color: #fff;
                background: #0e81ac; }
            #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav li::before {
              display: none; }
          #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav .dropup {
            display: flex;
            justify-content: center;
            position: relative; }
            #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav .dropup > a:active {
              color: #fff;
              background: #0e81ac; }
            #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav .dropup > a:focus {
              color: #fff;
              background: #0e81ac; }
            #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav .dropup > a .caret {
              border-bottom: 6px dashed;
              color: #0ba0c0;
              margin-bottom: 5px; }
            #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav .dropup .dropdown-menu {
              background: white;
              border: none;
              border-radius: 0px;
              box-shadow: none;
              border-bottom: 3px solid #0e81ac;
              padding: 5px 0px;
              margin-bottom: 0px;
              left: auto;
              right: auto;
              position: absolute; }
              #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav .dropup .dropdown-menu li a {
                padding: 10px 25px;
                font-size: 1.2em;
                color: #54595f; }
                #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav .dropup .dropdown-menu li a:hover {
                  background: #0ba0c0;
                  color: #54595f; }
          #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav::before {
            display: none; }
          #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav::after {
            display: none; }
        #bottom-navbar .navbar .container .navbar-collapse .contact {
          display: flex;
          transform: skewX(-30deg);
          background-color: lightgray;
          padding-right: 35px;
          min-width: max-content; }
          #bottom-navbar .navbar .container .navbar-collapse .contact a {
            font-size: 19px;
            line-height: 42px;
            color: #ffffff;
            font-weight: 600;
            font-family: "Poppins", sans-serif;
            text-align: left;
            display: flex;
            align-items: center;
            margin-left: 45px;
            transform: skewX(30deg); }
            #bottom-navbar .navbar .container .navbar-collapse .contact a .icon {
              background-color: #fff;
              width: 35px;
              height: 35px;
              display: flex;
              justify-content: center;
              align-items: center;
              border-radius: 12px;
              margin-right: 10px;
              background-position: center center;
              background-size: 16px;
              background-repeat: no-repeat;
              border: 1px solid #efefef;
              -webkit-transition: 0.3s;
              transition: 0.3s; }
            #bottom-navbar .navbar .container .navbar-collapse .contact a:hover {
              color: #000; }
              #bottom-navbar .navbar .container .navbar-collapse .contact a:hover span {
                border-color: #0e81ac; }

.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, 0, 0, 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: #797979;
        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: #797979;
          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: "Poppins", 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: "Poppins", sans-serif;
          margin: 0;
          color: #797979; }
          #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: #fdfdfb;
  margin-top: 2.5vw;
  padding-bottom: 4vw; }
  #workers h2 {
    font-size: 300%;
    color: #0ba0c0;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    padding-top: 2.5vw;
    margin-top: 0;
    margin-bottom: 2vw; }
  #workers .one-worker {
    margin-bottom: 2vw; }
    #workers .one-worker:nth-child(odd) .wrapper {
      flex-direction: row-reverse; }
    #workers .one-worker:nth-child(odd) .text {
      padding-right: 0;
      padding-left: 3vw; }
  #workers .wrapper {
    display: flex;
    flex-wrap: wrap; }
  #workers .text {
    width: 50%;
    padding-right: 3vw; }
  #workers .text-inner h3 {
    font-size: 35px;
    color: #0ba0c0;
    font-weight: 300; }
    #workers .text-inner h3:first-child {
      margin-top: 0; }
  #workers .text-inner p, #workers .text-inner ul li {
    text-align: justify; }
  #workers .foto {
    max-width: 50%;
    position: relative;
    width: fit-content;
    width: -moz-fit-content;
    height: fit-content;
    height: -moz-fit-content; }
    #workers .foto figure {
      margin-bottom: 0; }
      #workers .foto figure img {
        max-height: 440px;
        height: auto;
        width: 100%;
        object-fit: cover; }
    #workers .foto .line-left {
      width: 2px;
      height: calc(100% - 36px);
      background-color: #0d0e0e;
      position: absolute;
      left: 18px;
      top: 18px; }
    #workers .foto .line-right {
      width: 2px;
      height: calc(100% - 36px);
      background-color: #0d0e0e;
      position: absolute;
      right: 18px;
      top: 18px; }
    #workers .foto .line-top {
      width: calc(100% - 36px);
      height: 2px;
      background-color: #0d0e0e;
      position: absolute;
      left: 18px;
      top: 18px; }
    #workers .foto .line-bottom {
      width: calc(100% - 36px);
      height: 2px;
      background-color: #0d0e0e;
      position: absolute;
      left: 18px;
      bottom: 18px; }

#full-contact-block .form {
  margin: 0 auto;
  max-width: 880px; }

#contact-block {
  padding-top: 3vw;
  background-color: #fdfdfb; }
  #contact-block textarea {
    border-radius: 0; }
  #contact-block h2 {
    font-size: 300%;
    color: #0ba0c0;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 2vw; }
  #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%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto; }
  #contact-form form {
    padding: 0px 15px 30px 15px; }
    #contact-form form .row-530 {
      max-width: 820px;
      margin: 0 auto; }
    #contact-form form .form-group {
      margin-bottom: 15px;
      padding: 0 15px; }
      #contact-form form .form-group input[type="text"], #contact-form form .form-group input[type="email"], #contact-form form .form-group select, #contact-form form .form-group textarea {
        border: none;
        width: 100%;
        margin: 0;
        background-color: #fff;
        border-radius: 10px;
        font-size: 110%;
        color: #262626;
        font-weight: 300;
        padding-left: 20px;
        border: 2px solid #0ba0c0; }
      #contact-form form .form-group input[type="submit"] {
        padding: 9px 34px;
        font-size: 110%;
        color: #111111;
        border: 2px solid #0ba0c0;
        border-radius: 15px;
        text-transform: initial;
        background-color: transparent;
        margin: 0 auto; }
        #contact-form form .form-group input[type="submit"]:hover {
          background-color: #0ba0c0;
          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 {
        position: absolute;
        opacity: 0; }
      #contact-form form .form-group .contact-checkbox-label {
        cursor: pointer;
        font-size: 13px;
        color: #111111;
        font-weight: 400;
        font-family: "Poppins", sans-serif;
        letter-spacing: 0;
        text-transform: initial;
        display: flex;
        padding: 0 15px; }
        #contact-form form .form-group .contact-checkbox-label .regulamin {
          display: flex;
          text-align: left;
          margin-top: 0px;
          margin-left: 10px;
          margin-right: 10px; }
        #contact-form form .form-group .contact-checkbox-label .checkbox-styled {
          width: 25px;
          min-width: 25px;
          height: 25px;
          min-height: 25px;
          border-radius: 0px;
          border: 1px solid #ae9b77;
          display: inline-block;
          position: relative;
          top: 3px;
          margin-right: 5px; }
          #contact-form form .form-group .contact-checkbox-label .checkbox-styled span {
            color: #ffffff00;
            position: relative;
            font-size: 24px;
            bottom: 6px;
            left: 3px; }
        #contact-form form .form-group .contact-checkbox-label .checkbox-styled.checked {
          background-color: #0ba0c0; }
          #contact-form form .form-group .contact-checkbox-label .checkbox-styled.checked span {
            color: #fff; }
        #contact-form form .form-group .contact-checkbox-label a {
          color: #0ba0c0;
          display: contents; }
          #contact-form form .form-group .contact-checkbox-label a:hover {
            color: #0e81ac; }

#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: #000;
      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: #0ba0c0;
    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 {
    background-color: #fafafa;
    padding: 20px; }
    #news-tile .one-news .wrapper .text h3 {
      text-align: left;
      font-size: 115%;
      color: #0ba0c0;
      font-weight: 500;
      text-transform: uppercase;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      font-family: "Poppins", sans-serif;
      margin-top: 0; }
    #news-tile .one-news .wrapper .text p {
      font-size: 85%;
      color: #111111;
      line-height: 22px;
      text-align: left;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      font-family: "Poppins", 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: #797979;
    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: #f3f5f5; }
  .box.sky-bg {
    background-color: #def7ff; }

.subsite h1, .subsite h2, .subsite h3, .subsite h4, .subsite h5, .subsite h6 {
  color: #111111;
  font-family: "Poppins", 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 h4 {
  color: #0ba0c0; }
.subsite h1 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 220%;
  margin-bottom: 30px; }
.subsite p, .subsite ul li, .subsite ol li {
  font-size: 110%;
  color: #111111; }
  .subsite p strong, .subsite ul li strong, .subsite ol li strong {
    font-weight: 600; }
.subsite p, .subsite ul li, .subsite ol li {
  font-size: 110%;
  color: #010101;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  text-align: justify; }
  .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: #000; }
.subsite ul {
  list-style: square; }
  .subsite ul li {
    padding-left: 26px;
    background-image: url("../img/ul.svg");
    background-position: left top 5px;
    background-size: 16px;
    background-repeat: no-repeat; }
    .subsite ul li::marker {
      color: #005e8e; }
.subsite p {
  line-height: 130%;
  margin-bottom: 10px; }
.subsite .big-paragraf {
  font-size: 140%; }
.subsite .subsite-content p {
  color: #797979;
  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-image: url("/img/big-background.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 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: #fafafa; }
    .subsite .title-inner .back-to-start .caret {
      font-size: 175%;
      height: 100%;
      display: block; }

@media (max-width: 575px) {
  header {
    padding-top: 0px; }
    header.sticked #main-nav .inner #logo img {
      width: 150px; }
    header.sticked #main-nav {
      margin-bottom: 0px; }

  main {
    padding-top: 96px; }

  .btn:focus {
    outline: none !important;
    box-shadow: none !important; }

  .page-foto {
    height: auto; }

  #subpage-title {
    top: 51px; }

  #galleries {
    margin-left: 0px;
    margin-right: 0px; }
    #galleries .single-gallery {
      margin: 10px 0px;
      max-width: 100%;
      flex: 1 1 100%; }
      #galleries .single-gallery .foto {
        height: calc(100vw / 2); }
      #galleries .single-gallery h4 {
        font-size: 130%; }

  #gallery-simple {
    margin-left: 0px;
    margin-right: 0px; }
    #gallery-simple .one-image {
      margin: 10px 0px;
      max-width: 100%;
      flex: 1 1 100%; }
      #gallery-simple .one-image img {
        height: calc(100vw / 2); }

  #full-form-sprzedaj #find-real-estate-more .selecty2 .form-control:first-child {
    margin-right: 0; }

  #subpage-title {
    font-size: 160%; }

  #apartamenty .full-form #zaawansowane {
    display: none; }

  #miniNav {
    top: 51px; }
    #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; }
      #miniNav .inner ul li {
        width: 100%; }

  #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 #logo a img {
    width: 170px; }
  #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: 85%; }
    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%; }
    body .subsite .content figure {
      margin: 0; }
      body .subsite .content figure.image-style-align-right {
        float: none;
        max-width: 100%; }

  .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; }

  #wynajem-sal .foto-block .wrapper {
    flex-direction: column-reverse;
    min-height: unset; }
    #wynajem-sal .foto-block .wrapper .text {
      right: 0;
      width: 100%;
      transform: skew(0deg);
      position: relative; }
      #wynajem-sal .foto-block .wrapper .text .text-inner {
        max-width: 100%;
        margin-left: 0;
        transform: skew(0deg);
        width: 100%;
        margin-bottom: 0; }
        #wynajem-sal .foto-block .wrapper .text .text-inner h2 {
          text-align: center;
          width: 100%; }
        #wynajem-sal .foto-block .wrapper .text .text-inner p {
          text-align: center;
          width: 100%; }
    #wynajem-sal .foto-block .wrapper .foto {
      width: 100%; }
      #wynajem-sal .foto-block .wrapper .foto figure img {
        width: 100%;
        height: auto; }

  .uslugi-three-columns .one-element {
    padding: 0 10px;
    margin-bottom: 20px; }
    .uslugi-three-columns .one-element .text {
      padding: 15px 5px 15px 5px; }
      .uslugi-three-columns .one-element .text h2 {
        font-size: 120%; }
    .uslugi-three-columns .one-element img {
      height: 45vw; }
    .uslugi-three-columns .one-element:nth-child(3n) {
      padding-right: 10px; }

  #bottom-navbar {
    display: none; }

  #terms-group {
    display: flex; }
    #terms-group input[type="checkbox"] {
      position: relative;
      left: 5px;
      top: 5px; }

  #top-bar .telephone {
    padding: 0 15px; }
    #top-bar .telephone a {
      font-size: 16px;
      padding-left: 0;
      background: none !important; }

  #top-belt .inner {
    height: 38px; }

  #logo a img {
    width: 190px; }

  #layerslider {
    height: 150px; }

  .start-title h1 {
    font-size: 150%; }
  .start-title h2 {
    font-size: 200%; }

  .nasze-plusy h2 {
    font-size: 200%; }

  #last-offers .module-title {
    font-size: 180%; }

  #slide-down {
    width: 60px;
    height: 60px;
    left: calc(50% - 30px); }
    #slide-down img {
      width: 20px; }

  #big-slider .inner {
    padding-left: 0; }
  #big-slider .xs-text {
    position: relative;
    background-color: #232846;
    margin-bottom: 20px; }
    #big-slider .xs-text ul li {
      color: #fff; }
      #big-slider .xs-text ul li:before {
        width: 20px;
        min-width: 20px;
        height: 20px;
        margin-right: 10px;
        background-size: 12px; }
    #big-slider .xs-text .buttons .btn {
      padding: 11px 25px; }
    #big-slider .xs-text h2 {
      font-size: 170%;
      color: #ffffff;
      font-weight: 600;
      text-transform: uppercase;
      white-space: normal;
      margin-bottom: 30px; }
      #big-slider .xs-text h2 span {
        color: #000; }
    #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 p {
          font-size: 100%;
          color: #ffffff;
          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; }

  #footer-logo {
    margin-top: 15px;
    margin-bottom: 20px; }
    #footer-logo img {
      width: 200px; }

  .btn-primary {
    width: 188px;
    min-width: 188px;
    height: 35px; }

  input.form-control, select.form-control {
    height: 35px;
    font-size: 14px;
    padding: 0px 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-footer .wrapper {
    justify-content: space-around;
    padding: 30px 0; }
  #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;
    padding: 0; }
    #footer .copyright p {
      margin-bottom: 5px; }
  #footer .author {
    font-size: 13px;
    padding: 0; }

  .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: 70px; }
  #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:nth-child(odd) .wrapper {
    flex-direction: column-reverse; }
  .foto-block .wrapper {
    flex-direction: column-reverse; }
    .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: 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 .foto-block:nth-child(even) .foto {
      display: flex;
      justify-content: flex-start; }
    #foto-block-consulting .foto-block:nth-child(even) .wrapper {
      flex-direction: column; }
    #foto-block-consulting .foto-block:nth-last-child(2) .foto img {
      padding-bottom: 75px; }
    #foto-block-consulting h2 {
      font-size: 250%;
      margin-top: 10px; }
    #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: 1.5rem; }
  #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; }

  #main-menu.mini-menu .page-nav li a span {
    font-size: 15px; }

  .box {
    padding: 30px 0px; }

  .subsite p, .subsite ul, .subsite ol, .subsite a {
    text-align: left !important; }
  .subsite h1, .subsite h2 {
    margin-bottom: 20px;
    text-align: left !important; }
  .subsite h2 {
    font-size: 150%; }
  .subsite h3 {
    font-size: 130%;
    text-align: left !important; }
  .subsite .subsite-content {
    column-count: 1;
    margin-bottom: 0 !important; }
  .subsite .big-paragraf {
    font-size: 100%; }

  .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%; }

  #seo-block .one-block {
    text-align: center;
    flex-direction: column; }
    #seo-block .one-block .button {
      display: flex;
      flex-direction: column; }
      #seo-block .one-block .button a {
        margin-left: 0px;
        margin-right: 0px;
        font-size: 110%;
        padding: 14px 16px 14px 16px;
        background-size: 40px;
        background-image: none;
        background-position: left 15px center;
        display: block; }
        #seo-block .one-block .button a strong {
          margin: 0; }
  #seo-block .double-block {
    justify-content: center; }

  #form-foto-block .inner #contact-form h2 {
    font-size: 220%; }
  #form-foto-block .inner .foto {
    display: none; } }
@media (min-width: 576px) and (max-width: 767px) {
  header.sticked #main-nav .inner #logo img {
    width: 150px; }

  #logo img {
    max-width: 200px; }

  #subpage-title {
    top: 89px; }

  #galleries {
    margin-left: -5px;
    margin-right: -5px; }
    #galleries .single-gallery {
      margin: 5px 5px;
      max-width: 235px;
      flex: 1 1 45%; }
      #galleries .single-gallery .foto {
        height: 200px; }
      #galleries .single-gallery h4 {
        font-size: 120%; }

  #gallery-simple {
    margin-left: -5px;
    margin-right: -5px; }
    #gallery-simple .one-image {
      margin: 5px 5px;
      max-width: 235px;
      flex: 1 1 45%; }
      #gallery-simple .one-image img {
        height: 200px; }

  #wynajem-sal .foto-block .wrapper {
    flex-direction: column-reverse;
    min-height: unset; }
    #wynajem-sal .foto-block .wrapper .text {
      right: 0;
      width: 100%;
      transform: skew(0deg);
      position: relative; }
      #wynajem-sal .foto-block .wrapper .text .text-inner {
        max-width: 100%;
        margin-left: 0;
        transform: skew(0deg);
        width: 100%;
        margin-bottom: 0; }
        #wynajem-sal .foto-block .wrapper .text .text-inner h2 {
          text-align: center;
          width: 100%; }
        #wynajem-sal .foto-block .wrapper .text .text-inner p {
          text-align: center;
          width: 100%; }
    #wynajem-sal .foto-block .wrapper .foto {
      width: 100%; }
      #wynajem-sal .foto-block .wrapper .foto figure img {
        width: 100%;
        height: auto; }

  #bottom-navbar .navbar .container .navbar-collapse .nav.navbar-nav li a {
    padding: 25px 13px;
    font-size: 16px; }

  #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: 80%; }
    body ul li {
      margin-bottom: 10px; }
      body ul li:before {
        width: 20px;
        min-width: 20px;
        height: 20px;
        margin-right: 10px;
        background-size: 12px; }

  #seo-block .one-block {
    text-align: center;
    flex-direction: column; }
    #seo-block .one-block .button {
      display: flex;
      flex-direction: column; }
      #seo-block .one-block .button a {
        margin-left: 8px;
        margin-right: 8px;
        font-size: 130%;
        padding: 18px 30px 18px 60px;
        background-size: 40px;
        background-position: left 15px center; }
  #seo-block .double-block {
    justify-content: center; }

  #form-foto-block .inner .foto {
    display: none; }

  #foto-block-full-img .wrapper {
    min-height: 500px;
    flex-direction: row; }
  #foto-block-full-img .foto img {
    object-position: calc(50vw - 800px) center; }
  #foto-block-full-img .text .text-inner {
    width: 100%; }

  .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 .foto-block:nth-child(even) .foto {
      display: flex;
      justify-content: flex-start; }
    #foto-block-consulting .foto-block:nth-child(even) .wrapper {
      flex-direction: column; }
    #foto-block-consulting .foto-block:nth-last-child(2) .foto img {
      padding-bottom: 75px; }
    #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; }

  select.form-control {
    padding-right: 0; }

  .btn-primary {
    width: 213px;
    min-width: 213px;
    height: 40px; }

  main {
    padding-top: 102px; }

  .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;
    margin-bottom: 20px; }
    .uslugi-three-columns .one-element .text {
      padding: 15px 5px 15px 5px; }
    .uslugi-three-columns .one-element img {
      height: 265px; }

  .simple-steps .one-step {
    width: 50%; }
  .simple-steps .foto img {
    max-height: 150px; }

  #miniNav .page-nav li a {
    padding: 15px 10px;
    font-size: 16px; }
  #miniNav .inner ul {
    width: 100%;
    align-items: flex-start;
    max-width: 500px; }
    #miniNav .inner ul li {
      width: 100%; }

  .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 #logo .motto {
    font-size: 70%; }
  #main-nav .inner #social-media {
    margin-left: 30px; }

  .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: 200px; }
    #layerslider .ls-layer .slider-bg .container {
      max-width: 100%; }
    #layerslider .ls-layer .slider-bg .wrapper .text {
      max-width: 400px;
      margin-left: 15px; }
      #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%; }
    #layerslider .ls-layer .slider-bg .wrapper ul li {
      margin-bottom: 20px; }
      #layerslider .ls-layer .slider-bg .wrapper ul li:before {
        background-size: 12px; }
    #layerslider .ls-layer .slider-bg .wrapper .buttons .btn {
      padding: 14px 30px; }

  #last-offers .module-title {
    font-size: 150%; }

  #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 .bottom-menu .wrapper {
    height: 70px; }
  #footer .bottom-menu a {
    padding: 0 25px; }
  #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(odd) .wrapper {
    flex-direction: column-reverse; }
  .foto-block .wrapper {
    flex-direction: column-reverse; }
    .foto-block .wrapper .foto {
      margin-bottom: 0px; }
    .foto-block .wrapper .text .text-inner {
      padding-left: 15px; }
      .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; }

  #subpage-title {
    font-size: 180%; }

  .subsite .title-inner {
    padding: 20px 10px; }
  .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; }
  .subsite .big-paragraf {
    font-size: 120%; }

  .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) {
  #logo img {
    max-width: 200px; }

  #subpage-title {
    top: 99px; }

  .wideo-block .wideo iframe {
    height: 270px; }

  #galleries .single-gallery {
    max-width: 315px;
    flex: 1 1 45%; }
    #galleries .single-gallery .foto {
      height: 240px; }

  #gallery-simple .one-image {
    max-width: 315px;
    flex: 1 1 45%; }
    #gallery-simple .one-image img {
      height: 240px; }

  #wynajem-sal .foto-block .wrapper {
    flex-direction: column-reverse; }
    #wynajem-sal .foto-block .wrapper .text {
      right: 0;
      width: 100%;
      transform: skew(0deg);
      position: relative; }
      #wynajem-sal .foto-block .wrapper .text .text-inner {
        max-width: 100%;
        margin-left: 0;
        transform: skew(0deg);
        width: 100%;
        margin-bottom: 0; }
        #wynajem-sal .foto-block .wrapper .text .text-inner h2 {
          text-align: center;
          width: 100%; }
        #wynajem-sal .foto-block .wrapper .text .text-inner p {
          text-align: center;
          width: 100%; }
    #wynajem-sal .foto-block .wrapper .foto {
      width: 100%; }
      #wynajem-sal .foto-block .wrapper .foto figure img {
        width: 100%;
        height: auto; }

  body {
    font-size: 80%; }
    body ul li {
      margin-bottom: 10px; }
      body ul li:before {
        width: 20px;
        min-width: 20px;
        height: 20px;
        margin-right: 10px;
        background-size: 12px; }

  #workers .wrapper .one-worker .inner {
    padding: 40px 38px; }

  #foto-block-full-img .wrapper {
    min-height: 450px; }
  #foto-block-full-img .foto img {
    right: 0%;
    object-position: center; }
  #foto-block-full-img .text .text-inner {
    width: 600px; }

  #foto-block-consulting .foto-block:nth-child(even) .foto {
    padding-left: 0px;
    padding-right: 30px; }
  #foto-block-consulting .foto-block:nth-child(even) .wrapper {
    flex-direction: row-reverse; }
  #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: 112px; }

  .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 .text {
    padding: 15px 15px 15px 15px; }
  .uslugi-three-columns .one-element img {
    height: 200px; }

  #miniNav .inner .page-nav {
    width: 100%;
    align-items: flex-start;
    max-width: 690px; }
    #miniNav .inner .page-nav li {
      width: 100%; }

  .page-nav li a {
    padding: 25px 10px; }

  #seo-block .one-block {
    text-align: center;
    flex-direction: column; }
    #seo-block .one-block .button {
      display: flex;
      flex-direction: column; }
      #seo-block .one-block .button a {
        margin-left: 8px;
        margin-right: 8px;
        font-size: 130%;
        padding: 18px 30px 18px 60px;
        background-size: 40px;
        background-position: left 15px center; }
  #seo-block .double-block {
    justify-content: center; }

  #main-nav .bg-block {
    width: calc((100vw + 100px) / 2); }
  #main-nav .inner {
    padding: 5px 0; }
    #main-nav .inner #social-media {
      margin-left: 30px; }

  #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; }

  .btn-primary {
    width: 213px;
    min-width: 213px;
    height: 41px;
    padding: 11px 10px 9px 10px; }

  #layerslider {
    height: 250px; }
    #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 .buttons .btn {
      padding: 14px 35px; }
    #layerslider .ls-layer .slider-bg .wrapper .text {
      max-width: 400px; }
      #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%; }

  .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 .bottom-menu .wrapper {
    height: 80px; }
  #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"] {
    padding: 0px 10px;
    margin: 0 10px;
    height: 40px;
    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 .wrapper .text .text-inner {
    width: 345px; }
    .foto-block .wrapper .text .text-inner h1 {
      text-align: center; }
    .foto-block .wrapper .text .text-inner p {
      text-align: center; }
    .foto-block .wrapper .text .text-inner .buttons {
      flex-direction: column; }
      .foto-block .wrapper .text .text-inner .buttons .btn {
        margin: 10px;
        padding: 15px;
        min-width: 300px; }
        .foto-block .wrapper .text .text-inner .buttons .btn:last-child {
          margin: 10px;
          padding: 15px; }
  .foto-block.normal .wrapper .text .text-inner p {
    text-align: left; }

  #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 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; }

  #form-foto-block .inner .foto {
    display: none; } }
@media (min-width: 992px) and (max-width: 1199px) {
  header.sticked .page-nav li a span {
    padding: 20px 14px; }

  #subpage-title {
    top: 120px; }

  #galleries .single-gallery {
    max-width: 435px;
    flex: 1 1 45%; }
    #galleries .single-gallery .foto {
      height: 280px; }

  #gallery-simple .one-image {
    max-width: 435px;
    flex: 1 1 45%; }
    #gallery-simple .one-image img {
      height: 280px; }

  body {
    font-size: 90%; }
    body ul li {
      margin-bottom: 10px; }
      body ul li:before {
        width: 24px;
        min-width: 24px;
        height: 24px;
        background-size: 14px; }

  .wideo-block .wideo iframe {
    height: 300px; }

  #foto-block-full-img .wrapper {
    min-height: 450px; }
  #foto-block-full-img .foto img {
    right: -40%; }
  #foto-block-full-img .text .text-inner {
    width: 600px; }

  #workers .wrapper .one-worker .inner {
    padding: 40px 38px; }

  #foto-block-consulting .pion-line {
    left: calc(50% - 485px); }
  #foto-block-consulting .text-inner {
    width: 500px; }

  #wynajem-sal .foto-block .wrapper .text {
    right: -111px;
    width: 60vw;
    transform: skew(15deg); }
    #wynajem-sal .foto-block .wrapper .text .text-inner {
      max-width: 385px;
      margin-left: 100px;
      transform: skew(-15deg); }

  #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: 126px; }

  #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; }

  #logo img {
    max-width: 200px; }

  #form-foto-block .inner .foto {
    overflow: hidden; }
    #form-foto-block .inner .foto img {
      object-fit: cover;
      object-position: center; }

  #seo-block .double-block {
    justify-content: center; }
  #seo-block .one-block {
    text-align: center;
    flex-direction: column; }
    #seo-block .one-block .button {
      display: flex;
      flex-direction: row; }
      #seo-block .one-block .button a {
        margin-left: 8px;
        margin-right: 8px;
        font-size: 130%;
        padding: 18px 30px 18px 60px;
        background-size: 40px;
        background-position: left 15px center; }

  #main-nav .bg-block {
    width: calc((100vw - 270px) / 2); }
  #main-nav .inner {
    justify-content: flex-start; }
    #main-nav .inner #logo .motto {
      font-size: 90%; }
    #main-nav .inner #social-media {
      margin-left: 30px; }
    #main-nav .inner .btn-menu {
      margin-left: auto; }

  .paralax_group .wrapper {
    padding-top: 145px; }
    .paralax_group .wrapper .text .text-inner {
      width: 465px; }
    .paralax_group .wrapper .buttons .btn {
      padding: 15px 32px; }

  #layerslider {
    height: 300px; }
    #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: 236px; }

  .page-nav li {
    margin: 0; }
    .page-nav li a {
      font-size: 100%; }
      .page-nav li a span {
        padding: 30px 14px; }

  #main-menu {
    margin-left: auto; }

  .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%; }

  #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 .text .text-inner .buttons .btn {
      padding: 15px 32px; }
  .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: 1579px) {
  body {
    font-size: 95%; }

  header.sticked #main-nav .inner #logo img {
    width: 185px; }
  header.sticked .page-nav li a span {
    padding: 20px 12px; }

  main {
    padding-top: 128px; }

  #subpage-title {
    top: 120px; }

  #galleries .single-gallery {
    max-width: 330px; }
    #galleries .single-gallery .foto {
      height: 250px; }

  #gallery-simple .one-image {
    max-width: 330px; }
    #gallery-simple .one-image img {
      height: 250px; }

  #seo-block .one-block .text {
    flex: 1 1 50%; }
  #seo-block .one-block .button {
    flex: 1 1 50%; }

  #logo img {
    width: 210px; }

  .wideo-block .wideo iframe {
    height: 350px; }

  #workers .wrapper .one-worker .inner {
    padding: 40px 38px; }

  #wynajem-sal .foto-block .wrapper .text {
    right: -111px;
    width: 55vw; }
    #wynajem-sal .foto-block .wrapper .text .text-inner {
      padding-left: 0;
      max-width: 405px; }

  #foto-block-consulting .pion-line {
    left: calc(50% - 570px); }
  #foto-block-consulting .text-inner {
    width: 600px; }

  .page-nav li a span {
    padding: 30px 12px; }

  .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: 350px; }
    #layerslider .ls-layer .slider-bg {
      background-size: auto 110%; }

  #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%; }

  .subsite .subsite-content {
    font-size: 90%; }
    .subsite .subsite-content h2 {
      margin-bottom: 20px; }

  .uslugi-three-columns .one-element img {
    height: 280px; } }
@media (min-width: 1580px) {
  .container {
    max-width: 1550px; }

  .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; } }
@media (min-width: 1580px) {
  .container {
    max-width: 1550px; }

  .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 */
