@font-face {
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../font/font-awesome/fa-regular-400.woff2");
}
@font-face {
  font-family: "Brevia Regular";
  src:  url("../font/brevia/Brevia-Web-Regular.woff2") format("woff2"),
        url("../font/brevia/Brevia-Web-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brevia SemiBold";
  src:  url("../font/brevia/Brevia-Web-Semi-Bold.woff2") format("woff2"),
        url("../font/brevia/Brevia-Web-Semi-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bs-container-max-width: 1400px;
  
  --bs-primary: #007787;
  --bs-secondary: #e3f0f2;
  --bs-black: #000000;
  --bs-white: #ffffff;
  --color-light-gray: #f0f0f0;
  --bs-primary-rgb: 0,119,135;
  --bs-secondary-rgb: 217,235,237;
  
  --tab-focus: #ffbf47;
  
  --font-regular: "Brevia Regular", sans-serif;
  --font-bold: "Brevia SemiBold", sans-serif;
  
  --fs-step: 1.25vw;
  --fs-bump: 0rem;
  --fs-xs:   clamp(0.85rem,  calc(0.6rem  + var(--fs-step) + var(--fs-bump)), 1rem);
  --fs-sm:   clamp(0.875rem, calc(0.65rem + var(--fs-step) + var(--fs-bump)), 1.05rem);
  --fs-base: clamp(1rem,     calc(0.7rem  + var(--fs-step) + var(--fs-bump)), 1.25rem);
  --fs-lg:   clamp(1.125rem, calc(0.8rem  + var(--fs-step) + var(--fs-bump)), 1.5rem);
  --fs-xl:   clamp(1.25rem,  calc(0.9rem  + var(--fs-step) + var(--fs-bump)), 1.75rem);
  --fs-2xl:  clamp(1.5rem,   calc(1.1rem  + var(--fs-step) + var(--fs-bump)), 2rem);
  --fs-3xl:  clamp(1.75rem,  calc(1.3rem  + var(--fs-step) + var(--fs-bump)), 2.5rem);
  --fs-4xl:  clamp(2rem,     calc(1.5rem  + var(--fs-step) + var(--fs-bump)), 3rem);
  --fs-5xl:  clamp(2.5rem,   calc(1.75rem + var(--fs-step) + var(--fs-bump)), 3.5rem);
  
  --sp-step: 2.0vw;
  --sp-0: clamp(0.75rem,    calc(0.5rem   + var(--sp-step)*0.6), 1.25rem);
  --sp-1: clamp(1.25rem,    calc(1rem     + var(--sp-step)), 2.25rem);
  --sp-2: clamp(1.75rem,    calc(1.25rem  + var(--sp-step)), 3rem);
  --sp-3: clamp(2.25rem,    calc(1.75rem  + var(--sp-step)), 3.75rem);
  --sp-4: clamp(3rem,       calc(2.25rem  + var(--sp-step)), 5rem);
  --sp-5: clamp(4rem,       calc(2.75rem  + var(--sp-step)*1.2), 6.5rem);
  --sp-6: clamp(5.25rem,    calc(3.25rem  + var(--sp-step)*1.6), 8.25rem);
  --sp-7: clamp(6.875rem,   calc(3.75rem  + var(--sp-step)*2), 9.75rem);
  --sp-8: clamp(8.5rem,     calc(4.25rem  + var(--sp-step)*2.4), 11.5rem); 
}

@media (min-width: 768px)  { :root { --fs-step: 0.95vw; --fs-bump: 0.02rem; } }
/* Tablet → Laptop: minimal kompensieren, damit nix „absackt“ */
@media (min-width: 992px)  { :root { --fs-step: 0.80vw; --fs-bump: 0.03rem; } }
/* Desktop: insgesamt kleiner, aber ohne Knick */
@media (min-width: 1200px) { :root { --fs-step: 0.70vw; --fs-bump: 0.02rem; } }
/* Große Desktops: noch sanfter */
@media (min-width: 1600px) { :root { --fs-step: 0.60vw; --fs-bump: 0.01rem; } }
 
/* COMMON STYLES ----------------------------------------------- */
html {
  font-size: 100%;
  height: 100%;
}
body {
  font-family: var(--font-regular);
  color: var(--bs-black);
  font-size: var(--fs-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
header { position: relative; }
section, .section {
  position: relative;
  z-index: 0;
  padding: 0;
}
hr {
  border:0;
  border-top:1px solid rgba(0,0,0, 0.1);
  opacity:1;
}
table { width: 100%; }

/* TYPOGRAPHY ----------------------------------------------- */

.h-xl,h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{
  font-family: var(--font-bold);
  font-weight: normal;
  font-size: var(--h-size, var(--fs-base));
  line-height: var(--h-lh,1.3);
  margin-bottom: var(--h-mb,.6em);
}
.h-xl { --h-size:var(--fs-5xl); --h-lh:1.4;  --h-mb:.75em; }
h1,.h1 { --h-size:var(--fs-4xl); --h-lh:1.4; --h-mb:.7em;  }
h2,.h2 { --h-size:var(--fs-3xl); --h-lh:1.4;  --h-mb:.65em; }
h3,.h3 { --h-size:var(--fs-2xl); --h-lh:1.4; --h-mb:.6em;  }
h4,.h4 { --h-size:var(--fs-xl);  --h-lh:1.4;  --h-mb:.55em; }
h5,.h5 { --h-size:var(--fs-lg);  --h-lh:1.4; --h-mb:.5em;  }
h6,.h6 { --h-size:var(--fs-base);--h-lh:1.4;  --h-mb:.45em; }

.small, small{ font-size:var(--fs-sm); }
.lead { font-size:var(--fs-lg); }
.xl-lead { font-size:var(--fs-2xl); }
.fs-xs { font-size:var(--fs-xs); }
.fs-sm { font-size:var(--fs-sm); }
.fs-base { font-size:var(--fs-base); }
.fs-lg { font-size:var(--fs-lg); }
.fs-xl { font-size:var(--fs-xl); }
.fs-2xl { font-size:var(--fs-2xl); }
.fs-3xl { font-size:var(--fs-3xl); }
.fs-4xl { font-size:var(--fs-4xl); }
.fs-5xl { font-size:var(--fs-5xl); }

.bold, bold, strong {
 font-family: var(--font-bold);
 font-weight: normal; 
}
.regular {
 font-family: var(--font-regular);
 font-weight: normal; 
}
.p-no-margin p:last-of-type { 
  margin: 0;
}

/* Icon-Font */
.custom-fa-icon {
  width: 100%;
  height: 100%; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-fa-icon svg {
  fill: currentColor;
  width: 1em;
  height: 1em;
}

.fa-arrow-left { --fa: "\f060"; }
.fa-arrow-right { --fa: "\f061"; }
.fa-arrow-up { --fa: "\f062"; }
.fa-chevron-down { --fa: "\f078"; }
.fa-chevron-left { --fa: "\f053"; }
.fa-chevron-right { --fa: "\f054"; }
.fa-chevron-up { --fa: "\f077"; }

/* ACCESSIBILITY ----------------------------------------------- */
.skip-link {
  background-color: var(--bs-white);
  color: var(--bs-black);
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.4em 0.8em;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:not(:focus):not(:active) {
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
}
.navbar .nav-link:focus-visible,
.dropdown-item:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--tab-focus);
  outline-offset: 2px;
}

/* LINKS ----------------------------------------------- */
a:not(.btn):not(.nav-link) {
  color: var(--bs-primary);
  text-decoration: none;
}
a:not(.btn):not(.nav-link):hover,
a:not(.btn):not(.nav-link):focus,
a:not(.btn):not(.nav-link):active {
  color: var(--bs-primary);
  text-decoration: underline;
}

a.no-decoration {
  text-decoration: none !important;
}

a.underline {
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
  text-decoration: none !important;
}
a.underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--bs-primary);
  transition: width 0.3s ease;
}
a.underline:hover::after {
    width: 100%;
}
a.underline.text-white::after {
  background-color: var(--bs-white);
}
a.underline.text-black::after {
  background-color: var(--bs-black);
}
a.more {
  font-family: var(--font-bold);
  display: inline-block;
  text-decoration: none !important;
}
a.more:after {
  line-height: 1;
  font-family: "Font Awesome 7 Pro";
  content: "\f061";
  padding-left: 0.5rem;
  font-size: 1.1rem;
  font-weight: normal;
  display: inline-block;
  transition: all .2s ease-in-out;
}
a.more:hover:after {
  padding-left: 0.75rem;
}
.hover {
  transition: all .2s ease-in-out;
}
.hover:hover {
  transform: translateY(-0.15rem);
  box-shadow: 0 .25rem .75rem rgba(30,34,40,.15);
}
.hover-scale img {
  transition: transform .4s ease, filter .4s ease;
}
.hover-scale:hover img {
  transform: scale(1.01);
  filter: brightness(1.05);
}
.hover-opacity { 
  transition: opacity 0.2s ease-in-out;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform: translateZ(0);
}
.hover-opacity:hover { opacity: 0.7; }

.btn { 
  font-family: var(--font-bold);
  font-size: var(--fs-base);
  padding: 0.5rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-active-color: var(--bs-white);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
}
.btn-white {
  --bs-btn-color: var(--bs-black);
  --bs-btn-bg: var(--bs-white);
  --bs-btn-border-color: var(--bs-white);
  --bs-btn-hover-color: var(--bs-black);
  --bs-btn-hover-bg: var(--bs-white);
  --bs-btn-hover-border-color: var(--bs-white);
  --bs-btn-active-color: var(--bs-black);
  --bs-btn-active-bg: var(--bs-white);
  --bs-btn-active-border-color: var(--bs-white);
}

.btn.btn-circle {
  padding: 0;
  border-radius: 100% !important;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  backface-visibility: hidden;
  border-width: 0;
}
.btn.btn-circle.btn-sm {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.5rem;
}
.btn.btn-circle.btn-md {
  width: 3rem;
  height: 3rem;
  font-size: 1.85rem;
}
.btn.btn-circle.btn-lg {
  width: 3.75rem;
  height: 3.75rem;
  font-size: 2.25rem;
}
.btn.btn-circle:disabled,
.btn.btn-circle.disabled {
  opacity: 1;
}
.btn.btn-circle.btn-primary {
  background-color: var(--bs-primary);
}
.btn.btn-circle.btn-secondary {
  background-color: var(--bs-secondary);
}
.btn.btn-circle.btn-white {
  background-color: var(--bs-white);
  color: var(--bs-primary);
}
 
/* STYLES ----------------------------------------------- */
.bg-overlap:after, .bg-overlap-before:before {
  content: "";
  display: block;
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: -2;
}
.bg-overlap:after {
  bottom: 0;
}
.bg-overlap-before:before {
  top: 0;
}
.bg-white, .bg-overlap-white:after, .bg-overlap-white:before { background: var(--bs-white) !important; }
.bg-black, .bg-overlap-black:after, .bg-overlap-black:before { background: var(--bs-black) !important; }
.bg-primary, .bg-overlap-primary:after, .bg-overlap-primary:before { background: var(--bs-primary) !important; }
.bg-secondary, .bg-overlap-secondary:after, .bg-overlap-secondary:before { background: var(--bs-secondary) !important; }

.text-white, a.white { color: var(--bs-white) !important; }
.text-black, a.black { color: var(--bs-black) !important; }
.text-primary, a.primary { color: var(--bs-primary) !important; }
.text-secondary, a.secondary { color: var(--bs-secondary) !important; }

/* NAVIGATION & FOOTER ----------------------------------------------- */
/* Navbar */
.navbar {
  width: 100%;
  background-color: rgba(255,255,255,1);
}
.navbar .container {
  position: relative;
}
.navbar .navbar-collapse {
  align-items: center;
}
.navbar-brand img {
  aspect-ratio: 3 / 1;
  height: auto;
  width: 190px;
}
@media (min-width: 768px)  { .navbar-brand img { width: 200px; } }
@media (min-width: 992px)  { .navbar-brand img { width: 210px; } }
@media (min-width: 1200px) { .navbar-brand img { width: 230px; } }
.navbar .nav-link {
  color: var(--bs-black);
  font-family: var(--font-bold, sans-serif);
  font-size: var(--fs-lg);
  margin: 0 0.55rem;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--bs-primary);
}
.navbar .nav-link.active,
.navbar .nav-link.show {
  color: var(--bs-primary);
}
.nav-item button {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sticky Navbar */
.navbar.fixed .navbar-collapse-wrapper {
  background: none !important;
  box-shadow: none !important;
}
.navbar-clone {
  position: fixed !important;
  z-index: 1008;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: all 300ms ease-in-out, padding-right 0ms;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-clone {
    transition: none;
  }
}
.navbar-stick {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 0 1.25rem rgba(30,34,40,.075);
  animation: slideDown .3s ease;
  background-color: rgba(255,255,255,0.96);
}
.navbar-unstick { position: static; }
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.navbar-ghost {
  width: 100%;
  height: 0;
  display: none;
}

/* Navbar Hamburger */
.navbar .custom-toggler{
  border:0; box-shadow:none; padding:.25rem; width:42px; height:42px;
}
.navbar .custom-toggler:focus { box-shadow:none; }
.navbar .custom-toggler .bar {
  display:block; width:28px; height:2px;
  background: var(--bs-black);
  margin:6px auto; border-radius:2px;
  transition: transform .25s ease, opacity .2s ease, background-color .2s ease;
}
.navbar .custom-toggler[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.navbar .custom-toggler[aria-expanded="true"] .bar:nth-child(2) {
  opacity:0;
}
.navbar .custom-toggler[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (prefers-reduced-motion: reduce) {
  .navbar .custom-toggler .bar { transition: none; }
}

/* Dropdown Sub-Menue */
.navbar .nav-link,
.navbar .dropdown-item{
  color: var(--bs-black) !important;
  text-decoration:none !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active{
  color:var(--bs-primary) !important;
  background:transparent !important;
  text-decoration:none !important;
}
.navbar .dropdown-menu{
  --bs-dropdown-min-width: 16rem;
  --bs-dropdown-padding-x: 0.5rem;
  --bs-dropdown-padding-y: 1.5rem;
  --bs-dropdown-font-size: var(--fs-base);
  --bs-dropdown-color: var(--bs-black);
  --bs-dropdown-bg: var(--bs-white);
  --bs-dropdown-border-color: transparent;
  --bs-dropdown-border-radius: .8rem;
  --bs-dropdown-box-shadow: 0 0 1.25rem rgba(30,34,40,.06);
  --bs-dropdown-item-padding-x: 1.5rem;
  --bs-dropdown-item-padding-y: .3rem;
  color: var(--bs-dropdown-color);
  background-color: var(--bs-dropdown-bg);
  border: 1px solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
  box-shadow: var(--bs-dropdown-box-shadow);
}
.navbar .dropdown-toggle::before { content:none !important; }
.navbar .nav-item.dropdown > .nav-link.dropdown-toggle::after{
  font-family:"Font Awesome 7 Pro";
  content:"\f078"; /* chevron-down */
  font-weight:400;
  font-size:.8rem;
  display:inline-block;
  margin-left:.3rem;
  border:0;
  transition:transform .2s ease;
}
.navbar .dropdown-menu .dropdown-toggle::after{
  font-family:"Font Awesome 7 Pro";
  content:"\f054"; /* chevron-right */
  font-weight:400;
  position:absolute;
  right:1rem; top:.15rem;
  font-size:.85rem;
  border:0;
}
.dropdown-header {
  font-size: var(--fs-sm);
  font-family: var(--font-bold);
  text-transform: uppercase;
  color: var(--bs-primary);
  padding: 0.5rem var(--bs-dropdown-item-padding-x) 0.75rem var(--bs-dropdown-item-padding-x);
}

@media (min-width:992px){
  .navbar-expand-lg:not(.hover-none) .navbar-nav .dropdown-menu{
    top:120%;
    visibility:hidden; pointer-events:none; opacity:0; display:block;
  }
  .navbar-expand-lg:not(.hover-none) .navbar-nav .dropdown:hover > .dropdown-menu{
    top:100%;
    visibility:visible; pointer-events:all; opacity:1;
    transition:all .25s ease-in-out;
  }
  .navbar-expand-lg:not(.hover-none) .navbar-nav .dropdown:hover > .nav-link.dropdown-toggle::after,
  .navbar .nav-item.dropdown.show > .nav-link.dropdown-toggle::after,
  .navbar .nav-item.dropdown > .nav-link.dropdown-toggle[aria-expanded="true"]::after{
    transform:rotate(-180deg);
  }
  .navbar .dropdown-submenu { position:relative; }
  .navbar-expand-lg:not(.hover-none) .navbar-nav .dropdown-submenu .dropdown-menu { top:30%; }
  .navbar-expand-lg:not(.hover-none) .navbar-nav .dropdown-submenu:hover > .dropdown-menu {
    top:0;
    visibility:visible; pointer-events:all; opacity:1;
    transition:all .25s ease-in-out;
  }
  .navbar .dropdown-submenu.dropend > .dropdown-menu{
    left:100%; margin-left:.75rem;
  }
  .navbar .dropdown-submenu.dropend{ position:relative; }
  .navbar .dropdown-submenu.dropend::after{
    content:"";
    position:absolute;
    top:0;
    right:-12px;
    width:12px;
    height:100%;
  }
  .navbar-expand-lg:not(.hover-none) .navbar-nav .dropdown:hover > .nav-link.dropdown-toggle{
    color: var(--bs-primary);
  }
  .navbar .nav-item.dropdown.show > .nav-link.dropdown-toggle,
  .navbar .nav-item.dropdown > .nav-link.dropdown-toggle[aria-expanded="true"]{
    color: var(--bs-primary);
  }
  @supports selector(:has(*)) {
    .navbar-expand-lg .dropdown:has(> .dropdown-menu:hover) > .nav-link.dropdown-toggle,
    .navbar-expand-lg .dropdown:has(> .dropdown-menu .dropdown-menu:hover) > .nav-link.dropdown-toggle{
      color: var(--bs-primary);
    }
  }
}
.navbar .dropend > .dropdown-toggle{
  border: 0;
  background:transparent;
  box-shadow:none;
}
.navbar .dropend > .dropdown-toggle::after{
  border:0;
  background:none;
  box-shadow:none;
}

@media (max-width: 991.98px){
  .offcanvas .dropdown-menu{
    box-shadow: none !important;
    border-color: transparent !important;
  }
  .offcanvas .dropdown-submenu.dropend > .dropdown-menu{
    position: static !important;
    top: auto !important;
    left: auto !important;
    margin: .25rem 0 0 0 !important;
  }
  .offcanvas .nav-item.dropdown > .nav-link.dropdown-toggle::after,
  .offcanvas .dropdown-menu .dropdown-toggle::after,
  .offcanvas .dropend > .dropdown-toggle::after{
    font-family:"Font Awesome 7 Pro" !important;
    content:"\f078"; /* chevron-down */
    font-weight:400;
    font-size:.85rem;
    display:inline-block;
    position: static;
    margin-left:.35rem;
    border:0 !important;
    background:none;
    transition:transform .2s ease;
  }
  .offcanvas .dropdown-toggle[aria-expanded="true"]::after,
  .offcanvas .show > .dropdown-toggle::after {
    transform: rotate(-180deg) !important;
  }
  .offcanvas .dropdown-submenu.dropend::after { content:none !important; }
}

/* Offcanvas */
.offcanvas {
  --bs-offcanvas-padding-x: 1.5rem;
  --bs-offcanvas-padding-y: 1.5rem;
  --bs-offcanvas-width: 22rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 576px) {
  .offcanvas {
    --bs-offcanvas-width: 27rem;
  }
}
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  --bs-btn-close-color: var(--bs-black);
  --bs-btn-close-opacity: 1;
}
.offcanvas-header .btn-close:hover {
  color: var(--bs-primary);
}
.offcanvas-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
/* Praxis-Concierge */
typebot-bubble{
  z-index: 1031 !important;
}
typebot-bubble::part(button){
  background:var(--bs-white) !important;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
typebot-bubble::part(preview-message){
  background: var(--bs-white) !important;
  color: var(--bs-black);
  border-radius:10px;
  font-size: var(--fs-sm);
  font-family: var(--font-regular);
  width: 190px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
typebot-bubble::part(bot){
  width:min(380px, 92vw) !important;
  height:min(80vh, 720px) !important;
  background:rgba(255,255,255,.85) !important;
  border-radius: 16px !important;
}
@media (max-width: 576px) {
  typebot-bubble::part(preview-message){
    display: none;
  }
}

/* Back to Top */
.progress-wrap {
  position: fixed;
  right: 1.9rem;
  bottom: 6.5rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: block;
  border-radius: 100%;
  box-shadow: inset 0 0 0 0.1rem rgba(128, 130, 134, 0.25);
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: all 200ms linear, margin-right 0ms;
}
@media (prefers-reduced-motion: reduce) {
  .progress-wrap {
    transition: none;
  }
}
.progress-wrap.active-progress {
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap:after {
  position: absolute;
  font-family: "Font Awesome 7 Pro";
  content: "\f062";
  text-align: center;
  line-height: 3rem;
  font-size: 1.25rem;
  color: var(--bs-primary);
  left: 0;
  top: 0;
  height: 3rem;
  width: 3rem;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .progress-wrap:after {
    transition: none;
  }
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--bs-primary);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .progress-wrap svg.progress-circle path {
    transition: none;
  }
}
@media (min-width: 576px) {
  .progress-wrap.active-progress {
    opacity: 1;
  }
}

/* LAYOUT ----------------------------------------------- */
@media (min-width:1480px){
  .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
    max-width:var(--bs-container-max-width)
  }
}
.card {
  --bs-card-spacer-y: 2rem;
  --bs-card-spacer-x: 2rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: #343f52;
  --bs-card-border-width: 1px;
  --bs-card-border-color: rgba(164, 174, 198, 0.2);
  --bs-card-border-radius: 0.4rem;
  --bs-card-inner-border-radius: 0.4rem;
  --bs-card-cap-padding-y: 0.9rem;
  --bs-card-cap-padding-x: 2rem;
  --bs-card-cap-bg: transparent;
  --bs-card-bg: var(--bs-white);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.shadow{box-shadow:0 0 1.25rem rgba(30,34,40,.04)!important}
.shadow-sm{box-shadow:0 .25rem .75rem rgba(30,34,40,.02)!important}
.shadow-md {box-shadow: 0 .25rem 1.25rem rgba(30,34,40,.05) !important;}
.shadow-lg{box-shadow:0 .25rem 1.75rem rgba(30,34,40,.07)!important}

/* Listen */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .4rem;
}
.icon-list i {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.2rem;
  height: 1.2rem;
  font-size: .9rem;
  border-radius: 50%;
  margin-top: .45rem;
}
.icon-list.bullet-white i,
.icon-list.bullet-white.bullet-bg i,
.icon-list.bullet-bg i[class*="bullet-white"] {
  background-color: var(--bs-white)!important;
  color: var(--bs-primary)!important;
}
.icon-list.bullet-primary i,
.icon-list.bullet-primary.bullet-bg i,
.icon-list.bullet-bg i[class*="bullet-primary"] {
  background-color: var(--bs-primary)!important;
  color: var(--bs-white)!important;
}
.icon-list.bullet-secondary i,
.icon-list.bullet-secondary.bullet-bg i,
.icon-list.bullet-bg i[class*="bullet-secondary"] {
  background-color: var(--bs-secondary)!important;
  color: var(--bs-primary)!important;
}
@media (min-width: 992px) {
  .link-list {
    columns: 2;
    column-gap: 2rem;
  }
  .link-list li {
    break-inside: avoid;
  }
}

.social-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Image Grid */
.img-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 30px;
}
.img-grid-item {
  position: relative;
  height: clamp(180px, 22vw, 400px);
  overflow: hidden;
}
.img-grid-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .img-grid-item {
    grid-column: span 6 !important;
  }
  .img-grid {
    gap: 15px;
  }
}

/* Split Image & Text */
.image-wrapper {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 0;
}
.image-wrapper {
  background-attachment: fixed !important;
}
@media (max-width:1366px) {
  .image-wrapper {
    background-attachment:scroll !important;
  }
}
@media (prefers-reduced-motion: reduce){
  .image-wrapper{ background-attachment:scroll !important; }
}
.image-wrapper.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll !important;
  min-height: 50vh !important;
}
@media (max-width: 991.98px) {
  .image-wrapper.bg-cover {
    min-height: 25rem;
  }
}
@media (max-width: 767px) {
  .image-wrapper.bg-cover {
    min-height: 20rem;
  }
}
@media (min-width: 992px) {
  .image-wrapper {
    position: absolute !important;
  }
}
.min-vh-50 { min-height: 50vh !important; }
.min-vh-60 { min-height: 60vh !important; }
.min-vh-70 { min-height: 70vh !important; }
.min-vh-80 { min-height: 80vh !important; }

/* Parallax */
.pxl-img { inset:0; }
.pxl-img img {
  width: 100%;
  height: calc(100% + 80vh);
  top: calc(-0.5 * 80vh);
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
  pointer-events: none;
}

/* Image Info-Box */
.info-box-left,
.info-box-right {
  position: absolute;
  bottom: 20%;
  z-index: 2;
}
.info-box-left,
.info-box-right {
  max-width: 200px;
  width: 200px;
}
.info-box-left {
  left: -8%;
}
.info-box-right {
  right: -10%;
}
@media (max-width: 768px) {
  .info-box-left,
  .info-box-right {
    bottom: 5%;
  }
  .info-box-left {
    left: 5%;
  }
  .info-box-right {
    right: 5%;
  }
}
@media (max-width: 540px) {
  .info-box-left,
  .info-box-right{
    bottom: -5%;
  }
  .info-box-left {
    left: 8%;
  }
  .info-box-right {
    right: 10%;
  }
  .info-box-left,
  .info-box-right {
    max-width: 180px;
    width: 180px;
  }
}

/* Accordion */
.accordion-wrapper .card {
  margin-bottom: 1.25rem;
}
.accordion-wrapper .card:last-child {
  margin-bottom: 0;
}
.accordion-wrapper .card-header {
  margin-bottom: 0;
  background: none;
  border: 0;
  padding: 0.9rem 1.3rem 0.85rem;
}
.accordion-wrapper .card-header button {
  position: relative;
  cursor: pointer;
  width: 100%;
  padding: 0 0 0 2.4rem;
  text-align: left;
  margin: 0;
  border: 0;
  color: var(--bs-black);
  background: none;
  transition: all 150ms ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-wrapper .card-header button { transition: none; }
}
.accordion-wrapper .card-header button::before {
  font-family: "Font Awesome 7 Pro";
  position: absolute;
  left: 0.5rem;
  content: "\f077";
  font-size: var(--fs-base);
  font-weight: normal;
  width: 1.2rem;
  display: inline-block;
  color: var(--bs-primary);
}
.accordion-wrapper .card-header button.collapsed { color: var(--bs-black); }
.accordion-wrapper .card-header button.collapsed::before { content: "\f078"; }
.accordion-item .card-body {
  padding: 0 1.25rem 0.25rem 2.35rem;
}

/* VENDORS ----------------------------------------------- */
/* Swiper */
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.swiper-controls {
  position: absolute !important;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.swiper-controls .swiper-navigation {
  pointer-events: all;
}
.swiper-controls .swiper-navigation .swiper-button {
  background: rgba(255, 255, 255, 0.7);
  color: #000;
  border: 0;
  box-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.02);
  width: 2.2rem;
  height: 2.2rem;
  line-height: inherit;
  border-radius: 100%;
  text-shadow: none;
  transition: all 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .swiper-controls .swiper-navigation .swiper-button {
    transition: none;
  }
}
.swiper-controls .swiper-navigation .swiper-button:hover {
  background: rgba(255, 255, 255, 0.9);
}
.swiper-controls .swiper-navigation .swiper-button:focus {
  outline: 0;
}
.swiper-controls .swiper-navigation .swiper-button:after {
  font-family: "Font Awesome 7 Pro";
  font-size: 1.2rem;
}
.swiper-controls .swiper-navigation .swiper-button.swiper-button-prev {
  left: 1rem;
}
.swiper-controls .swiper-navigation .swiper-button.swiper-button-prev:after {
  content: "\f053";
}
.swiper-controls .swiper-navigation .swiper-button.swiper-button-next {
  right: 1rem;
}
.swiper-controls .swiper-navigation .swiper-button.swiper-button-next:after {
  content: "\f054";
}
.swiper-controls .swiper-navigation .swiper-button.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.7);
}
.swiper-controls .swiper-pagination {
  bottom: -2.8rem;
  position: absolute !important;
  pointer-events: all;
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet {
  -webkit-backface-visibility: visible;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin: 0 0.3rem;
  padding: 0;
  background: var(--bs-primary);
  border-radius: 100%;
  border: 3px solid transparent;
  transform: scale(0.8);
}
@media (prefers-reduced-motion: reduce) {
  .swiper-controls .swiper-pagination .swiper-pagination-bullet {
    transition: none;
  }
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  inset: -6px;
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet:hover {
  transform: scale(1);
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet:focus {
  outline: 0;
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet:focus-visible {
  outline: 2px solid var(--bs-primary);
  outline-offset: 3px;
}
.swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1);
  background: none;
  border-color: var(--bs-primary);
}
.swiper-container {
  -webkit-user-select: none;
  position: relative;
  z-index: 10 !important;
}
.swiper-container.clients .swiper {
  display: flex;
  align-items: center;
}
.swiper-container .swiper img {
  width: 100%;
  height: auto;
}
.swiper-container.nav-color .swiper-button,
.swiper-container.nav-color .swiper-slide figure .item-link {
  background: rgba(var(--bs-primary-rgb), 0.9) !important;
  color: #fff !important;
}
.swiper-container.nav-color .swiper-button.swiper-button-disabled,
.swiper-container.nav-color .swiper-slide figure .item-link.swiper-button-disabled {
  background: rgba(var(--bs-primary-rgb), 0.7) !important;
}
.swiper-container.nav-color .swiper-button:hover,
.swiper-container.nav-color .swiper-slide figure .item-link:hover {
  background: rgba(var(--bs-primary-rgb), 1.0) !important;
}
.swiper-container.nav-dark .swiper-button,
.swiper-container.nav-dark .swiper-slide figure .item-link {
  background: rgba(0, 0, 0, 0.3) !important;
  color: #fff !important;
}
.swiper-container.nav-dark .swiper-button.swiper-button-disabled,
.swiper-container.nav-dark .swiper-slide figure .item-link.swiper-button-disabled {
  background: rgba(0, 0, 0, 0.1) !important;
}
.swiper-container.nav-dark .swiper-button:hover,
.swiper-container.nav-dark .swiper-slide figure .item-link:hover {
  background: rgba(0, 0, 0, 0.5) !important;
}
.swiper-container.nav-bottom .swiper-navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  transform: none;
  position: absolute !important;
  bottom: -3.2rem;
  left: 0;
  width: 100%;
}
.swiper-container.nav-bottom .swiper-navigation .swiper-button {
  top: auto;
  left: auto;
  right: auto;
  bottom: 0;
  position: relative;
  margin: 0 0.2rem;
}
.swiper-container.nav-bottom .swiper-navigation+.swiper-pagination {
  bottom: -5.2rem;
}
.swiper-container.nav-bottom.nav-far .swiper-navigation {
  bottom: -4.1rem;
}
.swiper-container.nav-bottom.nav-start .swiper-navigation {
  text-align: left;
  justify-content: flex-start;
}
.swiper-container.nav-bottom.nav-start .swiper-navigation .swiper-button {
  margin: 0 0.4rem 0 0;
}
.swiper-container.dots-over .swiper-pagination {
  bottom: 0.6rem;
}
.swiper-container.dots-over .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  box-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.02);
}
.swiper-container.dots-over .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: none;
  border-color: #fff;
}
.swiper-container.dots-start .swiper-pagination {
  text-align: left;
  justify-content: flex-start;
}
.swiper-container.dots-light .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.swiper-container.dots-light .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: none;
  border-color: #fff;
}
.swiper-container.dots-dark .swiper-pagination .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
}
.swiper-container.dots-dark .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: none;
  border-color: rgba(0, 0, 0, 0.3);
}
.swiper-container.nav-bottom { padding-bottom: 2.6rem; }
.swiper-container.nav-bottom .swiper-navigation { bottom: 0; }
.swiper-container.nav-bottom .swiper-navigation + .swiper-pagination { bottom: 2rem; }
.item-inner {
  padding: 1rem 0.75rem;
}
.item figure,
.swiper-slide figure {
  position: relative;
}
.item figure .item-link,
.item figure .item-like,
.item figure .item-view,
.swiper-slide figure .item-link,
.swiper-slide figure .item-like,
.swiper-slide figure .item-view {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  line-height: 2.2rem;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  color: #000;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.02);
  font-size: 1rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.item figure .item-link:hover,
.item figure .item-like:hover,
.item figure .item-view:hover,
.swiper-slide figure .item-link:hover,
.swiper-slide figure .item-like:hover,
.swiper-slide figure .item-view:hover {
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.item:hover figure .item-link,
.item:hover figure .item-like,
.item:hover figure .item-view,
.swiper-slide:hover figure .item-link,
.swiper-slide:hover figure .item-like,
.swiper-slide:hover figure .item-view {
  opacity: 1;
  right: 1rem;
}
.item figure .item-like,
.item figure .item-view,
.swiper-slide figure .item-like,
.swiper-slide figure .item-view {
  background: #fff;
}
.item figure .item-like,
.swiper-slide figure .item-like {
  bottom: auto;
  top: 1rem;
}
.item figure .item-view,
.swiper-slide figure .item-view {
  bottom: auto;
  top: 3.7rem;
}

/* HELPERS ----------------------------------------------- */
@media (min-width: 992px) {
  .pe-lg-7 { padding-right: 6rem !important; }
  .ps-lg-7 { padding-left: 6rem !important; }
}
@media (max-width: 991.98px) {
  .pe-lg-7,
  .ps-lg-7 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}
.s-0{--s:var(--sp-0)} .s-1{--s:var(--sp-1)} .s-2{--s:var(--sp-2)} .s-3{--s:var(--sp-3)} .s-4{--s:var(--sp-4)}
.s-5{--s:var(--sp-5)} .s-6{--s:var(--sp-6)} .s-7{--s:var(--sp-7)} .s-8{--s:var(--sp-8)}
.sy-0{--s-y:var(--sp-0)} .sy-1{--s-y:var(--sp-1)} .sy-2{--s-y:var(--sp-2)} .sy-3{--s-y:var(--sp-3)} .sy-4{--s-y:var(--sp-4)}
.sy-5{--s-y:var(--sp-5)} .sy-6{--s-y:var(--sp-6)} .sy-7{--s-y:var(--sp-7)} .sy-8{--s-y:var(--sp-8)}
.st-0{--s-t:var(--sp-0)} .st-1{--s-t:var(--sp-1)} .st-2{--s-t:var(--sp-2)} .st-3{--s-t:var(--sp-3)} .st-4{--s-t:var(--sp-4)}
.st-5{--s-t:var(--sp-5)} .st-6{--s-t:var(--sp-6)} .st-7{--s-t:var(--sp-7)} .st-8{--s-t:var(--sp-8)}
.sb-0{--s-b:var(--sp-0)} .sb-1{--s-b:var(--sp-1)} .sb-2{--s-b:var(--sp-2)} .sb-3{--s-b:var(--sp-3)} .sb-4{--s-b:var(--sp-4)}
.sb-5{--s-b:var(--sp-5)} .sb-6{--s-b:var(--sp-6)} .sb-7{--s-b:var(--sp-7)} .sb-8{--s-b:var(--sp-8)}
.mt{margin-top:var(--s-t, var(--s-y, var(--s)))}    .mb{margin-bottom:var(--s-b, var(--s-y, var(--s)))}
.my{margin-block:var(--s-y, var(--s))}              .m{margin:var(--s)}
.pt{padding-top:var(--s-t, var(--s-y, var(--s)))}   .pb{padding-bottom:var(--s-b, var(--s-y, var(--s)))}
.py{padding-block:var(--s-y, var(--s))}             .p{padding:var(--s)}