@charset "UTF-8";
/* ════════════════════════════════════════════════════════════════════════════
 * STYLE
 * Loading Styles & Imports
 * Last updated: 08.10.2025
════════════════════════════════════════════════════════════════════════════ */
/* =========================
   Utils
========================= */
/* ════════════════════════════════════════════════════════════════════════════
 * VARIABLES
 * Global Styles
 * Last updated: 04.08.2025
════════════════════════════════════════════════════════════════════════════ */
/* ─── ◦ GENERAL ◦ ────────────────────────────────────────────────────────── */
/* ─── ◦ TYPOGRAPHY ◦ ─────────────────────────────────────────────────────── */
/* Base Font Settings */
/* Font Weights */
/* Headings */
/* Paragraphs & Small */
/* ─── ◦ SPACING ◦ ────────────────────────────────────────────────────────── */
/* Base Spacing Unit */
/* Spacing Scale */
/* ─── ◦ COLOR ◦ ─────────────────────────────────────────────────────────── */
/* Brand Colors */
/* UI Colors */
/* Greyscale */
/* Status Colors */
/* Overlays (optional) */
/* ─── ◦ BREAKPOINTS ◦ ────────────────────────────────────────────────────── */
/* ─── ◦ RADIUS ◦ ─────────────────────────────────────────────────────────── */
/* Base Radius */
/* ─── ◦ TRANSITIONS ◦ ────────────────────────────────────────────────────── */
/* ─── ◦ SHADOWS ◦ ────────────────────────────────────────────────────────── */
/* ─── ◦ OPACITY ◦ ────────────────────────────────────────────────────────── */
/* =========================
   Mixins
========================= */
/* ════════════════════════════════════════════════════════════════════════════
 * SPACING
 * Mixin für Margin & Padding
 * Last updated: 04.08.2025
════════════════════════════════════════════════════════════════════════════ */
/* Spacing Map */
/* Utility Classes */
.m-xs {
  margin: 0.5rem !important;
}

.mt-xs {
  margin-top: 0.5rem !important;
}

.mr-xs {
  margin-right: 0.5rem !important;
}

.mb-xs {
  margin-bottom: 0.5rem !important;
}

.ml-xs {
  margin-left: 0.5rem !important;
}

.p-xs {
  padding: 0.5rem !important;
}

.pt-xs {
  padding-top: 0.5rem !important;
}

.pr-xs {
  padding-right: 0.5rem !important;
}

.pb-xs {
  padding-bottom: 0.5rem !important;
}

.pl-xs {
  padding-left: 0.5rem !important;
}

.m-sm {
  margin: 0.75rem !important;
}

.mt-sm {
  margin-top: 0.75rem !important;
}

.mr-sm {
  margin-right: 0.75rem !important;
}

.mb-sm {
  margin-bottom: 0.75rem !important;
}

.ml-sm {
  margin-left: 0.75rem !important;
}

.p-sm {
  padding: 0.75rem !important;
}

.pt-sm {
  padding-top: 0.75rem !important;
}

.pr-sm {
  padding-right: 0.75rem !important;
}

.pb-sm {
  padding-bottom: 0.75rem !important;
}

.pl-sm {
  padding-left: 0.75rem !important;
}

.m-md {
  margin: 1rem !important;
}

.mt-md {
  margin-top: 1rem !important;
}

.mr-md {
  margin-right: 1rem !important;
}

.mb-md {
  margin-bottom: 1rem !important;
}

.ml-md {
  margin-left: 1rem !important;
}

.p-md {
  padding: 1rem !important;
}

.pt-md {
  padding-top: 1rem !important;
}

.pr-md {
  padding-right: 1rem !important;
}

.pb-md {
  padding-bottom: 1rem !important;
}

.pl-md {
  padding-left: 1rem !important;
}

.m-lg {
  margin: 1.5rem !important;
}

.mt-lg {
  margin-top: 1.5rem !important;
}

.mr-lg {
  margin-right: 1.5rem !important;
}

.mb-lg {
  margin-bottom: 1.5rem !important;
}

.ml-lg {
  margin-left: 1.5rem !important;
}

.p-lg {
  padding: 1.5rem !important;
}

.pt-lg {
  padding-top: 1.5rem !important;
}

.pr-lg {
  padding-right: 1.5rem !important;
}

.pb-lg {
  padding-bottom: 1.5rem !important;
}

.pl-lg {
  padding-left: 1.5rem !important;
}

.m-xl {
  margin: 2rem !important;
}

.mt-xl {
  margin-top: 2rem !important;
}

.mr-xl {
  margin-right: 2rem !important;
}

.mb-xl {
  margin-bottom: 2rem !important;
}

.ml-xl {
  margin-left: 2rem !important;
}

.p-xl {
  padding: 2rem !important;
}

.pt-xl {
  padding-top: 2rem !important;
}

.pr-xl {
  padding-right: 2rem !important;
}

.pb-xl {
  padding-bottom: 2rem !important;
}

.pl-xl {
  padding-left: 2rem !important;
}

.m-xxl {
  margin: 3rem !important;
}

.mt-xxl {
  margin-top: 3rem !important;
}

.mr-xxl {
  margin-right: 3rem !important;
}

.mb-xxl {
  margin-bottom: 3rem !important;
}

.ml-xxl {
  margin-left: 3rem !important;
}

.p-xxl {
  padding: 3rem !important;
}

.pt-xxl {
  padding-top: 3rem !important;
}

.pr-xxl {
  padding-right: 3rem !important;
}

.pb-xxl {
  padding-bottom: 3rem !important;
}

.pl-xxl {
  padding-left: 3rem !important;
}

.container-content ._inner {
  max-width: var(--gb-container-width);
  margin: 0 auto;
  padding: 100px 15px;
}
@media screen and (max-width: 1440px) {
  .container-content ._inner {
    padding: 50px 15px;
  }
}
.container-intro ._inner {
  max-width: 100%;
  padding: 150px 15px;
}
@media screen and (max-width: 1440px) {
  .container-intro ._inner {
    padding: 150px 15px 50px 15px;
  }
}
.container-full ._inner {
  width: 100%;
  padding: 100px 15px;
}
@media screen and (max-width: 1440px) {
  .container-full ._inner {
    padding: 50px 15px;
  }
}

/* ════════════════════════════════════════════════════════════════════════════
 * VARIABLES
 * Global Styles
 * Last updated: 04.08.2025
════════════════════════════════════════════════════════════════════════════ */
/* ─── ◦ GENERAL ◦ ────────────────────────────────────────────────────────── */
/* ─── ◦ TYPOGRAPHY ◦ ─────────────────────────────────────────────────────── */
/* Base Font Settings */
/* Font Weights */
/* Headings */
/* Paragraphs & Small */
/* ─── ◦ SPACING ◦ ────────────────────────────────────────────────────────── */
/* Base Spacing Unit */
/* Spacing Scale */
/* ─── ◦ COLOR ◦ ─────────────────────────────────────────────────────────── */
/* Brand Colors */
/* UI Colors */
/* Greyscale */
/* Status Colors */
/* Overlays (optional) */
/* ─── ◦ BREAKPOINTS ◦ ────────────────────────────────────────────────────── */
/* ─── ◦ RADIUS ◦ ─────────────────────────────────────────────────────────── */
/* Base Radius */
/* ─── ◦ TRANSITIONS ◦ ────────────────────────────────────────────────────── */
/* ─── ◦ SHADOWS ◦ ────────────────────────────────────────────────────────── */
/* ─── ◦ OPACITY ◦ ────────────────────────────────────────────────────────── */
/* =========================
   Layout
========================= */
body {
  hyphens: auto;
}

iframe {
  width: 100%;
  height: 100vh;
}

.hide {
  display: none !important;
}

.fit-c {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.elementor-icon-wrapper {
  display: flex;
}

.scroll-down {
  width: 140px;
  height: 100px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -100px;
}

p {
  line-height: 28px !important;
}

.trimmer-end > div::after {
  content: "|";
  position: absolute;
  color: #EF852E;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}
.trimmer-end > div:last-of-type::after {
  display: none;
}

#content a:not(.elementor-button) {
  position: relative;
  transition: 0.3s ease all;
  font-weight: 600;
}
#content a:not(.elementor-button)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #EF852E;
  transition: 0.3s ease all;
}
#content a:not(.elementor-button):hover {
  color: #EF852E;
}
#content a:not(.elementor-button):hover::before {
  width: 100%;
}

.site-footer a {
  position: relative;
  transition: 0.3s ease all;
}
.site-footer a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #EF852E;
  transition: 0.3s ease all;
}
.site-footer a:hover {
  color: #EF852E !important;
}
.site-footer a:hover::before {
  width: 100%;
}

.shiny-link {
  position: relative;
  color: #fff; /* Grundfarbe des Textes */
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  /* Permanenter Shiny Sweep */
}
.shiny-link::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(-25deg);
  filter: blur(4px);
  z-index: 1;
  animation: permanent-shine 2.5s linear infinite;
}

@keyframes permanent-shine {
  0% {
    left: -75%;
  }
  25% {
    left: 90%;
  }
  100% {
    left: 140%;
  }
}
.headline-trim::after {
  content: "";
  height: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10%;
  background-color: #EF852E;
  top: 100%;
}
.headline-trim2 .elementor-widget-heading {
  margin: 0 auto;
  background: #0D0D0D;
  position: relative;
  z-index: 2;
  padding: 0 30px;
}
.headline-trim2::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #000000 0%, #EF852E 30%, #EF852E 70%, #000000 100%);
}

.frame-border::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 90%;
  right: 20px;
  bottom: -30px;
  border-radius: 12px;
  border: 2px solid #EF852E;
  top: 50px;
}

p strong {
  color: #EF852E;
}

@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-ExtraBoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-ExtraLightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/wp-content/themes/liquendo/assets/fonts/Roboto-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.container-content ._inner {
  max-width: var(--gb-container-width);
  margin: 0 auto;
  padding: 100px 15px;
}
@media screen and (max-width: 1440px) {
  .container-content ._inner {
    padding: 50px 15px;
  }
}

/* =========================
   Sections
========================= */
.img-gallary .gallery-item {
  position: relative;
}
.img-gallary .gallery-item a {
  position: relative;
  display: flex;
}
.img-gallary .gallery-item a:hover::after {
  opacity: 0.1;
}
.img-gallary .gallery-item a::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  inset: 0;
  background-color: #000;
  opacity: 0.3;
  transition: 0.3s ease all;
}
.img-gallary .gallery-item a img {
  height: 320px !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.contact-form input:hover, .contact-form select:hover, .contact-form textarea:hover {
  border-color: #EF852E !important;
}
.contact-form textarea {
  padding-top: 14px;
}
.contact-form .elementor-field-required label::after {
  content: "*";
  color: #EF852E;
  right: 0;
}

/* =========================
   Templates
========================= */
header.elementor-location-header {
  background-color: transparent !important;
}
header.elementor-location-header .site-header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5490196078);
  backdrop-filter: blur(15px);
  transition: 0.3s ease all;
}
header.elementor-location-header .site-header.scrolled {
  padding: 10px 30px;
  background-color: transparent !important;
  backdrop-filter: unset !important;
}
header.elementor-location-header .site-header.scrolled .inner {
  background-color: rgba(0, 0, 0, 0.5490196078);
  backdrop-filter: blur(10px);
  padding: 0 30px;
}
header.elementor-location-header .site-header .e-con-inner {
  margin: unset;
  width: 100%;
  max-width: unset;
}
header.elementor-location-header .site-header .e-con-inner .inner {
  margin: 0 auto;
  width: 100%;
  max-width: var(--content-width);
  transition: 0.3s ease all;
}
header.elementor-location-header .site-header .e-con-inner .inner img {
  transition: 0.3s ease all;
}
header.elementor-location-header .site-header .e-con-inner .inner img:hover {
  opacity: 0.7;
}
header.elementor-location-header .site-header .e-con-inner .inner .eael-simple-menu-container {
  display: flex;
  align-items: center;
}
header.elementor-location-header .site-header .e-con-inner .inner > .e-con-inner {
  width: 100% !important;
}
header.elementor-location-header .site-header .e-con-inner .inner > .e-con-inner > div {
  width: -moz-fit-content;
  width: fit-content;
}
header.elementor-location-header .site-header .e-con-inner .inner > .e-con-inner > div.navigation {
  display: flex;
  margin-left: auto;
}
header.elementor-location-header .site-header .e-con-inner .inner > .e-con-inner > div.navigation li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 2px;
  background-color: #EF852E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
header.elementor-location-header .site-header .e-con-inner .inner > .e-con-inner > div.navigation li a.elementor-item-active::before {
  transform: scaleX(1);
}
header.elementor-location-header .site-header .e-con-inner .inner > .e-con-inner > div.navigation li a:hover::before {
  transform: scaleX(1);
}
@media screen and (max-width: 1024px) {
  header.elementor-location-header .site-header .e-con-inner .inner > .e-con-inner > div.navigation nav.elementor-nav-menu--dropdown {
    display: none;
  }
  header.elementor-location-header .site-header .e-con-inner .inner > .e-con-inner > div.navigation .elementor-menu-toggle svg {
    width: 34px;
    height: 34px;
  }
}

body .elementor-nav-menu--dropdown.menu-open {
  position: relative;
  background-color: rgba(0, 0, 0, 0.6);
  height: 100vh !important;
  position: fixed;
  inset: 0;
  z-index: 99999;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  overflow: hidden !important;
  touch-action: none !important;
  -webkit-overflow-scrolling: touch;
}
body .elementor-nav-menu--dropdown.menu-open ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body .elementor-nav-menu--dropdown.menu-open ul li {
  display: flex;
  justify-content: center;
}
body .elementor-nav-menu--dropdown.menu-open ul li a {
  font-size: 48px;
  line-height: 48px;
  font-weight: 600;
  background-color: transparent !important;
  color: #fff !important;
  text-align: center;
  padding: 0;
}
body .elementor-nav-menu--dropdown.menu-open ul li a.elementor-item-active {
  color: #EF852E !important;
}
body .elementor-nav-menu--dropdown.menu-open .elementor-widget-button {
  transform: scale(1.2);
}
body .elementor-nav-menu--dropdown.menu-open .elementor-menu-toggle {
  position: absolute;
  top: 8%;
  right: 8%;
}
body .elementor-nav-menu--dropdown.menu-open .elementor-menu-toggle svg {
  fill: #fff;
  transform: scale(2);
}

/* ════════════════════════════════════════════════════════════════════════════
 * BUTTON TEMPLATE
 * Last updated: 09.10.2025
════════════════════════════════════════════════════════════════════════════ */
.b-primary {
  width: -moz-fit-content;
  width: fit-content;
}
.b-primary a {
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 600 !important;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 6px;
  border: 2px solid #EF852E;
  color: #fff !important;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* ─── VARIANTS ───────────────────────── */
}
@keyframes permanent-shine {
  0% {
    left: -75%;
  }
  25% {
    left: 90%;
  }
  100% {
    left: 200%;
  }
}
.b-primary a {
  position: relative;
  overflow: hidden;
  background: #EF852E;
  color: #fff;
  border: 1px solid #EF852E;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  /* Text bleibt über allem */
}
.b-primary a span, .b-primary a {
  position: relative;
  z-index: 2;
}
.b-primary a {
  /* Permanenter Shiny Sweep */
}
.b-primary a::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(-25deg);
  filter: blur(4px);
  z-index: 1;
  animation: permanent-shine 2.5s linear infinite;
}
.b-primary a {
  /* Hover Full Overlay */
}
.b-primary a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.b-primary a:hover::before {
  opacity: 1;
}
.b-primary a:hover {
  color: #EF852E;
  filter: brightness(1.1);
  border-color: transparent !important;
  box-shadow: 1px 1px 10px 1px #EF852E !important;
}
.b-primary a:hover::after {
  display: none;
}
.b-primary a {
  /* ─── STATES ───────────────────────── */
}
.b-primary a:hover, .b-primary a:focus {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.b-primary a:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  opacity: 0.75;
}
.b-primary a:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background-color: #e5e7eb;
  color: #6b7280;
  box-shadow: none;
}
.b-secondary {
  width: -moz-fit-content;
  width: fit-content;
}
.b-secondary a {
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 600 !important;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 6px;
  border: 2px solid #EF852E;
  color: #fff !important;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* ─── VARIANTS ───────────────────────── */
}
@keyframes permanent-shine {
  0% {
    left: -75%;
  }
  25% {
    left: 90%;
  }
  100% {
    left: 200%;
  }
}
.b-secondary a {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  color: #EF852E;
  border-color: #EF852E;
}
.b-secondary a::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #EF852E;
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}
.b-secondary a {
  /* Text bleibt oben */
}
.b-secondary a span, .b-secondary a {
  position: relative;
  z-index: 1;
}
.b-secondary a:hover {
  color: #fff;
  box-shadow: 1px 1px 10px 1px #EF852E !important;
  filter: brightness(1.1);
}
.b-secondary a:hover::before {
  transform: translate(-50%, -50%) scale(15);
}
.b-secondary a {
  /* ─── STATES ───────────────────────── */
}
.b-secondary a:hover, .b-secondary a:focus {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.b-secondary a:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  opacity: 0.75;
}
.b-secondary a:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background-color: #e5e7eb;
  color: #6b7280;
  box-shadow: none;
}

.image {
  position: relative;
  margin: auto;
  overflow: hidden;
  display: flex;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}
.image img {
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: #000;
  opacity: 0.1;
  transition: 0.3s ease all;
}/*# sourceMappingURL=style.css.map */