/* src/colors.scss */
:root {
  --base: #ffffff;
  --light-bg: #f3f4f6;
  --primary-100: #ECF7FE;
  --primary-300: #9FC7DF;
  --primary-500: #4F8DB5;
  --primary-700: #234459;
  --primary-900: #173344;
  --secondary-100: #EEFCED;
  --secondary-300: #D2F5D0;
  --secondary-500: #5CC059;
  --secondary-700: #4C704B;
  --secondary-900: #344C33;
  --accent-100: #FFF8E5;
  --accent-500: #FFD458;
  --accent-700: #DA7E07;
  --accent-900: #774504;
  --subtle-100: #FBFCFD;
  --subtle-300: #E7EBEE;
  --subtle-400: #D3D9DF;
  --subtle-800: #495969;
  --subtle-900: #061A2D;
  --subtle-blue-100: #F8FAFC;
  --subtle-blue-200: #E9F0F7;
  --subtle-blue-300: #D4E0ED;
  --subtle-blue-400: #B0C6DE;
  --subtle-blue-500: #95ADC6;
  --subtle-blue-600: #7491AF;
  --subtle-blue-700: #526E89;
  --subtle-blue-800: #2E4D6B;
}

/* node_modules/@angular/cdk/overlay-prebuilt.css */
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  display: flex;
  max-width: 100%;
  max-height: 100%;
  z-index: 1000;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0;
  z-index: 1000;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (prefers-reduced-motion) {
  .cdk-overlay-backdrop {
    transition-duration: 1ms;
  }
}
.cdk-overlay-backdrop-showing {
  opacity: 1;
}
@media (forced-colors: active) {
  .cdk-overlay-backdrop-showing {
    opacity: .6;
  }
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, .32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing,
.cdk-high-contrast-active .cdk-overlay-transparent-backdrop {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
  z-index: 1000;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

/* src/styles.scss */
body {
  height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0;
  font-family: "Open Sans";
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
body.gradient {
  background:
    linear-gradient(
      180deg,
      #234459 -1.27%,
      #4f8db5 100%);
}
main {
  width: 100%;
  height: 100%;
}
ul,
h1 {
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}
a {
  text-decoration: none;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.divider {
  background-color: var(--primary-700);
  height: 0.25rem;
  margin: 2rem 0;
}
.button {
  display: flex;
  padding: 8px var(--16, 16px);
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--base);
  border: none;
  cursor: pointer;
}
.scroll-section {
  display: block;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  padding-top: 24px;
  padding-bottom: 24px;
}
.container {
  box-sizing: border-box;
  max-width: 1600px;
  min-height: calc(100vh - 12rem);
  margin: 0 auto;
  padding: 2rem 4rem;
}
.arrow-button {
  position: absolute;
  bottom: 0.25rem;
  color: var(--primary-700);
  min-width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  justify-self: center;
  font-size: 20px;
  font-weight: 600;
  font-family: "Open Sans";
  gap: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
}
.arrow-scroll {
  font-size: 2rem;
}
@media (width <= 1024px) {
  .button {
    height: 48px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media (width < 744px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

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