@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
body {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}

.container-main {
  display: flex;
  flex-direction: column;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 0;
  position: relative;
  background-color: #151c26;
}

.gradient-overlay {
  position: absolute;
  background-image: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(89, 131, 252, 0) 100%);
  min-height: 100vh;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.header {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  z-index: 2;
}
.header .logo {
  max-width: 312px;
  width: 100%;
}

.content {
  z-index: 2;
  position: relative;
  color: #ffffff;
  margin-top: 72px;
}
.content h1 {
  font-size: 40px;
}
.content .signet {
  max-width: 440px;
  width: 100%;
  opacity: 0.45;
  mix-blend-mode: color-dodge;
}
.content .text-wrapper {
  max-width: 528px;
  width: 100%;
  margin-top: 21px;
  line-height: 26px;
}
.content .action-wrapper {
  margin-top: 40px;
  max-width: 350px;
  width: 100%;
}
.content .btn-main {
  background: #01a982 0% 0% no-repeat padding-box;
  border-radius: 3px;
  color: #ffffff;
  padding: 16px 32px;
  width: 100%;
  cursor: pointer;
  font-size: 21px;
  transition: all 0.3s ease-in-out;
}
.content .btn-main:hover {
  background: #03be93 0% 0% no-repeat padding-box;
  transform: scale(1.01);
}
.content .info-wrapper {
  line-height: 26px;
  margin-top: 120px;
}
.content .info-wrapper .company-title {
  margin-bottom: 10px;
  font: normal normal 600 24px/36px Open Sans;
}
.content .info-wrapper .sales-title {
  font: normal normal 600 20px/30px Open Sans;
  margin-bottom: 10px;
}
.content .info-wrapper .sales-link {
  color: #ffffff;
  text-decoration: none;
}
.content .info-wrapper .sales-link:hover {
  text-decoration: underline;
}

.footer {
  position: relative;
  background-color: #151c26;
  color: #e9e9e9;
  padding: 10px;
  z-index: 2;
  font-size: 18px;
}
.footer .link {
  color: #ffffff;
  text-decoration: none;
}
.footer .link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 992px) {
  .gradient-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(89, 131, 252, 0) 100%);
  }
  .content {
    margin-top: 24px;
  }
  .content .action-wrapper {
    max-width: 100%;
  }
  .content .info-wrapper {
    margin: 42px 0;
  }
  .footer {
    font-size: 16px;
  }
}/*# sourceMappingURL=main.css.map */