@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin-top: 85px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat";
  color: #333333;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 700;
  font-family: "Rethink Sans";
}

.single_add_to_cart_button {
  display: none !important;
  height: -moz-fit-content;
  height: fit-content;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

span {
  color: #FFC342;
}

.wrapper {
  margin: 0 auto;
  width: 90%;
  max-width: 1100px;
}

input, textarea, select {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #333333;
  color: #333333;
  font-weight: 400;
  font-family: "Montserrat";
}

.none {
  display: none !important;
}

.top-bar {
  padding: 12px 0px;
}
.top-bar .wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
}
.top-bar .icon_link_bar {
  margin-left: 15px;
}

.icon_link_bar {
  display: flex;
  align-items: center;
}
.icon_link_bar i {
  margin-right: 7px;
  padding: 5px;
  background-color: #FFC342;
}
.icon_link_bar a {
  text-decoration: none;
  color: #333333;
}

.main-btn {
  padding: 10px 20px;
  background-color: #333333;
  color: #ffffff;
  border: 1px solid #333333;
  font-size: 16px;
  cursor: pointer;
}
.main-btn:hover {
  background-color: #444444;
  font-weight: bold;
}

.sec-btn {
  padding: 10px 20px;
  background-color: #FFC342;
  color: #ffffff;
  border: 1px solid #FFC342;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.sec-btn:hover {
  font-weight: bold;
}

.third-btn {
  padding: 10px 20px;
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #333333;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.third-btn:hover {
  border: 2px solid #333333;
  font-weight: bold;
}

.section-padding {
  padding: 80px 0px;
}

.section-title {
  width: 100%;
}
.section-title p {
  padding: 20px 0px;
  width: 100%;
}
.section-title--seccond h2 {
  color: #ffffff;
}

.notification {
  position: fixed;
  align-items: center;
  padding: 12px 24px;
  bottom: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #47bf5b;
  color: white;
  animation: move-top 0.5s linear forwards;
  z-index: 20;
}
.notification i {
  margin-right: 20px;
}
.notification--error {
  background-color: #bf4747;
}

.flex {
  display: flex;
}

@keyframes move-top {
  0% {
    bottom: -10%;
  }
  100% {
    bottom: 10%;
  }
}
.preloader {
  position: fixed;
  background-color: #ffffff;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
}
.preloader__logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
}
.preloader__logo img {
  width: 100%;
}
.preloader__bar {
  position: relative;
  margin: 20px auto 0px;
  width: 250px;
  height: 8px;
  background-color: #eaeaea;
}
.preloader__bar::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  left: 70%;
  top: 0px;
  background-color: #333333;
  z-index: 20;
  animation: loading 5s infinite;
}

@keyframes loading {
  0% {
    left: 0%;
  }
  50% {
    left: 70%;
  }
  100% {
    left: 0%;
  }
}
nav {
  position: fixed;
  padding: 15px 0px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #FFC342;
  z-index: 10;
}
nav .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .nav__logo img {
  width: 250px;
}
nav .nav__nav-bar {
  display: flex;
  align-items: center;
}
nav .nav__nav-element {
  text-decoration: none;
  color: #333333;
  margin: 0px 10px;
  transition: all 0.3s;
}
nav .nav__nav-element:hover {
  font-weight: bold;
}
nav .nav__form {
  background-color: #FFC342;
}
nav .nav__form i {
  padding: 0px 5px 0px 10px;
}
nav .nav__serch-box {
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: absolute;
  background-color: #ffffff;
  width: 200px;
  max-height: 150px;
  overflow: auto;
}
nav .nav__serch-box a {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  width: 100%;
  font-size: 12px;
  text-decoration: none;
  color: #333333;
}
nav .nav__serch-box a:nth-child(odd) {
  background-color: #eaeaea;
}
nav .nav__serch-box img {
  margin-right: 10px;
  height: 20px;
  width: 20px;
}
nav .nav__icons {
  display: none;
  font-size: 30px;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}
nav .nav__icons:hover {
  color: #FFC342;
}

.header {
  position: relative;
  overflow: hidden;
}
.header__bg-motiv {
  position: absolute;
  width: 750px;
  transform: translate(-50%, -50%);
  top: 25%;
  left: 75%;
  z-index: -1;
}
.header__main-foto {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0%;
  right: 0%;
  width: 50%;
  height: 100%;
}
.header__main-foto img {
  margin: auto 0px;
  position: absolute;
  width: auto;
  height: 60%;
  left: 1%;
  animation: from-right 1s linear forwards;
}
.header__text {
  margin: 0px 0px 40px;
}
.header__text h1 {
  animation: from-left 1s linear forwards;
  left: 0%;
}
.header__text p {
  margin-top: 20px;
  width: 40%;
  left: 0%;
  animation: from-left 1s linear forwards;
}
.header__swap-bar {
  margin: 40px 0px 0px 10px;
}
.header__btn {
  width: 30px;
  height: 40px;
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(20deg);
  -o-transform: skew(20deg);
  border: 1px solid #444444;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.header__btn:hover {
  background-color: #FFC342;
  border: 1px solid #FFC342;
}
.header__btn--active {
  background-color: #FFC342;
  border: 1px solid #FFC342;
}

@keyframes from-right {
  0% {
    left: 100%;
    opacity: 0;
  }
  100% {
    right: 0%;
    opacity: 1;
  }
}
@keyframes from-left {
  0% {
    left: -100%;
    opacity: 0;
  }
  100% {
    left: 0%;
    opacity: 1;
  }
}
.dable {
  position: relative;
  overflow: hidden;
}
.dable__bg-motiv {
  position: absolute;
  width: 950px;
  top: 55%;
  right: -15%;
}
.dable__content {
  display: flex;
}
.dable__column {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}
.dable__column h1 {
  font-size: 50px;
}
.dable__column--proces {
  flex-direction: row;
  justify-content: start;
}
.dable__column--special {
  padding-left: 50px;
}
.dable__column--special p {
  padding: 5px 0px;
}
.dable__column--img {
  width: 45%;
}
.dable__product-img {
  padding: 40px 80px;
  width: 100%;
}
.dable__four-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.dable__four-img img {
  width: 100%;
}
.dable__box {
  margin: 10px 0px;
}
.dable__box h2 {
  font-size: 45px;
}
.dable__box img {
  width: 100px;
  margin-top: 10px;
}
.dable__box[type=last] {
  display: flex;
  align-items: center;
}
.dable__box[type=last] p {
  margin: 30px 20px 0px;
  font-weight: bold;
  color: #444444;
}
.dable form {
  margin-top: 10px;
}
.dable form p {
  font-size: 14px;
  margin-bottom: 5px;
}
.dable form input {
  width: 200px;
}
.dable form .sec-btn {
  width: 200px;
}
.dable .icon_link_bar {
  margin-top: 10px;
}
.dable__progres-bar {
  position: relative;
  margin: auto 30px auto 0px;
  height: 90%;
  width: 15px;
  left: 0px;
  top: 0px;
  background-color: #eaeaea;
}
.dable__progres-line {
  width: 100%;
  height: 0%;
  background-color: #FFC342;
  transition: all 0.3s;
}
.dable__progres-img {
  position: relative;
  margin: 0px auto;
  width: 70%;
  height: auto;
}
.dable__element {
  padding: 15px 0px;
  cursor: pointer;
}
.dable__element h4 {
  transition: all 0.3s;
}
.dable__element p {
  margin-top: 10px;
}
.dable__element:hover h4 {
  color: #FFC342;
}
.dable__subpage_header_img {
  position: relative;
  padding: 0px 50px;
}
.dable__subpage_header_img .sqr {
  position: absolute;
  top: 50px;
  left: 80px;
  width: 70%;
  height: 100%;
  background-color: #FFC342;
  z-index: -1;
}
.dable__subpage_header_img img {
  position: relative;
  width: 70%;
  height: auto;
}
.dable__calculatror {
  margin: 50px 20px 0px;
  padding: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid #FFC342;
  overflow: hidden;
  animation: test 1.5s linear infinite;
}
.dable__calculatror button {
  background-color: #333333;
  color: #ffffff;
  font-size: 14px;
}
.dable__calculatror h2 {
  color: #de0909;
}
.dable__cal-progres-bar {
  position: relative;
  margin: 20px 0px 30px;
  width: 50%;
  height: 10px;
  background-color: #333333;
}
.dable__cal-progres-bar::after {
  position: absolute;
  content: "";
  width: 200%;
  height: 10px;
  background-color: #fee5ad;
  z-index: -1;
}
.dable__cal-progres-bar--full {
  width: 100%;
  transition: all 0.3s;
}
.dable__cal-progres-bar--full::after {
  display: none;
}
.dable__cal-option {
  padding: 20px 0px 30px;
  display: flex;
  justify-content: space-between;
}
.dable__cal-option-box {
  width: 23%;
  padding: 10px;
  border: 1px solid #333333;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.dable__cal-option-box img {
  margin: 10px 0px 0px;
  width: 50px;
  transition: all 0.3s;
}
.dable__cal-option-box:hover {
  color: #FFC342;
  font-weight: bold;
}
.dable__cal-option-box--active {
  color: #FFC342;
  font-weight: 400;
}
.dable__cal-option-box--pv {
  width: 30%;
}
.dable__cal-input-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.dable__cal-input {
  margin: 6px 0px;
  width: 48% !important;
}
.dable__cal-input[type=submit] {
  background-color: #333333;
  color: #ffffff;
  font-size: 14px;
}

@keyframes test {
  0% {
    border: 1px solid #FFC342;
  }
  50% {
    border: 1px solid #ffffff;
  }
  100% {
    border: 1px solid #FFC342;
  }
}
.service__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.service__box {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service__box a {
  text-decoration: none;
}
.service__box img {
  position: absolute;
  width: 100%;
  z-index: -1;
}
.service__box--one {
  grid-column: 1/2;
  grid-row: 1/2;
}
.service__box--one p {
  padding: 20px 0px;
}
.service__box--two {
  grid-column: 2/4;
  grid-row: 1/2;
}
.service__box--three {
  grid-column: 1/2;
  grid-row: 2/3;
}
.service__box--for {
  grid-column: 2/3;
  grid-row: 2/3;
}
.service__box--five {
  grid-column: 3/4;
  grid-row: 2/3;
}
.service__text {
  height: 100%;
  width: 100%;
  padding: 20px;
  color: #ffffff;
  background-color: rgba(255, 195, 66, 0.6470588235);
  opacity: 1;
  transition: all 0.3s;
  cursor: pointer;
}
.service__text:hover {
  opacity: 0;
}
.service__text:hover + .service__arrow-box {
  opacity: 1;
}
.service__arrow-box {
  position: absolute;
  width: 100px;
  bottom: 35%;
  right: 5%;
  z-index: 20;
  opacity: 0;
}
.service__arrow-box img {
  width: 100px;
}

.four-plas-one {
  background-color: #eaeaea;
  overflow: hidden;
}
.four-plas-one__content {
  display: flex;
  justify-content: space-between;
}
.four-plas-one__four {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 60%;
}
.four-plas-one__four button {
  margin-top: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.four-plas-one__one {
  position: relative;
  width: 35%;
}
.four-plas-one__one img {
  position: absolute;
  width: 120%;
  right: 0px;
}
.four-plas-one__option {
  padding: 20px 30px 20px 0px;
}
.four-plas-one__option p {
  padding: 15px 0px;
}
.four-plas-one__option a {
  color: #FFC342;
  font-weight: bold;
  text-decoration: none;
}

.opinion-carusel {
  background-color: #FFC342;
  color: #ffffff;
}
.opinion-carusel__content {
  overflow: hidden;
}
.opinion-carusel__content a .main-btn {
  margin: 60px 50% 0px;
  width: 200px;
  transform: translate(-50%, -50%);
}
.opinion-carusel span {
  color: #333333;
}
.opinion-carusel__box {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.opinion-carusel__opinion {
  padding: 15px;
  margin: 10px;
  width: 23%;
  background-color: #333333;
  color: #ffffff;
  flex-shrink: 0;
}
.opinion-carusel__opinion p {
  padding: 10px 0px;
}
.opinion-carusel__arrow-box {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.opinion-carusel__left, .opinion-carusel__right {
  margin: 0px 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.opinion-carusel__left img, .opinion-carusel__right img {
  width: 50px;
}
.opinion-carusel__left:hover, .opinion-carusel__right:hover {
  transform: scale(1.1);
}
.opinion-carusel__left img {
  transform: rotate(180deg);
}

.artical__content {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.artical__text-column {
  width: 65%;
}
.artical__text-column img {
  width: 100%;
}
.artical__bar-column {
  position: relative;
  display: flex;
  justify-content: center;
  width: 30%;
  transition: all 0.5s;
}
.artical__text {
  padding: 30px 0px;
  scroll-margin-top: 100px;
}
.artical__text h4 {
  margin: 10px 0px;
}
.artical__bar {
  position: sticky;
  top: 100px;
  padding: 20px 10px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #ffffff;
}
.artical__mini-nav {
  display: none;
  cursor: pointer;
}
.artical hr {
  border: 1px solid #FFC342;
  width: 70%;
}

.galery {
  background-color: #FFC342;
}
.galery__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
}
.galery__element img {
  width: 100%;
  height: 100%;
}

.contact {
  overflow: hidden;
}
.contact__content {
  display: flex;
  justify-content: space-between;
}
.contact__form-box {
  padding-top: 20px;
  width: 40%;
}
.contact__form-box form {
  display: flex;
  flex-direction: column;
}
.contact__img {
  position: relative;
  width: 50%;
}
.contact__img img {
  position: absolute;
  width: 95%;
}
.contact__form-bar {
  display: flex;
  justify-content: space-between;
}
.contact__form-bar input {
  width: 47%;
}
.contact__form-bar--checkbox p {
  font-size: 10px;
}
.contact__form-bar--checkbox input[type=checkbox] {
  margin-right: 10px;
  width: 15px;
  height: 15px;
}
.contact input, .contact textarea, .contact select {
  margin: 5px 0px;
  color: #757575;
}
.contact textarea {
  max-width: 100%;
  max-height: 300px;
}
.contact .main-btn {
  margin-top: 20px;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
}

.databar {
  padding: 50px 0px;
  background-color: #FFC342;
  color: #ffffff;
}
.databar__content {
  display: flex;
}
.databar__column {
  padding: 10px;
  display: flex;
  flex-direction: column;
  width: 25%;
}
.databar__column .icon_link_bar {
  margin-top: 5px;
  transition: all 0.3s;
}
.databar__column .icon_link_bar i {
  font-size: 18px;
}
.databar__column .icon_link_bar a {
  color: #ffffff;
  font-size: 18px;
}
.databar__column .icon_link_bar:hover {
  scale: 1.03;
  font-weight: bold;
}

.height-all {
  height: -moz-fit-content !important;
  height: fit-content !important;
}

.catalog__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 20px;
  margin-top: 30px;
  overflow: hidden;
}
.catalog__card {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid rgba(88, 88, 88, 0.368627451);
}
.catalog__card--klima p {
  height: 60px;
  border-bottom: 3px solid rgba(255, 195, 66, 0.6470588235);
  font-size: 14px;
  transition: all 0.3s;
  overflow: hidden;
  margin-bottom: 10px;
}
.catalog__text {
  padding: 25px 25px 15px;
  width: 100%;
  text-align: left;
}
.catalog__text .old-price {
  margin: 5px 10px 0px;
  font-size: 30px;
  text-decoration: line-through;
  color: #e53c3c;
}
.catalog__text h3 {
  font-size: 40px;
}
.catalog__text h3 span {
  color: #9e2020;
}
.catalog__text h3 p {
  font-size: 16px;
}
.catalog__text h3 .mini {
  font-size: 16px;
}
.catalog__text p {
  padding: 4px 0px 5px 0px;
  transition: all 0.3s;
  overflow: hidden;
}
.catalog__text span {
  font-weight: bold;
}
.catalog__show-btn {
  padding: 8px;
  background-color: #333333;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}
.catalog__show-btn:hover {
  font-size: 22px;
  color: #FFC342;
}
.catalog__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
}
.catalog__footer {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  width: 100%;
  text-align: left;
  background-color: #FFC342;
}
.catalog__footer a {
  padding: 15px 0px;
  text-decoration: none;
  color: #333333;
}
.catalog__footer a button {
  display: flex;
  align-items: center;
  font-size: 20px;
  width: 100%;
}
.catalog__footer a button img {
  width: 30px;
  height: 15px;
  margin-left: 10px;
  transition: all 0.3s;
}
.catalog__footer a button:hover img {
  margin-left: 20px;
}
.catalog__klima-img {
  margin: 40px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.catalog__klima-img img {
  width: 40%;
}

.cta {
  background-color: #eaeaea;
}
.cta__content {
  display: flex;
}
.cta__column {
  position: relative;
  width: 48%;
}
.cta__column--btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta__column img {
  width: 50px;
  margin-right: 20px;
  animation: cta 2s infinite;
}
.cta__column .sec-btn {
  position: relative;
  font-size: 20px;
  text-decoration: none;
}

@keyframes cta {
  0% {
    margin-right: 20px;
  }
  50% {
    margin-right: 35px;
  }
  100% {
    margin-right: 20px;
  }
}
.swap__nav {
  display: flex;
  margin-top: 20px;
  transition: all 0.3s;
}
.swap__nav h4 {
  margin-right: 35px;
  padding-bottom: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.swap__img {
  margin-bottom: 30px;
  width: 100%;
  max-width: 350px;
}
.swap__content {
  margin-top: 40px;
  padding: 20px;
  background-color: #eaeaea;
  transition: all 0.3s;
}

.blog {
  margin: 10px 0px 100px;
}
.blog__content {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.blog__main {
  padding-right: 30px;
  width: 60%;
}
.blog__main ul, .blog__main ol {
  list-style-position: inside; /* Umieszcza kropki lub numery wewnątrz elementu listy */
  margin-left: 0; /* Usuwa margines z lewej strony listy */
}
.blog__img {
  position: relative;
  width: 36%;
}
.blog__img img {
  position: sticky;
  top: 100px;
  width: 100%;
}

.blog-section__content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 40px;
}
.blog-section__card {
  width: 100%;
  transition: all 0.3s;
}
.blog-section__card img {
  position: relative;
  width: 100%;
  height: 200px;
  cursor: pointer;
}
.blog-section__card h4 {
  margin: 10px 0px;
}
.blog-section__card h5 {
  margin-top: 5px;
  font-weight: normal;
}
.blog-section__card h5 i {
  color: #fee5ad;
  margin-right: 10px;
}
.blog-section__card p {
  margin-bottom: 10px;
}
.blog-section__card a {
  padding: 10px 0px;
  color: #FFC342;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.blog-section__card a:hover {
  color: #FFC342;
  letter-spacing: 1px;
}
.blog-section__card:hover {
  transform: scale(1.03);
}
.blog-section__btn-bar {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  width: 100%;
}
.blog-section__nav {
  margin: 30px 0px 50px;
}
.blog-section__nav a {
  margin-right: 20px;
  text-decoration: none;
}

.bait {
  position: fixed;
  bottom: 0%;
  right: 0%;
  transform: translate(-50%, -50%);
  animation: shake 3s infinite ease-in-out;
  z-index: 99;
}
.bait button {
  padding: 15px 20px;
  font-size: 20px;
  background-color: #FFC342;
  color: #ffffff;
  border: none;
  box-shadow: 0 0 15px rgba(88, 88, 88, 0.368627451);
  transition: all 0.3s;
  cursor: pointer;
}
.bait button i {
  margin-right: 10px;
}
.bait button:hover {
  background-color: #cc900f;
}

@keyframes shake {
  0% {
    right: 0%;
  }
  5% {
    right: 0.5%;
  }
  10% {
    right: -0.5%;
  }
  15% {
    right: 0.5%;
  }
  20% {
    right: 0%;
  }
  100% {
    right: 0%;
  }
}
.footer {
  background-color: #333333;
  color: #ffffff;
}
.footer__logo img {
  width: 300px;
}
.footer__content {
  display: flex;
  margin-top: 30px;
}
.footer__column {
  display: flex;
  flex-direction: column;
  margin-right: 50px;
}
.footer__column p {
  padding-bottom: 10px;
}
.footer__column a {
  text-decoration: none;
  color: white;
  margin: 2px 0px;
  transition: all 0.3s;
}
.footer__column a:hover {
  color: #FFC342;
}

@keyframes turn-left {
  0% {
    transform: translateX(102%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes turn-right {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(102%);
  }
}
@media (max-width: 1100px) {
  .service__content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .service__box--one {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .service__box--one p {
    padding: 20px 0px;
  }
  .service__box--two {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .service__box--two img {
    height: 100%;
  }
  .service__box--three {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .service__box--for {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .service__box--five {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
@media (max-width: 1050px) {
  nav .nav__logo img {
    width: 200px;
  }
}
@media (max-width: 940px) {
  nav .nav__logo img {
    width: 300px;
  }
  nav .nav__nav-bar {
    position: fixed;
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    justify-content: start;
    padding: 90px 30px 30px;
    height: 100%;
    width: 40%;
    top: 0%;
    right: 0%;
    transform: translateX(102%);
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(88, 88, 88, 0.368627451);
  }
  nav .nav__nav-element {
    margin: 10px 0px;
  }
  nav .nav__form {
    margin-bottom: 30px;
  }
  nav .nav__icons {
    display: inline;
  }
  .dable__product-img {
    padding: 40px 40px;
  }
}
@media (max-width: 800px) {
  .dable__content {
    flex-direction: column;
  }
  .dable__column {
    width: 100%;
  }
  .dable__column--special {
    padding-left: 0px;
  }
  .dable__column img {
    margin-bottom: 40px;
  }
  .dable__calculatror {
    margin: 50px 0px 0px;
  }
  .dable__cal-option {
    flex-direction: column;
  }
  .dable__cal-option-box {
    margin: 5px 0px;
    width: 100%;
  }
  .dable__cal-option-box img {
    margin: 20px;
  }
  .dable__subpage_header_img {
    margin-top: 50px;
  }
  .swap__nav {
    flex-direction: column;
  }
  .swap__nav h4 {
    margin: 10px 0px;
  }
  .four-plas-one__four {
    width: 100%;
  }
  .four-plas-one__one {
    display: none;
  }
  .opinion-carusel__opinion {
    width: 48%;
  }
  .galery__content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .contact__form-box {
    width: 100%;
  }
  .contact__img {
    display: none;
  }
  .databar__content {
    flex-direction: column;
  }
  .artical__text-column {
    width: 100%;
  }
  .artical__bar-column {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    border: 1px solid #eaeaea;
    box-shadow: 0 0 15px rgba(88, 88, 88, 0.368627451);
    transform: translate(70%, -50%);
  }
  .artical__bar {
    position: sticky;
    top: 100px;
    padding: 40px 30px;
    width: 100%;
  }
  .artical__mini-nav {
    display: flex;
    position: fixed;
    padding: 20px;
    bottom: 50%;
    right: 0%;
    background-color: #FFC342;
  }
  .artical__mini-nav img {
    width: 40px;
    transform: rotate(180deg);
  }
  .cta__content {
    flex-direction: column;
  }
  .cta__column {
    margin: 40px 0px 20px;
    width: 100%;
  }
  .cta__column img {
    display: none;
  }
  .blog-section__content {
    grid-template-columns: 1fr 1fr;
  }
  .blog-section__nav {
    display: flex;
    flex-direction: column;
    margin: 30px 0px 50px;
  }
  .blog-section__nav a {
    margin: 5px 0px;
    text-align: center;
  }
  .blog__content {
    flex-direction: column-reverse;
  }
  .blog__main {
    width: 100%;
  }
  .blog__img {
    width: 100%;
    margin-bottom: 30px;
  }
  .one_plas_sitebar__content {
    display: inline;
    justify-content: space-between;
  }
  .one_plas_sitebar__sitebar {
    padding: 20px 20px;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .one_plas_sitebar__slider {
    width: 100%;
  }
  .one_plas_sitebar__catalog {
    margin-top: 50px;
    width: 100%;
  }
  .product_box {
    width: 50%;
  }
  .carusel {
    display: none;
  }
}
@media (max-width: 678px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 20px;
  }
  nav .nav__nav-bar {
    width: 50%;
  }
  .header__bg-motiv {
    position: absolute;
    width: 750px;
    transform: translate(-50%, -50%);
    top: 25%;
    left: 75%;
    z-index: -1;
  }
  .header__main-foto {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0%;
    right: 0%;
    width: 50%;
    height: 100%;
  }
  .header__main-foto img {
    margin: auto 0px;
    position: absolute;
    width: auto;
    height: 60%;
    left: 1%;
    animation: from-right 1s linear forwards;
  }
  .header__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0px 0px 40px;
  }
  .header__text h1 {
    animation: from-left 1s linear forwards;
    left: 0%;
  }
  .header__text p {
    text-align: center;
    margin-top: 20px;
    width: 80%;
    left: 0%;
    animation: from-left 1s linear forwards;
  }
  .header__swap-bar {
    margin: 40px 0px 0px 10px;
  }
  .header__btn {
    width: 30px;
    height: 40px;
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(20deg);
    -o-transform: skew(20deg);
    border: 1px solid #444444;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s;
  }
  .header__btn:hover {
    background-color: #FFC342;
    border: 1px solid #FFC342;
  }
  .header__btn--active {
    background-color: #FFC342;
    border: 1px solid #FFC342;
  }
  .service__content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  }
  .service__box {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  .service__box a {
    text-decoration: none;
  }
  .service__box img {
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .service__box--one {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .service__box--one p {
    padding: 20px 0px;
  }
  .service__box--two {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .service__box--two img {
    height: 100%;
  }
  .service__box--three {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .service__box--three img {
    height: 100%;
  }
  .service__box--for {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .service__box--for img {
    height: 100%;
  }
  .service__box--five {
    grid-column: 1/2;
    grid-row: 5/6;
  }
  .service__box--five img {
    height: 100%;
  }
  .catalog__content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .blog-section__content {
    grid-template-columns: 1fr;
  }
  .bait {
    right: -50%;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
  nav .nav__nav-bar {
    width: 65%;
  }
  nav .nav__logo img {
    width: 200px;
  }
  .header__bg-motiv {
    display: none;
    opacity: 0.4;
  }
  .header__main-foto {
    position: absolute;
    display: flex;
    align-items: center;
    top: 5%;
    right: 100%;
    width: 50%;
    height: 60%;
    opacity: 0.15;
    z-index: -1;
  }
  .header__main-foto img {
    height: 100%;
  }
  .header__btn-bar {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
  }
  .header__swap-bar {
    display: flex;
    justify-content: space-evenly;
  }
  .four-plas-one__four {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .footer__content {
    flex-direction: column;
  }
  .footer__column {
    margin-top: 30px;
  }
  .opinion-carusel__opinion {
    width: 100%;
  }
  .top-bar .wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .top-bar .wrapper .icon_link_bar {
    margin-left: 0px;
  }
  .product_box {
    width: 100%;
  }
  .dable__product-img {
    padding: 40px 0px 0px 0px;
  }
  .dable__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .databar__column {
    width: 100%;
  }
}
.one_plas_sitebar {
  width: 100%;
}
.one_plas_sitebar--catalog {
  margin-bottom: 80px;
  height: -moz-fit-content;
  height: fit-content;
}
.one_plas_sitebar__content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.one_plas_sitebar__sitebar {
  width: 25%;
  height: 100%;
}
.one_plas_sitebar__slider {
  width: 73%;
  height: 100%;
  overflow: hidden;
}
.one_plas_sitebar__catalog {
  width: 73%;
}
.one_plas_sitebar__img-box {
  display: flex;
  width: 100%;
  height: 100%;
}
.one_plas_sitebar__img-box img {
  flex-shrink: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service h5 {
  font-size: 18px;
  padding: 10px 0px;
}
.service__top {
  display: flex;
  align-items: center;
  padding: 10px;
  width: 100%;
  background-color: #FFC342;
}
.service__top img {
  margin-right: 10px;
}
.service__top--secc {
  margin-top: 50px;
  background-color: #fee5ad;
}
.service__element {
  display: flex;
  flex-direction: column;
  margin: 4px 0px;
  padding: 0px 10px;
  text-decoration: none;
  color: #333333;
  transition: all 0.3s;
}
.service__element a, .service__element p {
  padding: 5px 0px;
  color: #333333;
  text-decoration: none;
  cursor: pointer;
}
.service__element a:hover {
  background-color: #fee5ad;
}
.service__element p {
  transition: all 0.3s;
}
.service__element p:hover {
  font-weight: bold;
}
.service__parent-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service__child-box {
  padding: 5px 0px 5px 10px;
  display: flex;
  flex-direction: column;
}
.service .top {
  padding: 0px 5px 0px 30px;
  font-size: 20px;
  cursor: pointer;
}
.service .top:hover i {
  color: #FFC342;
  transform: rotate(90deg);
}
.service__squer {
  margin-right: 10px;
  width: 10px;
  height: 10px;
  background-color: #333333;
}
.service__producer-box {
  display: flex;
  flex-wrap: wrap;
  padding: 0px 0px 20px;
}
.service__producer-box a {
  margin-right: 15px;
  text-decoration: none;
  color: #333333;
  transition: all 0.3s;
}
.service__producer-box a:hover {
  color: #FFC342;
}
.service__price-box {
  width: 100%;
}
.service__price-area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
}
.service__input-box {
  display: flex;
  flex-direction: column;
  width: 45%;
}

.carusel {
  padding: 80px 0px;
  width: 100%;
}
.carusel__area {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
}
.carusel__box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.carusel__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.carusel__img img {
  width: 80%;
}

.board {
  width: 100%;
  display: flex;
  justify-content: center;
}
.board__title {
  padding-bottom: 30px;
  width: 100%;
  text-align: center;
}
.board__content {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
}
.board__content-catalog {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.board--second {
  background-color: #eaeaea;
}

.product_box {
  width: 33%;
  text-decoration: none;
}

.product_card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 10px;
  padding: 15px 15px 40px;
  border: 1px solid rgba(51, 51, 51, 0.2745098039);
  background-color: #ffffff;
  color: #333333;
}
.product_card img {
  width: 100%;
  height: 190px;
}
.product_card__text {
  padding-top: 15px;
}
.product_card__text p {
  font-size: 20px;
}
.product_card__text span {
  color: #444444;
  opacity: 0.5;
  font-size: 12px;
}
.product_card__box {
  position: absolute;
  padding: 10px 5px;
  width: 35px;
  height: 35px;
  background-color: #FFC342;
  right: 0px;
  bottom: 0px;
}
.product_card__box img {
  width: 100%;
  height: 100%;
}

.description__box {
  display: flex;
}
.description__box h4 {
  margin-right: 40px;
  transition: all 0.3s;
  cursor: pointer;
}
.description__box h4:hover {
  color: #FFC342;
}
.description__desc, .description__dowland {
  padding: 30px 0px;
}
.description__dowland {
  display: flex;
  flex-direction: column;
}
.description__dowland a {
  margin: 5px 0px;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s;
}
.description__dowland a:hover {
  color: #FFC342;
}

.klima_adds_area, .pompa_adds_area {
  margin: 70px 0px 0px;
}
.klima_adds_area__content, .pompa_adds_area__content {
  display: flex;
  justify-content: space-around;
}
.klima_adds_area__box, .pompa_adds_area__box {
  cursor: pointer;
}
.klima_adds_area__box h5, .pompa_adds_area__box h5 {
  font-size: 20px;
}
.klima_adds_area__box img, .pompa_adds_area__box img {
  width: 30px;
  margin-right: 14px;
}
.klima_adds_area__icon-box, .pompa_adds_area__icon-box {
  display: flex;
  align-items: center;
  font-size: 18px;
}
.klima_adds_area__icon-box:hover + .klima_adds_area__popup, .pompa_adds_area__icon-box:hover + .klima_adds_area__popup {
  display: flex;
}
.klima_adds_area__popup, .pompa_adds_area__popup {
  position: absolute;
  display: none;
  margin-top: 5px;
  padding: 4px;
  border: 1px solid #333333;
  color: #ffffff;
  background-color: #333333;
  font-size: 14px;
}

.duble_price {
  display: flex;
}
.duble_price div {
  margin-right: 40px;
}

@media (max-width: 1100px) {
  .service__content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .service__box--one {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .service__box--one p {
    padding: 20px 0px;
  }
  .service__box--two {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .service__box--two img {
    height: 100%;
  }
  .service__box--three {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .service__box--for {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .service__box--five {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
@media (max-width: 1050px) {
  nav .nav__logo img {
    width: 200px;
  }
}
@media (max-width: 940px) {
  nav .nav__logo img {
    width: 300px;
  }
  nav .nav__nav-bar {
    position: fixed;
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    justify-content: start;
    padding: 90px 30px 30px;
    height: 100%;
    width: 40%;
    top: 0%;
    right: 0%;
    transform: translateX(102%);
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(88, 88, 88, 0.368627451);
  }
  nav .nav__nav-element {
    margin: 10px 0px;
  }
  nav .nav__form {
    margin-bottom: 30px;
  }
  nav .nav__icons {
    display: inline;
  }
  .dable__product-img {
    padding: 40px 40px;
  }
}
@media (max-width: 800px) {
  .dable__content {
    flex-direction: column;
  }
  .dable__column {
    width: 100%;
  }
  .dable__column--special {
    padding-left: 0px;
  }
  .dable__column img {
    margin-bottom: 40px;
  }
  .dable__calculatror {
    margin: 50px 0px 0px;
  }
  .dable__cal-option {
    flex-direction: column;
  }
  .dable__cal-option-box {
    margin: 5px 0px;
    width: 100%;
  }
  .dable__cal-option-box img {
    margin: 20px;
  }
  .dable__subpage_header_img {
    margin-top: 50px;
  }
  .swap__nav {
    flex-direction: column;
  }
  .swap__nav h4 {
    margin: 10px 0px;
  }
  .four-plas-one__four {
    width: 100%;
  }
  .four-plas-one__one {
    display: none;
  }
  .opinion-carusel__opinion {
    width: 48%;
  }
  .galery__content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .contact__form-box {
    width: 100%;
  }
  .contact__img {
    display: none;
  }
  .databar__content {
    flex-direction: column;
  }
  .artical__text-column {
    width: 100%;
  }
  .artical__bar-column {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    border: 1px solid #eaeaea;
    box-shadow: 0 0 15px rgba(88, 88, 88, 0.368627451);
    transform: translate(70%, -50%);
  }
  .artical__bar {
    position: sticky;
    top: 100px;
    padding: 40px 30px;
    width: 100%;
  }
  .artical__mini-nav {
    display: flex;
    position: fixed;
    padding: 20px;
    bottom: 50%;
    right: 0%;
    background-color: #FFC342;
  }
  .artical__mini-nav img {
    width: 40px;
    transform: rotate(180deg);
  }
  .cta__content {
    flex-direction: column;
  }
  .cta__column {
    margin: 40px 0px 20px;
    width: 100%;
  }
  .cta__column img {
    display: none;
  }
  .blog-section__content {
    grid-template-columns: 1fr 1fr;
  }
  .blog-section__nav {
    display: flex;
    flex-direction: column;
    margin: 30px 0px 50px;
  }
  .blog-section__nav a {
    margin: 5px 0px;
    text-align: center;
  }
  .blog__content {
    flex-direction: column-reverse;
  }
  .blog__main {
    width: 100%;
  }
  .blog__img {
    width: 100%;
    margin-bottom: 30px;
  }
  .one_plas_sitebar__content {
    display: inline;
    justify-content: space-between;
  }
  .one_plas_sitebar__sitebar {
    padding: 20px 20px;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .one_plas_sitebar__slider {
    width: 100%;
  }
  .one_plas_sitebar__catalog {
    margin-top: 50px;
    width: 100%;
  }
  .product_box {
    width: 50%;
  }
  .carusel {
    display: none;
  }
}
@media (max-width: 678px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 20px;
  }
  nav .nav__nav-bar {
    width: 50%;
  }
  .header__bg-motiv {
    position: absolute;
    width: 750px;
    transform: translate(-50%, -50%);
    top: 25%;
    left: 75%;
    z-index: -1;
  }
  .header__main-foto {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0%;
    right: 0%;
    width: 50%;
    height: 100%;
  }
  .header__main-foto img {
    margin: auto 0px;
    position: absolute;
    width: auto;
    height: 60%;
    left: 1%;
    animation: from-right 1s linear forwards;
  }
  .header__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0px 0px 40px;
  }
  .header__text h1 {
    animation: from-left 1s linear forwards;
    left: 0%;
  }
  .header__text p {
    text-align: center;
    margin-top: 20px;
    width: 80%;
    left: 0%;
    animation: from-left 1s linear forwards;
  }
  .header__swap-bar {
    margin: 40px 0px 0px 10px;
  }
  .header__btn {
    width: 30px;
    height: 40px;
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(20deg);
    -o-transform: skew(20deg);
    border: 1px solid #444444;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s;
  }
  .header__btn:hover {
    background-color: #FFC342;
    border: 1px solid #FFC342;
  }
  .header__btn--active {
    background-color: #FFC342;
    border: 1px solid #FFC342;
  }
  .service__content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  }
  .service__box {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  .service__box a {
    text-decoration: none;
  }
  .service__box img {
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .service__box--one {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .service__box--one p {
    padding: 20px 0px;
  }
  .service__box--two {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .service__box--two img {
    height: 100%;
  }
  .service__box--three {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .service__box--three img {
    height: 100%;
  }
  .service__box--for {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .service__box--for img {
    height: 100%;
  }
  .service__box--five {
    grid-column: 1/2;
    grid-row: 5/6;
  }
  .service__box--five img {
    height: 100%;
  }
  .catalog__content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .blog-section__content {
    grid-template-columns: 1fr;
  }
  .bait {
    right: -50%;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
  nav .nav__nav-bar {
    width: 65%;
  }
  nav .nav__logo img {
    width: 200px;
  }
  .header__bg-motiv {
    display: none;
    opacity: 0.4;
  }
  .header__main-foto {
    position: absolute;
    display: flex;
    align-items: center;
    top: 5%;
    right: 100%;
    width: 50%;
    height: 60%;
    opacity: 0.15;
    z-index: -1;
  }
  .header__main-foto img {
    height: 100%;
  }
  .header__btn-bar {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
  }
  .header__swap-bar {
    display: flex;
    justify-content: space-evenly;
  }
  .four-plas-one__four {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .footer__content {
    flex-direction: column;
  }
  .footer__column {
    margin-top: 30px;
  }
  .opinion-carusel__opinion {
    width: 100%;
  }
  .top-bar .wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .top-bar .wrapper .icon_link_bar {
    margin-left: 0px;
  }
  .product_box {
    width: 100%;
  }
  .dable__product-img {
    padding: 40px 0px 0px 0px;
  }
  .dable__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .databar__column {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */