@font-face {
  font-family: "Euclid Circular A";
  src: url("../fonts/euclid-circular-a.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

h1 {
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -4.8px;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 65px;
  }
}
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 96px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -3.6px;
}
@media only screen and (min-width: 1024px) {
  h2 {
    font-size: 72px;
  }
}

h3 {
  font-size: 32px;
  color: #999999;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 40px;
  }
}
h3 b {
  color: #E3E3E3;
  font-weight: 400;
}

h4 {
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  h4 {
    font-size: 32px;
  }
}

h6 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.title-gradient {
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3019607843));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 768px) {
  .title-gradient .align-indent-4 {
    padding-left: 0;
  }
}
.title-gradient .align-indent-1 {
  padding-left: 0;
}

.text-gradient {
  display: inline-block;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3098039216), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

::selection {
  color: #76ee99;
  background: rgba(68, 25, 209, 0.19);
}

* {
  box-sizing: border-box;
}

.empty-section {
  height: 100vh;
}

body {
  font-family: Euclid Circular A, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121014;
  color: #fff;
}
body.overflow {
  overflow: hidden;
}

.title-block {
  position: relative;
  text-align: center;
  margin-bottom: 112px;
  padding-top: 80px;
}

.title-glow {
  position: absolute;
  pointer-events: none;
  width: 70%;
  top: auto;
  bottom: -120px;
  transform: translateX(-50%);
  left: 50%;
  overflow: visible;
}
@media only screen and (min-width: 768px) {
  .title-glow {
    bottom: -205px;
  }
}

.first-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}

.icon {
  position: absolute;
  width: 75px;
  margin: 72px auto 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.overflow .icon {
  opacity: 0;
  visibility: hidden;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: #E3E3E3;
  border: 1px solid #525252;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 3px;
  line-height: 11px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.5s ease all;
}
.btn:hover {
  border-color: #00948c;
}

.preloader {
  position: fixed;
  background-color: #121014;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  transition: all 0.4s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.preloader-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}
.preloader-wrapper h1 {
  margin-bottom: 20.5px;
}

.preload-line-words,
.preload-line-wrapper {
  display: inline-block;
}
@media only screen and (min-width: 1024px) {
  .preload-line-words,
  .preload-line-wrapper {
    width: 100%;
    height: 105px;
    margin-bottom: -22px;
    overflow: hidden;
  }
}

.preload-line {
  display: inline-block;
}

.packages {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 0 80px;
  z-index: 10;
}

.card {
  background-color: rgba(255, 255, 255, 0);
  background-image: linear-gradient(40deg, rgba(0, 0, 0, 0) 39%, rgba(255, 255, 255, 0.1215686275));
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1019607843);
}
.card__header {
  text-align: center;
}
.card h3 {
  font-size: 16px;
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  .card h3 {
    font-size: 20px;
  }
}

.price {
  font-size: 38px;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .price {
    font-size: 64px;
  }
}

.price_currency {
  font-size: 29px;
}

ul {
  padding-left: 1.2rem;
}

li {
  font-size: 19px;
  background-image: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3019607843));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.projects {
  position: relative;
  height: 100vh;
  background-color: #18161a;
  overflow: hidden;
  z-index: 2;
}
.projects__wrapper {
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  .projects__wrapper {
    flex-direction: row;
  }
}
.projects__image {
  position: relative;
  background: grey;
  background-image: url("../../assets/images/preview/handyone-prev-1.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: 1;
  height: 43vh;
}
@media only screen and (min-width: 768px) {
  .projects__image {
    width: 50%;
    height: auto;
  }
}
.projects__image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.projects__link {
  position: absolute;
  display: flex;
  align-items: center;
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.1019607843);
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  border-radius: 1.25rem;
  width: 24rem;
  height: 8rem;
  padding: 20px;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .projects__link {
    width: 30rem;
    height: 15rem;
    padding: 20px 20px 20px 50px;
  }
}
.projects__link a {
  background: #4419d1;
  padding: 20px 37px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.projects__link a:hover {
  background: #5224e9;
}
.projects__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #18161a;
  margin: auto;
  padding: 72px 24px;
  z-index: 5;
}
@media only screen and (min-width: 768px) {
  .projects__content {
    width: 50%;
    height: 100svh;
  }
}
@media only screen and (min-width: 1024px) {
  .projects__content {
    width: 63%;
    padding: 0 88px;
  }
}
@media only screen and (min-width: 1200px) {
  .projects__content {
    padding: 0 141px;
  }
}
.projects__content:before {
  content: "";
  position: absolute;
  width: 10%;
  height: 100%;
  background-color: white;
  filter: blur(100px);
  opacity: 0.4;
  top: 0;
  left: 0;
}
.projects__content h2 {
  margin-bottom: 16px;
}
.projects__content p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.3;
}

.section-footer {
  overflow: hidden;
  background-color: black;
  padding-top: 60px;
}
@media only screen and (min-width: 768px) {
  .section-footer {
    height: 100vh;
    padding-top: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .section-footer.show .footer-content__form-block {
    height: 501px;
    padding-top: 50px;
  }
}

.wrapper-footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1130px;
  padding: 0 16px;
  background: black;
  margin: auto;
  box-sizing: content-box;
}
@media only screen and (min-width: 768px) {
  .wrapper-footer {
    height: 100vh;
    padding: 0 80px;
  }
}

.footer-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .footer-content {
    height: calc(100vh - 80px);
  }
}
.footer-content__text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}
.footer-content__form-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 32px 0;
  overflow: hidden;
  transition: 0.5s ease all;
}
@media only screen and (min-width: 768px) {
  .footer-content__form-block {
    height: 0;
    width: 480px;
    padding: 0;
  }
}
.footer-content__form-block h6 {
  text-align: center;
}
.footer-content .btn {
  margin-top: 30px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  height: 80px;
  font-size: 13px;
  color: #5B5B5B;
}

.button-block {
  display: none;
}
@media only screen and (min-width: 768px) {
  .button-block {
    display: block;
  }
}

form {
  position: relative;
  width: 100%;
  transition: all 0.4s;
}
form label {
  display: none;
}

.form-row {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .form-row {
    flex-direction: row;
    gap: 8px;
  }
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

input, textarea, button {
  display: block;
  width: 100%;
  background-color: #222024;
  padding: 0.75rem;
  margin-top: 0.5rem;
  color: white;
  border: 1px solid black;
  border-radius: 8px;
  font-size: 1rem;
  outline: transparent;
  box-sizing: border-box;
}
input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, button:focus, button:focus-visible {
  border-color: #76ee99;
  color: #76ee99;
}

textarea {
  resize: none;
}

button {
  position: relative;
  display: flex;
  justify-content: center;
  background: #4419d1;
  color: white;
  border: none;
  margin-top: 1.5rem;
  cursor: pointer;
  font-weight: bold;
  line-height: 1.125;
}

button:hover {
  background: #5224e9;
}

.cta-wrapper {
  width: 100%;
}

.cta {
  display: block;
  background-color: white;
  background-image: linear-gradient(#fff, #aaa);
  padding: 16px 20px;
  color: black;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
}
.cta:hover {
  color: #fff;
  background-image: none;
  background-color: #4419d1;
}

.split_divider {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  width: 100%;
}

.line_divider {
  background-color: rgba(255, 255, 255, 0.1019607843);
  width: 100%;
  height: 1px;
}

.text-style-caption {
  color: #666;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex: none;
  font-size: 0.75rem;
}

.thankyou-mes {
  height: 0;
  opacity: 0;
  visibility: hidden;
  position: relative;
  transform: translateY(50px);
  transition: all 0.8s;
}

.submitted #form {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.submitted .thankyou-mes {
  height: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.loader {
  display: none;
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  color: #fff;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}

.loader:after {
  color: #76ee99;
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes spin {
  0%, 100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}
header {
  background-color: #2d2dff;
  color: white;
  padding: 2rem;
  text-align: center;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

/*# sourceMappingURL=main.css.map */
