@charset "UTF-8";

/* src/styles.scss */
body {
  font-family: "Poppins", sans serif;
  text-rendering: geometricPrecision;
  color: #000;
  font-size: 16px;
  overflow-x: hidden;
}
body,
html {
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 700px) {
  body .page {
    margin: 20px;
  }
}
a,
a:active,
a:visited {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}
a:active {
  color: black;
}
.txt--center {
  text-align: center;
}
.txt--right {
  text-align: right;
}
.txt--underline {
  text-decoration: underline;
}
.txt--h2,
h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  text-align: center;
  display: block;
  margin-bottom: 16px;
  line-height: 1.3em;
}
.txt--h3,
h3 {
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin-bottom: 16px;
  line-height: 1.3em;
}
.txt--subline {
  font-size: 18px;
  line-height: 1.3em;
  text-align: center;
  color: #000;
}
p,
.txt--body {
  font-size: 18px;
  font-size: 16px;
  line-height: 180%;
}
.txt--mini {
  font-style: italic;
  font-size: 14px;
}
.txt--tiny {
  font-style: italic;
  font-size: 12px;
}
.p--s {
  padding: 5px;
}
.p--m {
  padding: 15px;
}
.p--l {
  padding: 30px;
}
.p--0 {
  padding: 0;
}
.m--s {
  margin: 5px;
}
.m--m {
  margin: 15px;
}
.m--l {
  margin: 30px;
}
.m--0 {
  margin: 0 !important;
}
.mb--s {
  margin-bottom: 5px;
}
.mb--m {
  margin-bottom: 15px;
}
.mb--l {
  margin-bottom: 30px;
}
.mb--xl {
  margin-bottom: 80px;
}
.txt--green {
  color: #7d83bc;
}
.txt--red {
  color: #000;
}
.txt--black {
  color: #000;
}
.bg--nude {
  background: #f2f4ff;
}
.bg--inherit {
  background: inherit;
}
.radius--s {
  border-radius: 20px;
}
.radius--m {
  border-radius: 20px;
}
.radius--l {
  border-radius: 40px;
}
.\1f47b  {
  opacity: 0;
  -webkit-user-select: none;
  user-select: none;
}
.page .section {
  max-width: 1050px;
  margin: 0px auto 200px auto;
}
.page .section.no-margin {
  margin: 30px auto;
}
.page .section.text-content {
  padding: 0 20px 0 20px;
  box-sizing: border-box;
}
@media only screen and (max-width: 700px) {
  .page .section {
    margin: 0px auto 150px auto;
  }
}
.split {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: stretch;
}
.split .split-1 {
  flex: 1;
}
.split .split-2 {
  flex: 2;
}
.button {
  padding: 30px 60px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  transition: transform 50ms ease-in-out;
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.2);
  min-width: 400px;
}
.button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  box-shadow:
    0 2px 4px 0 rgba(0, 0, 0, 0.01),
    0 4px 8px 0 rgba(0, 0, 0, 0.02),
    0 8px 16px 0 rgba(0, 0, 0, 0.03),
    0 16px 32px 0 rgba(0, 0, 0, 0.04),
    0 32px 64px 0 rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}
.button.purple {
  background: #000;
  color: #ffffff;
}
.button.small {
  padding: 15px 35px;
  border-radius: 20px;
  font-size: 18px;
  line-height: 22px;
  min-width: 0;
}
.button:hover {
  transform: scale(1.01);
}
.button:hover:after {
  opacity: 1;
}
.button:active {
  transform: scale(0.98);
  background: #000;
}
.button:active:after {
  opacity: 0;
}
@media only screen and (max-width: 700px) {
  .button {
    min-width: 100%;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
