/*
 *  Owl Carousel - Core
 */
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&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; }

body {
  font-family: "Exo 2", sans-serif;
  max-width: 2440px;
  margin-left: auto;
  margin-right: auto;
  float: none;
  color: #6f6f6e; }
  body h1, body h2 {
    color: #6f6f6e; }
  body h3 {
    color: #6f6f6e; }
  body h4 {
    color: #6f6f6e; }
  body a {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    color: #6f6f6e; }
    body a:hover {
      color: #008bd2;
      text-decoration: none; }

nav ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.btn, .elementor-button {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  border-radius: 6px;
  font-family: "Exo 2", sans-serif;
  font-size: 120%;
  padding: 8px 45px;
  background-color: transparent; }
  .btn:hover, .elementor-button:hover {
    background-color: transparent; }

.gradient-text {
  background: -webkit-linear-gradient(0deg, #00418f 0%, #009ddd 42%, #61b36b 82%, #95c10b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.btn-primary, .subsite .btn-primary {
  border-radius: 25px;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 100%;
  padding: 19px 41px;
  background-color: #008bd2;
  text-transform: uppercase; }
  .btn-primary:hover, .subsite .btn-primary:hover {
    background-color: #29abe2;
    color: #fff; }

.btn-secondary, .subsite .btn-secondary {
  border-radius: 25px;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 100%;
  padding: 19px 41px;
  background-color: #6f6f6e;
  text-transform: uppercase; }
  .btn-secondary:hover, .subsite .btn-secondary:hover {
    background-color: #29abe2;
    color: #fff; }

.form-control {
  border-radius: 10px;
  height: 50px;
  border: 1px solid #f7f7f7; }
  .form-control:focus-visible {
    outline: none; }

.contact-checkbox {
  position: absolute;
  width: 0px;
  height: 0px;
  z-index: -1;
  opacity: 0; }

.checkbox-styled {
  margin-right: 10px;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 35px;
  height: 35px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #f7f7f7; }
  .checkbox-styled span {
    opacity: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    font-size: 26px;
    color: #008bd2; }
  .checkbox-styled.checked span {
    opacity: 1; }

.contact-checkbox-label {
  display: flex; }

textarea.form-control {
  min-height: 130px; }

.module-title {
  font-size: 300%;
  font-family: "Exo 2", sans-serif;
  margin-top: 45px;
  margin-bottom: 45px;
  font-weight: 700;
  text-transform: uppercase; }

.module-subtitle {
  margin-top: -40px;
  color: #008bd2;
  font-weight: 700;
  margin-bottom: 45px; }

button {
  transition: 0.3s;
  -webkit-transition: 0.3s; }

.btn-menu {
  display: none; }
  .btn-menu span {
    display: block;
    height: 3px;
    width: 40px;
    background-color: #29abe2;
    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; }

.btn-blue {
  color: #fff;
  background-color: #008bd2; }
  .btn-blue:hover {
    color: #fff;
    background-color: #6f6f6e; }

.btn-grey {
  color: #fff;
  background-color: #6f6f6e; }
  .btn-grey:hover {
    color: #fff;
    background-color: #008bd2; }

header {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: fixed;
  top: 7px;
  left: 0px;
  right: 0px;
  z-index: 8; }
  header.sticked {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    top: 0px; }
    header.sticked .page-nav li a {
      padding-top: 25px;
      padding-bottom: 25px; }
    header.sticked .page-nav .dropdown-menu li a {
      padding: 10px 30px; }
    header.sticked #logo img {
      transform: scale(0.8);
      transform-origin: left center; }

.r-name {
  z-index: -9999;
  opacity: 0;
  position: absolute; }

.cookies-info {
  position: fixed;
  bottom: 0;
  top: 0;
  z-index: 999999;
  left: 0;
  right: 0;
  background-color: #00000047;
  display: flex;
  justify-content: center;
  align-items: flex-end; }
  .cookies-info .wrapper {
    padding-top: 10px;
    width: 100%;
    max-height: 80%;
    background-color: #fff;
    overflow-y: auto; }
  .cookies-info .mini p {
    text-align: center; }
  .cookies-info .more {
    display: none; }
  .cookies-info .buttons {
    display: flex;
    justify-content: center; }
    .cookies-info .buttons .btn {
      font-size: 120%;
      padding: 10px 20px;
      margin: 10px; }

#main-menu .page-nav {
  flex-wrap: wrap; }

#main-nav .btn-menu.menu-small {
  display: block; }

#product-category-list {
  margin-left: -30px;
  margin-right: -30px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 30px; }
  #product-category-list .one-product {
    flex: 1 1 21%;
    margin: 30px;
    background-color: #f1f1f1;
    max-width: 347.5px; }
    #product-category-list .one-product h2 {
      text-align: center;
      padding: 20px;
      margin: 0;
      font-size: 140%; }
    #product-category-list .one-product .foto {
      height: 200px; }
      #product-category-list .one-product .foto img {
        width: 100%;
        height: 100%;
        object-position: center; }

#products {
  margin-bottom: 45px; }
  #products .inner {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px; }
  #products .one-product {
    text-align: center;
    flex: 1 1 30%;
    margin: 25px 15px;
    border: 1px solid #f7f7f7;
    padding: 30px;
    max-width: 515px; }
    #products .one-product h2 {
      color: #008bd2;
      text-transform: uppercase;
      font-size: 150%;
      font-weight: bold; }
    #products .one-product img {
      max-height: 154px;
      max-width: 154px;
      object-fit: contain;
      object-position: center;
      margin-bottom: 15px;
      filter: invert(44%) sepia(1%) saturate(257%) hue-rotate(22deg) brightness(97%) contrast(89%); }

.portfolio-carousel {
  position: relative;
  margin-bottom: 30px; }
  .portfolio-carousel .owl-nav button {
    position: absolute;
    top: calc(50% - 22.5px);
    border-radius: 50%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px; }
    .portfolio-carousel .owl-nav button img {
      width: 28px; }
    .portfolio-carousel .owl-nav button.owl-prev {
      background-color: #008bd2;
      left: -60px; }
      .portfolio-carousel .owl-nav button.owl-prev img {
        position: relative;
        left: -2px; }
    .portfolio-carousel .owl-nav button.owl-next {
      transform: rotate(180deg);
      background-color: #008bd2;
      right: -60px; }
      .portfolio-carousel .owl-nav button.owl-next img {
        position: relative;
        left: -2px; }
    .portfolio-carousel .owl-nav button:focus {
      outline: none !important; }
    @media (max-width: 1700px) {
      .portfolio-carousel .owl-nav button.owl-prev {
        left: -20px; }
      .portfolio-carousel .owl-nav button.owl-next {
        right: -20px; } }
  .portfolio-carousel .foto {
    margin-bottom: 10px;
    height: 402px; }
    .portfolio-carousel .foto img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
  .portfolio-carousel h3 {
    font-weight: bold;
    font-size: 220%; }
  .portfolio-carousel p {
    font-size: 110%;
    max-width: 510px;
    margin-left: auto;
    margin-right: auto;
    line-height: 20px; }
  .portfolio-carousel .text {
    padding: 10px 15px; }
  .portfolio-carousel .one-element {
    display: flex;
    flex-direction: column;
    background-color: #f7f7f7;
    text-align: center;
    flex: 1 0 auto;
    height: 100%; }
  .portfolio-carousel .owl-stage {
    display: flex; }

#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; }

.bread {
  background-color: #f7f7f7;
  border-bottom: 1px solid #c5c5c5;
  display: none; }
  .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(111, 111, 110, 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(111, 111, 110, 0.7); }
        .bread ul.breadcrumb li a:hover {
          color: #29abe2; }
      .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; }

#subpage-title {
  color: #6f6f6e;
  text-align: center;
  border-top: 1px solid #f7f7f7;
  border-bottom: 1px solid #f7f7f7;
  margin: 0;
  padding: 45px 15px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center; }
  #subpage-title img {
    margin-right: 20px;
    width: 70px;
    height: 70px;
    object-fit: contain;
    object-position: center;
    filter: invert(32%) sepia(97%) saturate(1013%) hue-rotate(172deg) brightness(104%) contrast(101%); }

#short-desc p {
  font-weight: 300;
  line-height: 105%; }
#short-desc .inner {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px; }

#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; }

.module-title {
  clear: both;
  padding-top: 45px;
  border-top: 1px solid #f7f7f7; }

#top-belt .container-fluid {
  padding-top: 0; }
#top-belt .inner {
  display: flex;
  align-items: center;
  height: 50px; }
#top-belt .top-contact {
  width: 100%;
  display: flex;
  flex: 1 1;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto; }
  #top-belt .top-contact a, #top-belt .top-contact p {
    font-size: 160%;
    color: #008bd2;
    margin: 0;
    margin-left: 5%;
    font-weight: 600;
    background-position: left center;
    background-size: 25px;
    background-repeat: no-repeat;
    padding-left: 35px; }
  #top-belt .top-contact a:hover {
    color: #29abe2; }

#main-nav {
  background-color: #fff; }
  #main-nav ul {
    margin: 0; }
    #main-nav ul li {
      margin: 0; }
  #main-nav .social-media {
    display: flex; }
    #main-nav .social-media li img {
      width: 100%; }
    #main-nav .social-media li a {
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 4px;
      margin-right: 4px;
      padding: 7px;
      border-radius: 50%;
      background-color: #f1f1f1; }
  #main-nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between; }

#logo img {
  width: 290px;
  transition: 0.5s;
  -webkit-transition: 0.5s; }

#main-menu {
  display: flex;
  align-items: center; }
  #main-menu .menu-button {
    margin-left: 30px;
    margin-right: 20px; }

.page-nav {
  display: flex;
  align-items: center; }
  .page-nav li {
    margin-bottom: 0px; }
    .page-nav li a {
      font-weight: 600;
      display: block;
      padding: 45px 30px;
      font-size: 100%;
      text-transform: lowercase; }
      .page-nav li a:hover {
        color: #008bd2; }
    .page-nav li:before {
      display: none; }
  .page-nav .dropdown-menu {
    border-top: 3px solid #29abe2;
    border-radius: 0px 0px 5px 5px; }
    .page-nav .dropdown-menu li a {
      padding: 10px 30px;
      width: max-content;
      max-width: 100%; }

#switch-lang li a {
  display: block;
  font-weight: 700;
  color: #b6b6b6;
  line-height: 18px; }
  #switch-lang li a.active {
    color: #6f6f6e; }
  #switch-lang li a:hover {
    color: #008bd2; }

#nav-contact {
  align-items: center;
  display: flex; }
  #nav-contact img {
    height: 44px;
    margin-right: 8px; }
  #nav-contact .tel a {
    line-height: 18px;
    display: block; }

.language {
  display: flex;
  align-items: center; }
  .language a {
    padding: 3px 12px;
    display: block; }
    .language a:hover {
      transform: translateY(-2px); }

#offer-links {
  margin-bottom: 45px; }
  #offer-links .inner {
    position: relative;
    padding-top: 45px;
    padding-bottom: 45px;
    min-height: 750px; }
  #offer-links h2, #offer-links h1 {
    font-size: 440%;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 45px; }
  #offer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 44%; }
    #offer-links ul li a {
      font-size: 140%;
      display: block;
      padding: 25px 45px;
      font-weight: 500;
      background-color: #f1f1f1;
      border-bottom: 1px solid #fff; }
      #offer-links ul li a:hover {
        background-color: #008bd2;
        color: #fff; }
    #offer-links ul li:last-child a {
      border-bottom: none; }
  #offer-links .foto {
    right: 0px;
    top: 0px;
    bottom: 0px;
    position: absolute;
    z-index: -1;
    overflow: hidden;
    width: 70%; }
    #offer-links .foto img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center center; }

#poducts {
  border-top: 1px solid #efefef; }

#slider-with-static {
  position: relative;
  margin-bottom: 45px; }
  #slider-with-static .static-text {
    background-color: #fff;
    padding: 25px 45px;
    max-width: 50%; }
    #slider-with-static .static-text h4 {
      color: #008bd2; }
    #slider-with-static .static-text .buttons .btn {
      min-width: 180px;
      margin-left: 5px;
      margin-right: 5px; }
  #slider-with-static .static {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1; }
    #slider-with-static .static .container {
      padding-top: 121px;
      position: relative;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      overflow: hidden;
      height: 100%; }

#layerslider {
  height: 100vh;
  z-index: 0;
  min-height: 600px; }
  #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;
        padding-bottom: 9vw; }
        #layerslider .ls-layer .slider-bg .wrapper .text {
          max-width: 500px; }
          #layerslider .ls-layer .slider-bg .wrapper .text h2 {
            font-size: 200%;
            color: #ffffff;
            font-weight: 700;
            text-transform: uppercase;
            white-space: normal; }
          #layerslider .ls-layer .slider-bg .wrapper .text .text-inner p {
            font-size: 120%;
            color: #ffffff;
            font-weight: 400;
            white-space: normal; }
          #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-slider-bg .paralax-img {
    position: absolute;
    width: 120%;
    height: 120%;
    object-fit: cover;
    object-position: top center;
    z-index: -1; }
.paralax_group .wrapper {
  display: flex;
  padding-top: 153px; }
  .paralax_group .wrapper .text {
    width: 50%;
    padding-left: calc((100vw - 1110px) / 2); }
    .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 li {
      display: flex;
      align-items: center;
      font-size: 155%;
      color: #000;
      font-weight: 500; }
    .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: #008bd2;
    margin-left: 15px;
    margin-right: 15px; }
    .pagination .button-nav:hover {
      color: #29abe2; }
  .pagination .numbers {
    display: flex; }
    .pagination .numbers a {
      width: 30px;
      height: 38px;
      border: 1px solid #008bd2;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 4px;
      margin-right: 4px;
      color: #6f6f6e; }
      .pagination .numbers a.active {
        background-color: #008bd2;
        color: #fff; }
      .pagination .numbers a:hover:not(.active) {
        border-color: #29abe2;
        background-color: #29abe2;
        color: #fff; }
    .pagination .numbers span {
      align-self: flex-end; }

#big-slider .inner {
  position: relative; }
#big-slider .special-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end; }
  #big-slider .special-wrapper .special-container {
    bottom: -1px;
    position: relative;
    z-index: 31;
    width: 100%;
    height: 9vw;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover; }

#serach-belt {
  position: relative; }
  #serach-belt .form-control {
    padding-left: 30px;
    padding-right: 45px; }
  #serach-belt .btn-search {
    border-radius: 0px;
    width: 50px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    position: absolute;
    padding: 0;
    height: 100%; }
    #serach-belt .btn-search img {
      width: 26px; }

.button-more {
  padding-top: 50px;
  padding-bottom: 50px; }

.offer-list .one-offer {
  border-top: 10px solid #f7f7f7; }
  .offer-list .one-offer .one-offer-inner {
    display: flex;
    padding: 20px;
    color: #29abe2; }
    .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: #6f6f6e;
          font-weight: 600; }
        .offer-list .one-offer .one-offer-inner .head .title-wrapper a:hover h2 {
          color: #29abe2; }
    .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: #29abe2;
      font-weight: 600; }
      .offer-list .one-offer .one-offer-inner p strong {
        color: #6f6f6e; }
    .offer-list .one-offer .one-offer-inner .date p {
      color: #6f6f6e;
      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: #b6b6b6;
        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: #f7f7f7; }

.review-list .one-review {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px; }
  .review-list .one-review p {
    margin: 0;
    color: #6f6f6e;
    font-size: 120%;
    line-height: 120%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; }
  .review-list .one-review .foto {
    margin-right: 45px; }
    .review-list .one-review .foto img {
      width: 136px;
      height: 136px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center center; }
  .review-list .one-review .wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center; }

.double-block {
  display: flex;
  flex-wrap: wrap; }
  .double-block .one-block {
    color: #6f6f6e;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 15px;
    margin-bottom: 15px;
    flex: 1 1 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column; }
    .double-block .one-block .button {
      margin-top: auto; }
    .double-block .one-block h2 {
      color: #29abe2; }

.news-carousel-master {
  margin-left: 60px;
  margin-right: 60px; }

.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; }

.gallery-carousel-master .one-foto .foto {
  height: 154px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .gallery-carousel-master .one-foto .foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; }

.news-carousel {
  position: relative;
  margin-bottom: 45px; }
  .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: #6f6f6e;
    display: block;
    background-color: #f7f7f7; }
    .news-carousel .one-news .foto img {
      height: 400px;
      width: 100%;
      object-fit: cover;
      object-position: center center; }
    .news-carousel .one-news .wrapper {
      display: flex; }
      .news-carousel .one-news .wrapper h3 {
        color: #6f6f6e;
        text-transform: uppercase;
        font-size: 140%;
        overflow: hidden;
        font-weight: bold;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical; }
      .news-carousel .one-news .wrapper 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 .wrapper .date {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 86px;
        color: #fff;
        flex-direction: column;
        background-color: #008bd2;
        font-size: 140%; }
        .news-carousel .one-news .wrapper .date span {
          line-height: 26px; }
          .news-carousel .one-news .wrapper .date span:last-child {
            letter-spacing: 2px; }
          .news-carousel .one-news .wrapper .date span:first-child {
            font-size: 130%; }
      .news-carousel .one-news .wrapper .text {
        padding: 20px; }

#contact-block-form {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 30px;
  padding-bottom: 30px; }
  #contact-block-form .logo {
    margin-bottom: 30px; }
    #contact-block-form .logo img {
      width: 280px; }
  #contact-block-form .adress h2 {
    font-weight: 700; }
  #contact-block-form .text {
    padding-top: 30px; }
  #contact-block-form .contact a {
    font-size: 150%;
    display: flex;
    max-width: max-content;
    align-items: center;
    margin-bottom: 10px; }
    #contact-block-form .contact a img {
      height: 44px;
      margin-right: 10px; }

.form {
  padding-top: 30px; }
  .form h3 {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 220%;
    text-transform: uppercase; }

.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: #6f6f6e;
    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, 139, 210, 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%; }

#footer .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px; }
#footer .copyright {
  display: flex;
  align-items: center; }
  #footer .copyright p:first-child {
    margin-right: 5px; }
#footer a {
  color: #b6b6b6; }
  #footer a:hover {
    color: #008bd2; }
#footer p {
  margin: 0; }

#btn-menu {
  outline: none !important; }
  #btn-menu:focus {
    outline: none !important;
    box-shadow: none; }

#miniNav {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #fff;
  z-index: 9; }
  #miniNav .social-media {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center; }
    #miniNav .social-media li img {
      width: 100%; }
    #miniNav .social-media li a {
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 4px;
      margin-right: 4px;
      padding: 7px;
      border-radius: 50%;
      background-color: #f1f1f1; }
  #miniNav #nav-contact {
    padding: 30px;
    justify-content: center; }
  #miniNav .page-nav {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none; }
    #miniNav .page-nav .dropdown-menu {
      border: none;
      position: relative; }
      #miniNav .page-nav .dropdown-menu li {
        border: none; }
        #miniNav .page-nav .dropdown-menu li:last-child {
          border: none; }
    #miniNav .page-nav li a {
      padding: 8px 15px;
      font-size: 160%; }
    #miniNav .page-nav li .dropdown-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      #miniNav .page-nav li .dropdown-toggle::after {
        display: none;
        /*                    content: "+";
                            border: none;
                            font-size: 160%;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 20px;
                            height: 20px;
                            cursor: pointer;
                            color: $blue;
                            z-index: 9999;*/ }
      #miniNav .page-nav li .dropdown-toggle .caret {
        display: flex;
        width: 20px;
        height: 20px;
        z-index: 999999;
        color: #29abe2;
        font-size: 160%;
        width: 20px;
        height: 20px;
        filter: invert(59%) sepia(83%) saturate(1312%) hue-rotate(165deg) brightness(92%) contrast(93%);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url("../img/plus.svg"); }
  #miniNav .menu-button {
    margin: 0; }
  #miniNav .btn-close {
    color: #29abe2;
    position: absolute;
    top: 49px;
    right: 11px;
    font-size: 26px; }
    #miniNav .btn-close:hover {
      color: #49d4ff; }
    #miniNav .btn-close.sticked {
      top: 6px; }
  #miniNav .inner {
    padding-top: 75px;
    padding-bottom: 30px;
    position: relative; }
  #miniNav .nav-logo {
    margin-bottom: 20px; }
  #miniNav #main-menu {
    display: flex;
    flex-direction: column; }
    #miniNav #main-menu .language {
      margin: 0;
      margin-bottom: 20px;
      order: 1; }
    #miniNav #main-menu .page-nav {
      list-style: none;
      margin: 0;
      padding: 0;
      order: 2;
      margin-bottom: 20px; }
    #miniNav #main-menu .menu-button {
      order: 3; }

@media (max-width: 1199px) {
  /*    #main-menu {
          display: none;
      }
      .btn-menu {
          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%; } }
#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 {
  padding-top: 60px;
  padding-bottom: 60px; }
  #steps .title h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 600;
    padding-bottom: 75px;
    margin-bottom: 0;
    background-image: url("../img/dots-l.png"), url("../img/dots-r.png");
    background-repeat: no-repeat;
    background-position: left 145px top 30px, right 145px top 30px; }
  #steps .inner {
    text-align: center;
    display: flex; }
    #steps .inner .arrow img {
      width: 76px;
      margin-top: 82px; }
    #steps .inner .one-step {
      flex: 1 1 22%; }
      #steps .inner .one-step .inside {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #29abe2;
        border: 20px solid #f7f7f7;
        width: 240px;
        height: 240px;
        margin-left: auto;
        margin-right: auto;
        float: none;
        margin-bottom: 20px;
        position: relative; }
        #steps .inner .one-step .inside .number {
          font-size: 112px;
          font-weight: 600;
          color: #fff; }
        #steps .inner .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 #f7f7f7;
          background-color: #fff;
          right: -30px;
          bottom: -30px;
          display: none; }
      #steps .inner .one-step .text p {
        color: #000;
        font-size: 22px;
        line-height: 26px; }

.acr-slide .card {
  margin-bottom: 12px;
  border: 1px solid #29abe2;
  border-radius: 15px;
  overflow: hidden; }
  .acr-slide .card .card-header {
    background-color: #29abe2;
    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: "Exo 2", sans-serif; }
  .acr-slide .card .card-body {
    font-size: 120%; }

#foto-block-why-szczecin .foto-block:nth-child(even) .wrapper {
  flex-direction: row-reverse; }
  #foto-block-why-szczecin .foto-block:nth-child(even) .wrapper .text .text-inner {
    padding-left: 0px;
    padding-right: 64px; }
#foto-block-why-szczecin h1 {
  margin-top: 20px; }

#foto-block-start .wrapper {
  flex-direction: row-reverse; }
  #foto-block-start .wrapper .text {
    width: 50%; }
    #foto-block-start .wrapper .text .text-inner {
      padding-left: 45px;
      padding-right: 45px; }
      #foto-block-start .wrapper .text .text-inner p {
        padding-right: 0; }
  #foto-block-start .wrapper .foto {
    padding: 1vw 2vw;
    width: 50%;
    border-radius: 15px;
    min-height: 20vw; }
    #foto-block-start .wrapper .foto img {
      border-radius: 15px; }

.foto-block {
  background-color: #003B86; }
  .foto-block .wrapper {
    display: flex;
    justify-content: space-between; }
    .foto-block .wrapper .text {
      width: 100%; }
      .foto-block .wrapper .text .text-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        height: 100%;
        padding-left: 64px; }
        .foto-block .wrapper .text .text-inner h1 {
          color: #fff;
          font-size: 5.6em;
          line-height: 1em;
          margin-bottom: 20px; }
        .foto-block .wrapper .text .text-inner p {
          color: #fff;
          padding: 0% 10% 0% 0%; }
    .foto-block .wrapper .foto-block-pause {
      height: auto;
      min-width: 75px; }
    .foto-block .wrapper .foto {
      width: 100%;
      min-height: 31vw; }
      .foto-block .wrapper .foto img {
        width: 100%;
        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, #00418f 0%, #009ddd 42%, #61b36b 82%, #95c10b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
    .foto-block.normal .wrapper .text .text-inner p {
      color: #6f6f6e; }

.apply-form .elementor-field-group .elementor-select-wrapper:before {
  display: none !important; }

#application-block {
  background-color: #003B86; }
  #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: "Exo 2", 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: "Exo 2", 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: #29abe2; }
        #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: #29abe2; }
      #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: #29abe2; }
    #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 .container-fluid {
  padding-top: 0; }

.line-background {
  background-image: url("/img/line-background.png");
  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, 139, 210, 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: #6f6f6e;
        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: #6f6f6e;
          font-weight: 400; }
        .company-block .wrapper .socials .social.link:hover span {
          color: #29abe2; }

#questions {
  display: flex;
  justify-content: center; }
  #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 #003B86;
    border-radius: 15px;
    overflow: hidden; }
    #questions #start-faq #accordion .card .card-header {
      background-color: #003B86;
      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 {
          font-size: 1.3em;
          text-transform: lowercase;
          display: block;
          color: #fff;
          font-family: "Exo 2", 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: #003B86; }
    #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: "Exo 2", sans-serif;
          margin: 0;
          color: #6f6f6e; }
          #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: #003B86;
            margin-top: 6px;
            margin-right: 10px; }

#workers .wrapper > .row {
  margin-right: -25px;
  margin-left: -25px; }
#workers .wrapper .one-worker {
  margin-bottom: 40px;
  padding: 0px 20px; }
  #workers .wrapper .one-worker .inner {
    text-align: left;
    padding: 40px;
    background-color: #f7f7f7;
    height: 100%; }
    #workers .wrapper .one-worker .inner .worker-title p {
      padding-bottom: 10px;
      margin-bottom: 0;
      color: #54595f; }
    #workers .wrapper .one-worker .inner h3 {
      font-size: 2em; }
    #workers .wrapper .one-worker .inner p {
      font-size: 1.5em;
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap;
      color: #54595f; }
      #workers .wrapper .one-worker .inner p a {
        font-size: 100%;
        display: block;
        margin-left: 5px;
        margin-right: 5px;
        color: #54595f; }
    #workers .wrapper .one-worker .inner .foto {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px; }
      #workers .wrapper .one-worker .inner .foto img {
        width: auto;
        max-width: 100%;
        max-height: 300px; }

#contact-block h2 {
  margin-bottom: 20px; }
#contact-block .text p {
  font-size: 1.4em; }
#contact-block .form {
  text-align: center; }

#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: #0045ff;
      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: #f5f7fc;
    font-size: 100%; }
    #news-tile .one-news .wrapper .date span {
      line-height: 26px;
      color: #788992; }
      #news-tile .one-news .wrapper .date span:first-child {
        font-size: 130%; }
  #news-tile .one-news .wrapper .text {
    padding: 20px; }
    #news-tile .one-news .wrapper .text h3 {
      color: #0045ff;
      text-transform: uppercase;
      font-size: 120%;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      font-family: "Exo 2", sans-serif; }
    #news-tile .one-news .wrapper .text p {
      font-size: 85%;
      color: #6f6f6e;
      line-height: 22px;
      text-align: left;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      font-family: "Exo 2", 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: #6f6f6e;
    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: #29abe2;
      position: absolute;
      right: 5px;
      top: 5px;
      font-size: 20px; }
    .better-info .wrapper a {
      color: #29abe2; }
      .better-info .wrapper a:hover {
        text-decoration: underline; }

.box {
  padding: 75px 60px;
  width: 100%; }
  .box.grey-bg {
    background-color: #f7f7f7; }
  .box.sky-bg {
    background-color: #def7ff; }

.subsite {
  margin-top: 121px;
  margin-bottom: 45px; }
  .subsite.kontakt {
    margin-bottom: 0; }
  .subsite .foto-block .text .text-inner {
    padding: 0;
    width: 800px;
    float: right; }
  .subsite .foto-block .foto {
    padding: 30px;
    padding-right: 0;
    background-color: #f7f7f7; }
  .subsite h1, .subsite h2, .subsite h3, .subsite h4, .subsite h5, .subsite h6 {
    color: #29abe2;
    font-family: "Exo 2", sans-serif; }
  .subsite h2 {
    font-size: 220%;
    margin-bottom: 45px;
    font-weight: 700; }
  .subsite h1 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 220%;
    margin-bottom: 45px; }
  .subsite p, .subsite ul, .subsite ol, .subsite a {
    font-size: 110%;
    color: #6f6f6e; }
  .subsite p a, .subsite ul li a, .subsite ol li a {
    font-size: 100%;
    color: #29abe2; }
    .subsite p a:hover, .subsite ul li a:hover, .subsite ol li a:hover {
      color: #008bd2; }
  .subsite ul {
    list-style: square; }
    .subsite ul li::marker {
      color: #29abe2; }
  .subsite p {
    line-height: 120%;
    margin-bottom: 10px; }
  .subsite .big-paragraf {
    font-size: 140%; }
  .subsite .subsite-content p {
    color: #6f6f6e;
    text-align: justify; }
  .subsite .subsite-content a {
    font-size: 1em;
    line-height: 1.2em;
    color: #003B86; }
    .subsite .subsite-content a:hover {
      color: #49d4ff; }
  .subsite .subsite-content img {
    max-width: 100%; }
  .subsite.seo .table {
    padding-top: 40px;
    padding-bottom: 40px; }
    .subsite.seo .table h2 {
      text-align: center; }
    .subsite.seo .table table .naglowek {
      background-color: #fafafa;
      text-transform: uppercase; }
    .subsite.seo .table table .temat {
      color: #062588;
      text-transform: uppercase; }
    .subsite.seo .table table th {
      vertical-align: middle;
      text-align: center;
      border: 1px solid black; }
    .subsite.seo .table table td {
      vertical-align: middle;
      text-align: center;
      border: 1px solid black; }
      .subsite.seo .table table td ul {
        text-align: left; }
        .subsite.seo .table table td ul li {
          margin-bottom: 15px;
          color: #212529; }
          .subsite.seo .table table td ul li::marker {
            color: black; }
  .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 {
    display: flex;
    justify-content: center;
    margin: 45px 10px; }
    .subsite .title-inner h1, .subsite .title-inner h2 {
      margin: 0; }

#divided .content {
  display: flex; }
  #divided .content .foto {
    flex: 1 1 50%; }
    #divided .content .foto img {
      max-width: 100%; }
  #divided .content .text {
    flex: 1 1 50%; }

#divided.subsite, #galleries.subsite {
  margin-bottom: 0; }

#gallery-list .inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px; }
  #gallery-list .inner .one-gallery {
    flex: 1 1 30%;
    text-align: center;
    margin: 30px;
    background-color: #f7f7f7;
    max-width: calc(33.33% - 60px); }
    #gallery-list .inner .one-gallery h2 {
      margin-top: 10px;
      margin-bottom: 10px; }
    #gallery-list .inner .one-gallery p {
      margin-bottom: 20px; }
    #gallery-list .inner .one-gallery .foto {
      height: 350px; }
      #gallery-list .inner .one-gallery .foto img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
    #gallery-list .inner .one-gallery .text {
      padding-left: 15px;
      padding-right: 15px; }

#photo-list figure {
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0; }
  #photo-list figure figcaption {
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
    text-align: center;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 4px 15px;
    display: none; }
#photo-list .inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px; }
#photo-list .one-foto {
  margin: 15px;
  flex: 1 1 21%;
  max-width: 370px; }
  #photo-list .one-foto img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center; }

.subsite .foto-block.module .buttons {
  margin-top: 50px; }
  .subsite .foto-block.module .buttons .btn-blue {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    border-radius: 21px;
    padding: 17px 42px;
    background-color: #008bd1; }
    .subsite .foto-block.module .buttons .btn-blue:hover {
      background-color: #6f6f6e; }
.subsite .foto-block.module h2 {
  margin-bottom: 54px;
  font-size: 40px;
  color: black;
  font-weight: 600;
  font-family: "Montserrat", sans-serif; }
.subsite .foto-block.module .text {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  background-color: #fafafa; }
  .subsite .foto-block.module .text .text-inner {
    padding-right: 10%;
    padding-top: 50px;
    padding-bottom: 50px; }
    .subsite .foto-block.module .text .text-inner p {
      color: #000000;
      font-weight: 400;
      font-family: "Montserrat", sans-serif;
      font-size: 18px;
      padding: 0; }
.subsite .foto-block.module .foto {
  width: 50%;
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 33.5vw; }
  .subsite .foto-block.module .foto .image {
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center; }
  .subsite .foto-block.module .foto img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute; }
.subsite .foto-block.module:nth-child(even) .wrapper {
  flex-direction: row-reverse; }
  .subsite .foto-block.module:nth-child(even) .wrapper .text {
    justify-content: flex-start; }
    .subsite .foto-block.module:nth-child(even) .wrapper .text .text-inner {
      padding-right: 0;
      padding-left: 10%; }
.subsite.seo {
  margin-bottom: 0; }
  .subsite.seo #questions {
    margin-bottom: 120px; }
    .subsite.seo #questions #start-faq #accordion .card {
      border: none; }
      .subsite.seo #questions #start-faq #accordion .card .card-body {
        opacity: 0.700;
        font-size: 18px !important;
        color: #000000 !important;
        font-weight: 400;
        font-family: "Montserrat", sans-serif;
        border: 1px solid #e4e4e4;
        border-bottom-left-radius: 23px;
        border-bottom-right-radius: 23px;
        padding-left: 60px; }
      .subsite.seo #questions #start-faq #accordion .card .card-header {
        background-color: #e4e4e4;
        background-image: none; }
        .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question {
          padding: 16px 60px;
          position: relative;
          display: flex;
          align-items: center; }
          .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question:after {
            content: "";
            position: absolute;
            background-image: url("../img/down-arrow-white.png");
            background-repeat: no-repeat;
            background-size: 100%;
            width: 25px;
            min-width: 25px;
            height: 14px;
            min-height: 14px;
            transform: rotate(180deg);
            transition: 0.3s;
            -webkit-transition: 0.3s;
            right: 20px; }
          .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question span {
            font-size: 23px;
            color: #000000;
            font-weight: 400;
            font-family: "Montserrat", sans-serif; }
          .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question[aria-expanded="true"] {
            background-color: #008bd1;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0; }
            .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question[aria-expanded="true"]:after {
              transform: rotate(0deg); }
            .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question[aria-expanded="true"] span {
              color: white; }
  .subsite.seo .content {
    margin-bottom: 120px; }
  .subsite.seo #subpage-title {
    font-size: 64px;
    color: #061e52;
    font-weight: 700;
    border: none;
    margin-bottom: 15px;
    text-transform: unset;
    padding: 0 10px;
    padding-top: 60px; }
  .subsite.seo #short-desc {
    padding: 0 10px; }
    .subsite.seo #short-desc .inner {
      margin-bottom: 90px; }
    .subsite.seo #short-desc p {
      color: #767675;
      font-weight: 400;
      font-size: 37px; }

.faq-title {
  padding-top: 140px;
  padding-bottom: 90px; }
  .faq-title h2 {
    font-size: 73px;
    color: #000000;
    font-weight: 600;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px; }
  .faq-title p {
    text-align: center;
    font-size: 20px;
    color: #008bd2;
    font-weight: 500;
    font-family: "Montserrat", sans-serif; }

.cities {
  background-color: #008bd1;
  padding: 60px 0; }
  .cities h2 {
    font-size: 41px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    margin-bottom: 80px;
    margin-top: 20px; }
  .cities ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0; }
    .cities ul li {
      flex: 0 0 25%;
      margin-bottom: 20px;
      padding-right: 15px; }
      .cities ul li a {
        font-size: 16px;
        color: #ffffff;
        font-weight: 400;
        font-family: "Montserrat", sans-serif; }
        .cities ul li a:hover {
          color: #a5e1ff; }

@media (max-width: 575px) {
  body {
    font-size: 90%; }

  header.sticked #logo img {
    transform: none;
    width: 170px; }

  #product-category-list {
    margin-left: -5px;
    margin-right: -5px; }
    #product-category-list .one-product {
      margin: 5px;
      flex: 1 1 50%;
      max-width: 46%; }
      #product-category-list .one-product h2 {
        font-size: 110%;
        padding: 10px; }
      #product-category-list .one-product .foto {
        height: 110px; }

  #miniNav #main-menu .page-nav li a {
    padding: 10px 15px; }
  #miniNav .inner ul {
    width: 100%;
    align-items: flex-start;
    font-size: 80%; }
    #miniNav .inner ul li {
      border-top: 1px solid #008bd2;
      width: 100%; }
      #miniNav .inner ul li:last-child {
        border-bottom: 1px solid #008bd2; }

  #offer-links h2, #offer-links h1 {
    font-size: 330%;
    margin-bottom: 30px; }
  #offer-links .inner {
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 550px; }
  #offer-links ul {
    max-width: 80%; }
    #offer-links ul li a {
      padding: 15px 45px; }

  #main-nav .btn-menu {
    padding: 8px 0px; }
  #main-nav #nav-contact {
    display: none; }
  #main-nav .social-media {
    display: none; }
  #main-nav .inner {
    padding: 5px 0; }
  #main-nav #switch-lang {
    margin-right: 20px;
    margin-left: auto; }

  #logo img {
    width: 170px; }

  #layerslider {
    height: 200px;
    min-height: initial; }

  #slider-with-static {
    margin-bottom: 30px; }
    #slider-with-static .buttons .btn {
      margin: 5px; }
    #slider-with-static .static-text {
      max-width: 100%;
      padding: 0; }
      #slider-with-static .static-text h2 {
        text-align: center;
        font-size: 165%; }
      #slider-with-static .static-text h4 {
        font-size: 130%;
        text-align: center; }
      #slider-with-static .static-text p {
        text-align: center; }
    #slider-with-static .static {
      position: relative; }
      #slider-with-static .static .container {
        padding: 15px; }

  #offer-links {
    margin-bottom: 30px; }
    #offer-links .foto {
      display: none; }
    #offer-links .inner {
      min-height: initial; }
    #offer-links .links h2 {
      text-align: center;
      font-size: 280%; }
    #offer-links .links ul {
      max-width: 100%; }
      #offer-links .links ul li a {
        padding: 10px 15px;
        text-align: center;
        font-size: 110%; }

  #logo img {
    width: 230px; }

  .portfolio-carousel .owl-nav button.owl-next {
    right: -10px; }
  .portfolio-carousel .owl-nav button.owl-prev {
    left: -10px; }
  .portfolio-carousel .foto {
    height: 188px; }
  .portfolio-carousel h3 {
    font-size: 160%; }
  .portfolio-carousel p {
    font-size: 100%;
    line-height: 18px; }
  .portfolio-carousel .text {
    padding: 6px 10px; }

  #contact-block-form .text {
    text-align: center; }
  #contact-block-form .contact {
    width: max-content;
    margin-left: auto;
    margin-right: auto; }
  #contact-block-form .logo img {
    width: 240px; }
  #contact-block-form .adress h2 {
    font-size: 200%; }

  #products .inner {
    margin-left: -5px;
    margin-right: -5px; }
  #products .one-product {
    flex: 1 1 45%;
    max-width: 47%;
    padding: 15px;
    margin: 5px; }
    #products .one-product img {
      max-height: 60px;
      max-width: 60px; }
    #products .one-product h2 {
      font-size: 100%; }

  .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; }

  .bread {
    display: none; }

  #terms-group {
    display: flex; }
    #terms-group input[type="checkbox"] {
      position: relative;
      left: 5px;
      top: 5px; }

  #top-belt .inner {
    height: 38px; }

  #logo a img {
    width: 190px; }

  #last-offers .module-title {
    font-size: 180%; }

  #big-slider .inner {
    padding-left: 0; }
  #big-slider .xs-text {
    position: relative;
    background: -webkit-linear-gradient(0deg, #00418f 0%, #009ddd 42%, #61b36b 82%, #95c10b 100%);
    margin-bottom: 20px; }
    #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 h2 {
          font-size: 130%;
          color: #ffffff;
          font-weight: 700;
          text-transform: uppercase;
          white-space: normal; }
        #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-master {
    margin-left: 30px;
    margin-right: 30px; }

  .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 .foto img {
      height: 220px; }
    .news-carousel .one-news .foto .date {
      position: absolute;
      top: 0px;
      right: 0px;
      background-color: #29abe2;
      color: #fff;
      padding: 2px 10px; }

  .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; }

  footer {
    margin-top: 30px; }

  #footer {
    padding: 15px; }
    #footer #logos-footer {
      padding-bottom: 30px; }
      #footer #logos-footer h2 {
        padding-top: 30px;
        margin-bottom: 20px;
        font-size: 180%; }
    #footer .wrapper {
      padding-bottom: 0px;
      flex-direction: column; }
    #footer .inner {
      margin-left: -15px;
      margin-right: -15px;
      flex-wrap: wrap; }
      #footer .inner .social-media a {
        background-position: top 2px left; }
      #footer .inner .one-column {
        flex: 1 1 100%;
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 20px; }
    #footer .copyright {
      flex-direction: column; }

  .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: #29abe2;
        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: 200%; }

  .module-subtitle {
    font-size: 130%; }

  #last-review .inner {
    padding-top: 1px; }

  .review-list .one-review {
    font-size: 75%;
    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; }

  #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 .inner {
    padding-top: 70px; }
  #miniNav .btn-close {
    top: 37px;
    right: 11px; }
    #miniNav .btn-close.sticked {
      top: 0px; }
  #miniNav .nav-logo img {
    width: 160px; }

  #steps {
    padding-top: 45px; }
    #steps .title h2 {
      font-size: 26px;
      padding-bottom: 42px;
      background-image: none; }
    #steps .inner {
      flex-direction: column; }
      #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: 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-start .wrapper {
    flex-direction: column-reverse;
    align-items: center; }
    #foto-block-start .wrapper .text {
      width: 100%; }
      #foto-block-start .wrapper .text .text-inner {
        padding-left: 0;
        padding-right: 0; }
    #foto-block-start .wrapper .foto {
      width: 100%;
      padding-left: 0px;
      padding-right: 0px; }
    #foto-block-start .wrapper h1 {
      font-size: 180%; }

  .foto-block {
    font-size: 70%;
    padding-bottom: 20px; }
    .foto-block .wrapper {
      flex-direction: column-reverse; }
      .foto-block .wrapper .foto {
        margin-bottom: 20px;
        padding: 15px; }
      .foto-block .wrapper .text .text-inner {
        padding-left: 15px;
        padding-right: 15px;
        float: left;
        width: 100%; }
        .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.normal {
      font-size: 100%; }
      .foto-block.normal .wrapper .text .text-inner h1 {
        font-size: 160%; }
      .foto-block.normal .wrapper .text .text-inner p {
        text-align: center;
        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 {
      font-size: 60%; }
      #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 {
    font-size: 90%; }
    #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; }

  #questions #start-faq #accordion .card {
    font-size: 70%; }
    #questions #start-faq #accordion .card .btn {
      font-size: 80%; }

  #workers .wrapper .one-worker {
    padding: 5px;
    font-size: 90%;
    margin-bottom: 15px; }
    #workers .wrapper .one-worker .foto img {
      max-width: 380px; }

  #contact-block h2 {
    font-size: 1.5rem; }
  #contact-block .text {
    margin-bottom: 15px; }
    #contact-block .text p {
      font-size: 110%; }

  #contact-form form {
    font-size: 90%;
    padding: 0; }
    #contact-form form .form-group input[type="text"], #contact-form form .form-group input[type=email], #contact-form form .form-group select {
      min-height: 40px; }
    #contact-form form .btn {
      margin: 0 auto;
      display: block; }

  .box {
    padding: 30px 15px; }

  .subsite p, .subsite ul, .subsite ol, .subsite a {
    font-size: 90%; }
  .subsite h1, .subsite h2 {
    margin-bottom: 20px;
    font-size: 140%; }
  .subsite h3 {
    font-size: 130%; }
  .subsite .subsite-content {
    column-count: 1;
    margin-bottom: 0 !important; }
  .subsite .title-inner {
    padding-top: 20px; }
  .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%; }

  #gallery-list .inner {
    margin-left: 0px;
    margin-right: 0px; }
    #gallery-list .inner .one-gallery {
      max-width: 100%;
      margin: 0px;
      margin-bottom: 20px;
      flex: 1 1 100%; }
      #gallery-list .inner .one-gallery h2 {
        font-size: 150%; }
      #gallery-list .inner .one-gallery .foto {
        height: calc(100vw / 2); }
      #gallery-list .inner .one-gallery p {
        font-size: 100%; }

  #photo-list .one-foto {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0px;
    margin-bottom: 20px; }
    #photo-list .one-foto img {
      width: 100%;
      height: calc(100vw / 1.5); }
  #photo-list .inner {
    margin-left: 0px;
    margin-right: 0px; }

  .subsite.seo {
    margin-top: 95px; }
    .subsite.seo #questions {
      margin-bottom: 20px; }
      .subsite.seo #questions #start-faq #accordion .card .card-body {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 15px !important; }
      .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question {
        padding: 16px 10px;
        padding-right: 25px; }
        .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question span {
          font-size: 16px; }
        .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question:after {
          right: 8px;
          width: 16px;
          min-width: 16px;
          height: 10px;
          min-height: 10px; }
    .subsite.seo .content {
      margin-bottom: 20px; }
    .subsite.seo #short-desc .inner {
      margin-bottom: 40px; }
    .subsite.seo #short-desc p {
      font-size: 18px; }
    .subsite.seo #subpage-title {
      font-size: 25px;
      padding-top: 10px; }
  .subsite .foto-block.module {
    padding-bottom: 0; }
    .subsite .foto-block.module:nth-child(even) .wrapper {
      flex-direction: column; }
      .subsite .foto-block.module:nth-child(even) .wrapper .text .text-inner {
        padding-right: 15px;
        padding-left: 15px; }
    .subsite .foto-block.module .wrapper {
      flex-direction: column; }
      .subsite .foto-block.module .wrapper .text {
        width: 100%; }
        .subsite .foto-block.module .wrapper .text .text-inner {
          padding-top: 25px;
          padding-bottom: 25px;
          padding-left: 15px;
          padding-right: 15px; }
          .subsite .foto-block.module .wrapper .text .text-inner p {
            font-size: 15px;
            text-align: left; }
    .subsite .foto-block.module .foto {
      width: 100%;
      margin: 0; }
      .subsite .foto-block.module .foto img {
        position: relative; }
    .subsite .foto-block.module .buttons {
      margin-top: 15px; }
      .subsite .foto-block.module .buttons .btn-blue {
        padding: 12px 20px;
        font-size: 14px; }
    .subsite .foto-block.module h2 {
      margin-bottom: 15px;
      font-size: 22px; }

  .faq-title {
    padding-top: 20px;
    padding-bottom: 20px; }
    .faq-title p {
      font-size: 16px; }
    .faq-title h2 {
      font-size: 23px;
      margin-bottom: 10px; }

  .cities {
    padding: 10px 0;
    margin-bottom: -30px; }
    .cities ul {
      padding: 0; }
      .cities ul li {
        flex: 0 0 100%;
        padding: 0; }
        .cities ul li a {
          font-size: 15px;
          text-align: center;
          width: 100%;
          display: block; }
    .cities h2 {
      font-size: 18px;
      margin-bottom: 20px; } }
@media (min-width: 576px) and (max-width: 767px) {
  body {
    font-size: 90%; }

  header.sticked {
    transform: translateY(0px); }

  #product-category-list {
    margin-left: -15px;
    margin-right: -15px; }
    #product-category-list .one-product {
      margin: 15px;
      flex: 1 1 44%;
      max-width: 240px; }
      #product-category-list .one-product h2 {
        font-size: 120%; }
      #product-category-list .one-product .foto {
        height: 160px; }

  #main-nav #nav-contact {
    display: none; }
  #main-nav .social-media {
    display: none; }
  #main-nav #switch-lang {
    margin-left: auto; }

  #offer-links h2, #offer-links h1 {
    font-size: 330%;
    margin-bottom: 30px; }
  #offer-links .inner {
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 550px; }
  #offer-links ul {
    max-width: 80%; }
    #offer-links ul li a {
      padding: 15px 45px; }

  #miniNav .inner ul {
    width: 100%;
    align-items: flex-start;
    max-width: 500px; }
    #miniNav .inner ul li {
      border-top: 1px solid #008bd2;
      width: 100%; }
      #miniNav .inner ul li:last-child {
        border-bottom: 1px solid #008bd2; }

  .page-nav li a {
    padding: 30px 30px; }

  #main-nav .inner {
    padding: 5px 0; }
    #main-nav .inner #logo .motto {
      font-size: 70%; }

  .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: 250px;
    min-height: initial; }

  #slider-with-static {
    margin-bottom: 30px; }
    #slider-with-static .static-text {
      max-width: 100%;
      padding: 0; }
      #slider-with-static .static-text h2 {
        text-align: center; }
      #slider-with-static .static-text h4 {
        text-align: center; }
    #slider-with-static .static {
      position: relative; }
      #slider-with-static .static .container {
        padding: 15px; }

  #offer-links {
    margin-bottom: 30px; }
    #offer-links .foto {
      display: none; }
    #offer-links .inner {
      min-height: initial; }
    #offer-links .links h2 {
      text-align: center; }
    #offer-links .links ul {
      max-width: 100%; }
      #offer-links .links ul li a {
        text-align: center; }

  #products .one-product {
    max-width: 240px; }
    #products .one-product img {
      max-height: 100px;
      max-width: 100px; }
    #products .one-product h2 {
      font-size: 130%; }

  #logo img {
    width: 230px; }

  .portfolio-carousel .foto {
    height: 188px; }
  .portfolio-carousel h3 {
    font-size: 160%; }
  .portfolio-carousel p {
    font-size: 100%;
    line-height: 18px; }
  .portfolio-carousel .text {
    padding: 6px 10px; }

  #contact-block-form .text {
    text-align: center; }
  #contact-block-form .contact {
    width: max-content;
    margin-left: auto;
    margin-right: auto; }

  #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: 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 .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; }

  #footer {
    font-size: 85%; }
    #footer #logos-footer {
      font-size: 80%;
      padding-bottom: 40px; }
      #footer #logos-footer h2 {
        padding-top: 30px;
        margin-bottom: 20px; }
    #footer .wrapper {
      padding-bottom: 0px; }
    #footer .inner {
      margin-left: -15px;
      margin-right: -15px;
      flex-wrap: wrap; }
      #footer .inner .social-media a {
        background-position: top 2px left; }
      #footer .inner .one-column {
        margin-left: 15px;
        margin-right: 15px; }

  .double-block h2 {
    font-size: 160%; }
  .double-block .one-block {
    max-width: 100%;
    flex: 1 1 100%; }

  .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: 200%; }

  .review-list .one-review {
    font-size: 85%; }
    .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 {
    padding-top: 45px; }
    #steps .title h2 {
      font-size: 36px;
      padding-bottom: 42px;
      background-image: none; }
    #steps .inner {
      flex-direction: column; }
      #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: 10px;
        margin-bottom: 20px;
        transform: rotate(90deg); }

  #title-block {
    font-size: 80%; }
    #title-block .inner {
      flex-direction: column; }
      #title-block .inner .photo {
        min-width: 100%;
        max-width: 100%; }

  #foto-block-start .wrapper {
    flex-direction: column-reverse;
    align-items: center; }
    #foto-block-start .wrapper .text {
      width: 100%; }
      #foto-block-start .wrapper .text .text-inner {
        padding-left: 0;
        padding-right: 0; }
    #foto-block-start .wrapper .foto {
      width: 100%; }

  .foto-block {
    font-size: 75%;
    padding-bottom: 20px; }
    .foto-block .wrapper {
      flex-direction: column-reverse; }
      .foto-block .wrapper .foto {
        margin-bottom: 20px;
        padding: 20px; }
      .foto-block .wrapper .text .text-inner {
        padding-left: 20px;
        padding-right: 20px;
        float: left;
        width: 100%; }
        .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.normal {
      font-size: 100%; }
      .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; }

  #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; }

  #application-block .wrapper {
    flex-direction: column; }
    #application-block .wrapper .text {
      font-size: 65%; }
      #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;
    font-size: 80%; }
    #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: 80%; }
    #questions #start-faq #accordion .card .btn {
      font-size: 85%; }

  #workers .wrapper .one-worker {
    padding: 5px;
    font-size: 90%;
    margin-bottom: 15px; }

  #contact-block h2 {
    font-size: 1.7rem; }
  #contact-block .text {
    margin-bottom: 15px; }
    #contact-block .text p {
      font-size: 1.2em; }

  .box {
    padding: 30px 15px; }

  .subsite {
    font-size: 95%; }
    .subsite .title-inner {
      font-size: 70%; }
    .subsite h1, .subsite h2 {
      margin-bottom: 20px;
      font-size: 220%; }
    .subsite h2 {
      font-size: 180%; }
    .subsite h3 {
      font-size: 170%; }
    .subsite .subsite-content {
      column-count: 1;
      font-size: 75%; }
    .subsite .big-paragraf {
      font-size: 120%; }

  .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; }

  #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%; }

  #gallery-list .inner {
    margin-left: -15px;
    margin-right: -15px; }
    #gallery-list .inner .one-gallery {
      max-width: 100%;
      margin: 15px;
      flex: 1 1 100%; }
      #gallery-list .inner .one-gallery h2 {
        font-size: 150%; }
      #gallery-list .inner .one-gallery .foto {
        height: 270px; }
      #gallery-list .inner .one-gallery p {
        font-size: 100%; }

  #photo-list .one-foto {
    flex: 1 1 40%;
    max-width: 245px;
    margin: 10px; }
    #photo-list .one-foto img {
      width: 100%;
      height: 180px; }
  #photo-list .inner {
    margin-left: -10px;
    margin-right: -10px; }

  .subsite.seo #questions {
    margin-bottom: 30px; }
    .subsite.seo #questions #start-faq #accordion .card .card-body {
      padding-left: 20px;
      font-size: 16px !important; }
    .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question {
      padding: 16px 20px;
      padding-right: 35px; }
      .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question span {
        font-size: 17px; }
      .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question:after {
        right: 15px;
        width: 20px;
        min-width: 20px;
        height: 10px;
        min-height: 10px; }
  .subsite.seo .content {
    margin-bottom: 30px; }
  .subsite.seo #short-desc .inner {
    margin-bottom: 40px; }
  .subsite.seo #short-desc p {
    font-size: 20px; }
  .subsite.seo #subpage-title {
    font-size: 35px;
    padding-top: 10px; }
  .subsite .foto-block.module {
    padding-bottom: 0; }
    .subsite .foto-block.module:nth-child(even) .wrapper {
      flex-direction: column; }
      .subsite .foto-block.module:nth-child(even) .wrapper .text .text-inner {
        padding-right: 30px;
        padding-left: 30px; }
    .subsite .foto-block.module .wrapper {
      flex-direction: column; }
      .subsite .foto-block.module .wrapper .text {
        width: 100%; }
        .subsite .foto-block.module .wrapper .text .text-inner {
          padding-top: 50px;
          padding-left: 30px;
          padding-right: 30px; }
          .subsite .foto-block.module .wrapper .text .text-inner p {
            font-size: 16px; }
    .subsite .foto-block.module .foto {
      width: 100%;
      margin: 0; }
      .subsite .foto-block.module .foto img {
        position: relative; }
    .subsite .foto-block.module .buttons {
      margin-top: 15px; }
      .subsite .foto-block.module .buttons .btn-blue {
        padding: 12px 20px;
        font-size: 14px; }
    .subsite .foto-block.module h2 {
      margin-bottom: 15px;
      font-size: 22px; }

  .faq-title {
    padding-top: 30px;
    padding-bottom: 30px; }
    .faq-title p {
      font-size: 17px; }
    .faq-title h2 {
      font-size: 30px;
      margin-bottom: 10px; }

  .cities {
    padding: 20px 0; }
    .cities ul li {
      flex: 0 0 50%; }
      .cities ul li a {
        font-size: 16px; }
    .cities h2 {
      font-size: 20px;
      margin-bottom: 30px; } }
@media (min-width: 768px) and (max-width: 991px) {
  body {
    font-size: 90%; }

  header.sticked {
    transform: translateY(0px); }

  #product-category-list {
    margin-left: -15px;
    margin-right: -15px; }
    #product-category-list .one-product {
      margin: 15px;
      max-width: 210px; }
      #product-category-list .one-product h2 {
        font-size: 130%; }
      #product-category-list .one-product .foto {
        height: 160px; }

  .paralax_group {
    font-size: 80%; }
    .paralax_group .wrapper {
      padding-top: 145px; }
      .paralax_group .wrapper .text {
        padding-left: calc((100vw - 922px) / 2); }
      .paralax_group .wrapper .buttons .btn {
        padding: 15px 32px; }

  #layerslider {
    min-height: 590px; }

  #slider-with-static .static-text {
    max-width: 80%; }

  #offer-links h2, #offer-links h1 {
    font-size: 330%;
    margin-bottom: 30px; }
  #offer-links .inner {
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 550px; }
  #offer-links ul {
    max-width: 80%; }
    #offer-links ul li a {
      padding: 15px 45px; }

  .portfolio-carousel .foto {
    height: 260px; }

  #products .one-product {
    max-width: 330px; }

  #miniNav {
    height: auto;
    bottom: unset;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4); }
    #miniNav .inner {
      padding-bottom: 0; }
      #miniNav .inner ul {
        margin-bottom: 0; }

  .page-nav li a {
    padding: 25px 10px; }

  #main-nav #nav-contact {
    display: none; }

  #foto-block-start .wrapper {
    flex-direction: column-reverse;
    align-items: center; }
    #foto-block-start .wrapper .text {
      width: 100%; }
    #foto-block-start .wrapper .foto {
      width: 80%; }

  .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; }

  #footer {
    font-size: 85%; }
    #footer #logos-footer {
      font-size: 80%;
      padding-bottom: 50px; }
      #footer #logos-footer h2 {
        padding-top: 40px;
        margin-bottom: 30px; }
    #footer .wrapper {
      padding-bottom: 0px; }
    #footer .inner .social-media a {
      background-position: top 2px left; }

  .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; }

  .module-title {
    font-size: 240%; }

  .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 {
    padding-top: 45px; }
    #steps .title h2 {
      font-size: 36px;
      padding-bottom: 42px;
      background-image: none; }
    #steps .inner {
      flex-direction: column; }
      #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: 10px;
        margin-bottom: 20px;
        transform: rotate(90deg); }

  #title-block {
    font-size: 80%; }
    #title-block .inner {
      flex-direction: column; }
      #title-block .inner .photo {
        min-width: 100%;
        max-width: 100%; }

  .foto-block {
    font-size: 80%;
    padding-bottom: 20px; }
    .foto-block .wrapper {
      flex-direction: column-reverse; }
      .foto-block .wrapper .foto {
        margin-bottom: 20px;
        padding: 30px; }
      .foto-block .wrapper .text .text-inner {
        padding-left: 30px;
        padding-right: 30px;
        float: left;
        width: 100%; }
        .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.normal {
      font-size: 100%; }
      .foto-block.normal .wrapper .text .text-inner p {
        padding-left: 0;
        text-align: left; }

  #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; }

  #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;
    font-size: 80%; }
    #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-form .text {
    text-align: center; }
  #contact-block-form .contact {
    width: max-content;
    margin-left: auto;
    margin-right: auto; }

  #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 .title-inner {
      font-size: 80%; }
    .subsite h1, .subsite h2 {
      margin-bottom: 20px; }
    .subsite h2 {
      font-size: 180%; }
    .subsite h3 {
      font-size: 170%; }
    .subsite .subsite-content {
      font-size: 80%; }

  .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; }

  #gallery-list .inner {
    margin-left: -15px;
    margin-right: -15px; }
    #gallery-list .inner .one-gallery {
      max-width: 330px;
      margin: 15px; }
      #gallery-list .inner .one-gallery h2 {
        font-size: 150%; }
      #gallery-list .inner .one-gallery .foto {
        height: 220px; }
      #gallery-list .inner .one-gallery p {
        font-size: 100%; }

  #photo-list .one-foto {
    flex: 1 1 30%;
    max-width: 216.67px;
    margin: 10px; }
    #photo-list .one-foto img {
      width: 100%;
      height: 160px; }
  #photo-list .inner {
    margin-left: -10px;
    margin-right: -10px; }

  .subsite.seo #questions {
    margin-bottom: 60px; }
    .subsite.seo #questions #start-faq #accordion .card .card-body {
      padding-left: 35px; }
    .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question {
      padding: 16px 35px; }
      .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question span {
        font-size: 20px; }
      .subsite.seo #questions #start-faq #accordion .card .card-header h5 .btn-question:after {
        right: 15px;
        width: 20px;
        min-width: 20px;
        height: 10px;
        min-height: 10px; }
  .subsite.seo .content {
    margin-bottom: 60px; }
  .subsite.seo #short-desc .inner {
    margin-bottom: 40px; }
  .subsite.seo #short-desc p {
    font-size: 25px; }
  .subsite.seo #subpage-title {
    font-size: 45px; }
  .subsite .foto-block.module {
    padding-bottom: 0; }
    .subsite .foto-block.module:nth-child(even) .wrapper {
      flex-direction: column; }
      .subsite .foto-block.module:nth-child(even) .wrapper .text .text-inner {
        padding-right: 30px;
        padding-left: 30px; }
    .subsite .foto-block.module .wrapper {
      flex-direction: column; }
      .subsite .foto-block.module .wrapper .text {
        width: 100%; }
        .subsite .foto-block.module .wrapper .text .text-inner {
          padding-top: 50px;
          padding-left: 30px;
          padding-right: 30px; }
    .subsite .foto-block.module .foto {
      width: 100%;
      margin: 0; }
      .subsite .foto-block.module .foto img {
        position: relative; }
    .subsite .foto-block.module .buttons {
      margin-top: 15px; }
      .subsite .foto-block.module .buttons .btn-blue {
        padding: 12px 20px;
        font-size: 17px; }
    .subsite .foto-block.module h2 {
      margin-bottom: 15px;
      font-size: 26px; }

  .faq-title {
    padding-top: 50px;
    padding-bottom: 40px; }
    .faq-title p {
      font-size: 19px; }
    .faq-title h2 {
      font-size: 40px;
      margin-bottom: 10px; }

  .cities {
    padding: 35px 0; }
    .cities ul li {
      flex: 0 0 50%; }
      .cities ul li a {
        font-size: 18px; }
    .cities h2 {
      font-size: 25px;
      margin-bottom: 30px; } }
@media (min-width: 992px) and (max-width: 1199px) {
  body {
    font-size: 90%; }

  header.sticked {
    transform: translateY(0px); }

  #product-category-list .one-product {
    max-width: 270px; }
    #product-category-list .one-product .foto {
      height: 180px; }

  #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; }

  #offer-links ul {
    max-width: 55%; }

  #products .one-product {
    max-width: 290px; }

  .page-nav li a {
    padding: 30px 30px; }

  #main-nav .inner {
    padding: 5px 0; }

  #layerslider {
    min-height: 590px; }

  #slider-with-static .static-text {
    max-width: 60%; }

  .paralax_group {
    font-size: 80%; }
    .paralax_group .wrapper {
      padding-top: 145px; }
      .paralax_group .wrapper .text {
        padding-left: calc((100vw - 922px) / 2); }
      .paralax_group .wrapper .buttons .btn {
        padding: 15px 32px; }

  .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%; }

  .company-videos .company-carousel .one-company .foto img {
    height: 20vw; }

  #foto-block-start .wrapper .text .text-inner {
    padding-left: 0;
    padding-right: 0; }

  .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; }

  #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 {
    font-size: 80%; }
    .foto-block .wrapper .text .text-inner p {
      padding: 0% 20% 0% 0%; }
    .foto-block .wrapper .foto-block-pause {
      min-width: 60px; }
    .foto-block .footer-foto-block .dot-foto-block {
      width: 60px;
      height: 60px; }
    .foto-block.normal {
      font-size: 100%; }
      .foto-block.normal .wrapper .text .text-inner {
        padding-top: 20px;
        padding-left: 30px; }

  #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; }
    .subsite .subsite-content {
      font-size: 80%; }

  #gallery-list .inner .one-gallery {
    max-width: 435px; }
    #gallery-list .inner .one-gallery h2 {
      font-size: 170%; }
    #gallery-list .inner .one-gallery .foto {
      height: 280px; }

  #photo-list .one-foto {
    flex: 1 1 30%;
    max-width: 290px; }
    #photo-list .one-foto img {
      width: 100%;
      height: 208px; }

  .subsite.seo #questions, .subsite.seo .content {
    margin-bottom: 60px; }
  .subsite.seo #short-desc .inner {
    margin-bottom: 60px; }
  .subsite.seo #short-desc p {
    font-size: 27px; }
  .subsite.seo #subpage-title {
    font-size: 50px; }
  .subsite .foto-block.module .wrapper .text .text-inner {
    padding-top: 50px; }
  .subsite .foto-block.module .foto {
    min-height: 36.5vw; }
  .subsite .foto-block.module .buttons {
    margin-top: 15px; }
    .subsite .foto-block.module .buttons .btn-blue {
      padding: 12px 20px;
      font-size: 17px; }
  .subsite .foto-block.module h2 {
    margin-bottom: 15px;
    font-size: 26px; }

  .faq-title {
    padding-top: 60px;
    padding-bottom: 50px; }
    .faq-title h2 {
      font-size: 45px; }

  .cities {
    padding: 45px 0; }
    .cities .cities ul li a {
      font-size: 18px; }
    .cities h2 {
      font-size: 30px;
      margin-bottom: 50px; } }
@media (min-width: 1200px) and (max-width: 1659px) {
  body {
    font-size: 95%; }

  header.sticked {
    transform: translateY(0px); }

  #product-category-list .one-product {
    max-width: 330px; }

  #logo img {
    width: 240px; }

  .page-nav li a {
    padding: 40px 10px; }

  .box {
    padding: 40px 30px; }

  .portfolio-carousel .foto {
    height: 225px; }

  #main-menu .menu-button {
    margin-left: 5px;
    margin-right: 20px; }
  #main-menu .btn-blue {
    padding: 6px 22px; }

  .language a {
    padding: 3px 8px; }

  #layerslider {
    min-height: 590px; }

  #slider-with-static .static-text {
    max-width: 60%; }

  #products .one-product {
    max-width: 350px; }

  #big-slider .special-wrapper .special-container h2 {
    font-size: 250%; }
  #big-slider .special-wrapper .special-container p {
    font-size: 145%; }

  #foto-block-start .wrapper .text .text-inner {
    padding-left: 0;
    padding-right: 0; }
    #foto-block-start .wrapper .text .text-inner h1, #foto-block-start .wrapper .text .text-inner h2 {
      font-size: 240%; }

  .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: 130%; }
  .news-carousel .one-news .wrapper p {
    font-size: 110%; }
  .news-carousel .one-news .foto img {
    height: 290px; }

  #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 {
    font-size: 85%; }
    .foto-block .wrapper .foto-block-pause {
      min-width: 70px; }
    .foto-block .footer-foto-block .dot-foto-block {
      width: 70px;
      height: 70px; }
    .foto-block.normal {
      font-size: 100%; }
      .foto-block.normal .wrapper .text .text-inner {
        padding-top: 20px;
        padding-left: 40px; }

  #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; }

  #gallery-list .inner .one-gallery {
    max-width: 525px; }
    #gallery-list .inner .one-gallery h2 {
      font-size: 170%; }
    #gallery-list .inner .one-gallery .foto {
      height: 300px; }

  #photo-list .one-foto {
    max-width: 255px; }
    #photo-list .one-foto img {
      height: 192px; }

  .subsite.seo #questions, .subsite.seo .content {
    margin-bottom: 95px; }
  .subsite.seo #short-desc .inner {
    margin-bottom: 60px; }
  .subsite.seo #short-desc p {
    font-size: 30px; }
  .subsite.seo #subpage-title {
    font-size: 55px; }
  .subsite .foto-block.module .wrapper .text .text-inner {
    padding-top: 50px; }
  .subsite .foto-block.module .foto {
    min-height: 36.5vw; }
  .subsite .foto-block.module .buttons {
    margin-top: 15px; }
    .subsite .foto-block.module .buttons .btn-blue {
      padding: 12px 20px; }
  .subsite .foto-block.module h2 {
    margin-bottom: 15px;
    font-size: 35px; }

  .faq-title {
    padding-top: 85px;
    padding-bottom: 65px; }
    .faq-title h2 {
      font-size: 50px; }

  .cities h2 {
    font-size: 34px;
    margin-bottom: 50px; } }
@media (min-width: 1660px) {
  main {
    min-height: calc(100vh - 596.59px); }

  .container {
    max-width: 1600px; }

  .container-fluid {
    padding: 1em 4em 0em 4em; }

  .container-1090 {
    max-width: 1120px; }

  .container-news {
    max-width: 1300px; }

  .seo .container {
    max-width: 1394px; }

  #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 {
      padding-left: calc((100vw - 1520px) / 2); } }

/*# sourceMappingURL=main.css.map */
