@charset "UTF-8";
body {
  min-height: 100vh;
  height: 100%;
  font-family: "tt_commonsregular";
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
  max-height: 100vh;
}
body.custom-padding {
  padding-top: 102px;
}
body .btn {
  display: inline-block;
  padding: 0;
}
body .btn:focus {
  box-shadow: none;
}
body .btn .btn-inner {
  display: flex;
  align-items: center;
}
body .btn .btn-inner span {
  font-family: "tt_commonsdemibold";
  font-size: 14px;
  text-transform: uppercase;
}
body .btn .btn-inner svg {
  margin-left: 20px;
  height: 9px;
}
body .btn.white .btn-inner span {
  color: #fff;
}
body .btn.white .btn-inner svg {
  fill: #fff;
}
body .btn.black .btn-inner span {
  color: #000;
}
body .btn.black .btn-inner svg {
  fill: #000;
}
body ul, body ol, body p, body h1, body h2, body h3, body h4, body h5, body h6 {
  margin: 0;
  padding: 0;
}
body a {
  text-decoration: none !important;
}

.alert-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.2);
  z-index: 555;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}
.alert-wrapper .alert-service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  transform: translateX(8px);
  padding: 50px 0;
}
.alert-wrapper .alert-service .service-inner {
  padding: 50px;
  background: #fff;
  width: 100%;
  box-shadow: 0px 0px 32px 1px rgba(0, 0, 0, 0.15);
  text-align: center;
  border-top: 5px solid #fff;
  position: relative;
  transform: scale(0.8);
  transition: all 0.5s;
}
.alert-wrapper .alert-service .service-inner .inner-dismiss {
  top: 10px;
  right: 10px;
  position: absolute;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  padding: 5px;
  outline: none;
}
.alert-wrapper .alert-service .service-inner .inner-dismiss img {
  height: 15px;
}
.alert-wrapper .alert-service .service-inner.success {
  border-top: 5px solid #78b042;
}
.alert-wrapper .alert-service .service-inner.warning {
  border-top: 5px solid #d51a27;
}
.alert-wrapper .alert-service .service-inner.info {
  border-top: 5px solid #1a88d5;
}
.alert-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.alert-wrapper.active .alert-service .service-inner {
  transform: none;
}

.system-alerts {
  width: 100%;
  text-align: center;
  position: fixed;
  z-index: 1111;
  padding: 0;
  top: 0;
  left: 0;
}
.system-alerts .alert {
  width: calc(100% - 40px);
  margin-top: 20px;
  margin-left: 20px;
  border-radius: 0;
  border: none;
  height: 60px;
  display: flex;
  align-items: center;
  opacity: 0.9;
  transition: all 0.4s;
}
.system-alerts .alert .alert-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.system-alerts .alert .alert-inner .img-hidden {
  visibility: hidden;
  opacity: 0;
  height: 18px;
}
.system-alerts .alert .alert-inner p {
  color: #fff;
  padding: 0 50px;
  font-family: 15px;
}
.system-alerts .alert .alert-inner button {
  color: #fff;
  opacity: 1;
  font-weight: 300;
  float: none;
  background: none;
  border: none;
}
.system-alerts .alert .alert-inner button img {
  height: 15px;
}
.system-alerts .alert.alert-success {
  background: #76ad21;
}
.system-alerts .alert.alert-info {
  background: #218ead;
}
.system-alerts .alert.alert-warning {
  background: #c52b20;
}

.modal-service-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.5);
  z-index: 555;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-service-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.modal-service-wrapper .modal-service {
  padding: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.modal-service-wrapper .modal-service .service-inner {
  background: #fff;
  width: 700px;
  max-width: 100%;
  padding: 50px 25px 25px 25px;
  text-align: center;
  position: relative;
}
.modal-service-wrapper .modal-service .service-inner .service-button {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-bar {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background: #222;
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-bar:nth-child(1) {
  transform: rotate(45deg);
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-bar:nth-child(2) {
  transform: rotate(-45deg);
}
.modal-service-wrapper .modal-service .service-inner .service-content .heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.modal-service-wrapper .modal-service .service-inner .service-content .btn {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}
.modal-service-wrapper .modal-service .service-inner .service-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-service-wrapper .modal-service .service-inner .service-buttons .btn-link {
  padding: 0;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}

.section-viewport-point {
  position: absolute;
  top: -50px;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

nav.section-header {
  background-color: #0e303a;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
}
nav.section-header .header-flexbox {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-logo {
  position: relative;
}
nav.section-header .header-flexbox .flexbox-logo svg {
  height: 38px;
  fill: #fff;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-logo svg:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
  position: absolute;
  display: none;
  width: 100%;
  top: 20px;
  left: 0;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container {
  display: flex;
  justify-content: flex-end;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container:before, nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container:after {
  content: none;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button {
  outline: none;
  border: none;
  background: none;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #222;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar:nth-child(1) {
  transform: rotate(45deg);
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar:nth-child(2) {
  transform: rotate(-45deg);
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top {
  display: flex;
  align-items: center;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu {
  display: flex;
  align-items: center;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu li a {
  color: #fff;
  font-family: "tt_commonslight";
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu li a:hover {
  opacity: 0.7;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu li + li {
  margin-left: 50px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media {
  margin-left: 40px;
  display: flex;
  align-items: center;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media li svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media li svg:hover {
  opacity: 0.7;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media li + li {
  margin-left: 15px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
  margin-top: 10px;
  display: flex;
  align-items: center;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a, nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button {
  color: #fff;
  font-family: "tt_commonsdemibold";
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a:hover, nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button:hover {
  opacity: 0.7;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .dropdown .dropdown-menu {
  border: none;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.6);
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .dropdown .dropdown-menu li {
  margin: 0;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .dropdown .dropdown-menu .dropdown-item {
  padding: 5px 10px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .collapse-menu {
  background: #f3f3f3;
  margin: 10px 0;
  padding: 10px 20px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .collapse-menu li a {
  text-transform: none;
  font-size: 15px;
  font-family: "tt_commonsregular";
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .collapse-menu li + li {
  margin-top: 5px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li + li:not(:first-child) {
  margin-left: 50px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li.desktop-hidden {
  display: none;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li.mobile-hidden {
  margin-left: 0;
}
nav.section-header .header-flexbox .nav-button {
  padding: 10px;
  border: none;
  background: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  outline: none;
  display: none;
}
nav.section-header .header-flexbox .nav-button .button-bar {
  height: 1.5px;
  width: 24px;
  background: #fff;
  transition: all 0.6s;
}
nav.section-header .header-flexbox .nav-button .button-bar:nth-child(2) {
  margin-top: 7px;
  width: 30px;
}
nav.section-header .header-flexbox .nav-button .button-bar:nth-child(3) {
  margin-top: 7px;
}
nav.section-header .header-flexbox .nav-button:hover .button-bar, nav.section-header .header-flexbox .nav-button:focus .button-bar {
  width: 30px !important;
}
nav.section-header.scrolled .header-flexbox {
  padding: 20px 0;
}
nav.section-header.scrolled .header-flexbox .flexbox-logo svg {
  height: 30px;
}
nav.section-header.scrolled .header-flexbox .flexbox-logo svg:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
}
nav.section-header.scrolled .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top {
  transform: translateX(106px);
}
nav.section-header.scrolled .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media {
  opacity: 0;
  visibility: hidden;
}
nav.section-header.scrolled .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
  margin-top: 0;
}
nav.section-header.black .header-flexbox .flexbox-logo svg {
  fill: #fff;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu li a {
  color: #fff;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media li svg {
  fill: #fff;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button {
  color: #fff;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a:hover, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button:hover {
  opacity: 1;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a.blue.show, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a.blue.active, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a.blue:hover, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button.blue.show, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button.blue.active, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button.blue:hover {
  color: #09290f;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a.orange.active, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a.orange:hover, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button.orange.active, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button.orange:hover {
  color: #fc5850;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a.green.active, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a.green:hover, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button.green.active, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button.green:hover {
  color: #9baa97;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a.red.active, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a.red:hover, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button.red.active, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button.red:hover {
  color: #c33f3f;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a.mango.active, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a.mango:hover, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button.mango.active, nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button.mango:hover {
  color: #ffad4f;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .dropdown .dropdown-menu .dropdown-item {
  color: #fff;
}
nav.section-header.black .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .dropdown .dropdown-menu .dropdown-item:hover {
  opacity: 0.7;
}
nav.section-header.black .header-flexbox .nav-button .button-bar {
  background: #fff;
}

section.section-welcome {
  background: #09290f;
  position: relative;
  z-index: 888;
}
section.section-welcome.mango {
  background: #d3a269;
  background: #dc9f5e;
}
section.section-welcome.mango .welcome-inner h1 {
  line-height: 64px;
  font-size: 72px;
  letter-spacing: 2.4px;
}
section.section-welcome .welcome-inner {
  padding-top: 100px;
  min-height: 765px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
section.section-welcome .welcome-inner p {
  margin-top: 20px;
  color: #fff;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  max-width: 350px;
  font-family: "tt_commonslight";
}
section.section-welcome .welcome-inner p span {
  color: #fff;
  line-height: 80px;
  font-size: 90px;
  letter-spacing: 3px;
  font-family: "tt_commonsdemibold";
}
section.section-welcome .welcome-inner .btn {
  margin-top: 30px;
}
section.section-welcome .welcome-house {
  position: absolute;
  height: 100%;
  right: -50px;
  top: 0px;
}
section.section-welcome .welcome-house img {
  height: 100%;
  max-height: 100%;
  position: relative;
  transition: all 1s;
}
section.section-welcome .welcome-house img.house-building {
  z-index: 1;
}
section.section-welcome .welcome-house img.house-building.active {
  opacity: 0.6;
}
section.section-welcome .welcome-house img.house-surroundings {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
section.section-welcome .welcome-house img.house-effect {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 222;
  pointer-events: none;
  opacity: 0;
}
@keyframes effect-pulse {
  0% {
    filter: blur(0);
  }
  50% {
    filter: blur(5px);
  }
  100% {
    filter: blur(0);
  }
}
section.section-welcome .welcome-house img.house-effect.active {
  opacity: 1;
}
section.section-welcome .welcome-house svg {
  position: absolute;
  z-index: 111;
  height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
}
section.section-welcome .welcome-house path {
  position: relative;
  z-index: 999;
  opacity: 1;
  fill-opacity: 0;
}
section.section-welcome .welcome-house .svg-image-opacity {
  opacity: 0;
  transition: all 1s;
}
section.section-welcome .welcome-house .svg-image-opacity.active {
  opacity: 1;
}
section.section-welcome .welcome-house .st0 {
  transition: all 1s;
  opacity: 0;
  fill: transparent;
}

section.section-steps {
  padding-top: 100px;
  padding-bottom: 200px;
  position: relative;
}
section.section-steps .owl-carousel {
  position: relative;
}
section.section-steps .owl-carousel .steps-item {
  padding-top: 130px;
}
section.section-steps .owl-carousel .steps-item .item-slogan {
  position: relative;
}
section.section-steps .owl-carousel .steps-item .item-slogan .slogan-number {
  font-size: 330px;
  font-family: "tt_commons_boldbold";
  color: #f2f3f7;
  line-height: 253px;
  position: absolute;
}
section.section-steps .owl-carousel .steps-item .item-slogan .slogan-text {
  position: relative;
  font-family: "tt_commons_boldbold";
  line-height: 190px;
  font-size: 170px;
  background-position: left 50%;
  background-size: 103%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes letter-animation {
  0% {
    background-position: left 50%;
  }
  50% {
    background-position: right 70%;
  }
  100% {
    background-position: left 50%;
  }
}
@keyframes letter-animation-2 {
  0% {
    background-position: right 50%;
  }
  50% {
    background-position: left 70%;
  }
  100% {
    background-position: right 50%;
  }
}
section.section-steps .owl-carousel .steps-item .item-slogan.slogan-1 .slogan-number {
  bottom: 0;
  left: 220px;
}
section.section-steps .owl-carousel .steps-item .item-slogan.slogan-2 .slogan-text {
  margin-left: 200px;
  background-image: url(../img/backgrounds-n/AdobeStock_228059384_Preview.jpeg);
}
section.section-steps .owl-carousel .steps-item .item-slogan.slogan-3 .slogan-number {
  bottom: 0;
  left: 220px;
}
section.section-steps .owl-carousel .steps-item .item-slogan.slogan-3 .slogan-text {
  background-image: url(../img/backgrounds-n/AdobeStock_200446667_Preview.jpeg);
}
section.section-steps .owl-carousel .steps-item .item-slogan.slogan-4 .slogan-text {
  margin-left: 200px;
  background-image: url(../img/backgrounds-n/AdobeStock_200446667_Preview.jpeg);
}
section.section-steps .owl-carousel .owl-carousel-controls {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
}
section.section-steps .owl-carousel .owl-carousel-controls .controls-inner-wrapper {
  position: relative;
}
section.section-steps .owl-carousel .owl-carousel-controls .controls-inner-wrapper .controls-inner {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 55px;
}
section.section-steps .owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  position: relative;
  transform: translateY(2px);
  counter-reset: dots;
}
section.section-steps .owl-carousel .owl-dots .owl-dot {
  margin: 0 5px;
  height: auto;
  width: auto;
  border-radius: 0;
  background: none;
  border: none;
  font-size: 13px;
  outline: none;
  font-family: "tt_commonsextrabold";
  color: #000;
  opacity: 0.3;
  transition: all 0.6s;
}
section.section-steps .owl-carousel .owl-dots .owl-dot span {
  display: none;
}
section.section-steps .owl-carousel .owl-dots .owl-dot.active {
  opacity: 1;
}
section.section-steps .owl-carousel .owl-dots .owl-dot:before {
  content: "0";
}
section.section-steps .owl-carousel .owl-dots .owl-dot:after {
  counter-increment: dots;
  content: counter(dots);
}
section.section-steps .owl-carousel .owl-nav {
  position: absolute !important;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.section-steps .owl-carousel .owl-nav .owl-prev, section.section-steps .owl-carousel .owl-nav .owl-next {
  background-color: none;
  background-image: url(../img/icons-n/right-arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  display: block;
  height: 9px;
  width: 45.14px;
  outline: none;
  border-radius: 0;
}
section.section-steps .owl-carousel .owl-nav .owl-prev {
  transform: rotate(-180deg);
  margin-right: 5px;
}
section.section-steps .steps-description {
  margin-top: 50px;
  padding-left: 210px;
  display: flex;
}
section.section-steps .steps-description .description-text {
  margin-left: 150px;
}
section.section-steps .steps-description .description-text p {
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  max-width: 550px;
  font-family: "tt_commonslight";
}

section.section-offer {
  background: #edf0f2;
  padding: 100px 0;
  position: relative;
}
section.section-offer.subpage {
  background: none;
  padding-top: 200px;
}
section.section-offer.subpage .offer-inner .inner-navigation ul li a {
  white-space: nowrap;
  cursor: default;
}
section.section-offer .offer-inner {
  display: flex;
  justify-content: space-between;
}
section.section-offer .offer-inner .inner-images {
  width: 47.5%;
  padding-top: 47.5%;
  position: relative;
}
section.section-offer .offer-inner .inner-images .image-service {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  padding-top: 100%;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.6s;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover.blue {
  background: #09290f;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover.orange {
  background: #fc5850;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover.green {
  background: #9baa97;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover.red {
  background: #c33f3f;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover.mango {
  background: #ffad4f;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper .wrapper-cover.dark {
  background: #666;
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  mix-blend-mode: multiply;
  transition: all 0.6s;
  transform: scale(1.05);
}
section.section-offer .offer-inner .inner-images .image-service .service-wrapper.active img {
  transform: none;
}
section.section-offer .offer-inner .inner-images .image-service .service-description {
  position: absolute;
  left: 40px;
  bottom: 30px;
}
section.section-offer .offer-inner .inner-images .image-service .service-description p {
  max-width: 400px;
  font-family: "tt_commonslight";
  color: #fff;
  letter-spacing: 1px;
  font-size: 20px;
  line-height: 26px;
}
section.section-offer .offer-inner .inner-images .image-service .service-description .btn {
  margin-top: 15px;
}
section.section-offer .offer-inner .inner-images .image-service.active {
  opacity: 1;
  visibility: visible;
}
section.section-offer .offer-inner .inner-navigation {
  width: 46%;
}
section.section-offer .offer-inner .inner-navigation h2 {
  color: #000;
  line-height: 80px;
  font-size: 90px;
  letter-spacing: 3px;
  font-family: "tt_commonsdemibold";
}
section.section-offer .offer-inner .inner-navigation p {
  margin-top: 20px;
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonslight";
}
section.section-offer .offer-inner .inner-navigation ul {
  margin-top: 46px;
}
section.section-offer .offer-inner .inner-navigation ul li a {
  color: #000;
  line-height: 40px;
  font-size: 45px;
  display: block;
  letter-spacing: 1px;
  transition: all 0.6s;
  font-family: "tt_commonsdemibold";
}
section.section-offer .offer-inner .inner-navigation ul li a.active.blue, section.section-offer .offer-inner .inner-navigation ul li a:hover.blue {
  color: #09290f;
}
section.section-offer .offer-inner .inner-navigation ul li a.active.orange, section.section-offer .offer-inner .inner-navigation ul li a:hover.orange {
  color: #fc5850;
}
section.section-offer .offer-inner .inner-navigation ul li a.active.green, section.section-offer .offer-inner .inner-navigation ul li a:hover.green {
  color: #9baa97;
}
section.section-offer .offer-inner .inner-navigation ul li a.active.red, section.section-offer .offer-inner .inner-navigation ul li a:hover.red {
  color: #c33f3f;
}
section.section-offer .offer-inner .inner-navigation ul li a.active.mango, section.section-offer .offer-inner .inner-navigation ul li a:hover.mango {
  color: #ffad4f;
}
section.section-offer .offer-inner .inner-navigation ul li a.active {
  padding-left: 30px;
}
section.section-offer .offer-inner .inner-navigation ul li + li {
  margin-top: 25px;
}
section.section-offer .offer-inner .inner-navigation ul li.nav-small a {
  font-size: 30px;
  line-height: 35px;
}
section.section-offer .offer-inner .inner-navigation ul li.nav-small a.active, section.section-offer .offer-inner .inner-navigation ul li.nav-small a:hover {
  opacity: 0.35;
}
section.section-offer .offer-inner .inner-navigation ul li.nav-small a.mango.active, section.section-offer .offer-inner .inner-navigation ul li.nav-small a.mango:hover {
  opacity: 1;
}
section.section-offer .offer-inner .inner-navigation ul li.nav-small + li {
  margin-top: 15px;
}
section.section-offer .offer-inner .inner-navigation ul li.nav-small.margin-top {
  margin-top: 70px;
  position: relative;
}
section.section-offer .offer-inner .inner-navigation ul li.nav-small.margin-top:before {
  content: "Pozostała oferta:";
  position: absolute;
  top: -38px;
  left: 0;
  font-family: "tt_commonsdemibold";
  font-size: 14px;
  text-transform: uppercase;
  color: #999;
}

section.section-portfolio {
  padding: 100px 0;
}
section.section-portfolio .owl-carousel {
  margin-top: 50px;
}
section.section-portfolio .owl-carousel .portfolio-item {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
section.section-portfolio .owl-carousel .portfolio-item .item-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
section.section-portfolio .owl-carousel .owl-carousel-controls {
  position: absolute;
  z-index: 111;
  top: -71px;
  left: 0;
  width: 100%;
}
section.section-portfolio .owl-carousel .owl-carousel-controls .controls-inner-wrapper {
  position: relative;
}
section.section-portfolio .owl-carousel .owl-carousel-controls .controls-inner-wrapper .controls-inner {
  position: absolute;
  top: 0;
  right: -10px;
  padding: 0 55px;
}
section.section-portfolio .owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  position: relative;
  transform: translateY(2px);
  counter-reset: dots;
}
section.section-portfolio .owl-carousel .owl-dots .owl-dot {
  margin: 0 5px;
  height: auto;
  width: auto;
  border-radius: 0;
  background: none;
  border: none;
  font-size: 13px;
  outline: none;
  font-family: "tt_commonsextrabold";
  color: #000;
  opacity: 0.3;
  transition: all 0.6s;
}
section.section-portfolio .owl-carousel .owl-dots .owl-dot span {
  display: none;
}
section.section-portfolio .owl-carousel .owl-dots .owl-dot.active {
  opacity: 1;
}
section.section-portfolio .owl-carousel .owl-dots .owl-dot:before {
  content: "0";
}
section.section-portfolio .owl-carousel .owl-dots .owl-dot:after {
  counter-increment: dots;
  content: counter(dots);
}
section.section-portfolio .owl-carousel .owl-nav {
  position: absolute !important;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.section-portfolio .owl-carousel .owl-nav .owl-prev, section.section-portfolio .owl-carousel .owl-nav .owl-next {
  background-color: none;
  background-image: url(../img/icons-n/right-arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  display: block;
  height: 9px;
  width: 45.14px;
  outline: none;
  border-radius: 0;
}
section.section-portfolio .owl-carousel .owl-nav .owl-prev {
  transform: rotate(-180deg);
  margin-right: 5px;
}
section.section-portfolio .portfolio-heading h2 {
  margin-left: -5px;
  color: #000;
  line-height: 80px;
  font-size: 90px;
  letter-spacing: 3px;
  font-family: "tt_commonsdemibold";
}
section.section-portfolio .portfolio-heading p {
  margin-top: 20px;
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  max-width: 550px;
  font-family: "tt_commonslight";
}
section.section-portfolio .portfolio-heading .btn {
  margin-top: 30px;
}

section.section-slogan {
  overflow: hidden;
  background: #edf0f2;
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
section.section-slogan .slogan-inner {
  padding: 0 20px;
  max-width: 900px;
}
section.section-slogan .slogan-inner h2 {
  color: #000;
  line-height: 70px;
  font-size: 60px;
  letter-spacing: 2.2px;
  font-family: "tt_commonsdemibold";
}
section.section-slogan.panasonic {
  height: 450px;
  background: #ffad4f;
  text-align: left;
  justify-content: flex-start;
}
section.section-slogan.panasonic .slogan-inner {
  max-width: 100%;
  width: 100%;
  padding: 0;
}
section.section-slogan.panasonic .slogan-inner h2 {
  max-width: 75%;
  color: #fff;
}
section.section-slogan.daikin {
  height: 450px;
  background: #ffad4f;
  text-align: left;
  justify-content: flex-start;
}
section.section-slogan.daikin .slogan-cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffad4f;
  mix-blend-mode: multiply;
}
section.section-slogan.daikin .slogan-inner {
  max-width: 100%;
  width: 100%;
  padding: 0;
  position: relative;
}
section.section-slogan.daikin .slogan-inner h2 {
  max-width: 75%;
  color: #fff;
}
section.section-slogan.daikin .slogan-inner p {
  color: #fff;
  max-width: 70%;
  font-size: 45px;
  line-height: 50px;
  font-family: "tt_commonslight";
}

section.section-advantages {
  padding: 80px 0;
}
section.section-advantages .advantages-flexbox {
  display: flex;
  justify-content: space-between;
}
section.section-advantages .advantages-flexbox .flexbox-service {
  width: 30%;
}
section.section-advantages .advantages-flexbox .flexbox-service .service-icon {
  height: 50px;
  margin-bottom: 10px;
}
section.section-advantages .advantages-flexbox .flexbox-service h3 {
  color: #000;
  line-height: 40px;
  font-size: 38px;
  letter-spacing: 1px;
  font-family: "tt_commonsdemibold";
}
section.section-advantages .advantages-flexbox .flexbox-service p {
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonslight";
}

section.section-partners {
  padding: 80px 0;
  background: #edf0f2;
}
section.section-partners .partners-inner h2 {
  color: #09290f;
  line-height: 80px;
  font-size: 90px;
  letter-spacing: 3px;
  font-family: "tt_commonsdemibold";
}
section.section-partners .partners-inner p {
  margin-top: 20px;
  color: #09290f;
  max-width: 930px;
  font-size: 27px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonslight";
}
section.section-partners .partners-inner .inner-logo {
  margin-top: 50px;
  display: flex;
  align-items: center;
}
section.section-partners .partners-inner .inner-logo .logo-item img {
  height: 27px;
}
section.section-partners .partners-inner .inner-logo .logo-item + .logo-item {
  margin-left: 50px;
}
section.section-partners .partners-inner .inner-logo .logo-item:nth-child(2) img {
  height: 39px;
}
section.section-partners .partners-inner .inner-logo .logo-item:nth-child(3) img {
  height: 32px;
}
section.section-partners .partners-inner .inner-logo .logo-item:nth-child(4) img {
  height: 30px;
}
section.section-partners .partners-inner .inner-logo .logo-item:nth-child(5) img {
  height: 25px;
}

section.pompy-ciepla-section-content {
  position: relative;
}
section.pompy-ciepla-section-content .content-steps {
  padding: 150px 0;
}
section.pompy-ciepla-section-content .content-steps .steps-heading h2 {
  color: #000;
  line-height: 80px;
  font-size: 90px;
  letter-spacing: 3px;
  font-family: "tt_commonsdemibold";
}
section.pompy-ciepla-section-content .content-steps .steps-inner {
  margin-top: 100px;
}
section.pompy-ciepla-section-content .content-steps .steps-inner .inner-slogan {
  position: relative;
}
section.pompy-ciepla-section-content .content-steps .steps-inner .inner-slogan .slogan-number {
  font-size: 181.5px;
  font-family: "tt_commons_boldbold";
  color: #f2f3f7;
  line-height: 118.91px;
  position: absolute;
  bottom: 0;
  left: 0;
}
section.pompy-ciepla-section-content .content-steps .steps-inner .inner-slogan .slogan-text {
  position: relative;
  font-family: "tt_commons_boldbold";
  line-height: 76px;
  font-size: 68px;
  color: #000;
  background-position: left 50%;
  background-size: 103%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.pompy-ciepla-section-content .content-steps .steps-inner .inner-slogan:nth-child(1) {
  margin-left: 240px;
}
section.pompy-ciepla-section-content .content-steps .steps-inner .inner-slogan:nth-child(1) .slogan-text {
  background-image: url(../img/backgrounds-n/AdobeStock_228059384_Preview.jpeg);
}
section.pompy-ciepla-section-content .content-steps .steps-inner .inner-slogan:nth-child(2) {
  margin-left: 130px;
}
section.pompy-ciepla-section-content .content-steps .steps-inner .inner-slogan:nth-child(2) .slogan-text {
  background-image: url(../img/backgrounds-n/AdobeStock_200446667_Preview.jpeg);
}
section.pompy-ciepla-section-content .content-steps .steps-inner .inner-slogan + .inner-slogan {
  margin-top: 70px;
}
section.pompy-ciepla-section-content .content-producers {
  margin-top: 50px;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-image {
  width: 42%;
  padding-top: 42%;
  position: relative;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-image .image-service {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  padding-top: 100%;
  transition: all 0.6s;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-image .image-service .service-wrapper .wrapper-cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.6;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-image .image-service .service-wrapper .wrapper-cover.orange {
  background: #fc5850;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-image .image-service .service-wrapper .wrapper-cover.mango {
  background: #ffad4f;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-image .image-service .service-wrapper .wrapper-main-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  mix-blend-mode: multiply;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-image .image-service .service-wrapper .wrapper-product {
  position: absolute;
  top: 50%;
  right: 0;
  height: 70%;
  transform: translate(40%, -50%);
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-description {
  width: 43%;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-description .logo {
  height: 50px;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-description h2 {
  margin-top: 50px;
  color: #000;
  line-height: 40px;
  font-size: 45px;
  display: block;
  letter-spacing: 1px;
  font-family: "tt_commonsdemibold";
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-description p {
  max-width: 400px;
  margin-top: 20px;
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonslight";
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-description .btn {
  margin-top: 50px;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper:nth-child(2) .producers-inner .inner-description .logo {
  height: 30px;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper:nth-child(3) .producers-inner .inner-description .logo {
  height: 40px;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper:nth-child(odd) {
  background: #edf0f2;
  padding: 90px 0;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper:nth-child(odd) .producers-inner {
  flex-direction: row-reverse;
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper:nth-child(odd) .producers-inner .inner-image .image-service .service-wrapper .wrapper-product {
  right: auto;
  left: 0;
  transform: translate(-60%, -50%);
}
section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper + .producers-inner-wrapper {
  margin-top: 90px;
}
section.pompy-ciepla-section-content .content-producers.gruntowe .producers-inner-wrapper:nth-child(2) .producers-inner .inner-description .logo {
  height: 40px;
}
section.pompy-ciepla-section-content .content-producers.gruntowe .producers-inner-wrapper:nth-child(3) .producers-inner .inner-description .logo {
  height: 70px;
}
section.pompy-ciepla-section-content .content-knowledge {
  margin-bottom: 60px;
}
section.pompy-ciepla-section-content .content-knowledge ul {
  display: flex;
  align-items: center;
}
section.pompy-ciepla-section-content .content-knowledge ul li {
  font-family: "tt_commonsdemibold";
  font-size: 14px;
  text-transform: uppercase;
  color: #999;
}
section.pompy-ciepla-section-content .content-knowledge ul li a {
  color: #000;
  transition: all 0.5s;
}
section.pompy-ciepla-section-content .content-knowledge ul li a:hover {
  color: #ffad4f;
}
section.pompy-ciepla-section-content .content-knowledge ul li + li {
  margin-left: 40px;
}
section.pompy-ciepla-section-content .content-faq {
  padding: 80px 0 20px 0;
  background: #edf0f2;
}
section.pompy-ciepla-section-content .content-faq .faq-inner h2 {
  color: #09290f;
  line-height: 56px;
  font-size: 63px;
  letter-spacing: 2.1px;
  font-family: "tt_commonsdemibold";
}
section.pompy-ciepla-section-content .content-faq .faq-inner .accordion {
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .flexbox-inner {
  width: 30%;
}
section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-header .accordion-button {
  font-size: 17px;
  color: #ffad4f;
  font-family: "tt_commonsdemibold";
  box-shadow: none;
  text-align: left;
  border: none;
  border-bottom: 0.5px solid #ccc;
  padding: 0 0 10px 0;
  background: none;
}
section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-header .accordion-button span {
  padding-right: 50px;
  display: block;
  position: relative;
  width: 100%;
}
section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-header .accordion-button span:after {
  position: absolute;
  background: none;
  content: "-";
  font-size: 22px;
  transform: translateY(-4px);
  top: 0;
  right: 7px;
}
section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-header .accordion-button.collapsed {
  color: #000;
}
section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-header .accordion-button.collapsed span:after {
  content: "+";
}
section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-header .accordion-button:after {
  content: none;
}
section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-collapse {
  border: none;
}
section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-body {
  padding: 20px 0 0 0;
}
section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-body p a {
  color: #09290f;
  text-decoration: underline;
}
section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item + .accordion-item {
  margin-top: 20px;
}
section.pompy-ciepla-section-content .content-faq .faq-tags-cloud {
  margin-top: 70px;
  margin-bottom: 20px;
}
section.pompy-ciepla-section-content .content-faq .faq-tags-cloud p {
  font-size: 14px;
  color: #999;
}
section.pompy-ciepla-section-content .content-faq .faq-tags-cloud ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
section.pompy-ciepla-section-content .content-faq .faq-tags-cloud ul li {
  margin-right: 20px;
}
section.pompy-ciepla-section-content .content-faq .faq-tags-cloud ul li a {
  font-size: 14px;
  color: #09290f;
  font-family: "tt_commonsdemibold";
  transition: all 0.5s;
}
section.pompy-ciepla-section-content .content-faq .faq-tags-cloud ul li a:hover {
  color: #ffad4f;
}

section.pompy-ciepla-producent-section-content {
  margin-bottom: 100px;
}
section.pompy-ciepla-producent-section-content .content-heading {
  padding: 170px 0 150px 0;
  position: relative;
}
section.pompy-ciepla-producent-section-content .content-heading .heading-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.pompy-ciepla-producent-section-content .content-heading .heading-background .background-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.pompy-ciepla-producent-section-content .content-heading .heading-background .background-cover.red {
  background: #c33f3f;
}
section.pompy-ciepla-producent-section-content .content-heading .heading-background .background-cover.mango {
  background: #ffad4f;
}
section.pompy-ciepla-producent-section-content .content-heading .heading-background img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  mix-blend-mode: multiply;
  transition: all 0.6s;
}
section.pompy-ciepla-producent-section-content .content-heading .heading-background.daikin img {
  -o-object-position: center 80%;
     object-position: center 80%;
}
section.pompy-ciepla-producent-section-content .content-heading .heading-inner {
  position: relative;
}
section.pompy-ciepla-producent-section-content .content-heading .heading-inner h1 {
  color: #fff;
  line-height: 80px;
  font-size: 90px;
  letter-spacing: 3px;
  font-family: "tt_commonsdemibold";
}
section.pompy-ciepla-producent-section-content .content-about-wrapper {
  background: #edf0f2;
  margin-top: 120px;
  padding: 120px 0;
}
section.pompy-ciepla-producent-section-content .content-about-wrapper .content-about {
  padding-top: 0;
}
section.pompy-ciepla-producent-section-content .content-about {
  padding-top: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
section.pompy-ciepla-producent-section-content .content-about .about-heading h2 {
  color: #000;
  font-size: 27px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonslight";
}
section.pompy-ciepla-producent-section-content .content-about .about-heading h2 b {
  line-height: 40px;
  font-size: 45px;
  font-family: "tt_commonsdemibold";
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery {
  width: 47.5%;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo.mitsubishi img {
  display: block;
  height: 70px;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo.mitsubishi img:nth-child(2) {
  margin-top: 50px;
  margin-left: 100px;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo.panasonic img {
  display: block;
  height: 35px;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo.panasonic img:nth-child(2) {
  margin-top: 50px;
  margin-left: 100px;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-image {
  text-align: center;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-image img {
  width: 100%;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-image.width-90 img {
  max-width: 90%;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-image.width-70 img {
  max-width: 70%;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-image.width-60 img {
  max-width: 60%;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-service {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-service img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
section.pompy-ciepla-producent-section-content .content-about .about-gallery.long-image-ratio .gallery-service {
  padding-top: 150%;
}
section.pompy-ciepla-producent-section-content .content-about .about-text {
  width: 46%;
}
section.pompy-ciepla-producent-section-content .content-about .about-text h2 {
  color: #000;
  font-size: 27px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonslight";
}
section.pompy-ciepla-producent-section-content .content-about .about-text h2 b {
  line-height: 40px;
  font-size: 45px;
  font-family: "tt_commonsdemibold";
}
section.pompy-ciepla-producent-section-content .content-about .about-text ul, section.pompy-ciepla-producent-section-content .content-about .about-text ol {
  padding-left: 17px;
}
section.pompy-ciepla-producent-section-content .content-about .about-text p, section.pompy-ciepla-producent-section-content .content-about .about-text li {
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonslight";
}
section.pompy-ciepla-producent-section-content .content-about .about-text img {
  max-width: 100%;
}
section.pompy-ciepla-producent-section-content .content-about .about-text .accordion {
  margin-top: 10px;
  width: 100%;
}
section.pompy-ciepla-producent-section-content .content-about .about-text .accordion .accordion-item .accordion-header .accordion-button {
  font-size: 17px;
  color: #ffad4f;
  font-family: "tt_commonsdemibold";
  box-shadow: none;
  text-align: left;
  border: none;
  padding: 0 0 10px 0;
  background: none;
}
section.pompy-ciepla-producent-section-content .content-about .about-text .accordion .accordion-item .accordion-header .accordion-button span {
  padding-right: 50px;
  display: block;
  position: relative;
  width: 100%;
}
section.pompy-ciepla-producent-section-content .content-about .about-text .accordion .accordion-item .accordion-header .accordion-button span:after {
  position: absolute;
  background: none;
  content: "-";
  font-size: 22px;
  transform: translateY(-4px);
  top: 0;
  right: 7px;
}
section.pompy-ciepla-producent-section-content .content-about .about-text .accordion .accordion-item .accordion-header .accordion-button.collapsed {
  color: #000;
}
section.pompy-ciepla-producent-section-content .content-about .about-text .accordion .accordion-item .accordion-header .accordion-button.collapsed span:after {
  content: "+";
}
section.pompy-ciepla-producent-section-content .content-about .about-text .accordion .accordion-item .accordion-header .accordion-button:after {
  content: none;
}
section.pompy-ciepla-producent-section-content .content-about .about-text .accordion .accordion-item .accordion-collapse {
  border: none;
}
section.pompy-ciepla-producent-section-content .content-about .about-text .accordion .accordion-item .accordion-body {
  padding: 20px 0 0 0;
}
section.pompy-ciepla-producent-section-content .content-about .about-text .accordion .accordion-item .accordion-body p {
  font-size: 17.6px;
  letter-spacing: 0.8px;
  line-height: 24px;
}
section.pompy-ciepla-producent-section-content .content-about .about-text .accordion .accordion-item .accordion-body p a {
  color: #09290f;
  text-decoration: underline;
}
section.pompy-ciepla-producent-section-content .content-about .about-text .accordion .accordion-item + .accordion-item {
  margin-top: 20px;
}
section.pompy-ciepla-producent-section-content .content-about .about-flexbox {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
section.pompy-ciepla-producent-section-content .content-about .about-flexbox .flexbox-service {
  margin-top: 70px;
  width: 47%;
}
section.pompy-ciepla-producent-section-content .content-about .about-flexbox .flexbox-service h3 {
  color: #000;
  font-size: 27px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonsdemibold";
}
section.pompy-ciepla-producent-section-content .content-about .about-flexbox .flexbox-service img {
  margin: 20px 0;
  height: 245px;
}
section.pompy-ciepla-producent-section-content .content-about .about-flexbox .flexbox-service p {
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonslight";
}
section.pompy-ciepla-producent-section-content .content-about.reverse {
  flex-direction: row-reverse;
}
section.pompy-ciepla-producent-section-content .content-about.center {
  display: block;
  text-align: center;
}
section.pompy-ciepla-producent-section-content .content-about + .content-about {
  padding-top: 150px;
}

section.ogrzewanie-section-content .content-heading {
  padding: 170px 0 150px 0;
  position: relative;
}
section.ogrzewanie-section-content .content-heading .heading-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.ogrzewanie-section-content .content-heading .heading-background .background-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.ogrzewanie-section-content .content-heading .heading-background .background-cover.red {
  background: #c33f3f;
}
section.ogrzewanie-section-content .content-heading .heading-background .background-cover.mango {
  background: #ffad4f;
}
section.ogrzewanie-section-content .content-heading .heading-background img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  mix-blend-mode: multiply;
  transition: all 0.6s;
}
section.ogrzewanie-section-content .content-heading .heading-inner {
  position: relative;
}
section.ogrzewanie-section-content .content-heading .heading-inner h1 {
  color: #fff;
  line-height: 80px;
  font-size: 90px;
  letter-spacing: 3px;
  font-family: "tt_commonsdemibold";
}
section.ogrzewanie-section-content .content-subheading {
  padding: 70px 0;
  max-width: 1150px;
  position: relative;
}
section.ogrzewanie-section-content .content-subheading p {
  color: #000;
  font-size: 27px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonslight";
}
section.ogrzewanie-section-content .content-description-wrapper {
  margin: 80px 0;
  padding: 80px 0;
  background: #f2f3f7;
}
section.ogrzewanie-section-content .content-description {
  position: relative;
}
section.ogrzewanie-section-content .content-description .description-heading {
  margin-bottom: 50px;
}
section.ogrzewanie-section-content .content-description .description-heading h2 {
  color: #000;
  line-height: 40px;
  font-size: 45px;
  letter-spacing: 1px;
  font-family: "tt_commonsdemibold";
}
section.ogrzewanie-section-content .content-description .description-heading.margin-top {
  margin-top: 80px;
}
section.ogrzewanie-section-content .content-description .description-flexbox {
  display: flex;
  justify-content: space-between;
}
section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-gallery {
  width: 47.5%;
}
section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-gallery .gallery-service {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-gallery .gallery-service img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-gallery.long-image-ratio .gallery-service {
  padding-top: 150%;
}
section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-text {
  width: 46%;
}
section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-text h2 {
  color: #000;
  line-height: 40px;
  font-size: 45px;
  letter-spacing: 1px;
  font-family: "tt_commonsdemibold";
}
section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-text hr {
  width: 80px;
  background: #fc5850;
  height: 2px;
  opacity: 1;
}
section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-text p {
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonslight";
}
section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-text li {
  color: #000;
  font-size: 18px;
  letter-spacing: 0.7px;
  line-height: 24px;
  font-family: "tt_commonslight";
}
section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-text ul, section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-text ol {
  padding-left: 17px;
}
section.ogrzewanie-section-content .content-description.mango .description-flexbox .flexbox-text hr {
  background: #ffad4f;
}
section.ogrzewanie-section-content .content-description + .content-description {
  margin-top: 70px;
}
section.ogrzewanie-section-content .content-advantages {
  display: flex;
  justify-content: space-between;
}
section.ogrzewanie-section-content .content-advantages .advantage-service {
  width: 30%;
}
section.ogrzewanie-section-content .content-advantages .advantage-service .service-icon {
  height: 50px;
  margin-bottom: 10px;
}
section.ogrzewanie-section-content .content-advantages .advantage-service p {
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonslight";
}
section.ogrzewanie-section-content .content-gallery {
  margin-top: 100px;
  padding: 100px 0;
  background: #f2f3f7;
}
section.ogrzewanie-section-content .content-gallery .gallery-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -5%;
}
section.ogrzewanie-section-content .content-gallery .gallery-inner .inner-service {
  margin-top: 5%;
  display: block;
  width: 30%;
  padding-top: 30%;
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
}
section.ogrzewanie-section-content .content-gallery .gallery-inner .inner-service img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
section.ogrzewanie-section-content .content-gallery .gallery-inner .inner-service.service-hidden {
  margin-top: 0;
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
}

section.o-firmie-section-content .content-movie {
  padding: 40px;
  width: 100%;
}
section.o-firmie-section-content .content-movie video {
  width: 100%;
}

section.kontakt-section-content .content-heading {
  padding: 100px 0;
  background: #f2f3f7;
}
section.kontakt-section-content .content-heading .heading-inner {
  position: relative;
}
section.kontakt-section-content .content-heading .heading-inner .inner-badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 160px;
  filter: grayscale(100%);
  height: 170px;
}
section.kontakt-section-content .content-heading .heading-inner h1 {
  color: #000;
  line-height: 80px;
  font-size: 90px;
  letter-spacing: 3px;
  font-family: "tt_commonsdemibold";
  position: relative;
}
section.kontakt-section-content .content-heading .heading-inner p {
  margin-top: 20px;
  color: #000;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  max-width: 900px;
  font-family: "tt_commonslight";
  position: relative;
}
section.kontakt-section-content .content-heading .heading-inner .inner-person {
  margin-top: 20px;
  position: relative;
}
section.kontakt-section-content .content-heading .heading-inner .inner-person .person {
  font-family: "tt_commons_boldbold";
  font-size: 16px;
  color: #000;
}
section.kontakt-section-content .content-heading .heading-inner .inner-person .brand {
  text-transform: uppercase;
  font-family: "tt_commonsdemibold";
  font-size: 12px;
  color: #000;
}
section.kontakt-section-content .content-flexbox {
  padding: 100px 0 80px 0;
  display: flex;
  justify-content: space-between;
}
section.kontakt-section-content .content-flexbox .flexbox-service {
  width: 100%/3;
}
section.kontakt-section-content .content-flexbox .flexbox-service .heading {
  margin-bottom: 25px;
  color: #000;
  line-height: 60px;
  font-size: 55px;
  letter-spacing: 1.5px;
  font-family: "tt_commonsdemibold";
}
section.kontakt-section-content .content-flexbox .flexbox-service .small-heading {
  color: #000;
  line-height: 29px;
  font-size: 25px;
  letter-spacing: 1px;
  font-family: "tt_commonsdemibold";
}
section.kontakt-section-content .content-flexbox .flexbox-service .icon-wrapper {
  display: flex;
  align-items: center;
}
section.kontakt-section-content .content-flexbox .flexbox-service .icon-wrapper .icon {
  transform: translateY(-3px);
  height: 30px;
  margin-right: 15px;
}
section.kontakt-section-content .content-flexbox .flexbox-service ul {
  margin-bottom: 30px;
}
section.kontakt-section-content .content-flexbox .flexbox-service ul li a {
  color: #000;
  line-height: 23px;
  font-size: 28px;
  letter-spacing: 1px;
  font-family: "tt_commonsdemibold";
  transition: all 0.6s;
}
section.kontakt-section-content .content-flexbox .flexbox-service ul li a:hover {
  opacity: 0.5;
}
section.kontakt-section-content .content-flexbox .flexbox-service ul li + li {
  margin-top: 10px;
}
section.kontakt-section-content .content-flexbox .flexbox-service address {
  margin: 0;
  line-height: 35px;
  font-size: 28px;
  letter-spacing: 1px;
  font-family: "tt_commonsdemibold";
}
section.kontakt-section-content .content-flexbox .flexbox-service address span {
  font-family: "tt_commonsregular";
  font-size: 21px;
  line-height: 20px;
}
section.kontakt-section-content .content-flexbox .flexbox-service address a {
  color: inherit;
  transition: all 0.6s;
}
section.kontakt-section-content .content-flexbox .flexbox-service address a:hover {
  opacity: 0.5;
}
section.kontakt-section-content .content-flexbox .flexbox-service .service-map {
  margin-top: -10px;
  width: 100%;
  max-width: 350px;
}
section.kontakt-section-content .content-contact {
  background: #09290f;
  padding: 50px 0 100px 0;
}
section.kontakt-section-content .content-contact .footer-inner .inner-contact .contact-service .service-image {
  background: #12531e;
}
section.kontakt-section-content .content-contact .footer-inner .inner-form {
  margin-top: 30px;
}
section.kontakt-section-content .content-contact .footer-inner .inner-form .input-service label {
  background: #09290f;
}

section.harmonogram-section-content {
  padding: 80px 0;
  background: #f2f3f7;
}
section.harmonogram-section-content .content-inner {
  display: flex;
}
section.harmonogram-section-content .content-inner .inner-form {
  display: inline-block;
}
section.harmonogram-section-content .content-inner .inner-form h2 {
  color: #000;
  line-height: 40px;
  font-size: 38px;
  letter-spacing: 1px;
  font-family: "tt_commonsdemibold";
}
section.harmonogram-section-content .content-inner .inner-form .input-service label {
  color: #000;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-family: "tt_commonsdemibold";
  padding: 0 5px;
  background: #f2f3f7;
  transition: all 0.6s;
  transform: translate(10px, 12px);
}
section.harmonogram-section-content .content-inner .inner-form .input-service input {
  display: block;
  width: 100%;
  height: 50px;
  border: 0.5px solid #000;
  border-radius: 6px;
  background: none;
  outline: none;
  padding: 10px;
  transition: all 0.6s;
  color: #000;
}
section.harmonogram-section-content .content-inner .inner-form .input-service + h2 {
  margin-top: 50px;
}
section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper span {
  margin-top: 24px;
  margin-right: 40px;
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "tt_commonsdemibold";
}
section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner {
  display: flex;
  align-items: center;
  position: relative;
}
section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner:after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(10%);
  background: url("../img/icons-n/checked.svg") center;
  background-size: cover;
  height: 20px;
  width: 20px;
  transition: all 0.6s;
  opacity: 0;
  visibility: hidden;
}
section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner .input-service {
  width: 230px;
}
section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner .input-service + .input-service {
  margin-left: 10px;
}
section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner .input-service.service-absolute {
  position: absolute;
  top: 0;
  right: -39px;
  transform: translateX(100%);
}
section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner .input-service.service-wide {
  width: 470px;
}
section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner.ready:after, section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner.filled:after {
  opacity: 1;
  visibility: visible;
}
section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner.ready .input-service:nth-child(1) label {
  color: #32ba7c;
}
section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner.filled .input-service:nth-child(2) label {
  color: #32ba7c;
}
section.harmonogram-section-content .content-inner .inner-form .btn {
  margin-top: 50px;
}
section.harmonogram-section-content .content-inner .inner-badge {
  padding-top: 50px;
  margin-left: 70px;
}
section.harmonogram-section-content .content-inner .inner-badge .badge-image {
  filter: grayscale(100%);
  width: 170px;
}

section.section-footer {
  position: relative;
  padding: 100px 0 0 0;
  background: #000;
}
section.section-footer .footer-heading h2 {
  color: #fff;
  line-height: 70px;
  font-size: 60px;
  letter-spacing: 2.2px;
  font-family: "tt_commonsdemibold";
}
section.section-footer .footer-heading p {
  margin-top: 20px;
  color: #fff;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
  font-family: "tt_commonslight";
}
section.section-footer .footer-logo {
  margin-top: 50px;
}
section.section-footer .footer-logo img {
  height: 38px;
}
section.section-footer .footer-logo address {
  margin: 22px 0 0 0;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 20px;
  font-family: "tt_commonslight";
}
section.section-footer .footer-logo address a {
  color: inherit;
  transition: all 0.6s;
}
section.section-footer .footer-logo address a:hover {
  opacity: 0.5;
}
section.section-footer .footer-credits {
  margin-top: 100px;
  padding: 30px 0;
  background: #fff;
}
section.section-footer .footer-credits .credits-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.section-footer .footer-credits .credits-inner ul {
  display: flex;
  align-items: center;
}
section.section-footer .footer-credits .credits-inner ul li + li {
  margin-left: 15px;
}
section.section-footer .footer-credits .credits-inner p, section.section-footer .footer-credits .credits-inner li {
  color: #000;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 20px;
  font-family: "tt_commonslight";
  text-transform: uppercase;
}
section.section-footer .footer-credits .credits-inner a {
  font-family: "tt_commonsdemibold";
  color: #000;
  transition: all 0.6s;
}
section.section-footer .footer-credits .credits-inner a:hover {
  opacity: 0.5;
}
section.section-footer .footer-credits .credits-inner .inner-service {
  display: flex;
  align-items: center;
}
section.section-footer .footer-credits .credits-inner .inner-service > * + * {
  margin-left: 30px;
}
section.section-footer.contact-subpage {
  padding-top: 0;
  background: #ddd;
}
section.section-footer.contact-subpage .footer-credits {
  margin-top: 1px;
}

.footer-inner {
  display: flex;
}
.footer-inner .inner-contact {
  margin-top: 50px;
}
.footer-inner .inner-contact .contact-service {
  display: flex;
  align-items: flex-start;
}
.footer-inner .inner-contact .contact-service .service-image {
  min-width: 70px;
  max-width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  background: #222;
}
.footer-inner .inner-contact .contact-service .service-image img {
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-inner .inner-contact .contact-service .service-info {
  margin-left: 20px;
}
.footer-inner .inner-contact .contact-service .service-info .job {
  color: #fff;
  line-height: 29px;
  font-size: 25px;
  letter-spacing: 1px;
  font-family: "tt_commonsdemibold";
}
.footer-inner .inner-contact .contact-service .service-info .job a {
  color: inherit;
}
.footer-inner .inner-contact .contact-service .service-info ul {
  margin-top: 10px;
}
.footer-inner .inner-contact .contact-service .service-info ul li {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 20px;
  font-family: "tt_commonslight";
}
.footer-inner .inner-contact .contact-service .service-info ul li a {
  color: inherit;
  transition: all 0.6s;
}
.footer-inner .inner-contact .contact-service .service-info ul li a:hover {
  opacity: 0.5;
}
.footer-inner .inner-contact .contact-service + .contact-service {
  margin-top: 30px;
}
.footer-inner .inner-form {
  margin-top: 50px;
  margin-left: 120px;
  max-width: 550px;
}
.footer-inner .inner-form h3 {
  color: #fff;
  line-height: 60px;
  font-size: 50px;
  letter-spacing: 1.5px;
  font-family: "tt_commonsdemibold";
  margin-bottom: 15px;
}
.footer-inner .inner-form .input-service label {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-family: "tt_commonsdemibold";
  padding: 0 5px;
  background: #000;
  transform: translate(10px, 12px);
}
.footer-inner .inner-form .input-service input {
  display: block;
  width: 100%;
  height: 50px;
  border: 0.5px solid #fff;
  border-radius: 6px;
  background: none;
  outline: none;
  padding: 10px;
  color: #fff;
}
.footer-inner .inner-form select {
  margin-top: 22px;
  display: block;
  width: 100%;
  height: 50px;
  border: 0.5px solid #fff;
  border-radius: 6px;
  background: none;
  outline: none;
  padding: 10px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-family: "tt_commonsdemibold";
}
.footer-inner .inner-form select option {
  color: #000;
}
.footer-inner .inner-form .btn {
  margin-top: 30px;
}

@media (min-width: 992px) {
  body.custom-padding {
    padding-top: 120px;
  }
}
@media (max-width: 1399.98px) {
  section.section-welcome .welcome-house {
    right: -150px;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan .slogan-number {
    font-size: 280px;
    line-height: 208px;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan .slogan-text {
    font-size: 140px;
    line-height: 150px;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan.slogan-2 .slogan-text {
    margin-left: 170px;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan.slogan-4 .slogan-text {
    margin-left: 170px;
  }
  section.section-steps .steps-description {
    padding-left: 180px;
  }
  section.section-steps .steps-description .btn .btn-inner {
    white-space: nowrap;
  }
  section.section-offer.subpage .offer-inner .inner-navigation ul li a {
    white-space: nowrap;
  }
  section.kontakt-section-content .content-heading .heading-inner .inner-badge {
    right: 0;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner .input-service.service-absolute {
    width: 210px;
  }
}
@media (max-width: 1199.98px) {
  nav.section-header .header-flexbox .nav-button {
    display: flex;
    margin-right: -10px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    background: #fff;
    z-index: 555;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
    display: block;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 50px;
    margin-right: 0;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #bbb;
    flex-direction: column;
    order: 2;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu {
    flex-direction: column;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu li a {
    color: #000;
    font-size: 17px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu li + li {
    margin-top: 10px;
    margin-left: 0;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media {
    margin-top: 20px;
    margin-left: 0;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media li a svg {
    fill: #000;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
    order: 1;
    flex-direction: column;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li {
    text-align: center;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a, nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button {
    color: #000;
    font-size: 17px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li + li {
    margin-top: 10px;
    margin-left: 0 !important;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li.mobile-hidden {
    display: none;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li.desktop-hidden {
    display: block;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper.active {
    opacity: 1;
    visibility: visible;
  }
  nav.section-header.scrolled .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top {
    transform: translateX(0);
  }
  nav.section-header.scrolled .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media {
    opacity: 1;
    visibility: visible;
  }
  section.section-welcome {
    overflow-x: hidden;
  }
  section.section-welcome .welcome-inner {
    min-height: 645px;
  }
  section.section-welcome .welcome-house {
    height: 100%;
    left: -5%;
  }
  section.section-welcome .welcome-house img {
    height: 100%;
  }
  section.section-welcome .welcome-house svg {
    height: 100%;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan .slogan-number {
    font-size: 220px;
    line-height: 175px;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan .slogan-text {
    font-size: 110px;
    line-height: 130px;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan.slogan-2 .slogan-text {
    margin-left: 170px;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan.slogan-4 .slogan-text {
    margin-left: 170px;
  }
  section.section-steps .steps-description .description-text {
    margin-left: 100px;
  }
  section.section-offer.subpage {
    padding-top: 100px;
  }
  section.section-offer.subpage .offer-inner .inner-navigation h2 {
    line-height: 56px;
    font-size: 63px;
    letter-spacing: 2.1px;
  }
  section.section-offer.subpage .offer-inner .inner-navigation ul li a {
    line-height: 28px;
    font-size: 31.5px;
    letter-spacing: 0.7px;
  }
  section.section-partners .partners-inner .inner-logo {
    margin-top: 20px;
    flex-wrap: wrap;
  }
  section.section-partners .partners-inner .inner-logo .logo-item {
    margin-top: 30px;
    margin-right: 70px;
  }
  section.section-partners .partners-inner .inner-logo .logo-item + .logo-item {
    margin-left: 0;
  }
  section.section-partners .partners-inner .inner-logo .logo-item:nth-child(3) {
    margin-right: 120px;
  }
  section.section-slogan.panasonic .slogan-inner h2 {
    max-width: 100%;
  }
  section.kontakt-section-content .content-heading .heading-inner .inner-badge {
    top: auto;
    transform: translateY(0);
    bottom: -140px;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner .input-service.service-absolute {
    width: 200px;
  }
  .footer-inner .inner-form {
    margin-left: 70px;
    max-width: 420px;
  }
  .footer-inner .inner-form h3 {
    color: #fff;
    line-height: 60px;
    font-size: 50px;
    letter-spacing: 1.5px;
    font-family: "tt_commonsdemibold";
    margin-bottom: 15px;
  }
  .footer-inner .inner-form .input-service label {
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.3px;
    font-family: "tt_commonsdemibold";
    padding: 0 5px;
    background: #000;
    transform: translate(10px, 12px);
  }
  .footer-inner .inner-form .input-service input {
    display: block;
    width: 100%;
    height: 50px;
    border: 0.5px solid #fff;
    border-radius: 6px;
    background: none;
    outline: none;
    padding: 10px;
    color: #fff;
  }
  .footer-inner .inner-form select {
    margin-top: 22px;
    display: block;
    width: 100%;
    height: 50px;
    border: 0.5px solid #fff;
    border-radius: 6px;
    background: none;
    outline: none;
    padding: 10px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.3px;
    font-family: "tt_commonsdemibold";
  }
  .footer-inner .inner-form select option {
    color: #000;
  }
  .footer-inner .inner-form .btn {
    margin-top: 30px;
  }
}
@media (max-width: 991.98px) {
  nav.section-header .header-flexbox .nav-button {
    display: flex;
    margin-right: -10px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    background: #fff;
    z-index: 555;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
    display: block;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 50px;
    margin-right: 0;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #bbb;
    flex-direction: column;
    order: 2;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu {
    flex-direction: column;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu li a {
    color: #000;
    font-size: 17px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-menu li + li {
    margin-top: 10px;
    margin-left: 0;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media {
    margin-top: 20px;
    margin-left: 0;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media li a svg {
    fill: #000;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
    order: 1;
    flex-direction: column;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li {
    text-align: center;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a, nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li button {
    color: #000;
    font-size: 17px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li + li {
    margin-top: 10px;
    margin-left: 0 !important;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li.mobile-hidden {
    display: none;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li.desktop-hidden {
    display: block;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper.active {
    opacity: 1;
    visibility: visible;
  }
  nav.section-header.scrolled .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top {
    transform: translateX(0);
  }
  nav.section-header.scrolled .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-top .nav-top-social-media {
    opacity: 1;
    visibility: visible;
  }
  section.section-welcome {
    overflow-x: hidden;
  }
  section.section-welcome .welcome-inner {
    padding-top: 150px;
    min-height: auto;
    display: block;
  }
  section.section-welcome .welcome-inner h1 {
    line-height: 72px;
    font-size: 70px;
    letter-spacing: 2.5px;
  }
  section.section-welcome .welcome-inner p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.section-welcome .welcome-house {
    position: relative;
    left: 5%;
    bottom: auto;
    min-height: 100%;
    margin-top: -400px;
    width: 110%;
    transform: translate(0, 0);
  }
  section.section-welcome .welcome-house img {
    width: 100%;
    height: 100%;
  }
  section.section-welcome .welcome-house img.house-surroundings {
    height: auto;
  }
  section.section-welcome .welcome-house svg {
    width: 100%;
    height: 100%;
  }
  section.section-steps {
    padding-bottom: 150px;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan .slogan-number {
    left: 100px !important;
    line-height: 143px;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan .slogan-text {
    margin-left: 0 !important;
    line-height: 100px;
  }
  section.section-steps .steps-description {
    flex-direction: column-reverse;
    padding-left: 0;
  }
  section.section-steps .steps-description .btn {
    margin-top: 30px;
  }
  section.section-steps .steps-description .description-text {
    margin-left: 0;
  }
  section.section-offer .offer-inner .inner-images .image-service {
    padding-top: 150%;
  }
  section.section-offer .offer-inner .inner-images .image-service .service-wrapper img {
    -o-object-position: right center;
       object-position: right center;
  }
  section.section-offer .offer-inner .inner-images .image-service .service-description {
    left: 20px;
    bottom: 15px;
  }
  section.section-offer.subpage .offer-inner .inner-navigation h2 {
    line-height: 48px;
    font-size: 54px;
    letter-spacing: 1.8px;
  }
  section.section-offer.subpage .offer-inner .inner-navigation p {
    font-size: 17.6px;
    letter-spacing: 0.8px;
    line-height: 24px;
  }
  section.section-offer.subpage .offer-inner .inner-navigation ul li a {
    line-height: 24px;
    font-size: 27px;
    letter-spacing: 0.6px;
  }
  section.section-slogan.panasonic {
    height: auto;
    padding: 50px 0;
  }
  section.section-slogan.panasonic .slogan-inner h2 {
    line-height: 52.5px;
    font-size: 45px;
    letter-spacing: 1.65px;
  }
  section.section-slogan.daikin {
    height: auto;
    padding: 50px 0;
  }
  section.section-slogan.daikin .slogan-inner h2 {
    line-height: 52.5px;
    font-size: 45px;
    letter-spacing: 1.65px;
  }
  section.section-slogan.daikin .slogan-inner p {
    font-size: 33.75px;
    line-height: 37.5px;
  }
  section.section-advantages .advantages-flexbox {
    flex-direction: column;
  }
  section.section-advantages .advantages-flexbox .flexbox-service {
    width: 100%;
  }
  section.section-advantages .advantages-flexbox .flexbox-service + .flexbox-service {
    margin-top: 40px;
  }
  section.section-partners .partners-inner .inner-logo .logo-item {
    margin-right: 50px;
  }
  section.section-partners .partners-inner .inner-logo .logo-item:nth-child(3) {
    margin-right: 50px;
  }
  section.pompy-ciepla-section-content .content-knowledge ul {
    flex-wrap: wrap;
  }
  section.pompy-ciepla-section-content .content-knowledge ul li {
    margin-top: 15px;
    margin-right: 20px;
  }
  section.pompy-ciepla-section-content .content-knowledge ul li a {
    display: block;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
  }
  section.pompy-ciepla-section-content .content-knowledge ul li a:hover {
    background: #ffad4f;
    color: #000;
  }
  section.pompy-ciepla-section-content .content-knowledge ul li + li {
    margin-left: 0;
  }
  section.pompy-ciepla-section-content .content-faq {
    padding: 60px 0 20px 0;
  }
  section.pompy-ciepla-producent-section-content .content-heading {
    padding: 130px 0 110px 0;
  }
  section.pompy-ciepla-producent-section-content .content-heading .heading-inner h1 {
    line-height: 72px;
    font-size: 72px;
    letter-spacing: 2.4px;
  }
  section.pompy-ciepla-producent-section-content .content-about {
    flex-direction: column;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-heading h2 {
    color: #000;
    font-size: 27px;
    letter-spacing: 1px;
    line-height: 30px;
    font-family: "tt_commonslight";
  }
  section.pompy-ciepla-producent-section-content .content-about .about-heading h2 b {
    line-height: 40px;
    font-size: 45px;
    font-family: "tt_commonsdemibold";
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery {
    width: 100%;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo {
    flex-direction: row;
    align-items: center;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo.mitsubishi img:nth-child(2) {
    margin-top: 0;
    margin-left: 70px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo.panasonic img:nth-child(2) {
    margin-top: 0;
    margin-left: 70px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-image {
    max-width: 360px;
    margin: 0 auto;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-image.width-90 img {
    max-width: 340px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-image.width-70 img {
    max-width: 320px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-image.width-60 img {
    max-width: 300px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-text {
    margin-top: 70px;
    width: 100%;
  }
  section.pompy-ciepla-producent-section-content .content-about.reverse {
    flex-direction: column;
  }
  section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-gallery .gallery-service {
    padding-top: 150%;
  }
  section.ogrzewanie-section-content .content-advantages {
    flex-direction: column;
  }
  section.ogrzewanie-section-content .content-advantages .advantage-service {
    width: 100%;
  }
  section.ogrzewanie-section-content .content-advantages .advantage-service + .advantage-service {
    margin-top: 40px;
  }
  section.kontakt-section-content .content-flexbox {
    flex-wrap: wrap;
  }
  section.kontakt-section-content .content-flexbox .flexbox-service {
    width: 50%;
  }
  section.kontakt-section-content .content-flexbox .flexbox-service:last-child {
    margin-top: 50px;
    width: 100%;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper span {
    width: 100%;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner {
    flex-wrap: wrap;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner:after {
    transform: none;
    top: 39px;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner .input-service.service-absolute {
    margin-left: 0;
    width: 470px;
    position: relative;
    transform: none;
    right: auto;
    top: auto;
  }
  section.harmonogram-section-content .content-inner .inner-badge {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-inner .inner-form {
    margin-left: 0;
    max-width: 550px;
  }
}
@media (max-width: 767.98px) {
  section.section-welcome .welcome-inner h1 {
    line-height: 72px;
    font-size: 70px;
    letter-spacing: 2.5px;
  }
  section.section-welcome .welcome-inner p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.section-welcome .welcome-house {
    height: 100%;
    margin-top: -340px;
    width: 140%;
    left: 0;
    margin-left: 0;
    transform: translate(0, 0);
  }
  section.section-welcome .welcome-house img {
    width: 100%;
    height: 100%;
  }
  section.section-welcome .welcome-house img.house-surroundings {
    height: auto;
  }
  section.section-welcome .welcome-house svg {
    width: 100%;
    height: 100%;
  }
  section.section-steps {
    padding-bottom: 100px;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan .slogan-number {
    font-size: 160px;
    line-height: 115px;
    left: 40px !important;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan .slogan-text {
    font-size: 90px;
    line-height: 90px;
  }
  section.section-offer .offer-inner {
    flex-direction: column-reverse;
  }
  section.section-offer .offer-inner .inner-images {
    margin-top: 50px;
    width: 70%;
    padding-top: 70%;
  }
  section.section-offer .offer-inner .inner-images .image-service {
    padding-top: 100%;
  }
  section.section-offer .offer-inner .inner-images .image-service .service-wrapper img {
    -o-object-position: right center;
       object-position: right center;
  }
  section.section-offer .offer-inner .inner-images .image-service .service-description {
    left: 20px;
    bottom: 15px;
  }
  section.section-offer .offer-inner .inner-navigation {
    width: 100%;
  }
  section.section-offer.subpage {
    padding-bottom: 50px;
  }
  section.section-offer.subpage .offer-inner .inner-navigation h2 {
    line-height: 48px;
    font-size: 54px;
    letter-spacing: 1.8px;
  }
  section.section-offer.subpage .offer-inner .inner-navigation p {
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 30px;
  }
  section.section-offer.subpage .offer-inner .inner-navigation ul li a {
    line-height: 32px;
    font-size: 36px;
    letter-spacing: 0.8px;
  }
  section.section-portfolio .owl-carousel .owl-carousel-controls {
    margin-top: 40px;
    left: auto;
    top: auto;
    position: relative;
  }
  section.section-portfolio .owl-carousel .owl-carousel-controls .controls-inner-wrapper .controls-inner {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  section.section-portfolio .owl-carousel .owl-dots {
    display: none;
  }
  section.section-slogan {
    height: 260px;
  }
  section.section-slogan .slogan-inner h2 {
    line-height: 55px;
    font-size: 45px;
    letter-spacing: 1.2px;
  }
  section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner {
    flex-direction: column-reverse;
  }
  section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-image {
    width: 100%;
    padding-top: 50%;
    position: relative;
  }
  section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-image .image-service {
    margin-top: 50px;
    width: 100%;
    padding-top: 50%;
  }
  section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-image .image-service .service-wrapper .wrapper-product {
    left: 50%;
    right: auto;
    height: 85%;
    transform: translate(-50%, -50%);
  }
  section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper .producers-inner .inner-description {
    width: 100%;
  }
  section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper:nth-child(odd) .producers-inner {
    flex-direction: column-reverse;
  }
  section.pompy-ciepla-section-content .content-producers .producers-inner-wrapper:nth-child(odd) .producers-inner .inner-image .image-service .service-wrapper .wrapper-product {
    left: 50%;
    height: 85%;
    transform: translate(-50%, -50%);
  }
  section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .flexbox-inner {
    margin-top: 20px;
    width: 100%;
  }
  section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 17px;
    color: #ffad4f;
    font-family: "tt_commonsdemibold";
    box-shadow: none;
    text-align: left;
    border: none;
    border-bottom: 0.5px solid #ccc;
    padding: 0 0 10px 0;
    background: none;
  }
  section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-header .accordion-button span {
    padding-right: 50px;
    display: block;
    position: relative;
    width: 100%;
  }
  section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-header .accordion-button span:after {
    position: absolute;
    background: none;
    content: "-";
    font-size: 22px;
    transform: translateY(-4px);
    top: 0;
    right: 7px;
  }
  section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: #000;
  }
  section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-header .accordion-button.collapsed span:after {
    content: "+";
  }
  section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-header .accordion-button:after {
    content: none;
  }
  section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-collapse {
    border: none;
  }
  section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-body {
    padding: 20px 0 0 0;
  }
  section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item .accordion-body p a {
    color: #09290f;
    text-decoration: underline;
  }
  section.pompy-ciepla-section-content .content-faq .faq-inner .accordion .accordion-item + .accordion-item {
    margin-top: 20px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo.mitsubishi {
    flex-wrap: wrap;
    margin-top: -30px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo.mitsubishi img {
    margin-top: 30px !important;
    height: 55px;
    margin-right: 50px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo.mitsubishi img:nth-child(2) {
    margin-left: 0;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo.panasonic {
    flex-wrap: wrap;
    margin-top: -30px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo.panasonic img {
    margin-top: 30px !important;
    height: 28px;
    margin-right: 50px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-gallery .gallery-logo.panasonic img:nth-child(2) {
    margin-left: 0;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-flexbox .flexbox-service img {
    height: 180px;
  }
  section.ogrzewanie-section-content .content-description .description-flexbox {
    flex-direction: column;
  }
  section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-gallery {
    order: 1;
    width: 100%;
    max-width: 400px;
  }
  section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-gallery .gallery-service {
    padding-top: 100%;
  }
  section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-text {
    order: 2;
    margin-top: 50px;
    width: 100%;
  }
  section.ogrzewanie-section-content.harmonogram .content-heading .heading-inner h1 {
    line-height: 70px;
    font-size: 75px;
    letter-spacing: 2.5px;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper {
    flex-wrap: wrap;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper span {
    padding-right: 47px;
    margin-right: 0;
    width: 100%;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner {
    width: 100%;
    justify-content: space-between;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner:after {
    transform: none;
    top: -22px;
    right: 0;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner .input-service {
    width: 49%;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner .input-service + .input-service {
    margin-left: 0;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner .input-service.service-absolute {
    width: 100%;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner .input-service.service-wide {
    width: 100%;
  }
  section.harmonogram-section-content .content-inner .inner-form .btn {
    margin-top: 50px;
  }
  section.section-footer {
    padding-top: 80px;
  }
  section.section-footer .footer-credits {
    margin-top: 50px;
  }
  section.section-footer .footer-credits .credits-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding: 0 20px;
  }
  section.section-welcome .welcome-inner {
    padding-bottom: 80px;
  }
  section.section-welcome .welcome-inner h1 {
    line-height: 72px;
    font-size: 70px;
    letter-spacing: 2.5px;
  }
  section.section-welcome .welcome-inner p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.section-welcome .welcome-house {
    display: none;
  }
  section.section-welcome.mango .welcome-inner h1 {
    line-height: 54px;
    font-size: 52.5px;
    letter-spacing: 1.875px;
  }
  section.section-steps {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan .slogan-number {
    font-size: 160px;
    line-height: 115px;
    left: 40px !important;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan .slogan-text {
    font-size: 70px;
    line-height: 70px;
  }
  section.section-steps .owl-carousel .owl-carousel-controls {
    top: 20px;
  }
  section.section-steps .owl-carousel .owl-carousel-controls .controls-inner-wrapper .controls-inner {
    right: auto;
    left: 0;
  }
  section.section-steps .steps-description .description-text p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.section-offer {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  section.section-offer .offer-inner .inner-navigation ul li a {
    white-space: normal;
  }
  section.section-offer .offer-inner .inner-images {
    width: 100%;
    padding-top: 100%;
  }
  section.section-offer .offer-inner .inner-navigation {
    width: 100%;
  }
  section.section-offer .offer-inner .inner-navigation h2 {
    line-height: 72px;
    font-size: 70px;
    letter-spacing: 2.5px;
  }
  section.section-offer .offer-inner .inner-navigation p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.section-offer .offer-inner .inner-navigation ul li a {
    line-height: 35px;
    font-size: 35px;
    letter-spacing: 0.7px;
  }
  section.section-offer .offer-inner .inner-navigation ul li a.active {
    padding-left: 20px;
  }
  section.section-offer .offer-inner .inner-navigation ul li + li {
    margin-top: 20px;
  }
  section.section-offer .offer-inner .inner-navigation ul li.nav-small a {
    font-size: 25px;
    line-height: 28px;
  }
  section.section-offer .offer-inner .inner-navigation ul li.nav-small + li {
    margin-top: 12px;
  }
  section.section-offer.subpage .offer-inner .inner-navigation h2 {
    line-height: 48px;
    font-size: 54px;
    letter-spacing: 1.8px;
  }
  section.section-offer.subpage .offer-inner .inner-navigation p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.section-offer.subpage .offer-inner .inner-navigation ul li a {
    white-space: normal;
    line-height: 35px;
    font-size: 35px;
    letter-spacing: 0.7px;
  }
  section.section-portfolio .portfolio-heading h2 {
    line-height: 72px;
    font-size: 70px;
    letter-spacing: 2.5px;
  }
  section.section-portfolio .portfolio-heading p {
    margin-top: 0;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.section-slogan {
    height: 230px;
  }
  section.section-slogan .slogan-inner h2 {
    line-height: 42px;
    font-size: 35px;
    letter-spacing: 0.5px;
  }
  section.section-slogan.panasonic .slogan-inner h2 {
    line-height: 38.5px;
    font-size: 31.5px;
    letter-spacing: 0.84px;
  }
  section.section-slogan.daikin .slogan-inner h2 {
    line-height: 38.5px;
    font-size: 31.5px;
    letter-spacing: 0.84px;
  }
  section.section-slogan.daikin .slogan-inner p {
    font-size: 31.5px;
    line-height: 35px;
  }
  section.section-advantages {
    padding: 50px 0;
  }
  section.section-advantages .advantages-flexbox .flexbox-service h3 {
    line-height: 42px;
    font-size: 35px;
    letter-spacing: 0.5px;
  }
  section.section-advantages .advantages-flexbox .flexbox-service p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.section-partners {
    padding: 50px 0;
  }
  section.section-partners .partners-inner h2 {
    line-height: 72px;
    font-size: 70px;
    letter-spacing: 2.5px;
  }
  section.section-partners .partners-inner p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.section-partners .partners-inner .inner-logo .logo-item {
    margin-top: 20px;
  }
  section.section-partners .partners-inner .inner-logo .logo-item img {
    height: 21.6px;
  }
  section.section-partners .partners-inner .inner-logo .logo-item:nth-child(2) img {
    height: 31.2px;
  }
  section.section-partners .partners-inner .inner-logo .logo-item:nth-child(3) img {
    height: 25.6px;
  }
  section.section-partners .partners-inner .inner-logo .logo-item:nth-child(4) img {
    height: 24px;
  }
  section.section-partners .partners-inner .inner-logo .logo-item:nth-child(5) img {
    height: 20px;
  }
  section.pompy-ciepla-producent-section-content .content-heading .heading-inner h1 {
    line-height: 57.6px;
    font-size: 56px;
    letter-spacing: 2px;
  }
  section.pompy-ciepla-producent-section-content .content-about-wrapper {
    background: #edf0f2;
    margin-top: 90px;
    padding: 90px 0;
  }
  section.pompy-ciepla-producent-section-content .content-about {
    padding-top: 90px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-heading h2 {
    font-size: 24.3px;
    letter-spacing: 0.9px;
    line-height: 27px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-heading h2 b {
    line-height: 36px;
    font-size: 40.5px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-text h2 {
    font-size: 24.3px;
    letter-spacing: 0.9px;
    line-height: 27px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-text h2 b {
    line-height: 36px;
    font-size: 40.5px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-text p {
    font-size: 19.8px;
    letter-spacing: 0.9px;
    line-height: 27px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-flexbox {
    flex-direction: column;
    align-items: center;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-flexbox .flexbox-service {
    width: 100%;
    max-width: 320px;
  }
  section.pompy-ciepla-producent-section-content .content-about .about-flexbox .flexbox-service p {
    font-size: 19.8px;
    letter-spacing: 0.9px;
    line-height: 27px;
  }
  section.pompy-ciepla-producent-section-content .content-about + .content-about {
    padding-top: 100px;
  }
  section.ogrzewanie-section-content .content-heading {
    padding: 100px 0 80px 0;
  }
  section.ogrzewanie-section-content .content-heading .heading-inner h1 {
    line-height: 72px;
    font-size: 70px;
    letter-spacing: 2.5px;
  }
  section.ogrzewanie-section-content .content-subheading {
    padding: 50px 0;
  }
  section.ogrzewanie-section-content .content-subheading p {
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 30px;
  }
  section.ogrzewanie-section-content .content-description-wrapper {
    margin: 50px 0;
    padding: 50px 0;
  }
  section.ogrzewanie-section-content .content-description .description-heading {
    margin-bottom: 30px;
  }
  section.ogrzewanie-section-content .content-description .description-heading h2 {
    line-height: 35px;
    font-size: 35px;
    letter-spacing: 0.7px;
  }
  section.ogrzewanie-section-content .content-description .description-heading.margin-top {
    margin-top: 50px;
  }
  section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-gallery .gallery-service {
    padding-top: 70%;
  }
  section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-text h2 {
    line-height: 35px;
    font-size: 35px;
    letter-spacing: 0.7px;
  }
  section.ogrzewanie-section-content .content-description .description-flexbox .flexbox-text p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.ogrzewanie-section-content .content-description + .content-description {
    margin-top: 50px;
  }
  section.ogrzewanie-section-content .content-advantages .advantage-service p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.ogrzewanie-section-content .content-gallery {
    margin-top: 50px;
    padding: 50px 0;
  }
  section.ogrzewanie-section-content.harmonogram .content-heading .heading-inner h1 {
    line-height: 55px;
    font-size: 55px;
    letter-spacing: 2px;
  }
  section.o-firmie-section-content .content-movie {
    padding: 20px;
  }
  section.kontakt-section-content .content-heading {
    padding: 50px 0;
  }
  section.kontakt-section-content .content-heading .heading-inner .inner-badge {
    bottom: -100px;
    height: 130px;
  }
  section.kontakt-section-content .content-heading .heading-inner h1 {
    line-height: 72px;
    font-size: 70px;
    letter-spacing: 2.5px;
  }
  section.kontakt-section-content .content-heading .heading-inner p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.kontakt-section-content .content-flexbox {
    padding: 50px 0;
  }
  section.kontakt-section-content .content-flexbox .flexbox-service {
    width: 100%;
  }
  section.kontakt-section-content .content-flexbox .flexbox-service + .flexbox-service {
    margin-top: 30px !important;
  }
  section.kontakt-section-content .content-flexbox .flexbox-service .heading {
    line-height: 50px;
    font-size: 50px;
    letter-spacing: 1.8px;
  }
  section.kontakt-section-content .content-contact {
    padding: 0 0 50px 0;
  }
  section.harmonogram-section-content {
    padding: 50px 0;
  }
  section.section-footer {
    padding-top: 50px;
  }
  section.section-footer .footer-heading h2 {
    line-height: 50px;
    font-size: 50px;
    letter-spacing: 1.8px;
  }
  section.section-footer .footer-heading p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  .footer-inner .inner-form h3 {
    line-height: 50px;
    font-size: 50px;
    letter-spacing: 1.8px;
  }
}
@media (max-width: 480px) {
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner {
    flex-wrap: wrap;
  }
  section.harmonogram-section-content .content-inner .inner-form .input-service-wrapper .wrapper-inner .input-service {
    width: 100%;
  }
}
@media (max-width: 420px) {
  section.section-steps .owl-carousel .steps-item .item-slogan .slogan-number {
    font-size: 110px;
    line-height: 73px;
  }
  section.section-steps .owl-carousel .steps-item .item-slogan .slogan-text {
    font-size: 50px;
    line-height: 50px;
  }
  section.section-partners .partners-inner h2 {
    line-height: 52px;
    font-size: 50px;
    letter-spacing: 1px;
  }
  section.section-partners .partners-inner p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
  section.section-partners .partners-inner .inner-logo .logo-item {
    margin-right: 20px;
    margin-top: 20px;
  }
  section.section-partners .partners-inner .inner-logo .logo-item:nth-child(3) {
    margin-right: 20px;
  }
  section.ogrzewanie-section-content .content-heading .heading-inner h1 {
    line-height: 52px;
    font-size: 50px;
    letter-spacing: 1px;
  }
  section.ogrzewanie-section-content.harmonogram .content-heading .heading-inner h1 {
    line-height: 50px;
    font-size: 50px;
    letter-spacing: 1px;
  }
  section.kontakt-section-content .content-heading .heading-inner h1 {
    line-height: 52px;
    font-size: 50px;
    letter-spacing: 1px;
  }
  section.kontakt-section-content .content-flexbox .flexbox-service .heading {
    font-size: 40px;
    line-height: 40px;
  }
  section.kontakt-section-content .content-flexbox .flexbox-service .small-heading {
    line-height: 23px;
    font-size: 21px;
    letter-spacing: 0.5px;
  }
  section.kontakt-section-content .content-flexbox .flexbox-service ul li a {
    line-height: 23px;
    font-size: 21px;
    letter-spacing: 0.5px;
  }
  section.kontakt-section-content .content-flexbox .flexbox-service address {
    line-height: 23px;
    font-size: 21px;
    letter-spacing: 0.5px;
  }
  section.kontakt-section-content .content-flexbox .flexbox-service address span {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 350px) {
  section.section-footer .footer-credits .credits-inner .inner-service {
    flex-direction: column;
    align-items: flex-start;
  }
  section.section-footer .footer-credits .credits-inner .inner-service > * + * {
    margin-left: 0;
  }
}