.title-xl {
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  .title-xl {
    font-size: 2rem;
  }
}

.title-lg {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  .title-lg {
    font-size: 1.5rem;
  }
}

.title-md {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  .title-md {
    font-size: 1.25rem;
  }
}

.subtitle-lg {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 840px) {
  .subtitle-lg {
    font-size: 1.5rem;
  }
}

.subtitle-md {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 840px) {
  .subtitle-md {
    font-size: 1.25rem;
  }
}

.subtitle-sm {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 840px) {
  .subtitle-sm {
    font-size: 0.95rem;
  }
}

.paragraph {
  font-size: 1rem;
  line-height: 1.3;
}

.button, .button-md {
  align-self: start;
  cursor: pointer;
}
.button-md {
  padding: 0.75rem 1.5rem;
}

.button-green {
  background-color: #C4E56A;
  border: none;
}
.button-green:hover {
  filter: brightness(1.1);
  transition: filter 0.5s ease-in-out;
}

.section-header {
  width: 100%;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #151515;
}

.icon.with-bg {
  background-color: #C4E56A;
  padding: 0.5rem;
  border-radius: 1rem;
}
@media screen and (max-width: 840px) {
  .icon.with-bg {
    border-radius: 0.8rem;
  }
}
.icon.md img {
  width: 3rem;
  height: 3rem;
}
@media screen and (max-width: 840px) {
  .icon.md img {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.icon.sm img {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 840px) {
  .icon.sm img {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.card-fluid {
  width: 100%;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  cursor: pointer;
}
.card-fluid.vertical {
  flex-direction: column;
}
.card-fluid.horizontal {
  flex-direction: row;
}
.card-fluid p {
  color: #5D5749;
  text-align: center;
  font-size: 0.95rem;
}
.card-fluid.with-bg {
  padding: 1.5rem !important;
  background-color: #F4F1EB;
  border-radius: 1rem;
}
@media screen and (max-width: 840px) {
  .card-fluid:not(.with-bg, :last-child) {
    border-width: 0 0 1px 0;
    border-style: solid;
    padding: 0 0 1.5rem 0;
    border-color: #F4F1EB;
  }
}
.card-fluid.no-padding {
  padding: 0 !important;
}
.card-fluid.with-border {
  border-width: 1px;
  border-style: solid;
  padding: 1.5rem;
  border-color: #F4F1EB;
  border-radius: 1rem;
}

.image-slider .wrapper {
  width: 100%;
  overflow-x: scroll;
}
.image-slider .wrapper .images {
  display: flex;
  gap: 1.5rem;
}

.img-wrapper {
  height: 45rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-radius: 1rem;
}
@media screen and (max-width: 840px) {
  .img-wrapper {
    height: 35rem;
  }
}
.img-wrapper.narrow {
  flex: 0 0 25rem;
}
@media screen and (max-width: 840px) {
  .img-wrapper.narrow {
    flex: 0 0 20rem;
  }
}
.img-wrapper.wide {
  flex: 0 0 35rem;
}
@media screen and (max-width: 840px) {
  .img-wrapper.wide {
    flex: 0 0 30rem;
  }
}
.img-wrapper img, .img-wrapper video {
  height: 100%;
  width: auto;
}

.hidden {
  display: none;
}

.badge-sm {
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  background-color: #C4E56A;
  color: #151515;
  border-radius: 2rem;
}

.outline-badge-sm {
  font-size: 0.95rem;
  padding: 0.75rem 0.75rem;
  color: #151515;
  border-radius: 1rem;
  border-style: solid;
  border-color: #151515;
  border-width: 1px;
}

.badge-experience {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: #C4E56A;
  color: #151515;
  border-radius: 0.8rem;
  overflow: hidden;
  transform-origin: center;
  animation: badge-load 0.6s ease-out, badge-pulse 2.8s ease-in-out 0.6s infinite;
}

.badge-experience::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: badge-shine 5s ease-in-out 2s infinite;
}

@keyframes badge-load {
  0% {
    opacity: 0;
    transform: translateY(-1.5rem) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes badge-shine {
  0% {
    left: -150%;
  }
  45%, 100% {
    left: 160%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .badge-experience,
  .badge-experience::after {
    animation: none;
  }
}
.margin-top-md {
  margin-top: 6rem;
}

.margin-auto {
  margin: auto;
}

.padding-top-lg {
  padding-top: 6rem;
}

.padding-top-md {
  padding-top: 3rem;
}

.padding-bottom-xs {
  padding-bottom: 0.75rem;
}

.padding-vertical-lg {
  padding: 6rem 0;
}

.padding-vertical-md {
  padding: 3rem 0;
}
@media screen and (max-width: 840px) {
  .padding-vertical-md {
    padding: 1.5rem 0;
  }
}

.padding-vertical-sm {
  padding: 1.5rem 0;
}
@media screen and (max-width: 840px) {
  .padding-vertical-sm {
    padding: 0.75rem 0;
  }
}

.padding-horizontal-sm {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.wide-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
}

.justify-right {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
.justify-right.column {
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.justify-right .self-justify-right {
  align-self: flex-end;
}

.justify-center {
  display: flex;
  justify-content: center;
}

.width-md {
  width: 35%;
}

.width-lg {
  width: 50%;
}
@media screen and (max-width: 840px) {
  .width-lg {
    width: 100%;
  }
}

.width-xl {
  width: 75%;
}
@media screen and (max-width: 840px) {
  .width-xl {
    width: 100%;
  }
}

.full-width {
  width: 100%;
}

.full-screen {
  min-height: 100svh;
}

.height-xxxl {
  height: 50rem;
  width: auto;
}

.height-xxl {
  height: 25rem;
  width: auto;
}

.height-md {
  height: 3rem;
}
@media screen and (max-width: 840px) {
  .height-md {
    height: 1.5rem;
  }
}

.vertical-group, .vertical-group-xs-gap, .vertical-group-sm-gap, .vertical-group-md-gap {
  display: flex;
  flex-direction: column;
}
.vertical-group.space-between, .space-between.vertical-group-xs-gap, .space-between.vertical-group-sm-gap, .space-between.vertical-group-md-gap {
  justify-content: space-between;
}
.vertical-group.centered, .centered.vertical-group-xs-gap, .centered.vertical-group-sm-gap, .centered.vertical-group-md-gap {
  justify-content: center;
}

.vertical-group-md-gap {
  gap: 3rem;
}

.vertical-group-sm-gap {
  gap: 1.5rem;
}

.vertical-group-xs-gap {
  gap: 0.75rem;
}

.horizontal-group, .horizontal-group-xxs-gap, .horizontal-group-xs-gap, .horizontal-group-sm-gap {
  display: flex;
}
@media screen and (max-width: 840px) {
  .horizontal-group:not(.keep-row), .horizontal-group-xxs-gap:not(.keep-row), .horizontal-group-xs-gap:not(.keep-row), .horizontal-group-sm-gap:not(.keep-row) {
    flex-direction: column;
  }
}
.horizontal-group.bordered-sm, .bordered-sm.horizontal-group-xxs-gap, .bordered-sm.horizontal-group-xs-gap, .bordered-sm.horizontal-group-sm-gap {
  border: 1px solid #F4F1EB;
  border-radius: 1rem;
  padding: 1.5rem;
}
.horizontal-group.centered, .centered.horizontal-group-xxs-gap, .centered.horizontal-group-xs-gap, .centered.horizontal-group-sm-gap {
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .horizontal-group.centered:not(.keep-row), .centered.horizontal-group-xxs-gap:not(.keep-row), .centered.horizontal-group-xs-gap:not(.keep-row), .centered.horizontal-group-sm-gap:not(.keep-row) {
    align-items: center;
  }
}
.horizontal-group.align-middle, .align-middle.horizontal-group-xxs-gap, .align-middle.horizontal-group-xs-gap, .align-middle.horizontal-group-sm-gap {
  align-items: center;
}

.horizontal-group-sm-gap {
  gap: 1.5rem;
}

.horizontal-group-xs-gap {
  gap: 0.75rem;
}

.horizontal-group-xxs-gap {
  gap: 0.5rem;
}

.full-height-absolute-image-wrapper {
  position: absolute;
  height: 100svh;
  width: 100%;
  z-index: -1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.full-height-absolute-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.position-absolute {
  position: absolute;
  z-index: -1;
}
.position-absolute > img {
  width: 100%;
  height: auto;
}

.align-self-center {
  align-self: center;
}

.overflow-hidden {
  overflow: hidden;
}

.centered-text {
  text-align: center;
}

.filled-image {
  height: 100%;
  width: auto;
}

#faq .card-fluid.horizontal {
  cursor: pointer;
  flex-wrap: wrap;
}
#faq .card-fluid.horizontal .icon img {
  transition: transform 0.25s ease;
}
#faq .card-fluid.horizontal p {
  text-align: left;
  flex-basis: 100%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.3s ease;
  color: #151515;
}
#faq .card-fluid.horizontal.open .icon img {
  transform: rotate(180deg);
}
#faq .card-fluid.horizontal.open p {
  max-height: 10rem;
  opacity: 1;
}

.color-black {
  color: #151515;
}

.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 1s ease-out;
  will-change: opacity, transform;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
.fade-in .paragraph {
  opacity: 0;
  transition: opacity 1s ease-out;
  transition-delay: 0.12s;
  will-change: opacity, transform, filter;
}
.fade-in.is-visible .paragraph {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in .paragraph {
    opacity: 1;
    transform: none;
    filter: none;
    letter-spacing: normal;
    transition: none;
  }
}

/*# sourceMappingURL=main.css.map */
