/* src/styles.css */
@keyframes highlight {
  0% {
    width: 0;
  }
  80% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
@keyframes slideLeft {
  0% {
    left: 5vw;
    opacity: 0;
  }
  40% {
    left: 2vw;
    opacity: .5;
  }
  80% {
    left: 0vw;
    opacity: 1;
  }
}
@keyframes slideRight {
  0% {
    right: 5vw;
    opacity: 0;
  }
  40% {
    right: 2vw;
    opacity: .5;
  }
  80% {
    right: 0vw;
    opacity: 1;
  }
}
a {
  text-decoration: none;
  color: inherit;
}
b,
strong {
  font-weight: bold;
}
body {
  background-size: contain;
  margin: 0;
  font-size: 20px;
  font-family:
    "Roboto",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-weight: 350;
  color: black;
  text-decoration: none;
  letter-spacing: 1px;
}
button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.section {
  scroll-snap-align: start;
  scroll-margin-top: 10rem;
}
.body-container {
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}
.spacer {
  height: 4rem;
  width: 90vw;
  display: flex;
  flex-direction: row;
}
.link {
  background-color: lightyellow;
  color: dodgerblue;
  text-decoration: none;
}
.bumper-top {
  margin-top: 5rem;
}
.bumper-bottom-reverse {
  margin-bottom: -1.2rem;
}
.bumper-bottom {
  margin-bottom: 1rem;
}
.bumper-left {
  margin-left: 2rem;
}
.bumper-content {
  width: 98%;
}
.content-grid {
  padding: 1.5rem 0 1.5rem 0;
  display: flex;
  overflow: auto;
  margin: 1rem;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .content-grid {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
}
.carousel-button {
  position: absolute;
  top: calc(70% - 1.8rem);
  border-radius: 3.2rem;
  background: #fff;
  display: flex;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  box-shadow:
    0 4px 5px rgba(0, 0, 0, .14),
    0 1px 10px rgba(0, 0, 0, .12),
    0 2px 4px -1px rgba(0, 0, 0, .2);
  opacity: 1;
  transition: opacity .3s linear;
}
.carousel-button .arrow {
  width: 100%;
  height: 100%;
  stroke: black;
  fill: black;
  overflow: visible;
}
@media screen and (max-width: 850px) {
  .carousel-button {
    width: 2rem;
    height: 2rem;
    top: calc(90% - 1.8rem);
  }
}
.carousel-button:hover {
  background: #EC7800;
}
.hide-button {
  opacity: 0;
}
.next {
  right: 2rem;
  transform: rotate(180deg);
  z-index: 1000;
}
@media screen and (max-width: 850px) {
  .next {
    right: 1.5rem;
  }
}
.previous {
  margin-left: 2rem;
  z-index: 1000;
}
@media screen and (max-width: 850px) {
  .previous {
    left: 1.5rem;
  }
}
.carousel::scroll-button(*) {
  background-color: #fff;
  cursor: pointer;
}
.carousel::scroll-button(left) {
}
.carousel {
  position: relative;
  display: flex;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  grid-auto-flow: column;
  scrollbar-width: none;
  gap: 1.5rem;
  height: 100%;
}
@media screen and (max-width: 850px) {
  .carousel {
    gap: .8rem;
    margin-top: .8rem;
  }
}
.carousel::-webkit-scrollbar {
  display: none;
}
.slide {
  display: flex;
  align-items: center;
  scroll-snap-align: center;
}
img.slide {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.carousel .slide:first-child {
  margin-left: 1.5rem;
  scroll-margin-left: 1.5rem;
}
@media screen and (max-width: 850px) {
  .carousel .slide:first-child {
    margin-left: .8rem;
    scroll-margin-left: .8rem;
  }
}
.carousel .slide:last-child {
  margin-right: 1.5rem;
  scroll-margin-right: 1.5rem;
}
@media screen and (max-width: 850px) {
  .carousel .slide:last-child {
    margin-right: .8rem;
    scroll-margin-right: .8rem;
  }
}
.offwhite-bg {
  background-color: #F9F7F5;
}
.orange-bg {
  background-color: #EC7800;
}
.black-bg {
  background-color: #272727;
}
.orange-text {
  color: #EC7800;
}
.black-text {
  color: #272727;
}
.card-container {
  width: 30%;
  font-size: 1.1rem;
  line-height: 2rem;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .card-container {
    width: 20rem;
  }
}
.card {
  cursor: pointer;
  position: relative;
  width: 100%;
  background-color: white;
  background-size: cover;
  border-radius: .5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.text-container {
  z-index: 2;
  position: absolute;
  height: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.text-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0));
  z-index: 1;
}
.text {
  font-size: 1.3rem;
  color: white;
}
.text p {
  line-height: 1.7rem;
}
.text .title {
  font-size: 2rem;
  font-weight: bold;
}
.text .title-2 {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 850px) {
  .text .title-2 {
    font-size: 1.5rem;
  }
}
.text .title-3 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: -.1rem;
}
@media screen and (max-width: 768px) {
  .text .title-3 {
    font-size: 2rem;
  }
}
.text .description {
  margin: 1rem 0rem 1rem 0rem;
}
.bottom {
  position: absolute;
  bottom: 0;
  margin: 0 2rem 2rem 2rem;
  z-index: 2;
}
.small {
  font-size: 1.5rem;
  line-height: 3rem;
  display: flex;
  align-items: center;
  position: relative;
}
.layered {
  position: relative;
}
.layered img {
  width: 100%;
  height: 120%;
  left: 0;
  top: 0;
  position: absolute;
}
.component-container {
  width: 100%;
}
.container-content {
  display: flex;
  flex-direction: column;
  color: black;
  margin-left: auto;
  margin-right: auto;
}
.notes-banner {
  width: 100vw;
  padding-top: 41%;
  overflow: hidden;
  position: relative;
}
.notes-banner img {
  width: 100%;
  position: absolute;
  top: 0;
}
.notes-title {
  font-size: 5rem;
  font-weight: bold;
  color: #ff6e00;
  text-align: center;
  letter-spacing: -.5rem;
  vertical-align: center;
}
@media screen and (max-width: 768px) {
  .notes-title {
    font-size: 2rem;
    letter-spacing: -.2rem;
  }
}
.notes-date {
  margin: 0 auto;
  margin-top: 10px;
  color: #616161;
}
.notes-context {
  margin: 0 auto;
  margin-top: 20px;
  width: 50vw;
  font-size: 1.75vw;
  font-style: italic;
  border-top: 4px solid pink;
  border-bottom: 4px solid pink;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .notes-context {
    font-size: 6vw;
    text-align: center;
  }
}
.notes-body {
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  width: 90vw;
  font-size: 1.1rem;
  line-height: 2rem;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .notes-body {
    font-size: 1rem;
    text-align: left;
  }
}
.paragraph-container {
  box-sizing: border-box;
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
  background-color: #f9f8f5;
  padding: 2rem;
  border-radius: .375rem;
  line-height: 1.85rem;
}
@media screen and (max-width: 768px) {
  .paragraph-container {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 8rem;
    padding: 1.5rem;
    line-height: 1.65rem;
  }
}
.notes_img {
  border-radius: .375rem;
  object-fit: cover;
  width: 25vw;
  height: 25vw;
  position: relative;
  display: inline-flex;
}
@media screen and (max-width: 768px) {
  .notes_img {
    flex-direction: column;
    width: 100%;
    height: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.notes_img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
   {
    flex-direction: column;
    width: 50%;
    height: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
}
.standard {
  margin-top: 1rem;
  display: inline-block;
}
.context {
  margin-top: 1rem;
  display: inline-block;
  font-size: 1rem;
}
.heavy {
  font-weight: bold;
}
.highlight {
  border-radius: 25px;
  position: relative;
  display: inline-flex;
  z-index: 0;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 2rem;
}
@media screen and (max-width: 768px) {
  .highlight {
    text-align: left;
  }
}
.end {
}
.end::before {
  animation-range: 50% 100%;
}
.animate_right {
  animation: slideLeft;
  animation-timeline: view();
  animation-range: 0% 50%;
  visibility: visible;
}
.animate_left {
  animation: slideRight;
  animation-timeline: view();
  animation-range: 0% 50%;
  visibility: visible;
}
.right {
  order: 2;
  float: right;
}
@media screen and (max-width: 768px) {
  .right {
    padding: 0;
    order: 1;
  }
}
.left {
  order: 1;
  float: left;
}
@media screen and (max-width: 768px) {
  .left {
    padding: 0;
  }
}
.button {
  margin-left: 7vh;
  background: #EC7800;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 25px;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: fit-content;
}
@media screen and (max-width: 480px) {
  .button {
    left: 0;
    top: 0;
    margin-top: 0;
    font-size: .8rem;
  }
}
.button:hover {
  background-color: #F5BA7D;
  color: black;
}
.badge {
  border: 1px solid black;
  border-radius: 1rem;
  padding: .2rem 1rem .2rem 1rem;
  width: fit-content;
  font-size: .8rem;
  margin-bottom: 1rem;
  background-color: white;
}

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