/* src/styles.scss */
* {
  -webkit-touch-callout: none;
}
@font-face {
  font-family: "Satoshi";
  src: url(/font/Satoshi-Variable.ttf) format("truetype");
}
@font-face {
  font-family: "Gochi Hand";
  src: url(/font/GochiHand-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Manrope";
  src: url(/font/Manrope-VariableFont_wght.ttf) format("truetype");
}
@font-face {
  font-family: "Roboto";
  src: url(/font/Roboto-Variab.ttf) format("truetype");
}
html {
  box-sizing: border-box;
}
input {
  font-family: inherit;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  background-color: var(--white-color);
  padding: 0;
  margin: 0;
  text-align: left;
  font-family: "Satoshi", sans-serif;
  color: var(--grey-color);
  font-size: var(--font-m);
  letter-spacing: 0.5px;
  line-height: 1.4;
}
body.menu-open {
  overflow: hidden;
}
a {
  text-decoration: none;
}
p {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  color: var(--black-color);
}
h1.invert,
h2.invert,
h3.invert,
h4.invert,
h5.invert,
h6.invert {
  color: var(--white-color);
}
.main-btn {
  border: none;
  background-color: var(--orange-color);
  color: var(--white-color);
  font-family: inherit;
  border-radius: 28px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  min-width: max-content;
  cursor: pointer;
}
.main-btn:hover,
.main-btn:active {
  scale: 1.01;
}
.back-btn {
  border: none;
  background-color: transparent;
  color: var(--primary-color);
  font-family: inherit;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  min-width: max-content;
  cursor: pointer;
}
.back-btn:hover,
.back-btn:active {
  scale: 1.01;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h1 * {
  font-size: 24px;
  color: var(--primary-color);
  line-height: 1.1;
  font-weight: 700;
}
@media (min-width: 771px) {
  h1,
  h1 * {
    font-size: var(--font-xxxl);
  }
}
h2,
h2 * {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.1;
}
@media (min-width: 771px) {
  h2,
  h2 * {
    font-size: var(--font-xxl);
  }
}
h3,
h3 * {
  font-size: var(--font-xl);
}
h4,
h4 * {
  font-size: var(--font-l);
}
h5 {
  font-size: var(--font-m);
}
.accented {
  color: var(--orange-color);
}
small {
  font-size: var(--font-s);
}
:root {
  --white-color: #ffffff;
  --black-color: #000000;
  --blackish-color: #18181b;
  --grey-color: #71717a;
  --middle-grey: #545557;
  --orange-color: #f47800;
  --primary-color: #3a6cac;
  --medium-orange: #ffd9b4;
  --light-orange: #fff4e0;
  --yellow-bg: #fff6e3;
  --yellowish-bg: #fffaec;
  --light-blue: #e6f1ff;
  --light-blue2: #f7fbff;
  --box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.1);
  --navbar: clamp(50px, 10vh, 98px);
  --border-radius: 28px;
  --max-width: 1400px;
  --padding: clamp(44px, 2vw + 1.5rem, 60px) clamp(40px, 2vw + 1rem, 60px);
  --font-xxxl: clamp(2.75rem, 4vw + 1.25rem, 3.5rem);
  --font-xxl: clamp(2rem, 2vw + 1.5rem, 3rem);
  --font-xl: clamp(1.5rem, 2vw + 0.75rem, 2.5rem);
  --font-l: clamp(1.25rem, 1vw + 1rem, 1.75rem);
  --font-m: clamp(1rem, 1vw + 0.25rem, 1.5rem);
  --font-s: clamp(0.75rem, 1vw + 0.5rem, 1rem);
}
.handwriting {
  font-family: "Gochi Hand", serif;
  color: var(--orange-color);
  font-weight: 400;
  font-size: 24px;
  text-align: center;
}
.handwriting.primary {
  color: var(--primary-color);
}
.subtitle {
  line-height: 1.1;
  font-weight: 300;
  font-size: var(--font-m);
}
main {
  min-height: 100vh;
  opacity: 0;
  animation: fadeIn 0.4s ease-in forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
details {
  appearance: none;
  -webkit-appearance: none;
  display: block;
}
details summary {
  list-style: none;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  display: none;
}
html,
body {
  min-height: 100%;
}
body {
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--page-bg, #fff);
  pointer-events: none;
  opacity: 1;
  animation: page-reveal 3s ease forwards;
  will-change: opacity;
}
@keyframes page-reveal {
  to {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
    opacity: 0;
  }
}

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