html {
  background-color: var(--page-bg-color, #FFFFFF);
  color: var(--page-fg-color, #303030);
}

body {
  max-width: 100vw;
  overflow-x: hidden;
}

.page-container {
  --bg-color: var(--page-bg-color, #FFFFFF);
  --fg-color: var(--page-fg-color, #303030);
  --primary: var(--page-primary, #119c8a);
  --secondary: var(--page-secondary, #11499c);
  --light: var(--page-bg-color, #11499c);
  --dark: var(--page-fg-color, #11499c);
  --max-width: 1024px;
  --page-padding-x: 1.5rem;
  --page-padding-y: 1.5rem;
  --header-height: 4rem;
  background-color: var(--bg-color);
  color: var(--fg-color);
  min-height: 100vh;
}
@media screen and (min-width: 1024px) {
  .page-container {
    --page-padding-x: 4rem;
    --page-padding-y: 3rem;
    --header-height: 5rem;
  }
}

.text-page-fg {
  color: var(--fg-color);
}

.tracking-tighter {
  letter-spacing: -0.04em;
}

.tracking-tight {
  letter-spacing: -0.02em;
}

.bg-gradient-transparent-to-black {
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
  background-size: cover;
}

.bg-gradient-primary-to-black {
  background: linear-gradient(to bottom, var(--page-primary), rgb(0, 0, 0));
  background-size: cover;
  opacity: 0.5;
}

.bg-gradient-background-to-black {
  background: linear-gradient(to bottom, var(--page-bg-color), rgb(0, 0, 0));
  background-size: cover;
  opacity: 0.5;
}

.bg-gradient-black-to-black {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgb(0, 0, 0));
  background-size: cover;
  opacity: 0.5;
}

.bg-gradient-black-to-bottom {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgb(0, 0, 0));
  background-size: cover;
  opacity: 0.5;
}

.bg-gradient-primary-to-background {
  background: linear-gradient(to bottom, var(--page-primary), var(--page-bg-color));
  background-size: cover;
  opacity: 0.25;
}

.bg-gradient-background-to-primary {
  background: linear-gradient(to bottom, var(--page-bg-color), var(--page-primary));
  background-size: cover;
  opacity: 0.25;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.order-13 {
  order: 13;
}

.order-14 {
  order: 14;
}

.order-15 {
  order: 15;
}

.order-16 {
  order: 16;
}

.order-17 {
  order: 17;
}

.order-18 {
  order: 18;
}

.order-19 {
  order: 19;
}

.order-20 {
  order: 20;
}

.order-21 {
  order: 21;
}

.order-22 {
  order: 22;
}

.order-23 {
  order: 23;
}

.order-24 {
  order: 24;
}

.order-25 {
  order: 25;
}

.order-26 {
  order: 26;
}

.order-27 {
  order: 27;
}

.order-28 {
  order: 28;
}

.order-29 {
  order: 29;
}

.order-30 {
  order: 30;
}

.order-31 {
  order: 31;
}

.order-32 {
  order: 32;
}

.order-33 {
  order: 33;
}

.order-34 {
  order: 34;
}

.order-35 {
  order: 35;
}

.order-36 {
  order: 36;
}

.order-37 {
  order: 37;
}

.order-38 {
  order: 38;
}

.order-39 {
  order: 39;
}

.order-40 {
  order: 40;
}

.order-41 {
  order: 41;
}

.order-42 {
  order: 42;
}

.order-43 {
  order: 43;
}

.order-44 {
  order: 44;
}

.order-45 {
  order: 45;
}

.order-46 {
  order: 46;
}

.order-47 {
  order: 47;
}

.order-48 {
  order: 48;
}

.order-49 {
  order: 49;
}

.order-50 {
  order: 50;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.relative,
.pos-relative {
  position: relative;
}

.absolute,
.pos-absolute {
  position: absolute;
}

.btn-scroll-a {
  position: relative;
  color: currentColor;
  text-decoration: none;
  --btn-scroll-width: 2px;
  --btn-scroll-height: 10px;
  bottom: 40px;
}
@media screen and (min-width: 992px) {
  .btn-scroll-a {
    bottom: 0;
  }
}
.btn-scroll-a .text {
  transition: 0.3s;
}
.btn-scroll-a::before, .btn-scroll-a::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  border: var(--btn-scroll-width) solid currentColor;
  border-top: none;
  border-right: none;
  width: var(--btn-scroll-height);
  height: var(--btn-scroll-height);
  bottom: -1rem;
  transition: 0.3s;
}
.btn-scroll-a::before {
  opacity: 0.25;
}
.btn-scroll-a::after {
  opacity: 1;
  transform: translateY(0.625rem) translateX(-50%) rotate(-45deg);
}
.btn-scroll-a:hover {
  color: currentColor;
}
.btn-scroll-a:hover .text {
  opacity: 0.25;
}
.btn-scroll-a:hover::before {
  transform: translateY(0.25rem) translateX(-50%) rotate(-45deg);
}
.btn-scroll-a:hover::after {
  transform: translateY(0.25rem) translateX(-50%) rotate(-45deg);
}

.btn-solid-a {
  --b-fg-color: currentColor;
  --b-bg-color: currentColor;
  border: 2px solid var(--b-fg-color);
  color: var(--b-fg-color);
  background-color: transparent;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 0;
}
.btn-solid-a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--b-fg-color);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: 0.2s;
  transform: scale(0.8);
}
.btn-solid-a .icon {
  transition: 0.2s;
}
.btn-solid-a .icon > * {
  width: 1.25em;
}
.btn-solid-a .icon ~ .text {
  margin-left: 0.5em;
}
.btn-solid-a .text ~ .icon {
  margin-left: 0.5em;
}
.btn-solid-a.solid {
  color: var(--light);
  background-color: var(--dark);
  border-color: var(--dark);
}
.btn-solid-a.size-small {
  padding: 0.25rem 0.75rem;
}
.btn-solid-a.size-large, .btn-solid-a.btn-lg {
  padding: 0.75rem 1.25rem;
  font-size: 1.125rem;
}
.btn-solid-a.btn-light {
  --b-fg-color: var(--light);
}
.btn-solid-a.btn-light.solid {
  color: var(--dark);
  background-color: var(--light);
  border-color: var(--light);
}
.btn-solid-a.btn-dark {
  --b-fg-color: var(--light);
}
.btn-solid-a.btn-dark.solid {
  color: var(--light);
  background-color: var(--dark);
  border-color: var(--dark);
}
.btn-solid-a:hover::before {
  opacity: 0.2;
  transform: none;
}
.btn-solid-a:hover .icon {
  color: var(--primary);
}

.btn-inline-a {
  --btn-line-a-fg: currentColor;
  --btn-line-a-width: 2px;
  color: var(--btn-line-a-fg);
  border: none;
  outline: none;
  border-radius: 0px;
  background: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: 0.3s;
}
.btn-inline-a .icon {
  width: 2rem;
  height: 2rem;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary);
  border-radius: 2rem;
  transition: 0.3s;
}
.btn-inline-a .icon-element {
  width: 1rem;
  height: 1rem;
}
.btn-inline-a .text ~ .icon {
  margin-left: 0.5em;
}
.btn-inline-a .icon ~ .text {
  margin-left: 0.5em;
}
.btn-inline-a.btn-lg {
  font-size: 1.125rem;
  min-height: auto;
  padding: 0;
  padding-bottom: 0.25em;
}
.btn-inline-a.bdw-thin {
  --btn-line-a-width: 1px;
}
.btn-inline-a.bdw-medium {
  --btn-line-a-width: 2px;
}
.btn-inline-a.bdw-thick {
  --btn-line-a-width: 4px;
}
.btn-inline-a.active, .btn-inline-a:active, .btn-inline-a:focus, .btn-inline-a:hover {
  color: var(--btn-line-a-fg);
  background: none;
  opacity: 0.7;
  text-decoration: none;
}
.btn-inline-a.active .icon, .btn-inline-a:active .icon, .btn-inline-a:focus .icon, .btn-inline-a:hover .icon {
  transform: rotate(45deg);
}
.btn-inline-a.btn-primary {
  --btn-line-a-fg: var(--primary);
}
.btn-inline-a.btn-secondary {
  --btn-line-a-fg: var(--secondary);
}
.btn-inline-a.btn-light {
  --btn-line-a-fg: var(--light);
}
.btn-inline-a.btn-dark {
  --btn-line-a-fg: var(--dark);
}

.btn-inline-b {
  text-decoration: none;
  color: currentColor;
  position: relative;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
  display: inline-block;
}
.btn-inline-b:hover {
  color: currentColor;
  opacity: 0.75;
}
.btn-inline-b::before, .btn-inline-b::after {
  position: absolute;
  content: "";
  top: auto;
  left: 0;
  height: 0px;
  bottom: -2px;
  width: 100%;
  border-bottom: 2px solid currentColor;
}
.btn-inline-b::before {
  margin-bottom: 0.2em;
  opacity: 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-duration: 0.9s;
}
.btn-inline-b::after {
  margin-bottom: 0.2em;
  opacity: 0.2;
}
.btn-inline-b:hover {
  color: currentColor;
}
.btn-inline-b:hover::before {
  animation-name: line-move-right;
  opacity: 1;
}

@keyframes line-move-right {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    animation-timing-function: linear;
  }
  33% {
    clip-path: polygon(0% 0%, 50% 0%, 50% 100%, 0% 100%);
    animation-timing-function: linear;
  }
  66% {
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
    animation-timing-function: linear;
  }
  100% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    animation-timing-function: linear;
  }
}
.watermark {
  position: fixed;
  top: auto;
  left: auto;
  right: 1rem;
  bottom: 1rem;
}

.btn-watermark {
  background-color: rgba(255, 255, 255, 0.9);
  background-color: var(--page-bg-color);
  color: #3d3d3d;
  color: var(--page-fg-color);
  border: 1px solid rgba(128, 128, 128, 0.2);
  box-shadow: 0px 2px 6px rgba(128, 128, 128, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.btn-watermark:hover {
  color: #3d3d3d;
}

.page-header-b {
  --h-fg-color: currentColor;
  padding-left: var(--page-padding-x);
  padding-right: var(--page-padding-x);
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 0rem;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.page-header-b .h-cont {
  width: 100%;
  max-width: var(--max-width);
  min-height: var(--header-height);
}
.page-header-b .h-logo {
  margin-top: 12px;
  color: var(--h-fg-color);
}
.page-header-b .h-menu {
  display: flex;
  position: fixed;
  right: var(--page-padding-x);
}
.page-header-b .h-menu-button {
  outline: none;
  border: none;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--h-fg-color);
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .page-header-b .h-menu-button.icon-color-large-foreground {
    color: var(--fg-color);
  }
}
@media screen and (min-width: 768px) {
  .page-header-b .h-menu-button.icon-color-large-background {
    color: var(--bg-color);
  }
}
.page-header-b .h-menu-button:hover, .page-header-b .h-menu-button:focus {
  outline: none;
  border: none;
}
.page-header-b .icon-bars {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}
.page-header-b .icon-bars .bar-1,
.page-header-b .icon-bars .bar-2 {
  margin-top: -1px;
  position: absolute;
  top: 50%;
  display: block;
  height: 1.5px;
  border-radius: 8px;
  background-color: currentColor;
  transition: 0.3s;
}
.page-header-b .icon-bars .bar-1 {
  width: 100%;
  transform: translateY(-4px);
}
.page-header-b .icon-bars .bar-2 {
  width: 75%;
  transform: translateY(4px);
}
.page-header-b .icon-bars.open {
  color: var(--fg-color);
}
.page-header-b .icon-bars.open .bar-1 {
  width: 75%;
  transform: rotate(45deg);
}
.page-header-b .icon-bars.open .bar-2 {
  width: 75%;
  transform: rotate(-45deg);
}
.page-header-b.variant-light {
  --h-fg-color: var(--light);
}
.page-header-b.variant-dark {
  --h-fg-color: var(--dark);
}
.page-header-b.variant-current {
  --h-fg-color: currentColor;
}
@media screen and (min-width: 768px) {
  .page-header-b.variant-large-light {
    --h-fg-color: var(--light);
  }
}
@media screen and (min-width: 768px) {
  .page-header-b.variant-large-dark {
    --h-fg-color: var(--dark);
  }
}

.menu-screen-b {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 1.5rem var(--page-padding-x);
  padding-top: 80px;
  z-index: 10;
  overflow: auto;
  text-align: right;
  visibility: hidden;
  backdrop-filter: blur(8px);
  transform: translateX(-32px);
  opacity: 0;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .menu-screen-b {
    left: 0;
    width: 100%;
  }
}
.menu-screen-b.open {
  visibility: visible;
  transform: none;
  opacity: 1;
}
.menu-screen-b::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  inset: 0;
  background-color: var(--bg-color);
  opacity: 0.5;
  border: 1px solid #c0c0c0;
}
.menu-screen-b .menu-link {
  display: block;
  font-size: 1.5rem;
  padding: 0.25rem 0;
}
.menu-screen-b .menu-link:hover {
  opacity: 0.5;
}
@media (min-width: 1024px) {
  .menu-screen-b .menu-link {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
  }
}
.menu-screen-b .m-logo {
  position: absolute;
  left: var(--page-padding-x);
  top: 2.75rem;
  font-weight: 500;
}
.menu-screen-b .cta {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1.5px solid rgba(128, 128, 128, 0.25);
}
.menu-screen-b .cta .call-text {
  margin-bottom: 0.5rem;
  text-align: end;
}
.menu-screen-b .cta .btns {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.menu-screen-b .cta .btns .btn {
  margin-left: 0.5rem;
}

.page-footer-a {
  padding-left: var(--page-padding-x);
  padding-right: var(--page-padding-x);
  margin-top: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.page-footer-a .f-primary {
  width: 100%;
  margin: 0 auto;
  max-width: 20rem;
  text-align: center;
}
.page-footer-a .f-primary p {
  font-size: 1rem;
}
.page-footer-a .f-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.s-mt-lg {
  margin-top: 8rem;
}

.s-mt-md {
  margin-top: 4rem;
}
@media screen and (min-width: 1024px) {
  .s-mt-md {
    margin-top: 6rem;
  }
}

.s-p-top,
.section-padding-top {
  padding-top: 4rem;
}
@media screen and (min-width: 1024px) {
  .s-p-top,
  .section-padding-top {
    padding-top: 6rem;
  }
}

.s-mt-sm {
  margin-top: 2rem;
}

.s-mb-lg {
  margin-bottom: 8rem;
}

.s-mb-md {
  margin-bottom: 4rem;
}
@media screen and (min-width: 1024px) {
  .s-mb-md {
    margin-bottom: 6rem;
  }
}

.s-p-bottom,
.section-padding-bottom {
  padding-bottom: 4rem;
}
@media screen and (min-width: 1024px) {
  .s-p-bottom,
  .section-padding-bottom {
    padding-bottom: 6rem;
  }
}

.s-mb-sm {
  margin-bottom: 2rem;
}

/**
*/
.section-a {
  padding-left: var(--page-padding-x);
  padding-right: var(--page-padding-x);
}
.section-a .text-highlight p {
  font-size: 1.125rem;
}
@media screen and (min-width: 1024px) {
  .section-a .text-highlight p {
    font-size: 1.5rem;
  }
}
.section-a.bg-primary-light {
  position: relative;
  z-index: 0;
}
.section-a.bg-primary-light::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  opacity: 0.1;
}

.section-a .s-cont {
  width: 100%;
  max-width: var(--max-width);
  min-height: var(--header-height);
  margin-left: auto;
  margin-right: auto;
}

.section-a .title-section {
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.section-a .s-desc ~ * {
  margin-top: 2rem;
}
@media screen and (min-width: 1024px) {
  .section-a .s-desc ~ * {
    margin-top: 3rem;
  }
}

.section-a .w-medium {
  max-width: 640px;
}

.section-hero-f {
  --border-color: currentColor;
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .section-hero-f {
    padding-top: 12rem;
  }
}
.section-hero-f .title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
  max-width: 280px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
}
@media screen and (min-width: 1024px) {
  .section-hero-f .title {
    font-size: 5rem;
    max-width: none;
  }
}
.section-hero-f .subheadline {
  font-size: 1.25rem;
  max-width: 100%;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .section-hero-f .subheadline {
    font-size: 2rem;
    max-width: none;
    margin-bottom: 0rem;
  }
}
.section-hero-f .desc {
  font-size: 1.25rem;
  max-width: 80%;
}
@media screen and (min-width: 1024px) {
  .section-hero-f .desc {
    font-size: 1.25rem;
    max-width: none;
  }
}
.section-hero-f .img-profile {
  width: 100%;
  height: auto;
  border-radius: 0rem;
  object-fit: cover;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .section-hero-f .img-profile {
    aspect-ratio: 2/1;
  }
}
@media screen and (min-width: 1024px) {
  .section-hero-f .img-profile {
    aspect-ratio: 3/1;
  }
}
.section-hero-f .hero-cont {
  margin-bottom: 4rem;
}
@media screen and (min-width: 1024px) {
  .section-hero-f .hero-cont {
    margin-bottom: 6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .section-hero-f .hero-cont .c-content {
    margin-bottom: 0rem;
    grid-column: span 2/span 2;
    align-self: center;
  }
}
.section-hero-f .s-img {
  margin-left: calc(-1 * var(--page-padding-x));
  margin-right: calc(-1 * var(--page-padding-x));
}
@media screen and (min-width: 1024px) {
  .section-hero-f .s-img {
    grid-column: span 3/span 3;
  }
}
.section-hero-f .hero-footer {
  position: absolute;
  top: auto;
  left: var(--page-padding-x);
  right: var(--page-padding-x);
  bottom: var(--page-padding-y);
}
.section-hero-f .hero-footer .f-left {
  position: absolute;
  left: 0;
  right: auto;
  top: auto;
  bottom: 0;
}
.section-hero-f .hero-footer .f-center {
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 0;
  transform: translateX(-50%);
}
.section-hero-f .hero-footer .f-right {
  position: absolute;
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
}

.link-item-a {
  position: relative;
  display: flex;
  padding: 0.5rem;
  position: relative;
  z-index: 0;
  min-height: 3rem;
}
.link-item-a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--page-primary);
  border-radius: 1rem;
  opacity: 0.25;
  transition: 0.3s;
}
.link-item-a .img {
  width: 100%;
  height: auto;
  margin: 0rem;
  transition: 0.2s;
}
@media screen and (min-width: 1024px) {
  .link-item-a:hover .img {
    transform: scale(1.2);
  }
}
.link-item-a .img-cont {
  position: relative;
  width: 5rem;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-right: 1rem;
}
.link-item-a .txt-cont {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.link-item-a.no-pict .txt-cont {
  margin-left: 1rem;
}
.link-item-a .icon-cont {
  position: relative;
  display: flex;
  align-items: center;
}
.link-item-a .btn-icon {
  width: 1.5rem;
  color: var(--page-primary);
  transition: 0.3s;
}
.link-item-a .title-link {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.125rem;
}
.link-item-a .title-link:last-child {
  margin-bottom: 0;
}
.link-item-a .subheadline {
  font-size: 1rem;
  margin-bottom: 0.125rem;
}
.link-item-a .subheadline:last-child {
  margin-bottom: 0;
}
.link-item-a .price {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0;
}
.link-item-a:hover .btn-icon {
  transform: rotate(45deg);
}
.link-item-a.variant-style-b {
  color: #303030;
  background-color: white;
  border-radius: 2rem;
}
.link-item-a.variant-style-b::before {
  display: none;
}
.link-item-a.variant-style-b .img-cont {
  width: auto;
  border-radius: 1.5rem;
}
.link-item-a.variant-style-b .img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 0;
}
@media screen and (min-width: 1024px) {
  .link-item-a.variant-style-b:hover .img {
    transform: scale(1.2);
  }
}
.link-item-a.variant-style-b .icon-cont {
  margin-right: 0.5rem;
}
.link-item-a.variant-style-b .btn-icon {
  width: 1.25rem;
  color: currentColor;
  transition: 0.3s;
}
.link-item-a.variant-style-c {
  color: var(--fg-color);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.link-item-a.variant-style-c::before {
  border-left: none;
  border-right: none;
  border-radius: 0;
  opacity: 0.25;
}
.link-item-a.variant-style-c .img-cont {
  width: auto;
  border-radius: 0rem;
}
.link-item-a.variant-style-c .title-link {
  font-size: 1rem;
  font-weight: 500;
}
.link-item-a.variant-style-c .subheadline {
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}
.link-item-a.variant-style-c .subheadline:last-child {
  margin-bottom: 0;
}
.link-item-a.variant-style-c .img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 0;
}
@media screen and (min-width: 1024px) {
  .link-item-a.variant-style-c:hover::before {
    opacity: 0.5;
  }
  .link-item-a.variant-style-c:hover .img {
    transform: scale(1.2);
  }
}
.link-item-a.variant-style-c .icon-cont {
  margin-right: 0rem;
}
.link-item-a.variant-style-c .btn-icon {
  width: 1.25rem;
  color: currentColor;
  transition: 0.3s;
}
.link-item-a.variant-style-card {
  color: var(--card-fg-color);
  background-color: var(--card-bg-color, #ffffff);
  border-radius: 2rem;
  box-shadow: 0px 4px 24px rgba(var(--page-fg-color-rgb), 0.04), 0px 0px 1px 1px rgba(var(--page-fg-color-rgb), 0.05);
  transition: 0.3s;
  min-height: 4rem;
}
.link-item-a.variant-style-card:hover {
  box-shadow: 0px 0px 1px 0px rgba(128, 128, 128, 0.1);
}
.link-item-a.variant-style-card::before {
  display: none;
}
.link-item-a.variant-style-card .img-cont {
  width: auto;
  border-radius: 1.5rem;
  margin-right: 0.5rem;
}
.link-item-a.variant-style-card .img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 0;
}
.link-item-a.variant-style-card .title-link {
  font-size: 1rem;
  font-weight: 500;
}
.link-item-a.variant-style-card .subheadline {
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}
.link-item-a.variant-style-card .subheadline:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .link-item-a.variant-style-card:hover .img {
    transform: scale(1.2);
  }
}
.link-item-a.variant-style-card .icon-cont {
  margin-right: 0.5rem;
}
.link-item-a.variant-style-card .btn-icon {
  width: 1.25rem;
  color: currentColor;
  transition: 0.3s;
}

.link-list-b {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .link-list-b {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    position: relative;
    z-index: 0;
  }
}

.service-grid-a {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .service-grid-a {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.service-item-f {
  position: relative;
  display: block;
  --border-radius: 0rem;
}
.service-item-f .img-cont {
  margin-top: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .service-item-f .img-cont {
    margin-top: 0rem;
  }
}
.service-item-f .img {
  width: 100%;
  height: auto;
  margin: 0rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .service-item-f .img {
    width: 100%;
    border-radius: var(--border-radius);
  }
}
.service-item-f .number {
  font-size: 1rem;
  background-color: var(--fg-color);
  color: var(--bg-color);
  height: 2rem;
  width: 2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-item-f .btns {
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  .service-item-f .btns {
    margin-top: 1rem;
  }
}
.service-item-f .title-service {
  font-size: 1.25rem;
  font-weight: 600;
  color: currentColor;
  margin-bottom: 1.5rem;
  position: relative;
  width: 80%;
}
.service-item-f .title-service:last-child {
  margin-bottom: 0;
}
.service-item-f .desc {
  font-size: 1.125rem;
}
.service-item-f .subheadline {
  color: var(--primary);
  opacity: 0.75;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.service-item-f .subheadline:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .service-item-f .subheadline {
    font-size: 1.125rem;
  }
}
.service-item-f .card-cont {
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .service-item-f .card-cont {
    margin-bottom: 0rem;
  }
}
.service-item-f .card-text {
  position: relative;
  padding: var(--text-padding);
  z-index: 0;
  text-align: center;
}
.service-item-f .card-text::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  border-radius: var(--border-radius);
  opacity: 0.1;
}

.product-item-b {
  /* Main wrapper */
  /* Media image wrapper */
  /* Body */
  /* Text content */
  /* Buttons */
  /* Footer elements */
  /* Variant */
}
.product-item-b.wrapper {
  --fg-color: currentColor;
  --bg-color: transparent;
  --padding: 0rem;
  --border-radius: 0.5rem;
  --img-border-radius: 0.5rem;
  width: 100%;
  padding: var(--padding);
  color: var(--fg-color);
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
}
.product-item-b .media {
  overflow: hidden;
  border-radius: var(--img-border-radius);
  margin-bottom: 1rem;
  position: relative;
  transition: 0.2s;
}
.product-item-b.wrapper:hover .media {
  box-shadow: 0px 8px 16px -4px rgba(0, 0, 0, 0.2);
}
.product-item-b .image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.6s;
}
.product-item-b.wrapper:hover .image {
  transform: scale(1.2);
  transition: 5s;
}
.product-item-b .image.square {
  aspect-ratio: 1;
}
.product-item-b .content.align-start {
  text-align: left;
  text-align: start;
}
.product-item-b .content.align-center {
  text-align: center;
}
.product-item-b .content > a {
  color: var(--fg-color);
}
.product-item-b .content > a:hover {
  text-decoration: none;
}
.product-item-b .category {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
.product-item-b .title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.product-item-b .desc {
  margin-bottom: 0.5rem;
}
.product-item-b .price {
  font-size: 1.25rem;
  line-height: 1.2;
}
.product-item-b .footer {
  display: flex;
  flex-wrap: nowrap;
}
.product-item-b .footer.align-start {
  align-items: center;
  justify-content: flex-start;
}
.product-item-b .footer.align-start .price {
  flex-grow: 1;
}
.product-item-b .footer.align-center {
  display: block;
  text-align: center;
  justify-content: center;
  margin-top: 0.75rem;
}
.product-item-b .footer.align-center .price {
  flex-grow: 1;
  margin-bottom: 0.75rem;
}
.product-item-b.variant-style-a {
  --img-border-radius: 0px;
}
.product-item-b.variant-style-card {
  --border-radius: 1.5rem;
  --img-border-radius: 1rem;
  padding: 1rem;
  padding-bottom: 1.5rem;
  box-shadow: 0px 4px 24px rgba(var(--page-fg-color-rgb), 0.04), 0px 0px 1px 1px rgba(var(--page-fg-color-rgb), 0.05);
  background-color: var(--card-bg-color, #ffffff);
  color: var(--fg-color);
  border-radius: var(--border-radius);
}
@media screen and (min-width: 1024px) {
  .product-item-b.variant-style-card {
    padding: 1.5rem;
  }
}
.product-item-b.variant-style-card .media {
  margin-bottom: 1.5rem;
}
.product-item-b.variant-style-card.wrapper:hover .media {
  box-shadow: none;
}

.product-list-a {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .product-list-a {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.project-item-a {
  --img-border-radius: 1rem;
  position: relative;
}
.project-item-a .cont-wrapper.no-image {
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: rgba(var(--page-primary-rgb), 0.2);
}
.project-item-a .img {
  width: 100%;
  height: auto;
  margin: 0rem;
  transition: 0.6s;
}
.project-item-a .img-cont {
  margin-bottom: 1rem;
  width: 100%;
  overflow: hidden;
  border-radius: var(--img-border-radius);
}
.project-item-a .img-cont.no-image {
  display: none;
}
.project-item-a .btns {
  margin-top: -0.25rem;
}
.project-item-a .txt-cont {
  display: flex;
}
.project-item-a .title-desc {
  display: flex;
  justify-content: space-between;
  flex: 1;
  flex-wrap: wrap;
  flex-direction: column;
}
.project-item-a .cont-wrapper.no-image .title-desc {
  flex-direction: column;
}
.project-item-a .separator {
  flex: 1;
}
.project-item-a .title-project {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.project-item-a .price {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.project-item-a .desc {
  font-size: 1.125rem;
}
.project-item-a:hover .img {
  transform: scale(1.1);
  transition: 5s;
}
.project-item-a.variant-style-a {
  --img-border-radius: 0;
}
.project-item-a.variant-style-a .title-project {
  font-weight: 600;
}
.project-item-a.variant-style-a .title-desc {
  justify-content: flex-start;
  flex-direction: row;
}
.project-item-a.variant-style-a .separator {
  border-top: 1px solid currentColor;
  opacity: 1;
  margin-top: 0.85rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  height: 4px;
  flex: 1;
}
.project-item-a.variant-style-card {
  --border-radius: 1.5rem;
  --img-border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0px 4px 24px rgba(var(--page-fg-color-rgb), 0.04), 0px 0px 1px 1px rgba(var(--page-fg-color-rgb), 0.05);
  background-color: var(--card-bg-color, #ffffff);
  color: var(--fg-color);
  border-radius: var(--border-radius);
}
.project-item-a.variant-style-card .title-project {
  font-weight: 600;
}
.project-item-a.variant-style-card .title-desc {
  justify-content: flex-start;
}
.project-item-a.variant-style-card .separator {
  flex: 1;
}
.project-item-a.variant-style-card .img-cont {
  margin-bottom: 1.5rem;
}
.project-item-a.variant-style-card .img-cont.no-image {
  aspect-ratio: 16/9;
  width: 100%;
  background-image: linear-gradient(to top right, var(--primary), var(--bg-color));
}
.project-item-a.variant-style-glass {
  --border-radius: 1.5rem;
  --img-border-radius: 0rem;
}
.project-item-a.variant-style-glass .cont-wrapper {
  overflow: hidden;
  position: relative;
  box-shadow: 0px 4px 24px rgba(var(--page-fg-color-rgb), 0.04), 0px 0px 1px 1px rgba(var(--page-fg-color-rgb), 0.05);
  color: var(--fg-color);
  border-radius: var(--border-radius);
  border: none;
}
.project-item-a.variant-style-glass .title-project {
  font-weight: 600;
  margin: 0;
}
.project-item-a.variant-style-glass .desc {
  margin: 0;
}
.project-item-a.variant-style-glass .title-desc {
  justify-content: flex-start;
}
.project-item-a.variant-style-glass .separator {
  flex: 1;
  margin: 0;
}
.project-item-a.variant-style-glass .img-cont {
  margin: 0rem;
  min-height: 5rem;
}
.project-item-a.variant-style-glass .img-cont.no-image {
  aspect-ratio: 16/9;
  width: 100%;
  background-image: linear-gradient(to top right, var(--primary), var(--bg-color));
}
.project-item-a.variant-style-glass .txt-cont {
  margin: 0rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  padding-top: 1.5rem;
  color: #ffffff;
  text-shadow: 0px 2px 16px rgba(var(--page-fg-color-rgb), 0.17);
  padding: 1rem;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .project-item-a.variant-style-glass .txt-cont {
    padding: 1.5rem;
  }
}

.project-list-a {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .project-list-a {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.project-grid-a {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .project-grid-a {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.social-item-a {
  display: flex;
  align-items: center;
}
.social-item-a .soc-icon-cont {
  margin-right: 0.5rem;
}
.social-item-a .soc-icon {
  width: 2rem;
  height: auto;
}
.social-item-a .soc-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}
.social-item-a .soc-profile {
  font-size: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 1024px) {
  .social-item-a .soc-profile {
    font-size: 1rem;
  }
}
.social-item-a .text-cont {
  max-width: calc(50vw - 2 * (1rem + var(--page-padding-x)));
}
@media screen and (min-width: 1024px) {
  .social-item-a .text-cont {
    max-width: none;
    font-size: 1rem;
  }
}
.social-item-a.variant-style-card {
  padding: 0.5rem;
  color: var(--fg-color);
  background-color: var(--card-bg-color, #ffffff);
  border-radius: 2rem;
  box-shadow: 0px 4px 24px rgba(var(--page-fg-color-rgb), 0.04), 0px 0px 1px 1px rgba(var(--page-fg-color-rgb), 0.05);
  transition: 0.3s;
}
.social-item-a.variant-style-card:hover {
  box-shadow: 0px 0px 1px 0px rgba(128, 128, 128, 0.1);
}
.social-item-a.variant-style-card .soc-icon-cont {
  width: 2rem;
  height: 2rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--page-fg-color-rgb), 0.04);
}
@media screen and (min-width: 1024px) {
  .social-item-a.variant-style-card .soc-icon-cont {
    width: 3rem;
    height: 3rem;
  }
}
.social-item-a.variant-style-card .soc-icon {
  width: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .social-item-a.variant-style-card .soc-icon {
    width: 2rem;
  }
}
.social-item-a.variant-style-card .title-link {
  font-size: 1rem;
  font-weight: 500;
}
.social-item-a.variant-style-card .subheadline {
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}
.social-item-a.variant-style-card .subheadline:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .social-item-a.variant-style-card:hover .img {
    transform: scale(1.2);
  }
}
.social-item-a.variant-style-card .icon-cont {
  margin-right: 0.5rem;
}
.social-item-a.variant-style-card .btn-icon {
  width: 1.25rem;
  color: currentColor;
  transition: 0.3s;
}

.social-list-a {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 1024px) {
  .social-list-a {
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-list-a {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 1024px) {
  .contact-list-a {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-item-a {
  display: flex;
}
.contact-item-a > a {
  display: inline-flex;
}
.contact-item-a .icon {
  width: 1.5rem;
  font-size: 1.5rem;
}
.contact-item-a .label {
  font-size: 1.25rem;
  font-weight: 500;
}
.contact-item-a .text {
  font-size: 1.25rem;
}
.contact-item-a .icon ~ .text {
  margin-left: 0.5rem;
}
.contact-item-a .label ~ .text {
  margin-left: 0.5rem;
}

.section-a .title-section {
  letter-spacing: -0.02em;
  text-transform: none;
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  color: var(--fg-color);
}
@media screen and (min-width: 1024px) {
  .section-a .title-section {
    font-size: 2rem;
    font-weight: 600;
  }
}

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