@charset "UTF-8";
@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.5;
  }
  to {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes pulse2 {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes come-in {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  30% {
    transform: translateX(-50px) scale(0.4);
  }
  70% {
    transform: translateX(0px) scale(1.2);
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
}
@keyframes come-out {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
  30% {
    transform: translateX(0px) scale(1.2);
    opacity: 1;
  }
  70% {
    transform: translateX(-50px) scale(0.4);
  }
  100% {
    transform: translateY(100px);
    opacity: 0;
  }
}
@keyframes showImg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotate-right {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate-left {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes tilt-n-move-shaking {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(5px, 5px) rotate(5deg);
  }
  50% {
    transform: translate(0, 0) rotate(0eg);
  }
  75% {
    transform: translate(-5px, 5px) rotate(-5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Montserrat", sans-serif;
  background-color: #ebeff6;
  background: #000;
  font-size: 1.6rem;
}

.preloader {
  background: #0e111f url(../img/loading.gif) no-repeat center center;
  background-size: 60%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}

.gallery .images {
  padding: 0;
}

.hide {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookies-popup {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  max-width: 565px;
  width: 90%;
  height: 310px;
  border-radius: 15px;
  text-align: center;
  padding: 25px 25px 30px 25px;
}
.cookies-popup .content {
  margin-top: 5px;
}
.cookies-popup i {
  font-size: 4rem;
  text-align: center;
}
.cookies-popup h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
.cookies-popup p {
  margin: 5px 0 20px 0;
  font-size: 1.3rem;
}
.cookies-popup a {
  color: rgb(25, 177, 191);
  transition: color 0.3s;
}
.cookies-popup a:hover {
  color: rgb(61, 225, 239);
}
.cookies-popup .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookies-popup .buttons .item {
  margin: 0 10px;
}
.cookies-popup .buttons span {
  position: absolute;
  top: 10px;
  right: 30px;
  font-weight: bold;
  font-size: 2rem;
  cursor: pointer;
}
.cookies-popup .buttons button {
  padding: 10px 20px;
  background-color: rgb(25, 177, 191);
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.cookies-popup .buttons button:hover {
  background-color: black;
}

.contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
}
.contact-box .btn-contact {
  padding: 10px 20px;
  background-color: transparent;
  border: 4px solid rgb(25, 177, 191);
  outline: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: box-shadow 0.7s;
}
.contact-box .btn-contact .btn-special-animation {
  transition: background-color 0.3s;
  overflow: hidden;
  z-index: 0;
}
.contact-box .btn-contact .btn-special-animation::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  z-index: -1;
}
.contact-box .btn-contact .btn-special-animation:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.contact-box .btn-contact .contact-link {
  text-decoration: none;
  text-transform: uppercase;
  color: #ddd;
  transition: color 0.5s;
}
.contact-box .btn-contact:hover > a {
  color: rgb(25, 177, 191);
}
.contact-box .btn-contact:hover {
  box-shadow: 0 0 2px #0ba9ca, 0 0 10px #0ba9ca, 0 0 20px #0ba9ca;
}

h1 {
  text-transform: uppercase;
  text-align: center;
  margin-top: 1.5em;
  font-size: 2.5rem;
}

h2 {
  text-transform: uppercase;
  text-align: center;
  margin-top: 1.5em;
  font-size: 2.5rem;
}

.underline,
.underline-small {
  margin: 1.5em auto 3em;
  height: 2px;
  background-color: rgb(25, 177, 191);
}

.underline {
  width: 4em;
}

.underline-small {
  width: 2em;
}

.noscroll {
  height: 100%;
  overflow: hidden;
}

.shadow-bg {
  background-color: rgba(0, 0, 0, 0.9);
}

.bgbody {
  background-image: url("../img/stacked-waves-haikei3.svg");
  background-size: cover;
}

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

.button-30 {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: rgb(25, 177, 191);
  border-radius: 4px;
  border-width: 0;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgb(14, 94, 102) 0 -3px 0 inset;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 1.5rem;
}

.button-30:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgb(14, 94, 102) 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-30:active {
  box-shadow: rgb(14, 94, 102) 0 3px 7px inset;
  transform: translateY(2px);
}

.videogallery-button {
  margin: 10px;
  text-align: center;
}

.visible {
  visibility: visible;
}

.fab-click {
  box-shadow: 0 0 2px #0ba9ca, 0 0 10px #0ba9ca, 0 0 20px #0ba9ca;
  transform: translateY(5px);
}

.come-in1 {
  animation: come-in 0.4s forwards 0.2s;
}

.come-in2 {
  animation: come-in 0.4s forwards 0.4s;
}

.come-in3 {
  animation: come-in 0.4s forwards 0.6s;
}

.come-out1 {
  animation: come-out 0.4s backwards 0.2s;
}

.come-out2 {
  animation: come-out 0.4s backwards 0.4s;
}

.come-out3 {
  animation: come-out 0.4s backwards 0.6s;
}

.cross-rotate {
  transform: rotate(135deg);
  color: white;
}

.fab-height {
  height: 250px;
}

.fab-position {
  transform: translateY(-100px);
}

.floating-home-container {
  display: none;
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: -100px;
  right: 0;
  margin: 20px 5px;
  z-index: 10;
  transition: transform 1s;
}
.floating-home-container a {
  text-decoration: none;
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: color 0.5s;
}

.floating-home-container .floating-home-button {
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgb(25, 177, 191);
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  color: white;
  line-height: 45px;
  z-index: 100;
  cursor: pointer;
  transition: box-shadow 1s;
}

.floating-home-container .floating-home-button:hover {
  box-shadow: 0 0 2px #0ba9ca, 0 0 10px #0ba9ca, 0 0 20px #0ba9ca;
}

.floating-home-container .floating-home-button:hover > a {
  color: white;
}

.floating-container {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: -100px;
  right: 0;
  margin: 20px 5px;
  z-index: 10;
  transition: transform 1s;
}
.floating-container .element-container {
  visibility: hidden;
}
.floating-container a {
  text-decoration: none;
  color: white;
}

.floating-container .floating-button {
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgb(25, 177, 191);
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  color: white;
  line-height: 45px;
  z-index: 100;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  transform: rotate();
}
.floating-container .floating-button .cross {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  transition: transform 0.3s;
}

.floating-container .float-element {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 15px auto;
  color: white;
  font-weight: 500;
  text-align: center;
  line-height: 40px;
  z-index: 0;
  opacity: 0;
  transform: translateY(100px);
}

.floating-container .float-element .material-icons {
  vertical-align: middle;
  font-size: 16px;
}

.floating-container .float-element:nth-child(1) {
  background: #6b19be;
}

.floating-container .float-element:nth-child(2) {
  background: #4219be;
}

.floating-container .float-element:nth-child(3) {
  background: #196bbe;
}

.header-top {
  width: 100%;
  height: 90px;
  background-color: #000;
  display: none;
}

nav {
  text-transform: uppercase;
  transition: background-color 0.6s;
  z-index: 15;
  background-color: rgb(0, 0, 0);
}
nav .container-fluid {
  padding: 0;
}
nav .navbar-toggler {
  margin-right: 1em;
}
nav .logo {
  height: 3em;
  width: 3em;
  padding: 0.2em;
  margin-left: 1em;
}
nav .logo-bottom {
  position: absolute;
}
nav .logo-top {
  position: relative;
  transition: opacity 0.3s ease-in-out;
}
nav .fa-bars {
  font-size: 2rem;
  padding: 0.5em;
  color: white;
}
nav .social-media__box {
  display: none;
}
nav .social-media__box-mobile {
  text-align: center;
  margin: 4em 0;
}
nav .social-media__box-mobile i {
  font-size: 2.5rem;
  padding: 0 1.5em;
  color: white;
  transition: color 0.3s;
}
nav .social-media__box-mobile i:hover {
  color: rgb(25, 177, 191);
}
nav .nav-link {
  position: relative;
  text-align: center;
  padding: 1.6em 0;
  border-bottom: 1px solid rgba(185, 185, 185, 0.6);
  font-size: 1.5rem;
  margin: 0 0.9em;
  font-weight: bold;
  color: white;
}
nav .nav-link,
nav .nav-link::after,
nav .nav-link::before {
  transition: width 0.3s, height 0.3s, border-top 0.3s, border-left 0.3s, border-bottom 0.3s, border-right 0.3s, color 0.3s;
}
nav .nav-link:hover {
  color: rgb(25, 177, 191);
}

.navbar-nav {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
}
.navbar-nav .nav-link.active {
  color: rgb(25, 177, 191);
}

a.navbar-brand {
  font-size: 1.5rem;
  text-align: center;
  transition: font-size 0.5s;
}

a.navbar-brand:hover .logo-top {
  opacity: 0;
}

.navbar {
  padding: 0.3em 0 !important;
}

.navbar-collapse {
  border-top: 1px solid rgb(55, 55, 55);
}

button:focus:not(:focus-visible) {
  outline: none;
  border: 1px solid transparent;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

#navbarNavAltMarkup {
  transition: height 0.8s ease;
}

header {
  color: white;
  min-height: 40em;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #ebeff6;
}
header .images {
  background-color: #ebeff6;
  height: 100vh;
  overflow: hidden;
}
header .images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.1s;
}
header .images .img1 {
  z-index: 2;
}
header .images .img2 {
  z-index: 7;
}
header .images .img3 {
  z-index: 4;
}
header .mobile-text {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  opacity: 0;
  transition: opacity 1s, bottom 2s ease-in-out;
}
header .mobile-text .title-mobile {
  font-size: 2em;
  white-space: nowrap;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}
header .mobile-text .title-mobile .right {
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0, 0, 0, 0.5);
  background-image: url("../img/bg-header/kreator-ścian-drukowanie-na-ścianie-title-background.webp");
  background-size: cover;
  background-position: center;
}
header .mobile-text p {
  font-size: 1.6rem;
  padding-top: 0.5em;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.7);
}
header .mobile-text-animation {
  bottom: 80px;
  opacity: 1;
}

header::before {
  content: "";
  background: linear-gradient(0deg, #ebeff6, rgba(235, 239, 246, 0));
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
}

.about {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/layered-waves-haikei.svg");
}
.about .card {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2em;
}
.about .card p {
  margin-top: 1em;
}
.about .card img {
  width: 100%;
  overflow: hidden;
  min-width: 300px;
  max-height: 400px;
  border: 5px solid rgb(25, 177, 191);
  border-radius: 10px;
}
.about .card .img,
.about .card .img2 {
  margin-top: 2em 2em 0;
}
.about .card h2 {
  margin-top: 0;
}
.about .card .title {
  font-size: 3rem;
}
.about .card .title-big {
  font-size: 4rem;
  margin: 0;
  font-weight: bold;
}
.about .card .text,
.about .card .text2 {
  font-size: 2.3rem;
  margin-top: 1em;
}
.about .card .light {
  color: #ddd;
}
.about .card .img2 {
  order: -1;
}

.aboutus-hero {
  position: relative;
  color: #ddd;
  z-index: 0;
  background-image: linear-gradient(to bottom, #190533 0%, #26696a 100%);
}
.aboutus-hero .aboutus-hero-item {
  margin: 3em 0;
}
.aboutus-hero .aboutus-hero-item i {
  color: #ebeff6;
  font-size: 3rem;
  margin: 0.5em 0;
  text-shadow: 2px 2px 5px #000000;
}
.aboutus-hero .aboutus-hero-item .aboutus-hero-title {
  font-size: 2.3rem;
}
.aboutus-hero .aboutus-card-text {
  font-size: 1.7rem;
}
.aboutus-hero .info-circle {
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgb(25, 177, 191);
  border-radius: 50%;
  transition: box-shadow 0.3s;
}
.aboutus-hero .info-circle p {
  white-space: nowrap;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: #ddd;
  font-weight: bold;
}
.aboutus-hero .info-circle::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid rgb(25, 177, 191);
  border-radius: 50%;
  animation: pulse2 2s infinite;
}
.aboutus-hero .info-circle .read-more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(25, 177, 191);
  font-size: 4rem;
  text-shadow: 2px 2px 5px #000000;
  cursor: pointer;
}
.aboutus-hero .info-circle:hover {
  box-shadow: 0 0 2px #0ba9ca, 0 0 10px #0ba9ca, 0 0 20px #0ba9ca;
}

.portfolio {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/layered-waves-haikei2.svg);
  color: #ddd;
  /* FLIP CARD */
}
.portfolio .contact-link {
  color: #000;
}
.portfolio .row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.portfolio .row a {
  text-decoration: none;
  color: #ddd;
}
.portfolio .flip-card {
  width: 320px;
  height: 504px;
  perspective: 2000px;
  margin: 2em 2em;
}
.portfolio .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  transition: transform 550ms cubic-bezier(0.1, 0.22, 0.8, 1.13);
  transform-style: preserve-3d;
}
.portfolio .flip-card-front,
.portfolio .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  backface-visibility: hidden;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.4);
}
.portfolio .flip-card-front {
  background-color: #14042a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.portfolio .flip-card-front p {
  padding: 2em 2em;
}
.portfolio .flip-card-back {
  font-size: 1.25rem;
  text-align: center;
  display: grid;
  place-items: center;
  padding: 32px;
  background-color: #b1cfc8;
  transform: rotateY(180deg);
}
.portfolio .flip-card:hover .flip-card-inner {
  transform: rotateY(-180deg);
}
.portfolio .one {
  background-image: url("../img/kreator-ścian-drukowanie-na-ścianie-portret.webp");
  background-position: center;
  background-size: cover;
}
.portfolio .two {
  background-image: url("../img/kreator-ścian-drukowanie-na-ścianie-zamekkrolewski4.webp");
  background-position: center;
  background-size: cover;
}
.portfolio .three {
  background-image: url("../img/kreator-ścian-video-z-drukowania-na-ścianie.webp");
  background-position: center;
  background-size: cover;
}
.portfolio .btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2em;
  padding: 1em;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  color: #ddd;
  width: 50%;
  border: none;
  background-color: rgb(25, 177, 191);
  cursor: pointer;
}
.portfolio .btn::before {
  background-color: rgb(19, 118, 127);
}
.portfolio .btn-special-animation {
  transition: background-color 0.3s;
  overflow: hidden;
  z-index: 0;
}
.portfolio .btn-special-animation::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  z-index: -1;
}
.portfolio .btn-special-animation:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.inspirations {
  padding-bottom: 3em;
}
.inspirations .row {
  margin: 0;
}
.inspirations .test_box {
  padding: 0;
}
.inspirations .test_box .inner {
  background: #333;
  display: block;
  margin: 10px;
  overflow: hidden;
}
.inspirations .test_box .inner .test_click {
  align-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  height: 300px;
  mix-blend-mode: normal;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.9s ease;
}
.inspirations .test_box .inner .test_click:hover .flex_this {
  transform: rotate(5deg) scale(1.3);
}
.inspirations .test_box .inner .test_click:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.inspirations .flex_this {
  align-content: center;
  display: inherit;
  flex-wrap: inherit;
  height: auto;
  margin: 0;
  padding: 10px;
  transition: transform 0.9s ease;
  width: 100%;
}
.inspirations .test_title {
  display: block;
  font-weight: 700;
  margin: 0 0 20px;
  width: 100%;
}
.inspirations .test_link {
  border: 2px solid #fff;
  display: inline-block;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 auto;
  padding: 10px 30px;
  text-transform: uppercase;
}
.inspirations .box-01 .inner {
  background-image: url("../img/kreator-ścian-drukowanie-na-ścianie-dom.webp");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.inspirations .box-02 .inner {
  background-image: url("../img/kreator-ścian-drukowanie-na-ścianie-pokój-dziecięcy.webp");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.inspirations .box-03 .inner {
  background-image: url("../img/kreator-ścian-drukowanie-na-ścianie-szkoła.webp");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.inspirations .box-04 .inner {
  background-image: url("../img/kreator-ścian-drukowanie-na-ścianie-lokale.webp");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.inspirations .box-05 .inner {
  background-image: url("../img/kreator-ścian-drukowanie-na-ścianie-biuro.webp");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.inspirations .box-06 .inner {
  background-image: url("../img/kreator-ścian-drukowanie-na-ścianie-inne.webp");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.inspirations .gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1400px;
}
.inspirations .images {
  gap: 15px;
  max-width: 95%;
  margin-top: 40px;
  -moz-columns: 3 340px;
       columns: 3 340px;
}
.inspirations .images img {
  width: 100%;
}
.inspirations .images .card {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 14px;
  border-radius: 4px;
  background-color: #ddd;
  overflow: hidden;
}
.inspirations .images .card .details {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #ddd;
  transition: bottom 0.2s ease;
}
.inspirations .images .card .details .description {
  display: flex;
  align-items: center;
  justify-content: center;
}
.inspirations .images .card .details .price {
  margin-left: 1em;
}
.inspirations .images .card .details .imgName {
  margin: 0;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: bold;
  padding-right: 1em;
  color: #ddd;
}

.lightbox {
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: none;
}
.lightbox .wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  padding: 20px;
  background: #ddd;
  border-radius: 5px;
  transform: translate(-50%, -50%);
}
.lightbox .wrapper .header .closeBtn {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  padding: 0.8em;
  font-size: 2rem;
  transition: color 0.5s ease;
}
.lightbox .wrapper .header .closeBtn:hover {
  color: rgb(25, 177, 191);
}
.lightbox .wrapper .header .description {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1em;
}
.lightbox .wrapper .header .size span {
  margin-left: 0.5em;
}
.lightbox .wrapper .header .price {
  margin-left: 1em;
}
.lightbox .wrapper .header .price span {
  margin-left: 0.5em;
}
.lightbox .wrapper .header .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox .wrapper .header .buttons a {
  font-size: 3rem;
  text-decoration: none;
  color: black;
  padding: 0.5em;
  transition: color 0.5s ease;
}
.lightbox .wrapper .header .buttons a:hover {
  color: rgb(25, 177, 191);
}
.lightbox .wrapper .preview-img {
  display: flex;
  justify-content: center;
}
.lightbox .wrapper .preview-img .img {
  max-height: 65vh;
  max-width: 90vh;
}
.lightbox .wrapper .preview-img .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cooperation-hero {
  position: relative;
  color: #ddd;
}
.cooperation-hero .underline {
  margin-bottom: 1.5em;
}
.cooperation-hero p {
  text-align: center;
}
.cooperation-hero .last-line {
  margin-bottom: 3em;
}
.cooperation-hero .cooperation-shadow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -5;
}
.cooperation-hero .process-wrap {
  padding-bottom: 30px;
}
.cooperation-hero .process-wrap i {
  font-size: 2.5rem;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  display: inline-block;
  border: 2px solid rgba(25, 177, 191, 0.5);
  border-radius: 50%;
  color: #fff;
}
.cooperation-hero .process-wrap h3 {
  color: #fff;
  font-size: 1.7rem;
  margin: 30px 0 20px;
  text-transform: uppercase;
  font-weight: bold;
}
.cooperation-hero .row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.cooperation-hero .process-description:first-of-type {
  margin-top: 4em;
}
.cooperation-hero .price {
  font-weight: bold;
  color: white;
  font-size: 1.7rem;
}
.cooperation-hero .hero-img {
  background: url("../img/coop-bg-small-v2.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: -100;
}

.clients-hero {
  background-image: url("../img/wave-haikei.svg");
  background-size: cover;
}
.clients-hero .container .container h2 {
  color: white;
}
.clients-hero .container .card {
  transition: transform 0.3s;
  height: 660px;
}
.clients-hero .container .card img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.clients-hero .container .card i {
  padding: 10px;
}
.clients-hero .container .card:hover {
  transform: scale(0.96);
}
.clients-hero .container .card-title {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}
.clients-hero .container .card-text {
  text-align: center;
  font-size: 1.5rem;
}

.card-group2 {
  margin-top: 10px;
}

.card-body h5 {
  font-size: 1.7rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  padding: 2em;
}
.card-body a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}

.slick-slide {
  margin: 0 20px;
}

.slick-slide img {
  width: 100%;
  display: block;
}

.slick-dots {
  text-align: center;
  margin-top: 20px;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:before {
  content: "•";
  font-size: 22px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  opacity: 0.25;
  color: black;
  transition: color 0.5s, opacity 0.5s, transform 0.5s;
}

li.slick-active button:before {
  color: #ddd;
  opacity: 1;
  transform: scale(1.5);
}

.partners-hero {
  background-color: #ebeff6;
}

.contact {
  background-color: #ebeff6;
  padding-bottom: 4em;
  padding-top: 4em;
}
.contact h2 {
  margin: 0;
}
.contact h3 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}
.contact p {
  text-align: center;
  padding-top: 1em;
}
.contact .contact-data:first-of-type {
  margin-top: 2em;
}
.contact .contact-data {
  position: relative;
  padding-left: 70px;
  padding-top: 2em;
}
.contact .contact-data h4 {
  text-align: left;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
}
.contact .contact-data p {
  text-align: left;
}
.contact .contact-data a {
  display: block;
  text-align: left;
  text-decoration: none;
  color: #000000;
  transition: color 0.3s;
}
.contact .contact-data a:first-of-type {
  margin-top: 1em;
}
.contact .contact-data a:hover {
  color: rgb(25, 177, 191);
}
.contact .contact-icon {
  height: 40px;
  width: 40px;
  border: 2px solid rgb(25, 177, 191);
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 0;
}
.contact .contact-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact form {
  padding-left: 4em;
  width: 90%;
  max-width: 600px;
  margin-top: 4em;
}
.contact .input-group {
  margin-bottom: 30px;
  position: relative;
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 0.7em;
  outline: 0;
  border: 1px solid rgb(25, 177, 191);
  color: rgb(25, 177, 191);
  background: transparent;
  font-size: 1.5rem;
}
.contact label {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 1em;
  color: #000;
  font-size: 1.3rem;
  cursor: text;
  transition: top 0.3s, font-size 0.3s;
}
.contact button {
  padding: 0.7em 0;
  font-size: 1.4rem;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact input:focus ~ label,
.contact input:valid ~ label {
  top: -35px;
  font-size: 1.3rem;
}
.contact textarea:focus ~ label,
.contact textarea:valid ~ label {
  top: -35px;
  font-size: 1.3rem;
}
.contact .row {
  display: flex;
  justify-content: space-between;
}
.contact .row .input-group {
  flex-basis: 48%;
}
.contact input[type=file] {
  color: #000;
  font-size: 1.3rem;
}
.contact input[type=file]::file-selector-button {
  border: none;
  padding: 0.2em 0.4em;
  border-radius: 0.2em;
  background-color: rgb(25, 177, 191);
  transition: 0.3s;
  color: white;
  cursor: pointer;
}
.contact .add-more:disabled {
  background: #dddddd;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgb(119, 123, 125) 0 -3px 0 inset;
  cursor: not-allowed;
}

footer .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3em;
}
footer span.logo-element {
  color: rgb(25, 177, 191);
  font-size: 1.6rem;
  font-weight: bold;
}
footer p {
  text-align: center;
  color: white;
  font-size: 2rem;
  white-space: nowrap;
}
footer .socials {
  display: flex;
  justify-content: center;
}
footer .socials a {
  margin: 0 5px;
  position: relative;
  display: inline-block;
  width: 37px;
  height: 37px;
  background-color: #000;
  border-radius: 50%;
  text-align: center;
  color: white;
  transition: background-color 0.3s;
}
footer .socials a:hover {
  background-color: rgb(25, 177, 191);
}
footer .socials i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
footer .copyright,
footer .rodo {
  margin-top: 2em;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  color: white;
  font-size: 1rem;
}
footer .rodo {
  text-transform: none;
}
footer .rodo a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}
footer .rodo a:hover {
  color: rgb(25, 177, 191);
}

.faq {
  padding-top: 2em;
  padding-bottom: 5em;
  background-image: url(../img/stacked-waves-haikei3.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.faq .bg-decoration {
  margin: 1.5em auto 3em;
  width: 4em;
  height: 100%;
  position: relative;
}
.faq .bg-decoration i {
  position: absolute;
  opacity: 1;
  transition: color 1s, text-shadow 1s;
}
.faq .bg-decoration i:hover {
  color: rgb(25, 177, 191);
  text-shadow: 0 0 30px rgb(25, 177, 191);
}
.faq .bg-decoration .one {
  font-size: 50px;
  top: -40px;
  animation: rotate-right 55s infinite linear;
  left: -65px;
}
.faq .bg-decoration .two {
  font-size: 20px;
  top: 5px;
  animation: rotate-left 25s infinite linear;
  left: -30px;
}
.faq .bg-decoration .three {
  font-size: 15px;
  top: -25px;
  animation: rotate-right 10s infinite linear;
  left: -10px;
}
.faq .bg-decoration .four {
  font-size: 35px;
  top: -15px;
  animation: rotate-right 45s infinite linear;
  left: 10px;
}
.faq .bg-decoration .five {
  font-size: 10px;
  top: 20px;
  animation: rotate-left 10s infinite linear;
  left: 35px;
}
.faq .bg-decoration .six {
  font-size: 20px;
  top: -35px;
  animation: rotate-left 20s infinite linear;
  left: 35px;
}
.faq .bg-decoration .seven {
  font-size: 13px;
  top: -10px;
  animation: rotate-right 15s infinite linear;
  left: 60px;
}
.faq .bg-decoration .eight {
  font-size: 18px;
  top: 10px;
  animation: rotate-left 35s infinite linear;
  left: 65px;
}
.faq .bg-decoration .nine {
  font-size: 10px;
  top: 15px;
  animation: rotate-right 5s infinite linear;
  left: 105px;
}
.faq .bg-decoration .ten {
  font-size: 45px;
  top: -38px;
  animation: rotate-left 35s infinite linear;
  left: 85px;
}
.faq .bg-decoration .eleven {
  font-size: 35px;
  top: -10px;
  animation: rotate-left 35s infinite linear;
  left: -100px;
}
.faq .bg-decoration .twelve {
  font-size: 20px;
  top: -40px;
  animation: rotate-left 25s infinite linear;
  left: -100px;
}
.faq .bg-decoration .thirteen {
  font-size: 15px;
  top: -20px;
  animation: rotate-right 15s infinite linear;
  left: -120px;
}
.faq .bg-decoration .fourteen {
  font-size: 20px;
  top: -40px;
  animation: rotate-right 15s infinite linear;
  left: 130px;
}
.faq .bg-decoration .fiveteen {
  font-size: 25px;
  top: 0px;
  animation: rotate-right 35s infinite linear;
  left: 140px;
}
.faq .bg-decoration .sixteen {
  font-size: 13px;
  top: -13px;
  animation: rotate-left 15s infinite linear;
  left: 170px;
}
.faq h1 {
  color: white;
}
.faq .accordion {
  display: flex;
  justify-content: center;
  padding: 1.5em;
}
.faq .accordion-item {
  background-color: #283042;
  border: none;
  border-radius: 8px;
  margin: 0.5em;
  box-shadow: 0.5rem 2px 0.5rem rgba(0, 0, 0, 0.1);
}
.faq .accordion-item a {
  text-decoration: none;
  text-transform: uppercase;
  color: rgb(25, 177, 191);
  font-weight: bold;
  transition: color 0.3s;
}
.faq .accordion-item a:hover {
  color: rgb(99, 233, 246);
}
.faq .accordion-item .seoArt {
  text-decoration: none;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: lighter;
}
.faq .accordion-item .seoArt:hover {
  color: rgba(255, 255, 255, 0.6);
  cursor: text;
}
.faq .accordion-item span {
  font-weight: bold;
}
.faq .accordion-item .margins-img {
  display: flex;
  justify-content: center;
}
.faq .accordion-item .margins-img img {
  padding-top: 2em;
  width: 80%;
  height: 80%;
}
.faq .accordion-body {
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  background-color: #212838;
  border-radius: 8px;
  padding: 2em;
  margin-bottom: 1em;
  font-size: 1.6rem;
}
.faq .accordion-body::before {
  content: "";
  position: absolute;
  width: 0.2em;
  height: 90%;
  background-color: rgb(25, 177, 191);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq button {
  background-color: #283042;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  transition: none;
}
.faq .accordion-button:not(.collapsed) {
  background-color: #283042;
  box-shadow: none;
  color: #fff;
}
.faq .accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}
.faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq .faq-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.faq .faq-contact p {
  font-size: 1.6rem;
}
.faq .faq-contact a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 3rem;
  padding: 0.5em;
  transition: color 0.3s;
}
.faq .faq-contact a:hover {
  color: rgb(25, 177, 191);
}

.comercialGallery,
.nonComercialGallery,
.videoGallery,
.inspirations {
  padding-top: 5em;
  width: 100%;
  height: 100%;
}
.comercialGallery p,
.nonComercialGallery p,
.videoGallery p,
.inspirations p {
  text-align: center;
  font-size: 2rem;
  color: white;
  margin-top: 5em;
}
.comercialGallery h1,
.nonComercialGallery h1,
.videoGallery h1,
.inspirations h1 {
  color: white;
}

.videoGallery .container {
  max-width: 784px;
}
.videoGallery .yt-video {
  height: 441px;
}
.videoGallery h2 {
  font-size: 2rem;
  color: #ebeff6;
}

.privacypolitics {
  background-color: #ebeff6;
}
.privacypolitics h2 {
  padding-top: 3em;
}
.privacypolitics h3 {
  font-weight: bold;
  font-size: 2rem;
}
.privacypolitics .first-p {
  padding-top: 2em;
}
.privacypolitics .last-p {
  padding-bottom: 2em;
}
.privacypolitics p {
  text-indent: 30px;
}
.privacypolitics h4 {
  font-size: 1.6rem;
  font-weight: bold;
}

.article p {
  color: #ddd;
  text-align: center;
  font-size: 2rem;
}
.article h1 {
  padding-top: 2em;
  color: white;
  font-size: 3rem;
}
.article h2 {
  color: #ddd;
  font-size: 2.6rem;
  color: white;
}

@media (min-width: 576px) {
  .button-30 {
    font-size: 1.5rem;
  }
  .inspirations img {
    max-width: 500px;
  }
}
@media (min-width: 768px) {
  header .mobile-text .title-mobile {
    font-size: 4rem;
  }
  header .mobile-text p {
    font-size: 1.8rem;
  }
  .button-30 {
    font-size: 1.6rem;
  }
  h1 {
    font-size: 2.6rem;
  }
  h2 {
    font-size: 2.6rem;
  }
  .contact h3 {
    text-align: left;
  }
  .contact p {
    text-align: left;
  }
  .contact form {
    margin-top: 0;
    width: 100%;
    max-width: none;
  }
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
  .cooperation-hero .process-wrap i {
    font-size: 2rem;
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
  .cooperation-hero .process-wrap h3 {
    font-size: 1.3rem;
  }
  .faq .accordion-item .margins-img img {
    width: 60%;
    height: 60%;
  }
  .clients-hero .container .card-text {
    font-size: 1.4rem;
  }
  .inspirations img {
    max-width: 700px;
  }
}
@media (min-width: 992px) {
  .header-top {
    display: block;
  }
  header .mobile-text .title-mobile {
    font-size: 5rem;
  }
  header .mobile-text p {
    font-size: 2rem;
  }
  .button-30 {
    font-size: 1.7rem;
  }
  .floating-home-container {
    display: block;
  }
  .floating-container {
    display: none;
  }
  nav {
    background-color: rgba(0, 0, 0, 0.4);
  }
  nav .nav-link {
    font-size: 1.3rem;
    padding: 0.7em 0;
    border-bottom: none;
  }
  nav .logo {
    height: 5em;
    width: 5em;
    padding: 0.5em;
    margin-left: 2em;
  }
  nav .social-media__box {
    display: block;
    position: absolute;
    right: 1.3em;
    margin: 0 0.5em;
  }
  nav .social-media__box i {
    font-size: 1.7rem;
    padding: 0 0.7em;
    color: white;
    transition: color 0.3s;
  }
  nav .social-media__box i:hover {
    color: rgb(25, 177, 191);
  }
  .social-media__box-mobile {
    display: none;
  }
  .navbar-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    background-color: transparent;
  }
  .navbar-nav .link-animation::before,
  .navbar-nav .link-animation::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
  }
  .navbar-nav .link-animation::before {
    top: -2px;
    left: -8px;
    border-top: 0px solid #fff;
    border-left: 0px solid #fff;
  }
  .navbar-nav .link-animation::after {
    bottom: -2px;
    right: -8px;
    border-bottom: 0px solid #fff;
    border-right: 0px solid #fff;
  }
  .navbar-nav .link-animation:hover::before,
  .navbar-nav .link-animation:hover::after {
    width: 20px;
    height: 50%;
  }
  .navbar-nav .link-animation:hover::before {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  .navbar-nav .link-animation:hover::after {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .navbar-collapse {
    border-top: none;
  }
  .video-desktop {
    display: block;
  }
  .video-desktop a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .video-desktop .yt-video {
    max-width: 784px;
    height: 441px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .carousel {
    display: block;
  }
  .carousel .carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
  }
  .carousel .carousel-caption p {
    padding: 1em;
  }
  .carousel .carousel-caption .to-gallery {
    display: inline-block;
    padding: 1em;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    transition: color 0.3s;
  }
  .carousel .carousel-caption a:hover {
    color: rgb(25, 177, 191);
  }
  .carousel .carousel-indicators {
    padding-bottom: 1em;
  }
  .carousel .carousel-indicators [data-bs-target] {
    background-color: rgb(25, 177, 191);
  }
  .carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
  }
  .carousel .carousel-control-prev-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
  }
  .contact .contact-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .contact input[type=file]::file-selector-button:hover {
    background-color: #000;
  }
  .cooperation-hero .hero-img {
    background: url("../img/coop-bg-big.webp");
  }
  .cooperation-hero .process-wrap i {
    font-size: 3rem;
    width: 120px;
    height: 120px;
    line-height: 120px;
  }
  .cooperation-hero .process-wrap h3 {
    font-size: 1.5rem;
  }
  .clients-hero .container .card-text {
    font-size: 1.4rem;
  }
  .about .card {
    flex-direction: row;
    margin-top: 4em;
    margin-left: 2em;
    margin-right: 2em;
  }
  .about .card .left {
    text-align: left;
  }
  .about .card .right {
    text-align: right;
  }
  .about .card img {
    margin-top: 0;
  }
  .about .card .img2 {
    order: 0;
  }
  .about .card .text,
  .about .card .text2 {
    padding: 0;
  }
  .about .card .text {
    margin-left: 2em;
  }
  .about .card .text2 {
    margin-right: 2em;
  }
  .faq .accordion-item .margins-img img {
    width: 40%;
    height: 40%;
  }
  .inspirations .images .card .details {
    bottom: -100px;
  }
  .inspirations .images .card:hover .details {
    bottom: 0;
  }
}
@media (min-width: 1200px) {
  header h1 {
    font-size: 5.5rem;
  }
  header p {
    font-size: 2.5rem;
    padding-top: 0.5em;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 3rem;
  }
  .clients-hero .container .card-text {
    font-size: 1.5rem;
  }
}
@media (min-width: 2000px) {
  .cooperation-hero .hero-img {
    background-image: url(../img/coop-bg-ultrawide.webp);
  }
}/*# sourceMappingURL=style.css.map */