* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0%;
  padding: 0%;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  font-family: "Open Sans", sans-serif;
}

html {
  -ms-text-size-adjust: none;
      text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1400px;
  padding: 0px 20px;
  margin: auto;
}

a {
  text-decoration: none;
}

button {
  padding: 10px 30px;
  display: block;
  margin: 50px auto;
  background-color: rgba(47, 162, 183, 0);
  border: solid #ffffff 2px;
  font-size: 21px;
  letter-spacing: 2px;
  color: #ffffff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

button:hover {
  background-color: #fff;
  color: black;
}

.dark_btn {
  padding: 7px 17px;
  display: block;
  margin: 0%;
  margin-top: 20px;
  margin-right: auto;
  background-color: rgba(47, 162, 183, 0);
  border: solid #000000 2px;
  font-size: 21px;
  letter-spacing: 2px;
  color: #000000;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.dark_btn:hover {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.long {
  height: 1000px;
}

.nav {
  position: fixed;
  padding: 20px 0px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 1000;
}
.nav .all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav img {
  height: 30px;
}
.nav ul {
  text-decoration: none;
}
.nav ul p {
  font-size: 22px;
  display: inline;
  margin-right: 20px;
}
.nav .nav-brand {
  margin-left: 20px;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.nav .nav-brand:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.nav i {
  font-size: 20px;
  padding: 10px;
  color: #0f0f0f;
}
.nav .afab {
  display: none;
}

.nav-link {
  color: #0f0f0f;
  position: relative;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.nav-link::after {
  content: "";
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #51b2c3;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.nav-link:hover::after {
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.nav-link:hover {
  color: #51b2c3;
}

.nav_phone {
  z-index: 1000;
  position: fixed;
  right: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  animation: shadowing 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both;
  -webkit-animation: showNavPhone 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: showNavPhone 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.nav_phone .nav_phone-container {
  z-index: 2000;
  padding: 60px 30px 20px;
  width: 300px;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  margin-left: auto;
  position: absolute;
  right: 0%;
}
.nav_phone .nav-link {
  font-size: 20px;
  text-align: left;
  font-weight: bold;
  margin: auto;
  width: 78%;
}
.nav_phone .underline {
  width: 80%;
  height: 1px;
  background-color: #494949;
  margin: 10px auto;
}
.nav_phone i {
  color: #0f0f0f;
  margin: 20px auto;
  display: block;
  font-size: 34px;
  text-align: left;
  width: 80%;
}
.nav_phone .nav-important {
  right: 0;
  -webkit-animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.nav_phone .nav-left-anim {
  right: 0;
  animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both;
}

.nav_phone_active {
  -webkit-animation: showNavPhone 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: showNavPhone 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.nav_phone_active-shadow {
  -webkit-animation: shadowing 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: shadowing 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

header {
  position: relative;
  height: 75vh;
  background-image: url("/img/gallery/perfecto9.webp");
  background-attachment: fixed;
  background-position: bottom;
  background-size: cover;
  -webkit-animation: kenburns-bottom 40s infinite alternate linear;
          animation: kenburns-bottom 40s infinite alternate linear;
}
header .hero_img {
  background-color: rgba(0, 0, 0, 0.474);
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .hero_img .hero_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .hero_img .hero_center .upperline {
  height: 300px;
  width: 7px;
  background-color: #51b2c3;
  margin: 50px 30px 0px;
}
header .hero_text {
  margin-top: 50px;
  border-radius: 2px;
  color: #ffffff;
}
header .hero_text h1 {
  font-family: "Josefin Sans", sans-serif;
  text-align: left;
  font-size: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
header .hero_text p {
  font-size: 22px;
  text-align: left;
  padding-right: 500px;
  color: rgb(255, 255, 255);
}
header .hero_text .bttt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0px;
}
header .hero_text .bttt button {
  margin: 20px 10px;
}
header .hero_text .hero_underline {
  height: 3px;
  width: 80%;
  background-color: #fff;
  margin: 10px 0px 0px;
}
header .hero_text .underline {
  height: 3px;
  width: 80px;
  background-color: #51b2c3;
  margin: 10px 0px 0px;
  display: none;
}

.offer {
  padding: 60px 0px;
}
.offer h2 {
  font-family: "Josefin Sans", sans-serif;
}
.offer .underline {
  height: 3px;
  width: 90px;
  background-color: #51b2c3;
  margin: 5px 0px 30px;
}
.offer img {
  height: 300px;
  display: block;
  margin: -40px auto 40px;
}
.offer .grid_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 2fr 3fr;
  gap: 10px;
}
.offer .grid_item {
  aspect-ratio: 1;
  background-image: url("/img/image00021.jpeg");
  background-position: center;
  -webkit-transition: background-size 0.6s;
  transition: background-size 0.6s;
}
.offer .grid_item .shadow {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.44);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.offer .grid_item .shadow p {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
}
.offer .grid_item .shadow .underline {
  height: 3px;
  width: 80px;
  background-color: #fff;
  margin: 10px auto;
}
.offer .one {
  background-image: url("/img/imgcard/plytki.webp");
  background-size: 100%;
  aspect-ratio: 0;
  grid-column: 1/3;
}
.offer .one:hover {
  background-size: 102%;
}
.offer .two {
  background-image: url("/img/imgcard/drzwi.webp");
  background-size: 140%;
  aspect-ratio: 0;
  grid-row: 1/3;
  grid-column: 3/4;
}
.offer .two:hover {
  background-size: 143%;
}
.offer .three {
  background-image: url("/podstrony/img/sanitarne/sanitarne.webp");
  background-size: 140%;
}
.offer .three:hover {
  background-size: 142%;
}
.offer .four {
  background-image: url("/podstrony/img/panele/panele.webp");
  background-size: 140%;
}
.offer .four:hover {
  background-size: 142%;
}

.offericon a {
  color: #fff;
}
.offericon .dbgc {
  width: 100%;
  padding: 100px 0px;
  background-color: #0f0f0f;
}
.offericon .dbgc h2 {
  color: #fff;
  margin-top: 100px;
  font-family: "Josefin Sans", sans-serif;
}
.offericon .dbgc .underline {
  height: 3px;
  width: 90px;
  background-color: rgb(255, 255, 255);
  margin: 5px 0px 15px;
}
.offericon .dbgc .h3 {
  color: #fff;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-bottom: 20px;
}
.offericon .gridcontainer {
  color: #fff;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
.offericon .gridcontainer .gridcard {
  aspect-ratio: 1;
  border: solid #b5dfe5 3px;
  padding: 40px 20px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.offericon .gridcontainer .gridcard i {
  display: block;
  font-size: 70px;
  text-align: center;
}
.offericon .gridcontainer .gridcard span {
  display: block;
  text-transform: uppercase;
  text-align: center;
  margin: 30px 0px 10px;
  font-size: 22px;
  font-weight: bold;
}
.offericon .gridcontainer .gridcard .content {
  text-align: center;
  font-weight: 18;
}
.offericon .div {
  height: 50px;
  width: 60%;
  background-color: #fff;
}
.offericon .one:hover {
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
.offericon .two:hover {
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}

.aboutus {
  padding: 70px 0px;
}
.aboutus .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aboutus .container .left {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aboutus .container .left img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutus .container .left .two {
  margin-left: 50px;
  margin-top: 100px;
}
.aboutus .container .right {
  padding: 60px 0px 60px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40%;
}
.aboutus .container .right h2 {
  margin-top: 100px;
  font-family: "Josefin Sans", sans-serif;
}
.aboutus .container .right .underline {
  height: 3px;
  width: 90px;
  background-color: #51b2c3;
  margin: 5px 0px 15px;
}
.aboutus .container .right .h3 {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-bottom: 20px;
}
.aboutus .container .right .title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}
.aboutus .container .right .content {
  font-size: 18px;
}
.aboutus .project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 70px;
}
.aboutus .project .project_text {
  width: 40%;
  padding-right: 30px;
}
.aboutus .project .project_text .title {
  text-align: left;
  font-family: "Josefin Sans", sans-serif;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}
.aboutus .project .project_text .content {
  text-align: left;
  font-size: 18px;
}
.aboutus .project .project_img {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
.aboutus .project .project_img .project_img-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aboutus .project .project_img .project_img-card .icon {
  padding: 20px;
}
.aboutus .project .project_img .project_img-card .icon i {
  color: #97ced7;
  font-size: 70px;
}
.aboutus .project .project_img .project_img-card h2 {
  text-align: left;
  font-family: "Josefin Sans", sans-serif;
}
.aboutus .project .project_img .project_img-card .content {
  text-align: left;
  font-size: 18px;
}
.aboutus .carousel {
  padding: 50px 0px 10px;
}
.aboutus .carousel .container {
  display: block;
}
.aboutus .carousel h2 {
  -moz-text-align-last: left;
       text-align-last: left;
  font-family: "Josefin Sans", sans-serif;
}
.aboutus .carousel .underline {
  height: 3px;
  width: 90px;
  background-color: #51b2c3;
  margin: 5px 0px 15px;
}
.aboutus .carousel .center {
  margin: 0px;
  padding: 0%;
}
.aboutus .carousel .center img {
  margin-right: 10px;
}
.aboutus .carousel .dark_btn {
  margin: 20px auto 0px;
}

.team {
  background-color: #0f0f0f;
  padding: 80px 0px;
  color: #fff;
}
.team h2 {
  text-align: left;
  font-family: "Josefin Sans", sans-serif;
}
.team .underline {
  height: 3px;
  width: 90px;
  background-color: #fff;
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 20px;
}
.team img {
  height: 250px;
  width: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 40px auto;
  border-radius: 50%;
}
.team p {
  font-size: 22px;
  text-align: center;
}

.gallery {
  padding: 70px 0px;
}
.gallery h2 {
  text-align: left;
  font-family: "Josefin Sans", sans-serif;
}
.gallery .underline {
  height: 3px;
  width: 90px;
  background-color: #51b2c3;
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 20px;
}
.gallery .grid_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  margin-top: 50px;
}
.gallery .grid_item {
  aspect-ratio: 1;
  background-position: center;
  -webkit-transition: background-size 0.5s;
  transition: background-size 0.5s;
}
.gallery .stwo {
  aspect-ratio: 0;
  grid-column: 2/3;
  grid-row: 1/3;
}
.gallery .ssix {
  aspect-ratio: 0;
  grid-column: 3/5;
}
.gallery .one {
  background-image: url("/img/gallery/perfecto9.webp");
  background-size: 140%;
}
.gallery .one:hover {
  background-size: 143%;
}
.gallery .two {
  background-image: url("/img/gallery/perfecto4.webp");
  background-size: 160%;
}
.gallery .two:hover {
  background-size: 163%;
}
.gallery .three {
  background-image: url("/img/gallery/perfecto7.webp");
  background-size: 140%;
}
.gallery .three:hover {
  background-size: 143%;
}
.gallery .four {
  background-image: url("/img/gallery/perfecto6.webp");
  background-size: 140%;
}
.gallery .four:hover {
  background-size: 143%;
}
.gallery .five {
  background-image: url("/img/gallery/perfecto8.webp");
  background-size: 140%;
}
.gallery .five:hover {
  background-size: 143%;
}
.gallery .six {
  background-image: url("/img/gallery/perfecto5.webp");
  background-size: 100%;
}
.gallery .six:hover {
  background-size: 103%;
}
.gallery .dark_btn {
  margin: 20px auto 0px;
}

.contact {
  padding: 70px 0px;
}
.contact h2 {
  text-align: left;
  font-family: "Josefin Sans", sans-serif;
}
.contact .underline {
  height: 3px;
  width: 90px;
  background-color: #51b2c3;
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 20px;
}
.contact .content {
  width: 50%;
}
.contact .content .title {
  margin: 10px 0px;
  font-size: 21px;
}
.contact iframe {
  width: 100%;
  margin: 10px;
  margin-bottom: 20px;
}
.contact .all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .plus {
  text-align: right;
}
.contact .plus h2 {
  text-align: right;
}

footer {
  padding: 30px 0px 10px;
  background-color: rgb(0, 0, 0);
  color: #fff;
}
footer .up_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .down_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer ul {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer ul a {
  display: inline;
}
footer ul p {
  display: inline;
  font-size: 22px;
  margin-right: 20px;
}
footer i {
  color: #ffffff;
  font-size: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
footer i:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  color: #51b2c3;
}
footer .underline {
  width: 100%;
  height: 2px;
  background-color: #51b2c3;
  margin: 20px 0px 5px;
}
footer .link {
  color: aqua;
  text-decoration: underline;
}
footer .nav-link {
  color: #fff;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
footer .nav-link::after {
  content: "";
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #51b2c3;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}
footer .nav-link:hover::after {
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scale(1);
          transform: scale(1);
}
footer .nav-link:hover {
  color: #51b2c3;
}

@-webkit-keyframes kenburns-bottom {
  0% {
    background-size: 120%;
    background-image: url("/img/hero/hero3.webp");
  }
  25% {
    background-image: url("/img/hero/hero3.webp");
  }
  26% {
    background-image: url("/img/hero/hero2.webp");
  }
  50% {
    background-image: url("/img/hero/hero2.webp");
  }
  51% {
    background-image: url("/img/hero/hero4.webp");
  }
  75% {
    background-image: url("/img/hero/hero4.webp");
  }
  76% {
    background-image: url("/img/hero/hero.webp");
  }
  100% {
    background-size: 100%;
    background-image: url("/img/hero/hero.webp");
  }
}

@keyframes kenburns-bottom {
  0% {
    background-size: 120%;
    background-image: url("/img/hero/hero3.webp");
  }
  25% {
    background-image: url("/img/hero/hero3.webp");
  }
  26% {
    background-image: url("/img/hero/hero2.webp");
  }
  50% {
    background-image: url("/img/hero/hero2.webp");
  }
  51% {
    background-image: url("/img/hero/hero4.webp");
  }
  75% {
    background-image: url("/img/hero/hero4.webp");
  }
  76% {
    background-image: url("/img/hero/hero.webp");
  }
  100% {
    background-size: 100%;
    background-image: url("/img/hero/hero.webp");
  }
}
@-webkit-keyframes kenburns-bottom-two {
  0% {
    background-size: cover;
    background-position: center;
    background-image: url("/img/hero/hero3.webp");
  }
  25% {
    background-image: url("/img/hero/hero3.webp");
  }
  26% {
    background-image: url("/img/hero/hero2.webp");
  }
  50% {
    background-image: url("/img/hero/hero2.webp");
  }
  51% {
    background-image: url("/img/hero/hero4.webp");
  }
  75% {
    background-image: url("/img/hero/hero4.webp");
  }
  76% {
    background-image: url("/img/hero/hero.webp");
  }
  100% {
    background-size: cover;
    background-position: bottom;
    background-image: url("/img/hero/hero.webp");
  }
}
@keyframes kenburns-bottom-two {
  0% {
    background-size: cover;
    background-position: center;
    background-image: url("/img/hero/hero3.webp");
  }
  25% {
    background-image: url("/img/hero/hero3.webp");
  }
  26% {
    background-image: url("/img/hero/hero2.webp");
  }
  50% {
    background-image: url("/img/hero/hero2.webp");
  }
  51% {
    background-image: url("/img/hero/hero4.webp");
  }
  75% {
    background-image: url("/img/hero/hero4.webp");
  }
  76% {
    background-image: url("/img/hero/hero.webp");
  }
  100% {
    background-size: cover;
    background-position: bottom;
    background-image: url("/img/hero/hero.webp");
  }
}
@-webkit-keyframes kenburns-bottom-low {
  0% {
    background-size: cover;
    background-position: bottom;
    background-image: url("/img/gallery/perfecto9.webp");
  }
  25% {
    background-image: url("/img/gallery/perfecto9.webp");
  }
  26% {
    background-image: url("/img/gallery/perfecto6.webp");
  }
  50% {
    background-image: url("/img/gallery/perfecto6.webp");
  }
  51% {
    background-image: url("/img/gallery/perfecto8.webp");
  }
  75% {
    background-image: url("/img/gallery/perfecto8.webp");
  }
  76% {
    background-image: url("/img/gallery/perfecto5.webp");
  }
  100% {
    background-size: cover;
    background-image: url("/img/gallery/perfecto5.webp");
  }
}
@keyframes kenburns-bottom-low {
  0% {
    background-size: cover;
    background-position: bottom;
    background-image: url("/img/gallery/perfecto9.webp");
  }
  25% {
    background-image: url("/img/gallery/perfecto9.webp");
  }
  26% {
    background-image: url("/img/gallery/perfecto6.webp");
  }
  50% {
    background-image: url("/img/gallery/perfecto6.webp");
  }
  51% {
    background-image: url("/img/gallery/perfecto8.webp");
  }
  75% {
    background-image: url("/img/gallery/perfecto8.webp");
  }
  76% {
    background-image: url("/img/gallery/perfecto5.webp");
  }
  100% {
    background-size: cover;
    background-image: url("/img/gallery/perfecto5.webp");
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2023-2-20 21:43:16
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(500px);
            transform: translateX(500px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(500px);
            transform: translateX(500px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes shadowing {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.273);
  }
}
@keyframes shadowing {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.273);
  }
}
@-webkit-keyframes showNavPhone {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes showNavPhone {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@media (max-width: 805px) {
  .nav .afab {
    display: block;
  }
  .nav ul {
    display: none;
  }
}
@media (max-width: 1208px) {
  header {
    -webkit-animation: kenburns-bottom-two 55s infinite alternate linear;
            animation: kenburns-bottom-two 55s infinite alternate linear;
  }
}
@media (max-width: 1174px) {
  header .hero_text h1 {
    font-size: 50px;
  }
  header .hero_text p {
    font-size: 20px;
    padding-right: 300px;
  }
}
@media (max-width: 968px) {
  header .hero_text h1 {
    font-size: 40px;
  }
  header .hero_text p {
    font-size: 19px;
    padding-right: 200px;
  }
  header .hero_text .bttt button {
    font-size: 19px;
  }
}
@media (max-width: 762px) {
  header .hero_text h1 {
    font-size: 40px;
    text-align: center;
  }
  header .hero_text p {
    text-align: center;
    padding-right: 0px;
    font-size: 18px;
  }
  header .hero_text .bttt {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .upperline {
    display: none;
  }
}
@media (max-width: 439px) {
  header .hero_text .bttt {
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 439px) {
  header .hero_text h1 {
    font-size: 35px;
  }
  header .hero_text p {
    display: none;
    font-size: 17px;
  }
  header .hero_text .underline {
    display: block;
  }
  header .hero_text .htext {
    display: block;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media (max-width: 1397px) {
  .offer .container {
    padding: 0px 200px;
  }
  .offer .grid_container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .offer .one {
    aspect-ratio: 0;
    grid-column: 1/3;
    grid-row: 3/4;
  }
  .offer .two {
    grid-row: 1/3;
    grid-column: 2/3;
  }
  .offer .four {
    grid-column: 1/2;
  }
}
@media (max-width: 1145px) {
  .offer .container {
    padding: 0px 150px;
  }
}
@media (max-width: 1047px) {
  .offer .container {
    padding: 0px 100px;
  }
}
@media (max-width: 907px) {
  .offer .container {
    padding: 0px 50px;
  }
}
@media (max-width: 671px) {
  .offer .container {
    padding: 0px 20px;
  }
}
@media (max-width: 491px) {
  .offer .container {
    padding: 0px 5px;
  }
  .offer .container .grid_container {
    gap: 3px;
  }
}
@media (max-width: 1397px) {
  .offericon .gridcontainer {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .offericon .gridcontainer .gridcard {
    display: block;
    margin-right: auto;
    height: 327px;
    width: 327px;
  }
  .offericon .gridcontainer .gridcard i {
    font-size: 60px;
  }
  .offericon .gridcontainer .one {
    margin: 0%;
    margin-left: auto;
  }
  .offericon .gridcontainer .two {
    margin-right: auto;
  }
}
@media (max-width: 717px) {
  .offericon .gridcontainer .gridcard {
    height: 300px;
    width: 300px;
  }
}
@media (max-width: 665px) {
  .offericon .gridcontainer {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  .offericon .gridcontainer .gridcard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 400px;
    width: 400px;
  }
  .offericon .gridcontainer .gridcard i {
    font-size: 55px;
  }
  .offericon .gridcontainer .one {
    margin: 0%;
    margin-left: auto;
  }
  .offericon .gridcontainer .two {
    margin-right: auto;
  }
}
@media (max-width: 571px) {
  .offericon .gridcontainer .one {
    margin: auto;
  }
  .offericon .gridcontainer .two {
    margin: auto;
  }
}
@media (max-width: 450px) {
  .offericon .gridcontainer .gridcard {
    width: auto;
    height: auto;
    aspect-ratio: 1;
  }
  .offericon .gridcontainer .gridcard i {
    font-size: 45px;
  }
}
@media (max-width: 1427px) {
  .aboutus {
    padding-top: 0%;
  }
  .aboutus .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .aboutus .container .right {
    padding: 0%;
    width: 40%;
  }
  .aboutus .container .right h2 {
    text-align: center;
  }
  .aboutus .container .right .underline {
    margin: 5px auto 15px;
  }
  .aboutus .container .right .h3 {
    text-align: center;
  }
  .aboutus .container .right .title {
    text-align: center;
  }
  .aboutus .container .right .content {
    text-align: center;
  }
  .aboutus .container .right .dark_btn {
    margin: 20px auto 0px;
  }
  .aboutus .container .left {
    width: 70%;
    margin-top: -100px;
  }
  .aboutus .project {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .aboutus .project .project_text {
    width: 70%;
    margin: 60px 0px 120px;
    padding: 0%;
  }
  .aboutus .project .project_text .title {
    text-align: center;
  }
  .aboutus .project .project_text .content {
    text-align: center;
  }
  .aboutus .project .project_img {
    width: 70%;
  }
}
@media (max-width: 1317px) {
  .aboutus .project .project_img {
    width: 80%;
  }
}
@media (max-width: 1205px) {
  .aboutus .container .right {
    width: 50%;
  }
  .aboutus .container .left {
    width: 80%;
  }
  .aboutus .project .project_text {
    width: 70%;
  }
}
@media (max-width: 1115px) {
  .aboutus .container .right {
    width: 50%;
  }
  .aboutus .container .left {
    width: 80%;
  }
  .aboutus .project .project_text {
    width: 70%;
  }
  .aboutus .project .project_img {
    width: 90%;
  }
}
@media (max-width: 1031px) {
  .aboutus .container .right {
    width: 50%;
  }
  .aboutus .container .left {
    width: 90%;
  }
  .aboutus .project .project_text {
    width: 70%;
  }
  .aboutus .project .project_img {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    width: 60%;
  }
}
@media (max-width: 829px) {
  .aboutus .project .project_text {
    margin-bottom: 70px;
  }
}
@media (max-width: 893px) {
  .aboutus .container .right {
    width: 60%;
  }
  .aboutus .container .left {
    width: 95%;
  }
  .aboutus .container .left .two {
    margin-left: 15px;
  }
  .aboutus .project .project_text {
    width: 80%;
  }
  .aboutus .project .project_img {
    width: 80%;
  }
}
@media (max-width: 771px) {
  .aboutus .container .right {
    width: 70%;
  }
}
@media (max-width: 613px) {
  .aboutus .container .right {
    width: 90%;
  }
  .aboutus .project .project_text {
    width: 90%;
  }
  .aboutus .project .project_img {
    width: 90%;
  }
}
@media (max-width: 597px) {
  .aboutus .container .left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .aboutus .container .left .two {
    margin: 0%;
    margin-top: 20px;
  }
}
@media (max-width: 535px) {
  .aboutus .container .left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .aboutus .container .left img {
    width: 70%;
  }
}
@media (max-width: 461px) {
  .aboutus .container .right {
    width: 100%;
  }
  .aboutus .project .project_text {
    width: 100%;
  }
  .aboutus .project .project_img {
    width: 100%;
  }
  .aboutus .project .project_img .project_img-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .aboutus .project .project_img .project_img-card h2 {
    text-align: center;
  }
  .aboutus .project .project_img .project_img-card .content {
    text-align: center;
  }
}
@media (max-width: 399px) {
  .aboutus .container .left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .aboutus .container .left img {
    width: 85%;
  }
}
@media (max-width: 1427px) {
  .team p {
    font-size: 20px;
    display: block;
    margin: auto;
    width: 80%;
  }
}
@media (max-width: 1205px) {
  .team p {
    font-size: 19px;
    width: 85%;
  }
}
@media (max-width: 953px) {
  .team p {
    width: 95%;
  }
}
@media (max-width: 779px) {
  .team p {
    font-size: 18px;
    width: 100%;
  }
}
@media (max-width: 779px) {
  .team p {
    text-align: justify;
  }
}
@media (max-width: 724px) {
  .team img {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 388px) {
  .team img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 326px) {
  .team img {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 1125px) {
  .gallery .container {
    padding: 0px 150px;
  }
  .gallery .grid_container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .gallery .stwo {
    aspect-ratio: 0;
    grid-row: 1/3;
    grid-column: 2/3;
  }
  .gallery .six {
    aspect-ratio: 0;
    grid-column: 1/3;
  }
}
@media (max-width: 927px) {
  .gallery .container {
    padding: 0px 100px;
  }
}
@media (max-width: 781px) {
  .gallery .container {
    padding: 0px 70px;
  }
}
@media (max-width: 697px) {
  .gallery .container {
    padding: 0px 40px;
  }
}
@media (max-width: 599px) {
  .gallery .container {
    padding: 0px 20px;
  }
}
@media (max-width: 491px) {
  .gallery .container {
    padding: 0px 5px;
  }
  .gallery .container .grid_container {
    gap: 3px;
  }
}
@media (max-width: 978px) {
  .tm {
    padding: 30px 0px;
  }
}
@media (max-width: 935px) {
  .contact .all {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .all .content {
    margin: auto;
    text-align: center;
    width: 100%;
  }
  .contact .all .content h2 {
    text-align: center;
  }
  .contact .all .plus {
    margin-top: 40px;
  }
}
@media (max-width: 506px) {
  .contact .all .content {
    -moz-text-align-last: left;
         text-align-last: left;
  }
  .contact .all .content h2 {
    text-align: left;
  }
}
@media (max-width: 448px) {
  .contact .all .content .title {
    font-size: 18px;
  }
}
@media (max-width: 330px) {
  .contact .all .content .title {
    font-size: 16px;
  }
}
@media (max-width: 651px) {
  footer {
    padding-bottom: 20px;
  }
  footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer ul p {
    display: block;
    text-align: center;
    margin: 5px 0px;
  }
  footer i {
    margin-top: 20px;
  }
  footer .up_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .down_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.subpages header {
  height: 45vh;
  -webkit-animation: none;
          animation: none;
  background-image: url("../img/imgcardfullhd/subd.jpg");
  background-position: 0px -500px;
}
.subpages header .hero_text {
  -webkit-filter: none;
          filter: none;
}
.subpages header .hero_text h1 {
  text-align: center;
}
.subpages header .hero_text .hero_underline {
  margin: auto;
  background-color: #51b2c3;
}
.subpages header .hero_text p {
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-size: 25px;
  padding: 0%;
}
.subpages .content_sub {
  padding: 50px 0px;
}
.subpages .content_sub h2 {
  font-family: "Josefin Sans", sans-serif;
}
.subpages .content_sub .underline {
  height: 3px;
  width: 90px;
  background-color: #51b2c3;
  margin: 0%;
  margin-right: 10px;
  margin-bottom: 5px;
}
.subpages .content_sub .content_text {
  font-size: 19px;
  color: rgb(46, 46, 46);
}
.subpages .content_sub .title {
  font-weight: bold;
  font-size: 27px;
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
}
.subpages .content_sub .content_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.subpages .content_sub .content_flex .flex-img {
  width: 100%;
  padding: 50px;
}
.subpages .content_sub .content_flex .flex-img img {
  width: 100%;
}
.subpages .content_sub .content_flex .flex-text {
  padding: 20px;
  width: 100%;
}
.subpages .content_sub .center {
  margin-top: 70px;
}
.subpages .content_sub .center img {
  margin: 6px;
}
.subpages .content_sub .firma {
  width: 800px;
  margin: auto;
  text-align: center;
}
.subpages .content_sub li {
  margin-bottom: 15px;
}
.subpages .gallery_project .grid_container {
  padding: 70px 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 2fr;
  gap: 10px;
}
.subpages .gallery_project .grid_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.subpages .gallery_project .grid_item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1174px) {
  .subpages .gallery_project .grid_container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 6px;
  }
}
@media (max-width: 656px) {
  .subpages .gallery_project .grid_container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    gap: 6px;
  }
}
@media (max-width: 1072px) {
  .subpages .content_sub .content_flex .flex-img {
    padding: 0px;
  }
}
@media (max-width: 962px) {
  .subpages .content_sub .content_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .subpages .content_sub .content_flex .flex-img {
    padding: 20px 150px;
  }
  .subpages .content_sub .firma {
    width: 100%;
  }
}
@media (max-width: 764px) {
  .subpages .content_sub .content_flex .flex-img {
    padding: 20px 80px;
  }
}
@media (max-width: 529px) {
  .subpages .content_sub .content_flex .flex-img {
    padding: 20px 10px;
  }
}
@media (max-width: 439px) {
  header .hero_img .container .hero_text .hero_p {
    display: block;
  }
}
@media (max-width: 501px) {
  .subpages .content_sub .content_flex .flex-img img {
    display: none;
  }
}
@media (max-height: 954px) {
  .subpages header {
    background-image: url("../img/imgcardfullhd/subp.webp");
    background-position: center;
  }
}/*# sourceMappingURL=main.css.map */