h1 span,
h2 span,
h3 span {
  color: #00B8A5;
}

h1 {
  font-weight: 800;
}

p {
  font-size: 1rem;
  font-weight: 400;
  color: #0A100D;
}

.shadow-text {
  font-weight: 200;
}

a {
  text-decoration: none;
  color: white;
}

.btn-custom {
  padding: 0.75rem 2.5rem;
  border: 0.1rem solid #80FFF2;
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
}
.btn-custom--navbar {
  color: #fff;
  border-color: #fff;
}
.btn-custom--navbar:hover {
  color: #fff;
  background-color: #00B8A5;
}
.btn-custom--form {
  color: #fff;
}
.btn-custom--form:hover {
  color: #fff;
  background-color: #00B8A5;
}
.btn-custom--themes {
  color: #fff;
  background-color: #0A100D;
}
.btn-custom--themes:hover {
  background-color: #80FFF2;
  color: #0A100D;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s, visibility 0.75s;
  background-color: #fff;
}
.loader--img {
  width: 150px;
  height: 150px;
  background: url("/assets/img/logo1-loading.png") no-repeat center;
  background-size: cover;
  animation: loading2 0.75s ease;
}
.loader::after {
  content: "";
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes loading2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.navbar-custom {
  background-color: #0A100D;
}
.navbar-custom .navbar-brand img {
  width: 6rem;
}
.navbar-custom .navbar-nav,
.navbar-custom .nav-link {
  color: #ffffff;
  font-weight: 500;
}
.navbar-custom .navbar-nav .active {
  font-weight: 900;
  color: #ffffff;
}
.navbar-custom a {
  transition: all ease-in 0.1s;
}
.navbar-custom a:hover {
  color: #00B8A5;
  transition: all ease-in 0.2s;
}

.hero {
  height: 700px;
  background: url("../assets/img/bricks.jpg") no-repeat center center, rgba(10, 16, 13, 0.5);
  background-size: cover;
  background-blend-mode: overlay;
  color: #ffffff;
}
.hero h1 {
  color: #00B8A5;
}
.hero span {
  font-weight: 800;
  color: #80FFF2;
}
.hero__text {
  height: 300px;
}
.hero #element {
  font-size: 1.75rem;
  color: white;
}

.about {
  padding: 5rem 0;
  margin-top: 5rem;
  display: flex;
  position: relative;
}

.about::before {
  content: "";
  background-image: url("/assets/img/wzor.jpg");
  background-size: 250px;
  background-repeat: repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.2;
  z-index: -1;
}

.steps__number {
  padding: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  background-color: #00B8A5;
  color: #ffffff;
  border-radius: 20rem;
  font-size: 2rem;
}

.wall {
  display: flex;
  position: relative;
}

.wall::before {
  content: "";
  background-image: url("/assets/img/wzor.jpg");
  background-size: 250px;
  background-repeat: repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.2;
  z-index: -1;
}

.printing__video {
  position: relative;
  background-color: black;
  height: 350px;
  width: 100%;
  overflow: hidden;
}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%);
}

.printing img {
  width: 45px;
  height: 60px;
}
.printing b {
  color: #00B8A5;
}

.gallery {
  display: none;
}
.gallery__item img {
  width: 300px;
  height: 200px;
}

.faq {
  display: flex;
  position: relative;
}
.faq__question {
  font-size: 1.25rem;
  color: #0A100D;
  font-weight: 600;
  cursor: pointer;
}
.faq__question img {
  max-width: 20px;
}
.faq__answer {
  display: none;
}
.faq .active {
  display: block;
  padding: 2rem;
}
.faq .price ul,
.faq .price li {
  list-style: none;
}
.faq .price ul img,
.faq .price li img {
  max-width: 20px;
}

.faq::before {
  content: "";
  background-image: url("/assets/img/wzor.jpg");
  background-size: 250px;
  background-repeat: repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.2;
  z-index: -1;
}

footer {
  background-color: #0A100D;
  color: #fff;
}
footer ul {
  list-style: none;
}

.who h2 {
  font-weight: 700;
}
.who hr {
  border: 0;
  height: 3px;
  background: #00B8A5;
  background-image: linear-gradient(to right, #80FFF2, #00B8A5, #80FFF2);
}
.who__title {
  position: relative;
  height: 250px;
  color: #fff;
}

@keyframes underlineColor {
  from {
    color: #0A100D;
  }
  to {
    color: #00B8A5;
  }
}
.themes .list-group span {
  color: #00B8A5;
  font-weight: 800;
}

footer {
  position: relative;
}

.invalid {
  border-color: red;
  border-width: 2px;
}

.thanks {
  color: green;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.25rem;
  position: absolute;
  top: 25%;
  left: 25%;
  animation-duration: 1s;
  animation-name: fadeIn;
}
.thanks--out {
  animation-name: fadeOut;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif !important;
}/*# sourceMappingURL=main.css.map */