@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: sans-serif;
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.nav {
  position: fixed;
  width: 100%;
  height: 90px;
  background-color: #00000074;
  z-index: 9999;
  -webkit-box-shadow: 0px 5px 10px #080707;
          box-shadow: 0px 5px 10px #080707;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.scrolled {
  background-color: #000000;
  /* Kolor tła po przewinięciu */
}

.wrapper {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav-top {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
}

@media (min-width: 533px) {
  .nav-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav-top i {
  color: #ab5454;
  font-size: 14px;
  margin-right: 3px;
}

.nav-top .left {
  margin-left: 5px;
}

.nav-top p {
  font-size: 12px;
  color: #fff;
}

.nav-top a {
  color: #fff;
  text-decoration: none;
}

.nav-bottom {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-bottom .bottom-flex {
  position: absolute;
  top: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  padding: 0 15px 0 15px;
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 533px) {
  .nav-bottom .bottom-flex {
    margin-top: 10px;
  }
}

.nav-bottom .bottom-flex .logo-box {
  color: #fff;
}

.nav-bottom .bottom-flex .logo-img-box {
  width: 80px;
  height: 40px;
  margin-right: 5px;
}

.nav-bottom .bottom-flex .logo-img-box img {
  width: 100%;
  height: 100%;
}

.nav-bottom .bottom-flex i {
  font-size: 32px;
  margin-right: 15px;
}

.nav-bottom .bottom-flex h1 {
  font-weight: 400;
  font-size: 20px;
}

.nav-bottom .bottom-flex p {
  font-size: 10px;
}

.nav-bottom .menu-desctop {
  display: none;
}

@media (min-width: 798px) {
  .nav-bottom .menu-desctop {
    position: absolute;
    right: 10px;
    display: block;
  }
}

.nav-bottom .menu-desctop a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  padding: 25px 15px;
}

.nav-bottom .menu-desctop .portfolio {
  position: relative;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

.nav-bottom .menu-desctop .portfolio .active-portfolio {
  position: absolute;
  background-color: #fffdfd;
  top: 60px;
  left: -40%;
  width: 180%;
  display: none;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

.nav-bottom .menu-desctop .portfolio .active-portfolio ul {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.nav-bottom .menu-desctop .portfolio .active-portfolio ul li {
  list-style: none;
  color: #403d3d;
  padding: 15px 10px;
}

.nav-bottom .menu-desctop .portfolio .active-portfolio ul li:hover {
  color: #ab5454;
}

.nav-bottom .menu-desctop .portfolio .active-portfolio-active {
  display: block;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

.nav-bottom .menu-desctop .active-menu-button {
  color: #d8ba75;
}

.hambutger-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  color: #ab5454;
  cursor: pointer;
  width: 30px;
  height: 30px;
  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;
}

@media (min-width: 798px) {
  .hambutger-nav {
    display: none;
  }
}

.hambutger-nav i {
  font-size: 30px;
}

.deactive-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: block;
  z-index: 9999;
  -webkit-transition: .2s linear;
  -o-transition: .2s linear;
  transition: .2s linear;
}

@media (min-width: 533px) {
  .deactive-mobile-menu {
    width: 80%;
  }
}

.deactive-mobile-menu .logo-menu {
  position: absolute;
  top: 40px;
  left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.deactive-mobile-menu .logo-menu .logo-img-box-menu {
  width: 30px;
  height: 30px;
}

.deactive-mobile-menu .logo-menu .logo-img-box-menu img {
  width: 100%;
  height: 100%;
}

.deactive-mobile-menu .logo-menu .logo-box-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin-left: 5px;
}

.deactive-mobile-menu .logo-menu .logo-box-menu h1 {
  font-size: 14px;
  font-weight: 500;
}

.deactive-mobile-menu .logo-menu .logo-box-menu p {
  font-size: 10px;
  margin-left: 2px;
}

.deactive-mobile-menu .exit-menu {
  position: absolute;
  top: 25px;
  right: 10px;
  width: 40px;
  height: 40px;
  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;
  color: #ab5454;
  font-weight: 700;
  font-size: 30px;
}

.deactive-mobile-menu .list-menu {
  position: absolute;
  top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.deactive-mobile-menu .list-menu a {
  padding: 20px 10px;
  margin-left: 20px;
  text-decoration: none;
  text-transform: uppercase;
  color: #ab5454;
  font-size: 14px;
}

.active-mobile-menu {
  left: 0;
}

.header {
  position: relative;
  top: 0;
  width: 100%;
  height: 500px;
  background-image: url(../img/Kuchnie/kuchnia009.jpg);
  background-position: center;
  background-size: cover;
  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;
}

@media (min-width: 978px) {
  .header {
    height: 800px;
  }
}

.header::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #151515c5;
}

.header .txt-header {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  margin-top: 30px;
}

.header .txt-header h2 {
  position: relative;
  left: -40px;
  opacity: 0;
  color: #ea7c7c;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  -webkit-animation: txt-header .3s .3s linear both;
          animation: txt-header .3s .3s linear both;
  line-height: 100%;
}

@media (min-width: 768px) {
  .header .txt-header h2 {
    font-size: 46px;
  }
}

@media (min-width: 978px) {
  .header .txt-header h2 {
    font-size: 54px;
  }
}

@media (min-width: 1100px) {
  .header .txt-header h2 {
    font-size: 68px;
    letter-spacing: 4px;
  }
}

.header .txt-header p {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  padding: 15px;
}

@media (min-width: 375px) {
  .header .txt-header p {
    padding: 15px 20px;
  }
}

@media (min-width: 533px) {
  .header .txt-header p {
    padding: 15px 50px;
  }
}

@media (min-width: 768px) {
  .header .txt-header p {
    font-size: 18px;
    line-height: 32px;
  }
}

.header .txt-header button {
  position: relative;
  top: -33px;
  opacity: 0;
  background-color: transparent;
  border: none;
  margin-top: 20px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #a39f9f;
  border-left: 1px solid #fff;
  border-right: 1px solid #a39f9f;
  letter-spacing: 1.5px;
  -webkit-animation: button-portfolio .3s .5s linear both;
          animation: button-portfolio .3s .5s linear both;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media (min-width: 798px) {
  .header .txt-header button:hover {
    background-color: #fff;
    cursor: pointer;
  }
  .header .txt-header button:hover p {
    color: #080707;
  }
}

.header .txt-header button p {
  text-transform: uppercase;
  font-size: 12px;
  padding: 15px 50px;
  color: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media (min-width: 768px) {
  .header .txt-header button p {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .header .txt-header button p {
    padding: 15px 80px;
    letter-spacing: 4px;
  }
}

.header-contact {
  background-image: url(../img/Kuchnie/kuchnia002.jpg);
}

.header-portfolio {
  background-image: url(../img/Kuchnie/kuchnia004.jpg);
}

section {
  display: block;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section .skill-container {
  position: relative;
  top: -20px;
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  section .skill-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

section .skill-container .skill-box {
  width: 100%;
  height: 420px;
  padding: 10px;
  background-color: #fff;
  margin: 5px;
  -webkit-box-shadow: 0px 4px 5px 0px #ddd;
          box-shadow: 0px 4px 5px 0px #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  opacity: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}

@media (min-width: 978px) {
  section .skill-container .skill-box {
    width: 30%;
  }
}

section .skill-container .skill-box .icon-box {
  width: 90px;
  height: 90px;
  background-color: black;
  padding: 5px;
  border-radius: 50%;
  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;
}

@media (min-width: 798px) {
  section .skill-container .skill-box .icon-box {
    position: absolute;
    top: -60px;
    border: 8px solid #fff;
    width: 110px;
    height: 110px;
  }
}

section .skill-container .skill-box .icon-box img {
  margin-top: 15px;
  width: 50px;
  height: 70px;
}

section .skill-container .skill-box .icon-box .idea {
  width: 60px;
  height: 60px;
}

section .skill-container .skill-box .icon-box .design {
  width: 50px;
  height: 50px;
}

section .skill-container .skill-box h3 {
  margin: 15px 0;
}

section .skill-container .skill-box.show {
  opacity: 1;
  margin-top: -20px;
}

section .skill-container .dark-box {
  background-color: #151414;
  color: #fff;
}

section .skill-container .dark-box .icon-box-light {
  background-color: #fff;
}

@media (min-width: 798px) {
  section .skill-container .dark-box .icon-box-light {
    border: 10px solid #151414;
  }
}

.about {
  position: relative;
  top: 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  margin-bottom: 50px;
}

@media (min-width: 798px) {
  .about {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 50px 0;
  }
}

@media (min-width: 1400px) {
  .about {
    width: 80%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 100px 0;
  }
}

.about .about-left-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  text-align: center;
  opacity: 0;
  -webkit-transition: .5s linear;
  -o-transition: .5s linear;
  transition: .5s linear;
  position: relative;
  left: -100%;
}

@media (min-width: 968px) {
  .about .about-left-top {
    text-align: left;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding-left: 40px;
  }
}

@media (min-width: 1200px) {
  .about .about-left-top {
    padding-left: 80px;
  }
}

.about .about-left-top h3 {
  text-transform: uppercase;
  color: #2b903c;
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 400;
}

@media (min-width: 968px) {
  .about .about-left-top h3 {
    padding-left: 15px;
    font-size: 30px;
    font-weight: 600;
  }
}

@media (min-width: 1200px) {
  .about .about-left-top h3 {
    font-size: 48px;
    margin-bottom: 40px;
  }
}

.about .about-left-top p {
  color: #5e5959;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 25px;
  padding: 0 15px;
}

@media (min-width: 1200px) {
  .about .about-left-top p {
    font-size: 20px;
    margin-bottom: 50px;
  }
}

.about .about-left-top button {
  display: block;
  padding: 20px 30px;
  background-color: #151414;
  color: #fff;
  border: none;
  text-transform: uppercase;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

.about .about-left-top button:hover {
  background-color: #fff;
  cursor: pointer;
  color: #151414;
  border: .5px solid #ddd;
}

@media (min-width: 968px) {
  .about .about-left-top button {
    position: relative;
    left: 15px;
  }
}

@media (min-width: 1200px) {
  .about .about-left-top button {
    font-size: 18px;
  }
}

.about .element1-active {
  opacity: 1;
  left: 0;
}

.about .about-right-bottom {
  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;
  opacity: 1;
  position: relative;
  right: -100%;
  -webkit-transition: .5s linear;
  -o-transition: .5s linear;
  transition: .5s linear;
}

.about .about-right-bottom .img-box-about {
  position: relative;
  width: 90%;
}

@media (min-width: 968px) {
  .about .about-right-bottom .img-box-about {
    top: -50px;
  }
}

.about .about-right-bottom .img-box-about img {
  width: 100%;
  height: 100%;
}

.about .element2-active {
  opacity: 1;
  right: 0;
}

.contact {
  background: url(https://www.kler.eu/api/images/filemanager_original/thumbnails/images/aktualnosci_[spark]/przestrzen_ze_smakiem_jak_urzadzic_jadalnie/zestaw-mebli-do-jadalni-alf-italia-corso-como-bezowy-cover.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  background-attachment: fixed;
  position: relative;
}

.contact .contact-bcg {
  width: 100%;
  height: 100%;
  background-color: #000000ee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 10px;
}

@media (min-width: 798px) {
  .contact .contact-bcg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.contact .contact-txt-box {
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0 20px;
}

@media (min-width: 798px) {
  .contact .contact-txt-box {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: 5%;
    padding: 100px 0;
  }
}

@media (min-width: 1200px) {
  .contact .contact-txt-box {
    margin-left: 11%;
    padding: 140px 0;
  }
}

.contact .contact-txt-box h3 {
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  padding: 10px;
}

@media (min-width: 798px) {
  .contact .contact-txt-box h3 {
    text-align: left;
    padding-right: 140px;
  }
}

@media (min-width: 1200px) {
  .contact .contact-txt-box h3 {
    font-size: 30px;
  }
}

.contact .contact-txt-box p {
  color: #aeaaaa;
  padding: 10px;
  font-size: 14px;
}

@media (min-width: 1200px) {
  .contact .contact-txt-box p {
    font-size: 24px;
  }
}

.contact .button-contact {
  border: 1px solid #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

.contact .button-contact:hover {
  background-color: #aeaaaa;
  border-color: #aeaaaa;
  cursor: pointer;
}

@media (min-width: 798px) {
  .contact .button-contact {
    margin-right: 5%;
  }
}

@media (min-width: 1400px) {
  .contact .button-contact {
    margin-right: 11%;
  }
}

.contact .button-contact p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 20px 40px;
}

.contact .button-contact:hover p {
  color: #000;
}

.contact_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_contact .box-contact {
  width: 98%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

@media (min-width: 798px) {
  .contact_contact .box-contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.contact_contact .box-contact .contact_contact-slogan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 40px 0 20px;
  position: relative;
  left: -100%;
  -webkit-transition: 1s linear;
  -o-transition: 1s linear;
  transition: 1s linear;
  opacity: 0;
}

@media (min-width: 798px) {
  .contact_contact .box-contact .contact_contact-slogan {
    margin: 40px 20% 20px 0;
  }
}

@media (min-width: 1200px) {
  .contact_contact .box-contact .contact_contact-slogan {
    margin: 40px 10% 20px 0;
  }
}

.contact_contact .box-contact .contact_contact-slogan h3 {
  font-size: 24px;
  color: #565c48;
  text-align: center;
  padding: 5px;
}

@media (min-width: 798px) {
  .contact_contact .box-contact .contact_contact-slogan h3 {
    font-size: 32px;
  }
}

.contact_contact .box-contact .contact-contact-active-slogan {
  left: 0;
  opacity: 1;
}

.contact_contact .box-contact .contact_txt_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 40px 0;
  position: relative;
  right: -100%;
  -webkit-transition: 1s linear;
  -o-transition: 1s linear;
  transition: 1s linear;
  opacity: 0;
}

.contact_contact .box-contact .contact_txt_contact h3 {
  color: #565c48;
  padding: 10px;
  font-size: 24px;
}

@media (min-width: 798px) {
  .contact_contact .box-contact .contact_txt_contact h3 {
    font-size: 34px;
  }
}

.contact_contact .box-contact .contact_txt_contact p {
  padding: 5px 10px;
  color: #565c48;
  font-size: 16px;
}

@media (min-width: 798px) {
  .contact_contact .box-contact .contact_txt_contact p {
    font-size: 22px;
  }
}

.contact_contact .box-contact .contact_txt-active-contact {
  right: 0;
  opacity: 1;
}

.contact_contact iframe {
  width: 99%;
  margin-bottom: 20px;
}

@media (min-width: 798px) {
  .contact_contact iframe {
    margin: 20px 0;
  }
}

.gallery {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("https://ewartmeble.pl/wp-content/uploads/2023/06/meble-na-wymiar-glogow.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 10px;
  position: relative;
  overflow: hidden;
}

.gallery::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000e3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media (min-width: 798px) {
  .gallery {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.left-box-gallery {
  width: 100%;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.left-box-gallery:hover {
  z-index: 200;
}

@media (min-width: 798px) {
  .left-box-gallery {
    width: 45%;
  }
}

.right-box-gallery {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 99;
}

@media (min-width: 798px) {
  .right-box-gallery {
    width: 55%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.box {
  margin: 2px 0;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

.box:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  z-index: 100;
  cursor: pointer;
}

@media (min-width: 798px) {
  .box {
    margin: 2px 2px;
  }
}

.box-1 {
  background: url(../img/Kuchnie/kuchnia001.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 250px;
}

@media (min-width: 798px) {
  .box-1 {
    width: 99%;
    height: 250px;
  }
}

.box-2 {
  background: url(../img/Kuchnie/kuchnia003.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 250px;
}

@media (min-width: 798px) {
  .box-2 {
    width: 99%;
    height: 250px;
  }
}

.box-3 {
  background: url(../img/Lazienka/lazienka5.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 350px;
}

@media (min-width: 798px) {
  .box-3 {
    width: 32.33%;
    height: 500px;
  }
}

.box-4 {
  background: url(../img/Kuchnie/kuchnia005.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 350px;
}

@media (min-width: 798px) {
  .box-4 {
    width: 32.33%;
    height: 500px;
  }
}

.box-5 {
  background: url(../img/Kuchnie/kuchnia008.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 350px;
}

@media (min-width: 798px) {
  .box-5 {
    width: 32.33%;
    height: 500px;
  }
}

.portfolio-section {
  width: 100%;
  overflow: hidden;
  background-image: url(https://img.freepik.com/darmowe-wektory/ciemne-tlo-szesciokatne-z-kolorem-gradientu_79603-1410.jpg?auto=format&fit=crop&w=315&h=220);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.portfolio-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffffe8;
}

.portfolio-section .portfolio-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 10px 0 10px;
  z-index: 99;
}

.portfolio-section .portfolio-nav button {
  text-decoration: none;
  margin: 1px;
  padding: 15px 7px;
  background-color: #242627;
  color: azure;
  font-size: 11px;
  border: none;
  width: 24.5%;
  border-radius: 5px;
}

@media (min-width: 978px) {
  .portfolio-section .portfolio-nav button {
    font-size: 16px;
  }
}

.portfolio-section .portfolio-nav button:hover {
  cursor: pointer;
}

.portfolio-section .portfolio-nav button:nth-child(odd) {
  background-color: #171616;
}

.portfolio-section .flex-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax, 1fr)[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax, 1fr);
  gap: 16px;
  margin: 20px;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
  z-index: 99;
}

@media (min-width: 576px) {
  .portfolio-section .flex-gallery {
    -ms-grid-columns: (minmax(150px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (min-width: 768px) {
  .portfolio-section .flex-gallery {
    -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (min-width: 992px) {
  .portfolio-section .flex-gallery {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.portfolio-section .flex-gallery .box-gallery-img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
}

.portfolio-section .flex-gallery .box-gallery-img:hover {
  cursor: pointer;
}

.portfolio-section .flex-gallery .box-gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.portfolio-section .flex-gallery .kithen-gallery {
  display: block;
}

.portfolio-section .flex-gallery .bath-gallery-box {
  display: block;
}

.portfolio-section .flex-gallery .in-gallery {
  display: block;
}

.portfolio-section .flex-gallery .kithen-gallery-active {
  display: none;
}

.portfolio-section .flex-gallery .bath-gallery-active {
  display: none;
}

.portfolio-section .flex-gallery .in-gallery-active {
  display: none;
}

.top-button {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: #242627eb;
  padding: 10px;
  border-radius: 2.5px;
  opacity: 0;
  -webkit-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
  z-index: 999;
}

.top-button:hover {
  cursor: pointer;
  background-color: #050505;
}

.top-button i {
  font-size: 24px;
  color: bisque;
}

.top-button-active {
  opacity: 1;
}

.footer {
  position: relative;
  width: 100%;
  height: 90px;
  background-color: #0a0a0a;
  -webkit-box-shadow: 0px 5px 50px #2f2f2f;
          box-shadow: 0px 5px 50px #2f2f2f;
  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;
}

.footer p {
  text-align: center;
  color: #fff;
  padding: 0 10px;
  font-size: 12px;
}

.footer a {
  color: antiquewhite;
  text-decoration: none;
}

@-webkit-keyframes txt-header {
  0% {
    left: -40px;
  }
  50% {
    left: -20px;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

@keyframes txt-header {
  0% {
    left: -40px;
  }
  50% {
    left: -20px;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

@-webkit-keyframes button-portfolio {
  0% {
    top: -30px;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes button-portfolio {
  0% {
    top: -30px;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
/*# sourceMappingURL=main.css.map */