@charset "UTF-8";
#lp-wrapper {
  overflow: hidden;
  max-width: 1920px;
  margin: auto;
  background-color: black;
}
#lp-wrapper svg {
  width: 100%;
  max-width: 100%;
}
#lp-wrapper img {
  max-width: 100%;
  margin: 0;
  display: inline-block;
}
#lp-wrapper h2, #lp-wrapper h3, #lp-wrapper h4, #lp-wrapper p, #lp-wrapper span, #lp-wrapper a, #lp-wrapper li, #lp-wrapper svg, #lp-wrapper div {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  color: white;
}
#lp-wrapper h2, #lp-wrapper h3, #lp-wrapper h4 {
  margin: 15px 0;
  font-weight: bolder;
}
#lp-wrapper ul li {
  margin: 15px 0;
}
#lp-wrapper .text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
#lp-wrapper .text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
#lp-wrapper .text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
#lp-wrapper .text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
#lp-wrapper .text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
#lp-wrapper .text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
#lp-wrapper .text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
#lp-wrapper .text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
#lp-wrapper .text-5xl {
  font-size: 3rem;
  line-height: 1;
}
#lp-wrapper .text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
#lp-wrapper .text-7xl {
  font-size: 4.5rem;
  line-height: 1.1;
}
#lp-wrapper .text-8xl {
  font-size: 6rem;
  line-height: 1;
}
#lp-wrapper #lp-first {
  height: 850px;
  background-image: url(hero.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
}
#lp-wrapper #lp-first .lp-overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
#lp-wrapper #lp-first .lp-overlay .lp-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#lp-wrapper #lp-first .lp-overlay .lp-text h3 {
  color: #037cc2;
}
#lp-wrapper .lp-container {
  max-width: 1280px;
  margin: 50px auto;
  padding: 0 10px;
}
#lp-wrapper .lp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}
#lp-wrapper .zoomOut {
  overflow: hidden;
}
#lp-wrapper .zoomOut img {
  scale: 1.2;
}
@keyframes zoomOut {
  0% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
#lp-wrapper .zoomOut.animate img {
  animation: zoomOut 1s linear forwards;
}
#lp-wrapper #lp-second .lp-paragraph {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin: 10px 0;
}
#lp-wrapper #lp-second .lp-paragraph .lp-badge {
  max-width: 40px;
}
#lp-wrapper .expander {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.5s;
  position: relative;
}
#lp-wrapper .expander::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 20px;
  width: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 0, 0, 0) 100%);
}
#lp-wrapper .expander-content {
  min-height: 0;
  transition: visibility 0.5s;
  visibility: hidden;
  margin-bottom: 10px;
}
#lp-wrapper .expander.expanded {
  grid-template-rows: 1fr;
}
#lp-wrapper .expander.expanded .expander-content {
  visibility: visible;
}
#lp-wrapper .lp-button {
  cursor: pointer;
  border: 1px solid white;
  padding: 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px 0;
}
#lp-wrapper .lp-button::after {
  content: "още";
}
#lp-wrapper .lp-button.lp-active::after {
  content: "по-малко";
}
#lp-wrapper #lp-tenth {
  margin: 100px 0 0 0;
}
#lp-wrapper #lp-tenth .lp-text {
  text-align: center;
}
#lp-wrapper #lp-tenth .lp-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
}
#lp-wrapper #lp-tenth .lp-link {
  max-width: 200px;
  width: 100%;
}

@media only screen and (max-width: 860px) {
  #lp-wrapper .text-sm {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  #lp-wrapper .text-base {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  #lp-wrapper .text-lg {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #lp-wrapper .text-xl {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  #lp-wrapper .text-2xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  #lp-wrapper .text-3xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  #lp-wrapper .text-4xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  #lp-wrapper .text-5xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  #lp-wrapper .text-6xl {
    font-size: 3rem;
    line-height: 1;
  }
  #lp-wrapper .text-7xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  #lp-wrapper .text-8xl {
    font-size: 4.5rem;
    line-height: 1.1;
  }
  #lp-wrapper .lp-container {
    max-width: 640px;
  }
  #lp-wrapper .lp-grid {
    grid-template-columns: 1fr;
  }
  #lp-wrapper .lp-grid .lp-img {
    order: 1;
  }
  #lp-wrapper .lp-grid .lp-text {
    order: 2;
  }
}/*# sourceMappingURL=style.css.map */