@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibmplexsans-medium-webfont.woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibmplexsans-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibmplexmono-medium-webfont.woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibmplexmono-semibold-webfont.woff");
  font-weight: 600;
  font-style: normal;
}
/*******************************************************************************************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html {
  width: 100vw;
  height: 100%;
  overflow-x: hidden;
  background-color: #000;
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100vw;
  font-family: "IBM Plex Sans", sans-serif;
}

main {
  width: 100vw;
  height: auto;
}

section {
  width: 100vw;
}

ul {
  list-style-type: none;
}

button,
button:focus {
  background-color: transparent;
  border: 0;
  outline: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/********************* Styles Placeholder **********************************************************************************************/
#section-placeholder {
  width: 100vw;
  height: 100vh;
  background-color: #020202;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10% 0;
}
#section-placeholder h1 {
  height: 0;
}
#section-placeholder .content-placeholder {
  display: flex;
  flex-direction: column;
}
#section-placeholder .content-placeholder .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
#section-placeholder .content-placeholder .heading .logo-ws {
  max-width: 250px;
  height: auto;
  width: 100%;
}
#section-placeholder .content-placeholder .heading h3 {
  color: #5b5b5b;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
#section-placeholder .content-placeholder .container {
  border-radius: 10px;
  border: 1px solid #2b2a2a;
  background: #141414;
  display: flex;
  flex-direction: column;
  padding: 30px;
  min-width: 500px;
  min-height: 500px;
  gap: 30px;
  align-items: center;
}
#section-placeholder .content-placeholder .container .comingsoon {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  align-self: flex-end;
  gap: 10px;
  border-radius: 0px 10px;
  border: 1px dashed #909090;
  background: #0f0f0f;
  color: #909090;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: normal;
  text-transform: uppercase;
}
#section-placeholder .content-placeholder .container .logo-lianalite {
  max-width: 370px;
  height: auto;
}
#section-placeholder .content-placeholder .container h2 {
  color: #7b7b7b;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px; /* 161.111% */
  text-transform: uppercase;
}
#section-placeholder .content-placeholder .container .container-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
#section-placeholder .content-placeholder .container .btn-demo {
  display: flex;
  padding: 12px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: auto;
  border-radius: 4px;
  border: 2px solid #0f6;
  background: #141414;
  color: #0f6;
  font-family: "IBM Plex Mono", monospace;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 40px;
  text-align: center;
}
#section-placeholder .content-placeholder .container .btn-demo svg {
  width: 18px;
  height: auto;
}
#section-placeholder .content-placeholder .container .btn-demo:hover {
  background-color: #0f6;
  color: #020202;
}
#section-placeholder .content-placeholder .container .btn-demo:hover svg path {
  fill: #020202;
}
#section-placeholder .content-placeholder .container h4 {
  color: var(--Grey, #7b7b7b);
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 20px;
}

@media screen and (max-width: 500px) {
  #section-placeholder {
    padding: 60px 0;
  }
  #section-placeholder .content-placeholder .heading {
    padding: 0 10px;
  }
  #section-placeholder .content-placeholder .container {
    min-width: 100vw;
    width: auto;
    max-height: none;
    padding: 20px;
  }
  #section-placeholder .content-placeholder .container .btn-demo {
    margin-top: 0;
    background-color: #0f6;
    color: #020202;
    padding: 10px;
  }
  #section-placeholder .content-placeholder .container .btn-demo svg path {
    fill: #020202;
  }
}/*# sourceMappingURL=style.css.map */