.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.wrapper1400 {
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}

.white-block {
  position: absolute;
  z-index: 10;
}
.white-block-top {
  width: 100%;
  height: 80px;
  top: 0px;
  background-color: rgb(0, 0, 0);
  border-bottom: 5px solid rgb(64, 65, 69);
  z-index: 1;
}
.white-block-top_mask {
  width: 100%;
  height: 75px;
  top: 0px;
  background-color: rgb(0, 0, 0);
  z-index: 3;
}
.white-block-top_center {
  width: 320px;
  height: 320px;
  top: -180px;
  rotate: 0deg;
  background-color: rgb(0, 0, 0);
  border-radius: 40%;
  border: 5px solid rgb(64, 65, 69);
  z-index: 2;
}

.header {
  position: relative;
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
}
.header__logo {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100px;
  z-index: 41;
  opacity: 0.6;
}

.slider {
  position: relative;
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.slider__boxes {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 70vh;
  position: relative;
}
.slider__box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 0;
  transition: 0.8s;
  background-position: center;
  background-size: cover;
}
.slider__box-img1 {
  background-image: url("../img/1_WILLA.jpg");
}
.slider__box-img2 {
  background-image: url("../img/2_DOMEK.jpg");
}
.slider__box-img3 {
  background-image: url("../img/3_SZEREGOWKA.jpg");
}
.slider__box-img4 {
  background-image: url("../img/4_KUCHNIA.jpg");
}
.slider__box-img5 {
  background-image: url("../img/5_SYPIALNIA.jpg");
}
.slider__box-head {
  width: 90%;
  font-size: 5.2rem;
  text-align: center;
  color: #000;
  padding: 0.5em;
}
.slider__box-title {
  position: absolute;
  top: 40%;
  width: 0%;
  font-size: 6rem;
  text-align: left;
  color: #fff;
}
.slider__box-text {
  width: 90%;
  font-size: 2rem;
  padding: 1em;
  border-top-left-radius: 1.6em;
  transition: 0.3s;
}
.slider__box-text:hover {
  transform: translateY(20px);
}
.slider-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__studio {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 2rem;
  z-index: 10;
  color: #d2d2d2;
  transform: translateX(-50%);
}
.slider-title {
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  z-index: 22;
  text-align: left;
  z-index: 40;
  padding: 0.2em;
}
.slider__btn {
  position: absolute;
  bottom: 0;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  height: 100%;
  z-index: 3;
  background: none;
  opacity: 0;
}
.slider__btn-left {
  width: 50%;
  left: 0;
}
.slider__btn-right {
  width: 50%;
  right: 0;
}

@keyframes headerAnimation {
  from {
    background-size: cover;
  }
  to {
    background-size: cover;
  }
}
.new {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.8rem;
  color: #fff;
  text-align: center;
}

.scale_out {
  animation: headerAnimation 5s infinite;
}

.visible {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.nav {
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 100vh;
  min-width: 350px;
  max-width: 350px;
  left: 100vw;
  transition: 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 300;
}
.nav--active {
  left: calc(100vw - 350px);
}
.nav__items {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: 3em;
  margin-right: 1em;
  margin-top: 1em;
}
.nav__items-top {
  margin-top: 7em;
}
.nav__item {
  position: relative;
  font-size: 3.4rem;
  margin-bottom: 0.8em;
  text-transform: uppercase;
  color: #000000;
}
.nav__item::before {
  position: absolute;
  top: 0;
  left: -0.5em;
  width: 2px;
  height: 100%;
  transform: scaleY(0);
  background-color: rgb(0, 0, 0);
  transition: transform 0.3s;
  content: "";
}
.nav__item:hover::before {
  transform: scaleY(1);
}
.nav__item:hover {
  color: rgb(64, 65, 69);
}
.nav-contact {
  position: relative;
  font-size: 2rem;
  color: #000000;
}
.nav-contact-title {
  font-size: 2.6rem;
}
.nav-contact-title2 {
  margin-top: 1em;
  font-size: 2.6rem;
}
.nav-contact i {
  padding: 0.3em;
}
.nav__icons {
  width: 36px;
  margin: 0.2em;
}

.i__big {
  font-size: 3.2rem;
}

.burger-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 1000;
  overflow: hidden;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 8px;
}
.burger-btn:hover .burger-btn__bars::after,
.burger-btn:hover .burger-btn__bars::before,
.burger-btn:hover .burger-btn__bars {
  width: 100%;
  background-color: rgb(0, 0, 0);
}
.burger-btn__box {
  position: relative;
  width: 40px;
  height: 30px;
}
.burger-btn__bars, .burger-btn__bars::after, .burger-btn__bars::before {
  position: absolute;
  right: 0;
  height: 3px;
  content: "";
  background-color: #000000;
  transition: width 0.3s;
  width: 100%;
}
.burger-btn__bars::after {
  top: 13px;
}
.burger-btn__bars::before {
  top: 27px;
  transition-delay: 0.1s;
}

.black-bars-color,
.black-bars-color::after,
.black-bars-color::before {
  background-color: rgb(0, 0, 0);
}

.black-bars-x {
  height: 0px;
  width: 60%;
}

.black-bars-x::after {
  rotate: 225deg;
  top: 13px;
  transition: 1s;
}

.black-bars-x::before {
  rotate: 315deg;
  top: 13px;
  transition: 1s;
}

.aboutme {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0em 0em auto;
}
.aboutme__boxes {
  display: flex;
  flex-direction: column;
  flex: auto;
  justify-content: center;
  width: 100%;
}
.aboutme__box {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: start;
  width: 100%;
  font-size: 1.6rem;
  text-align: justify;
}
.aboutme__box-1 {
  width: 100%;
}
.aboutme__box-2 {
  width: 100%;
}
.aboutme__box-text {
  width: 100%;
  padding: 0.1em 1.2em;
  font-size: 1.8rem;
}
.aboutme__box-title {
  width: 100%;
  padding: 0.3em 1.2em;
  margin: 0.6em 0;
  font-size: 2rem;
  font-weight: 300;
}
.aboutme__box-img {
  width: 100%;
}
.aboutme__certificate {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  padding: 1.2em;
}
.aboutme__certificate-img {
  width: 100%;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
  margin: 1.2em auto;
}
.aboutme__certificate-img-1 {
  width: 100%;
}
.aboutme__certificate-img-2 {
  width: 100%;
}

.certificates {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  min-height: 100vh;
}
.certificates__boxes {
  margin: 10em 0em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.certificates__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 1.6rem;
  text-align: justify;
  padding: 0.5em 1em;
}
.certificates__box-img {
  width: 100%;
  max-width: 700px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}

.gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin: 1em;
  min-height: 100vh;
}
.gallery__boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.gallery__box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 1em;
}
.gallery__box:hover .gallery__box-title {
  opacity: 1;
}
.gallery__box-img {
  width: 100%;
}
.gallery__box-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: 0.5s;
}

.gallerysample {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  overflow: hidden;
  margin: 1em;
  min-height: 800vh;
}
.gallerysample__boxes {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 100%;
}
.gallerysample__box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin: 1em;
}
.gallerysample__box-img {
  width: 100%;
  border-radius: 1em;
}
.gallerysample__boxFull {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 200;
}
.gallerysample__boxMin {
  visibility: visible;
}
.gallerysample-title {
  margin-top: 5em;
  color: rgba(255, 255, 255, 0.6);
  font-size: 3rem;
}

.services {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 1.5em auto;
}
.services__boxes {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.services__box {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 100%;
  color: #000000;
  font-size: 1.6rem;
  text-align: center;
  margin: 0.5em auto;
  margin: 1em 0.5em;
}
.services__box-center {
  background-color: #f8f8f8;
}
.services__box-text {
  width: 100%;
  padding: 0.6em 1.2em;
  font-size: 2rem;
}
.services__box-title {
  width: 100%;
  padding: 0.6em 1.2em;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
.services__box-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.4em;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.services__box-icons-1 {
  background-image: linear-gradient(45deg, rgb(201, 34, 252), rgb(123, 2, 151));
}
.services__box-icons-2 {
  background-image: linear-gradient(45deg, rgb(0, 68, 254), rgb(1, 40, 196));
}
.services__box-icons-3 {
  background-image: linear-gradient(45deg, rgb(0, 201, 80), rgb(0, 142, 55));
}

@keyframes a1 {
  to {
    rotate: 360deg;
  }
}
.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000000;
  border: none;
}
.footer__boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.footer__boxes-bottom {
  justify-content: center;
}
.footer__box {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  padding: 1em;
}
.footer__box-text {
  text-align: center;
}
.footer__box-top {
  padding: 0.5pem;
  border-radius: 1em;
  color: #000000;
}
.footer__box-bottom {
  align-items: center;
}
.footer-year {
  text-align: center;
}

.hide {
  display: none;
}

.cookie__box {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1em;
  font-size: 1.6rem;
  text-align: center;
  background-color: #fff;
  color: #000000;
  opacity: 0;
  transform: translateY(100%);
  animation: show-cookies 0.5s 0.5s forwards;
  z-index: 11;
}
.cookie__box-btn {
  margin: 0.2em;
  padding: 0.5em 1em;
  border-radius: 3px;
  background-color: #000000;
  color: #fff;
  transition: background-color 0.3s;
  cursor: pointer;
  border: none;
}
.cookie__box-btn:hover {
  background-color: rgb(0, 0, 0);
  color: #fff;
}

@keyframes show-cookies {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.samplepage {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin: 1em;
  min-height: 100vh;
}
.samplepage__boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.samplepage__box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 1em;
}

.privacy_policy {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.privacy_policy__box {
  display: flex;
  justify-content: left;
  flex-direction: column;
  font-size: 2rem;
  width: 100%;
  text-align: left;
  padding: 1em 1em;
}
.privacy_policy__box a {
  color: rgb(64, 65, 69);
}
.privacy_policy__box-title {
  font-size: 2.2rem;
  font-weight: 700;
}
.privacy_policy__box ol {
  padding: 1em;
  font-size: 2rem;
}
.privacy_policy__box ol li {
  padding-left: 0.2em;
  color: rgb(64, 65, 69);
}
.privacy_policy__box ol li ol {
  font-size: 1.6rem;
  padding: 1em;
}
.privacy_policy__box ol li ol li {
  color: #000;
  padding: 0.2em;
}

.header_privacy_policy {
  height: 260px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Calibri Light";
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  background-color: #fff;
  color: #000000;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

hr {
  color: #fff;
}

div {
  font-family: "Calibri Light";
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
}

.section-heading {
  position: relative;
  margin-top: 0.3em;
  margin-bottom: 0.1em;
  font-size: 1.5rem;
  text-align: center;
}

.section-padding {
  padding: 0.3em 0.3em;
}

.section {
  position: relative;
}

.logo {
  height: 8em;
}

h2 {
  color: rgb(64, 65, 69);
  padding: 0.3em;
}

i {
  color: rgb(64, 65, 69);
}

p {
  margin: 0.1em;
}

.circle {
  position: absolute;
  height: 80px;
  width: 80px;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: zoom 0.3s;
  z-index: 500;
}

@keyframes zoom {
  to {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
@media (min-width: 576px) {
  .header-title {
    font-size: 2rem;
    padding: 0.2em;
  }
  .header__logo {
    position: absolute;
    top: 30px;
    left: 30px;
    transform: translateX(0);
    width: 100px;
  }
  .slider-title {
    font-size: 2.2rem;
    padding: 0.2em;
  }
  .slider__box-img1 {
    background-image: url("../img/1_WILLA.jpg");
  }
  .slider__box-img2 {
    background-image: url("../img/2_DOMEK.jpg");
  }
  .slider__box-img3 {
    background-image: url("../img/3_SZEREGOWKA.jpg");
  }
  .slider__box-img4 {
    background-image: url("../img/4_KUCHNIA.jpg");
  }
  .slider__box-img5 {
    background-image: url("../img/5_SYPIALNIA.jpg");
  }
  .services {
    margin: 10em 5em auto;
  }
  .services__box {
    text-align: justify;
  }
  .services__box-center {
    background-color: #fff;
  }
  .services__boxes {
    flex-direction: row;
  }
  .footer__boxes {
    flex-direction: row;
  }
  .slider_develop__box {
    height: 600px;
    border: 4px solid #fff;
  }
}
@media (min-width: 768px) {
  .header-title {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    padding: 0.5em;
  }
  .slider-title {
    width: 100%;
    font-size: 3.6rem;
    padding: 0.2em;
  }
  .gallery__boxes {
    flex-direction: column;
  }
  .gallerysample__boxes {
    flex-wrap: wrap;
  }
  .gallerysample__box {
    width: 100%;
  }
  .gallerysample-title {
    margin-top: 0em;
  }
}
@media (min-width: 992px) {
  .certificates__boxes {
    flex-direction: row;
    margin: 2em 0em;
  }
  .gallerysample__boxFull {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    z-index: 200;
  }
  .gallerysample__boxMin {
    visibility: hidden;
  }
  .gallerysample__imgFull {
    position: absolute;
    top: 0px;
    width: auto;
    height: 90vh;
    z-index: 190;
  }
  .gallerysample__imgMin {
    visibility: hidden;
  }
}
@media (min-width: 1150px) {
  .aboutme__boxes {
    flex-direction: row;
  }
  .aboutme__box-text {
    font-size: 2rem;
  }
  .aboutme__box-1 {
    width: 40%;
  }
  .aboutme__box-2 {
    width: 60%;
  }
}
@media (min-width: 1920px) {
  .slider__box-img1 {
    background-image: url("../img/g1_3840.jpg");
  }
}/*# sourceMappingURL=style.css.map */