*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

html {
  font-size: 100%;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111827;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #111827;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.125rem;
}
@media (min-width: 1024px) {
  h5 {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1rem;
}
@media (min-width: 1024px) {
  h6 {
    font-size: 1.125rem;
  }
}

p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #3b82f6;
  text-decoration: underline;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(10.0317073171, 89.1707317073, 218.4682926829);
}
a:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
ul li,
ol li {
  margin-bottom: 0.5rem;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 0.875rem;
  color: #6b7280;
}

code,
pre {
  font-family: "Fira Code", "Monaco", "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: 0.875rem;
}

code {
  background-color: #f3f4f6;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}

pre {
  background-color: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1rem;
}
pre code {
  background-color: transparent;
  padding: 0;
}

blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #374151;
}

hr {
  border: none;
  height: 1px;
  background-color: #e5e7eb;
  margin: 2rem 0;
}

::selection {
  background-color: rgba(59, 130, 246, 0.2);
  color: #111827;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}
.grid--2-cols {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid--3-cols {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid--4-cols {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flex {
  display: flex;
}
.flex--center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex--column {
  display: flex;
  flex-direction: column;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--nowrap {
  flex-wrap: nowrap;
}

.section {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}
.section--sm {
  padding: 3rem 0;
}
.section--lg {
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .section--lg {
    padding: 7rem 0;
  }
}

.mb-0 {
  margin-bottom: 0;
}

.mb-xs {
  margin-bottom: 0.25rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.mb-2xl {
  margin-bottom: 3rem;
}

.mb-3xl {
  margin-bottom: 4rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-xs {
  margin-top: 0.25rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mt-2xl {
  margin-top: 3rem;
}

.mt-3xl {
  margin-top: 4rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-xs {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-sm {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-md {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-lg {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-xl {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-2xl {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-3xl {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-xs {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-sm {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-md {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-lg {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-xl {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-2xl {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-3xl {
  padding-left: 4rem;
  padding-right: 4rem;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  .hidden-tablet {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hidden-desktop {
    display: none;
  }
}
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media (min-width: 768px) {
  .text-left-tablet {
    text-align: left;
  }
  .text-center-tablet {
    text-align: center;
  }
  .text-right-tablet {
    text-align: right;
  }
}
@media (min-width: 1024px) {
  .text-left-desktop {
    text-align: left;
  }
  .text-center-desktop {
    text-align: center;
  }
  .text-right-desktop {
    text-align: right;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #3b82f6;
  color: #ffffff;
}
.btn--primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.btn--primary:hover {
  background-color: rgb(11.1512195122, 99.1219512195, 242.8487804878);
}
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}
.btn--secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.btn--secondary:hover {
  background-color: #3b82f6;
  color: #ffffff;
}
.btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: transparent;
  color: #111827;
}
.btn--ghost:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.btn--ghost:hover {
  background-color: #f3f4f6;
}
.btn--danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #ef4444;
  color: #ffffff;
}
.btn--danger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.btn--danger:hover {
  background-color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
}
.btn--success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #10b981;
  color: #ffffff;
}
.btn--success:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.btn--success:hover {
  background-color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}
.btn--sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
}
.btn--xl {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}
.btn--full {
  width: 100%;
}
.btn--rounded {
  border-radius: 9999px;
}
.btn:disabled, .btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn:disabled:hover, .btn--disabled:hover {
  transform: none;
}
.btn--loading {
  position: relative;
  color: transparent;
}
.btn--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn-group {
  display: flex;
  gap: 0.5rem;
}
.btn-group--vertical {
  flex-direction: column;
}
.btn-group--center {
  justify-content: center;
}
.btn-group--end {
  justify-content: flex-end;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}
.card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.card:hover {
  transform: translateY(-2px);
}
.card__header {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}
.card__header h1, .card__header h2, .card__header h3, .card__header h4, .card__header h5, .card__header h6 {
  margin-bottom: 0;
}
.card__body p:last-child {
  margin-bottom: 0;
}
.card__footer {
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__footer--center {
  justify-content: center;
}
.card__footer--end {
  justify-content: flex-end;
}
.card__image {
  width: calc(100% + 3rem);
  margin: -1.5rem -1.5rem 1.5rem -1.5rem;
  border-radius: 0.75rem 0.75rem 0 0;
}
.card__image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem 0.75rem 0 0;
}
.card--flat {
  box-shadow: none;
  border: 1px solid #e5e7eb;
}
.card--flat:hover {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.card--outline {
  background-color: transparent;
  border: 2px solid #3b82f6;
  box-shadow: none;
}
.card--outline:hover {
  background-color: rgba(59, 130, 246, 0.05);
  box-shadow: none;
}
.card--dark {
  background-color: #111827;
  color: #ffffff;
}
.card--dark .card__header {
  border-bottom-color: #374151;
}
.card--dark .card__footer {
  border-top-color: #374151;
}
.card--sm {
  padding: 1rem;
}
.card--lg {
  padding: 3rem;
}
.card--interactive {
  cursor: pointer;
  transition: all 0.3s ease;
}
.card--interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card-grid--2-cols {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .card-grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .card-grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
.card-grid--4-cols {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .card-grid--4-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .card-grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  text-align: center;
}
.feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.feature-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background-color: #3b82f6;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}
.feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-card__description {
  color: #374151;
  line-height: 1.75;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.testimonial-card__quote {
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-card__quote::before {
  content: '"';
  font-size: 1.875rem;
  color: #3b82f6;
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testimonial-card__author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  overflow: hidden;
}
.testimonial-card__author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card__author-info {
  text-align: left;
}
.testimonial-card__author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.testimonial-card__author-info p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #111827;
}
.form-label--required::after {
  content: " *";
  color: #ef4444;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-input:disabled, .form-select:disabled, .form-textarea:disabled {
  background-color: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.6;
}
.form-input--error {
  border-color: #ef4444;
}
.form-input--error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-input--success {
  border-color: #10b981;
}
.form-input--success:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.form-input--sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.form-input--lg {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.form-select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px 12px;
  padding-right: 2rem;
  appearance: none;
  cursor: pointer;
}
.form-select:focus {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%233b82f6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.form-check:last-child {
  margin-bottom: 0;
}
.form-check__input {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}
.form-check__input:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
.form-check__label {
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
}
.form-check--inline {
  display: inline-flex;
  margin-right: 1.5rem;
}

.form-message {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.form-message--error {
  color: #ef4444;
}
.form-message--success {
  color: #10b981;
}
.form-message--warning {
  color: #f59e0b;
}
.form-message--info {
  color: #06b6d4;
}

.form-help {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.input-group {
  display: flex;
}
.input-group .form-input, .input-group .form-textarea, .input-group .form-select {
  border-radius: 0;
}
.input-group .form-input:first-child, .input-group .form-textarea:first-child, .input-group .form-select:first-child {
  border-radius: 0.5rem 0 0 0.5rem;
}
.input-group .form-input:last-child, .input-group .form-textarea:last-child, .input-group .form-select:last-child {
  border-radius: 0 0.5rem 0.5rem 0;
}
.input-group .form-input:not(:first-child), .input-group .form-textarea:not(:first-child), .input-group .form-select:not(:first-child) {
  border-left: none;
}
.input-group .form-input:focus, .input-group .form-textarea:focus, .input-group .form-select:focus {
  z-index: 1;
  position: relative;
  border-left: 2px solid #3b82f6;
}
.input-group__addon {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #f3f4f6;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.input-group__addon:first-child {
  border-radius: 0.5rem 0 0 0.5rem;
  border-right: none;
}
.input-group__addon:last-child {
  border-radius: 0 0.5rem 0.5rem 0;
  border-left: none;
}

.form-row {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.form-row .form-group {
  flex: 1;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .form-actions {
    flex-direction: column;
  }
  .form-actions .btn {
    width: 100%;
  }
}
.form-actions--center {
  justify-content: center;
}
.form-actions--end {
  justify-content: flex-end;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .nav__list {
    flex-direction: column;
    gap: 1rem;
  }
}
.nav__item {
  position: relative;
}
.nav__link {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.nav__link:hover {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);
}
.nav__link--active {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);
}

.header {
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1020;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.header__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3b82f6;
  text-decoration: none;
}
.header__logo:hover {
  color: rgb(11.1512195122, 99.1219512195, 242.8487804878);
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #111827;
}
@media (max-width: 768px) {
  .header__toggle {
    display: block;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: #ffffff;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .mobile-nav__panel {
    width: 280px;
  }
}
.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}
.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #111827;
}
.mobile-nav__list {
  margin-top: 4rem;
}
.mobile-nav__list .nav__link {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-nav__list .nav__link:last-child {
  border-bottom: none;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  color: #6b7280;
}
.breadcrumbs__link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.breadcrumbs__link:hover {
  color: #3b82f6;
}
.breadcrumbs__link--current {
  color: #111827;
  font-weight: 500;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.pagination__item {
  display: flex;
  align-items: center;
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.pagination__link:hover {
  background-color: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}
.pagination__link--active {
  background-color: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}
.pagination__link--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination__link--disabled:hover {
  background-color: transparent;
  color: #111827;
  border-color: #d1d5db;
}
.pagination__prev, .pagination__next {
  padding: 0 1rem;
  width: auto;
}

.footer {
  background-color: #111827;
  color: #ffffff;
  padding: 4rem 0 2rem;
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__section h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer__nav .nav__link {
  color: #d1d5db;
  padding: 0.25rem 0;
}
.footer__nav .nav__link:hover {
  color: #ffffff;
  background-color: transparent;
}
.footer__bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .hero {
    min-height: 70vh;
    padding: 5rem 0;
  }
}
.hero--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}
.hero--bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero--bg > * {
  position: relative;
  z-index: 2;
}
.hero--gradient {
  background: linear-gradient(135deg, #3b82f6, #64748b);
  color: #ffffff;
}
.hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .hero__content {
    padding: 0 1.5rem;
  }
}
.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}
.hero__subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 3rem;
  opacity: 0.9;
}
@media (min-width: 1024px) {
  .hero__subtitle {
    font-size: 1.5rem;
  }
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}
.hero--sm {
  min-height: 40vh;
  padding: 3rem 0;
}
@media (min-width: 1024px) {
  .hero--sm {
    min-height: 50vh;
  }
}
.hero--lg {
  min-height: 80vh;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .hero--lg {
    min-height: 90vh;
    padding: 7rem 0;
  }
}
.hero--full {
  min-height: 100vh;
  padding: 4rem 0;
}

.hero-banner {
  background-color: #f3f4f6;
  padding: 4rem 0;
  text-align: center;
}
.hero-banner__content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}
.hero-banner__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .hero-banner__title {
    font-size: 2.25rem;
  }
}
.hero-banner__subtitle {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .hero-banner__subtitle {
    font-size: 1.25rem;
  }
}
.hero-banner--with-breadcrumbs {
  text-align: left;
}
.hero-banner--with-breadcrumbs .breadcrumbs {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-section {
  background-color: #3b82f6;
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}
.cta-section__content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}
.cta-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cta-section__title {
    font-size: 2.25rem;
  }
}
.cta-section__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .cta-section__subtitle {
    font-size: 1.25rem;
  }
}
.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }
}
.cta-section__actions .btn {
  background-color: #ffffff;
  color: #3b82f6;
}
.cta-section__actions .btn:hover {
  background-color: #f3f4f6;
}
.cta-section__actions .btn--outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.cta-section__actions .btn--outline:hover {
  background-color: #ffffff;
  color: #3b82f6;
}

.gallery {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery {
    gap: 1.5rem;
  }
}
.gallery--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.gallery--3-cols {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .gallery--3-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery--4-cols {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .gallery--4-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery--4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery--masonry {
  column-count: 2;
  column-gap: 1rem;
}
@media (min-width: 768px) {
  .gallery--masonry {
    column-count: 3;
    column-gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .gallery--masonry {
    column-count: 4;
  }
}
.gallery--masonry .gallery__item {
  break-inside: avoid;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .gallery--masonry .gallery__item {
    margin-bottom: 1.5rem;
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #f3f4f6;
  transition: transform 0.3s ease;
}
.gallery__item:hover {
  transform: translateY(-2px);
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
}
.gallery__item__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.gallery__item__description {
  font-size: 0.875rem;
  opacity: 0.9;
}
.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 768px) {
  .gallery__item--large {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.gallery__item--wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .gallery__item--wide {
    grid-column: span 1;
  }
}
.gallery__item--tall {
  grid-row: span 2;
}
@media (max-width: 768px) {
  .gallery__item--tall {
    grid-row: span 1;
  }
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: z-index("modal");
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox__content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: -2rem;
  right: -2rem;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111827;
  transition: all 0.3s ease;
}
.lightbox__close:hover {
  background: #f3f4f6;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111827;
  transition: all 0.3s ease;
}
.lightbox__nav:hover {
  background: #ffffff;
}
.lightbox__nav--prev {
  left: 1.5rem;
}
.lightbox__nav--next {
  right: 1.5rem;
}
.lightbox__caption {
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}
.lightbox__caption h3 {
  margin-bottom: 0.5rem;
}
.lightbox__caption p {
  margin-bottom: 0;
  color: #374151;
}

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .gallery-filters {
    flex-direction: column;
    align-items: center;
  }
}
.gallery-filters__item {
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-filters__item:hover {
  background: #e5e7eb;
}
.gallery-filters__item--active {
  background: #3b82f6;
  color: #ffffff;
}
.gallery-filters__item--active:hover {
  background: rgb(11.1512195122, 99.1219512195, 242.8487804878);
}

.gallery-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}
.gallery-loading__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.logo-mobile {
  display: block;
}
@media (min-width: 1024px) {
  .logo-mobile {
    display: none;
  }
}

.logo-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .logo-desktop {
    display: block;
    position: fixed;
    top: 4rem;
    left: 5rem;
    z-index: 1000;
    width: 100px;
    height: 120px;
  }
}

.top-bar {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 4rem;
  background: white;
  z-index: 200;
}
@media (min-width: 1024px) {
  .top-bar {
    display: none;
  }
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 2rem 1rem 0 1rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1000;
}
@media (min-width: 768px) {
  .header-bar {
    padding: 2rem 2rem 0 2rem;
  }
}
@media (min-width: 1024px) {
  .header-bar {
    padding: 2rem 2rem 0 2rem;
  }
}
.header-bar .sticky-logo {
  position: static;
  width: 80px;
  height: 100px;
}
.header-bar .sticky-logo .logo-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.header-bar .sticky-logo .logo {
  width: 80px;
  height: 100px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.header-bar .sticky-logo .logo:hover {
  opacity: 0.8;
}
.header-bar .info-link {
  font-size: 2rem;
  font-weight: 400;
  margin-top: 0.5rem;
  text-decoration: none;
  color: #111827;
  position: static;
}
@media (min-width: 1024px) {
  .header-bar .info-link {
    display: none;
  }
}

.info-link-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .info-link-desktop {
    display: block;
    position: fixed;
    left: 5rem;
    bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    color: #111827;
    z-index: 1001;
  }
}

.main-projects {
  margin-top: 8rem;
}
@media (min-width: 1024px) {
  .main-projects {
    margin-top: 0;
  }
}

.seo-title {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.main-projects {
  margin-left: 0;
  padding-top: 0;
}
@media (min-width: 768px) {
  .main-projects {
    margin-left: 140px;
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  .main-projects {
    margin-left: 15%;
    padding-top: 0;
    position: relative;
    z-index: auto;
    background: none;
  }
}

.project-item {
  margin-bottom: 4rem;
  min-height: 60vh;
  display: block;
}
.project-item--left .project-content, .project-item--right .project-content {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 16rem;
}
@media (min-width: 1024px) {
  .project-item {
    margin-bottom: 16rem;
    min-height: 80vh;
    display: initial;
  }
  .project-item--left .project-content {
    max-width: 1400px;
    margin-left: 0;
  }
  .project-item--right {
    display: flex;
    justify-content: flex-end;
    margin-left: 0;
    margin-right: 30%;
  }
  .project-item--right .project-content {
    max-width: 1400px;
    margin-left: auto;
  }
}

.project-content {
  display: flex;
  flex-direction: column;
}

.project-title {
  position: sticky;
  top: 2rem;
  z-index: 500;
  background: white;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  font-weight: 600;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}
@media (min-width: 768px) {
  .project-title {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1024px) {
  .project-title {
    top: 0;
    padding-top: 2rem;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    padding-right: 2rem;
  }
}
@media (min-width: 1600px) {
  .project-title {
    font-size: clamp(4rem, 4.5vw, 4.75rem);
  }
}

.project-image {
  z-index: 100;
  position: relative;
}
.project-image .optimized-image,
.project-image .simple-image {
  display: block;
  width: 100%;
  max-width: var(--image-scale, 100%);
}
.project-image .optimized-image img,
.project-image .simple-image img {
  width: 100%;
  height: auto;
  min-height: 40vh;
  object-fit: cover;
}
.project-image img {
  width: 100%;
  max-width: var(--image-scale, 100%);
  height: auto;
  min-height: 40vh;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .project-image .optimized-image img,
  .project-image img {
    min-height: 60vh;
  }
}

.content-fallback {
  text-align: center;
  padding: 4rem 0;
}
.content-fallback .primary-message {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
}
.content-fallback .secondary-message {
  font-size: 1rem;
  color: #6b7280;
}

h1.impressum-title {
  color: white;
}

article h2 {
  color: white;
}
article p {
  color: white;
}

.m-0 {
  margin: 0 !important;
}

.m-xs {
  margin: 0.25rem !important;
}

.m-sm {
  margin: 0.5rem !important;
}

.m-md {
  margin: 1rem !important;
}

.m-lg {
  margin: 1.5rem !important;
}

.m-xl {
  margin: 2rem !important;
}

.m-2xl {
  margin: 3rem !important;
}

.m-3xl {
  margin: 4rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-xs {
  margin-top: 0.25rem !important;
}

.mt-sm {
  margin-top: 0.5rem !important;
}

.mt-md {
  margin-top: 1rem !important;
}

.mt-lg {
  margin-top: 1.5rem !important;
}

.mt-xl {
  margin-top: 2rem !important;
}

.mt-2xl {
  margin-top: 3rem !important;
}

.mt-3xl {
  margin-top: 4rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-xs {
  margin-bottom: 0.25rem !important;
}

.mb-sm {
  margin-bottom: 0.5rem !important;
}

.mb-md {
  margin-bottom: 1rem !important;
}

.mb-lg {
  margin-bottom: 1.5rem !important;
}

.mb-xl {
  margin-bottom: 2rem !important;
}

.mb-2xl {
  margin-bottom: 3rem !important;
}

.mb-3xl {
  margin-bottom: 4rem !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-xs {
  margin-left: 0.25rem !important;
}

.ml-sm {
  margin-left: 0.5rem !important;
}

.ml-md {
  margin-left: 1rem !important;
}

.ml-lg {
  margin-left: 1.5rem !important;
}

.ml-xl {
  margin-left: 2rem !important;
}

.ml-2xl {
  margin-left: 3rem !important;
}

.ml-3xl {
  margin-left: 4rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-xs {
  margin-right: 0.25rem !important;
}

.mr-sm {
  margin-right: 0.5rem !important;
}

.mr-md {
  margin-right: 1rem !important;
}

.mr-lg {
  margin-right: 1.5rem !important;
}

.mr-xl {
  margin-right: 2rem !important;
}

.mr-2xl {
  margin-right: 3rem !important;
}

.mr-3xl {
  margin-right: 4rem !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-xs {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.mx-sm {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.mx-md {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mx-lg {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mx-xl {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.mx-2xl {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.mx-3xl {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-xs {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-sm {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-md {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-lg {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-xl {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-2xl {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-3xl {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-xs {
  padding: 0.25rem !important;
}

.p-sm {
  padding: 0.5rem !important;
}

.p-md {
  padding: 1rem !important;
}

.p-lg {
  padding: 1.5rem !important;
}

.p-xl {
  padding: 2rem !important;
}

.p-2xl {
  padding: 3rem !important;
}

.p-3xl {
  padding: 4rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-xs {
  padding-top: 0.25rem !important;
}

.pt-sm {
  padding-top: 0.5rem !important;
}

.pt-md {
  padding-top: 1rem !important;
}

.pt-lg {
  padding-top: 1.5rem !important;
}

.pt-xl {
  padding-top: 2rem !important;
}

.pt-2xl {
  padding-top: 3rem !important;
}

.pt-3xl {
  padding-top: 4rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-xs {
  padding-bottom: 0.25rem !important;
}

.pb-sm {
  padding-bottom: 0.5rem !important;
}

.pb-md {
  padding-bottom: 1rem !important;
}

.pb-lg {
  padding-bottom: 1.5rem !important;
}

.pb-xl {
  padding-bottom: 2rem !important;
}

.pb-2xl {
  padding-bottom: 3rem !important;
}

.pb-3xl {
  padding-bottom: 4rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-xs {
  padding-left: 0.25rem !important;
}

.pl-sm {
  padding-left: 0.5rem !important;
}

.pl-md {
  padding-left: 1rem !important;
}

.pl-lg {
  padding-left: 1.5rem !important;
}

.pl-xl {
  padding-left: 2rem !important;
}

.pl-2xl {
  padding-left: 3rem !important;
}

.pl-3xl {
  padding-left: 4rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-xs {
  padding-right: 0.25rem !important;
}

.pr-sm {
  padding-right: 0.5rem !important;
}

.pr-md {
  padding-right: 1rem !important;
}

.pr-lg {
  padding-right: 1.5rem !important;
}

.pr-xl {
  padding-right: 2rem !important;
}

.pr-2xl {
  padding-right: 3rem !important;
}

.pr-3xl {
  padding-right: 4rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-xs {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-sm {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-md {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-lg {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-xl {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.px-2xl {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.px-3xl {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-xs {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-sm {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-md {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-lg {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-xl {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-2xl {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-3xl {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

@media (min-width: 768px) {
  .mt-md-tablet {
    margin-top: 1rem !important;
  }
  .mt-lg-tablet {
    margin-top: 1.5rem !important;
  }
  .mt-xl-tablet {
    margin-top: 2rem !important;
  }
  .mt-2xl-tablet {
    margin-top: 3rem !important;
  }
  .mt-3xl-tablet {
    margin-top: 4rem !important;
  }
  .mb-md-tablet {
    margin-bottom: 1rem !important;
  }
  .mb-lg-tablet {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-tablet {
    margin-bottom: 2rem !important;
  }
  .mb-2xl-tablet {
    margin-bottom: 3rem !important;
  }
  .mb-3xl-tablet {
    margin-bottom: 4rem !important;
  }
  .py-md-tablet {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-tablet {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-tablet {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-2xl-tablet {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-3xl-tablet {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .mt-md-desktop {
    margin-top: 1rem !important;
  }
  .mt-lg-desktop {
    margin-top: 1.5rem !important;
  }
  .mt-xl-desktop {
    margin-top: 2rem !important;
  }
  .mt-2xl-desktop {
    margin-top: 3rem !important;
  }
  .mt-3xl-desktop {
    margin-top: 4rem !important;
  }
  .mb-md-desktop {
    margin-bottom: 1rem !important;
  }
  .mb-lg-desktop {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-desktop {
    margin-bottom: 2rem !important;
  }
  .mb-2xl-desktop {
    margin-bottom: 3rem !important;
  }
  .mb-3xl-desktop {
    margin-bottom: 4rem !important;
  }
  .py-md-desktop {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-desktop {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-desktop {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-2xl-desktop {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-3xl-desktop {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
.text-xs {
  font-size: 0.75rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
}

.text-base {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
}

.text-xl {
  font-size: 1.25rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
}

.text-4xl {
  font-size: 2.25rem !important;
}

.text-5xl {
  font-size: 3rem !important;
}

.text-6xl {
  font-size: 3.75rem !important;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.leading-tight {
  line-height: 1.25 !important;
}

.leading-normal {
  line-height: 1.5 !important;
}

.leading-relaxed {
  line-height: 1.75 !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-primary {
  color: #111827 !important;
}

.text-secondary {
  color: #374151 !important;
}

.text-muted {
  color: #6b7280 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-black {
  color: #000000 !important;
}

.text-brand-primary {
  color: #3b82f6 !important;
}

.text-brand-secondary {
  color: #64748b !important;
}

.text-brand-accent {
  color: #f59e0b !important;
}

.text-success {
  color: #10b981 !important;
}

.text-warning {
  color: #f59e0b !important;
}

.text-error {
  color: #ef4444 !important;
}

.text-info {
  color: #06b6d4 !important;
}

.text-gray-50 {
  color: #f9fafb !important;
}

.text-gray-100 {
  color: #f3f4f6 !important;
}

.text-gray-200 {
  color: #e5e7eb !important;
}

.text-gray-300 {
  color: #d1d5db !important;
}

.text-gray-400 {
  color: #9ca3af !important;
}

.text-gray-500 {
  color: #6b7280 !important;
}

.text-gray-600 {
  color: #4b5563 !important;
}

.text-gray-700 {
  color: #374151 !important;
}

.text-gray-800 {
  color: #1f2937 !important;
}

.text-gray-900 {
  color: #111827 !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.normal-case {
  text-transform: none !important;
}

.underline {
  text-decoration: underline !important;
}

.line-through {
  text-decoration: line-through !important;
}

.no-underline {
  text-decoration: none !important;
}

.italic {
  font-style: italic !important;
}

.not-italic {
  font-style: normal !important;
}

.tracking-tight {
  letter-spacing: -0.025em !important;
}

.tracking-normal {
  letter-spacing: 0em !important;
}

.tracking-wide {
  letter-spacing: 0.025em !important;
}

.tracking-wider {
  letter-spacing: 0.05em !important;
}

.tracking-widest {
  letter-spacing: 0.1em !important;
}

.break-normal {
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.break-words {
  overflow-wrap: break-word !important;
}

.break-all {
  word-break: break-all !important;
}

.whitespace-normal {
  white-space: normal !important;
}

.whitespace-nowrap {
  white-space: nowrap !important;
}

.whitespace-pre {
  white-space: pre !important;
}

.whitespace-pre-line {
  white-space: pre-line !important;
}

.whitespace-pre-wrap {
  white-space: pre-wrap !important;
}

.truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.text-ellipsis {
  text-overflow: ellipsis !important;
}

.text-clip {
  text-overflow: clip !important;
}

@media (max-width: 768px) {
  .text-xs-mobile {
    font-size: 0.75rem !important;
  }
  .text-sm-mobile {
    font-size: 0.875rem !important;
  }
  .text-base-mobile {
    font-size: 1rem !important;
  }
  .text-lg-mobile {
    font-size: 1.125rem !important;
  }
  .text-xl-mobile {
    font-size: 1.25rem !important;
  }
  .text-2xl-mobile {
    font-size: 1.5rem !important;
  }
  .text-3xl-mobile {
    font-size: 1.875rem !important;
  }
  .text-left-mobile {
    text-align: left !important;
  }
  .text-center-mobile {
    text-align: center !important;
  }
  .text-right-mobile {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .text-xs-tablet {
    font-size: 0.75rem !important;
  }
  .text-sm-tablet {
    font-size: 0.875rem !important;
  }
  .text-base-tablet {
    font-size: 1rem !important;
  }
  .text-lg-tablet {
    font-size: 1.125rem !important;
  }
  .text-xl-tablet {
    font-size: 1.25rem !important;
  }
  .text-2xl-tablet {
    font-size: 1.5rem !important;
  }
  .text-3xl-tablet {
    font-size: 1.875rem !important;
  }
  .text-4xl-tablet {
    font-size: 2.25rem !important;
  }
  .text-left-tablet {
    text-align: left !important;
  }
  .text-center-tablet {
    text-align: center !important;
  }
  .text-right-tablet {
    text-align: right !important;
  }
}
@media (min-width: 1024px) {
  .text-xs-desktop {
    font-size: 0.75rem !important;
  }
  .text-sm-desktop {
    font-size: 0.875rem !important;
  }
  .text-base-desktop {
    font-size: 1rem !important;
  }
  .text-lg-desktop {
    font-size: 1.125rem !important;
  }
  .text-xl-desktop {
    font-size: 1.25rem !important;
  }
  .text-2xl-desktop {
    font-size: 1.5rem !important;
  }
  .text-3xl-desktop {
    font-size: 1.875rem !important;
  }
  .text-4xl-desktop {
    font-size: 2.25rem !important;
  }
  .text-5xl-desktop {
    font-size: 3rem !important;
  }
  .text-6xl-desktop {
    font-size: 3.75rem !important;
  }
  .text-left-desktop {
    text-align: left !important;
  }
  .text-center-desktop {
    text-align: center !important;
  }
  .text-right-desktop {
    text-align: right !important;
  }
}
.font-sans {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.font-heading {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.font-mono {
  font-family: "Fira Code", "Monaco", "Cascadia Code", "Segoe UI Mono", monospace !important;
}

.select-none {
  user-select: none !important;
}

.select-text {
  user-select: text !important;
}

.select-all {
  user-select: all !important;
}

.select-auto {
  user-select: auto !important;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.inline {
  display: inline !important;
}

.flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

.table {
  display: table !important;
}

.inline-table {
  display: inline-table !important;
}

.table-caption {
  display: table-caption !important;
}

.table-cell {
  display: table-cell !important;
}

.table-column {
  display: table-column !important;
}

.table-column-group {
  display: table-column-group !important;
}

.table-footer-group {
  display: table-footer-group !important;
}

.table-header-group {
  display: table-header-group !important;
}

.table-row-group {
  display: table-row-group !important;
}

.table-row {
  display: table-row !important;
}

.flow-root {
  display: flow-root !important;
}

.grid {
  display: grid !important;
}

.inline-grid {
  display: inline-grid !important;
}

.contents {
  display: contents !important;
}

.list-item {
  display: list-item !important;
}

.hidden {
  display: none !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-col {
  flex-direction: column !important;
}

.flex-col-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-1 {
  flex: 1 1 0% !important;
}

.flex-auto {
  flex: 1 1 auto !important;
}

.flex-initial {
  flex: 0 1 auto !important;
}

.flex-none {
  flex: none !important;
}

.flex-grow {
  flex-grow: 1 !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-shrink {
  flex-shrink: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.justify-evenly {
  justify-content: space-evenly !important;
}

.items-start {
  align-items: flex-start !important;
}

.items-end {
  align-items: flex-end !important;
}

.items-center {
  align-items: center !important;
}

.items-baseline {
  align-items: baseline !important;
}

.items-stretch {
  align-items: stretch !important;
}

.self-auto {
  align-self: auto !important;
}

.self-start {
  align-self: flex-start !important;
}

.self-end {
  align-self: flex-end !important;
}

.self-center {
  align-self: center !important;
}

.self-stretch {
  align-self: stretch !important;
}

.self-baseline {
  align-self: baseline !important;
}

.content-start {
  align-content: flex-start !important;
}

.content-end {
  align-content: flex-end !important;
}

.content-center {
  align-content: center !important;
}

.content-between {
  align-content: space-between !important;
}

.content-around {
  align-content: space-around !important;
}

.content-evenly {
  align-content: space-evenly !important;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}

.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
}

.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
}

.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
}

.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
}

.col-span-1 {
  grid-column: span 1/span 1 !important;
}

.col-span-2 {
  grid-column: span 2/span 2 !important;
}

.col-span-3 {
  grid-column: span 3/span 3 !important;
}

.col-span-4 {
  grid-column: span 4/span 4 !important;
}

.col-span-5 {
  grid-column: span 5/span 5 !important;
}

.col-span-6 {
  grid-column: span 6/span 6 !important;
}

.col-span-full {
  grid-column: 1/-1 !important;
}

.row-span-1 {
  grid-row: span 1/span 1 !important;
}

.row-span-2 {
  grid-row: span 2/span 2 !important;
}

.row-span-3 {
  grid-row: span 3/span 3 !important;
}

.row-span-4 {
  grid-row: span 4/span 4 !important;
}

.row-span-5 {
  grid-row: span 5/span 5 !important;
}

.row-span-6 {
  grid-row: span 6/span 6 !important;
}

.row-span-full {
  grid-row: 1/-1 !important;
}

.gap-0 {
  gap: 0px !important;
}

.gap-xs {
  gap: 0.25rem !important;
}

.gap-sm {
  gap: 0.5rem !important;
}

.gap-md {
  gap: 1rem !important;
}

.gap-lg {
  gap: 1.5rem !important;
}

.gap-xl {
  gap: 2rem !important;
}

.gap-2xl {
  gap: 3rem !important;
}

.gap-3xl {
  gap: 4rem !important;
}

.gap-x-0 {
  column-gap: 0px !important;
}

.gap-x-xs {
  column-gap: 0.25rem !important;
}

.gap-x-sm {
  column-gap: 0.5rem !important;
}

.gap-x-md {
  column-gap: 1rem !important;
}

.gap-x-lg {
  column-gap: 1.5rem !important;
}

.gap-x-xl {
  column-gap: 2rem !important;
}

.gap-x-2xl {
  column-gap: 3rem !important;
}

.gap-x-3xl {
  column-gap: 4rem !important;
}

.gap-y-0 {
  row-gap: 0px !important;
}

.gap-y-xs {
  row-gap: 0.25rem !important;
}

.gap-y-sm {
  row-gap: 0.5rem !important;
}

.gap-y-md {
  row-gap: 1rem !important;
}

.gap-y-lg {
  row-gap: 1.5rem !important;
}

.gap-y-xl {
  row-gap: 2rem !important;
}

.gap-y-2xl {
  row-gap: 3rem !important;
}

.gap-y-3xl {
  row-gap: 4rem !important;
}

.static {
  position: static !important;
}

.fixed {
  position: fixed !important;
}

.absolute {
  position: absolute !important;
}

.relative {
  position: relative !important;
}

.sticky {
  position: sticky !important;
}

.inset-0 {
  top: 0px !important;
  right: 0px !important;
  bottom: 0px !important;
  left: 0px !important;
}

.inset-x-0 {
  right: 0px !important;
  left: 0px !important;
}

.inset-y-0 {
  top: 0px !important;
  bottom: 0px !important;
}

.top-0 {
  top: 0px !important;
}

.right-0 {
  right: 0px !important;
}

.bottom-0 {
  bottom: 0px !important;
}

.left-0 {
  left: 0px !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-10 {
  z-index: 10 !important;
}

.z-20 {
  z-index: 20 !important;
}

.z-30 {
  z-index: 30 !important;
}

.z-40 {
  z-index: 40 !important;
}

.z-50 {
  z-index: 50 !important;
}

.z-auto {
  z-index: auto !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

@media (max-width: 768px) {
  .block-mobile {
    display: block !important;
  }
  .inline-block-mobile {
    display: inline-block !important;
  }
  .inline-mobile {
    display: inline !important;
  }
  .flex-mobile {
    display: flex !important;
  }
  .inline-flex-mobile {
    display: inline-flex !important;
  }
  .grid-mobile {
    display: grid !important;
  }
  .hidden-mobile {
    display: none !important;
  }
  .flex-col-mobile {
    flex-direction: column !important;
  }
  .flex-row-mobile {
    flex-direction: row !important;
  }
  .justify-start-mobile {
    justify-content: flex-start !important;
  }
  .justify-center-mobile {
    justify-content: center !important;
  }
  .justify-end-mobile {
    justify-content: flex-end !important;
  }
  .justify-between-mobile {
    justify-content: space-between !important;
  }
  .items-start-mobile {
    align-items: flex-start !important;
  }
  .items-center-mobile {
    align-items: center !important;
  }
  .items-end-mobile {
    align-items: flex-end !important;
  }
  .items-stretch-mobile {
    align-items: stretch !important;
  }
}
@media (min-width: 768px) {
  .block-tablet {
    display: block !important;
  }
  .inline-block-tablet {
    display: inline-block !important;
  }
  .inline-tablet {
    display: inline !important;
  }
  .flex-tablet {
    display: flex !important;
  }
  .inline-flex-tablet {
    display: inline-flex !important;
  }
  .grid-tablet {
    display: grid !important;
  }
  .hidden-tablet {
    display: none !important;
  }
  .flex-col-tablet {
    flex-direction: column !important;
  }
  .flex-row-tablet {
    flex-direction: row !important;
  }
  .justify-start-tablet {
    justify-content: flex-start !important;
  }
  .justify-center-tablet {
    justify-content: center !important;
  }
  .justify-end-tablet {
    justify-content: flex-end !important;
  }
  .justify-between-tablet {
    justify-content: space-between !important;
  }
  .items-start-tablet {
    align-items: flex-start !important;
  }
  .items-center-tablet {
    align-items: center !important;
  }
  .items-end-tablet {
    align-items: flex-end !important;
  }
  .items-stretch-tablet {
    align-items: stretch !important;
  }
  .grid-cols-1-tablet {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-2-tablet {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .grid-cols-3-tablet {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .grid-cols-4-tablet {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 1024px) {
  .block-desktop {
    display: block !important;
  }
  .inline-block-desktop {
    display: inline-block !important;
  }
  .inline-desktop {
    display: inline !important;
  }
  .flex-desktop {
    display: flex !important;
  }
  .inline-flex-desktop {
    display: inline-flex !important;
  }
  .grid-desktop {
    display: grid !important;
  }
  .hidden-desktop {
    display: none !important;
  }
  .flex-col-desktop {
    flex-direction: column !important;
  }
  .flex-row-desktop {
    flex-direction: row !important;
  }
  .justify-start-desktop {
    justify-content: flex-start !important;
  }
  .justify-center-desktop {
    justify-content: center !important;
  }
  .justify-end-desktop {
    justify-content: flex-end !important;
  }
  .justify-between-desktop {
    justify-content: space-between !important;
  }
  .items-start-desktop {
    align-items: flex-start !important;
  }
  .items-center-desktop {
    align-items: center !important;
  }
  .items-end-desktop {
    align-items: flex-end !important;
  }
  .items-stretch-desktop {
    align-items: stretch !important;
  }
  .grid-cols-1-desktop {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-2-desktop {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .grid-cols-3-desktop {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .grid-cols-4-desktop {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .grid-cols-5-desktop {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .grid-cols-6-desktop {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
}
.sticky-info {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
}
@media (min-width: 768px) {
  .sticky-info {
    left: 2rem;
  }
}
@media (min-width: 1024px) {
  .sticky-info {
    left: 5rem;
  }
}
.sticky-info .info-link {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 2rem;
  font-weight: bold;
  color: black;
  letter-spacing: -1px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: color 0.3s ease;
}
.sticky-info .info-link:hover {
  text-decoration: underline;
}
.sticky-info .info-link:focus {
  outline: 2px solid #7b61ff;
  outline-offset: 2px;
}

.info-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}
.info-modal.active {
  visibility: visible;
  opacity: 1;
}

.info-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

.info-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #7c3aed;
  color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
}

.info-modal-close {
  position: absolute;
  top: 4rem;
  left: 4rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 2001;
  padding: 0;
  width: 71px;
  height: 74px;
  transition: opacity 0.2s ease;
}
.info-modal-close:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .info-modal-close {
    top: 4rem;
    left: 1rem;
    width: 40px;
    height: 43px;
  }
  .info-modal-close svg {
    width: 40px;
    height: 43px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .info-modal-close {
    left: 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .info-modal-close {
    left: 3rem;
  }
}
@media (min-width: 1200px) {
  .info-modal-close {
    left: 4rem;
  }
}

.modal-scroll-content {
  flex: 1;
  overflow-y: auto;
  padding: 4rem 0 2rem 0;
}
@media (max-width: 768px) {
  .modal-scroll-content {
    padding: 8rem 0 1rem 0;
  }
}
@media (min-width: 1024px) {
  .modal-scroll-content {
    padding: 4rem 0 4rem 0;
  }
}

.modal-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .modal-content-container {
    padding: 0 1rem;
  }
}
@media (min-width: 1024px) {
  .modal-content-container {
    padding: 0 3rem;
  }
}
@media (min-width: 1200px) {
  .modal-content-container {
    padding: 0 4rem;
  }
}

.info-content {
  margin-bottom: 3rem;
}
.info-content .info-text {
  color: white;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: none;
}
@media (min-width: 768px) {
  .info-content .info-text {
    font-size: 1.25rem;
    max-width: none;
  }
}
@media (min-width: 1024px) {
  .info-content .info-text {
    font-size: 1.5rem;
  }
}

.info-contact-section {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .info-contact-section {
    gap: 0.75rem;
  }
}
.info-contact-section .contact-item {
  color: white;
  font-size: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .info-contact-section .contact-item {
    font-size: 1.5rem;
  }
}
.info-contact-section .contact-address {
  color: white;
  margin: 0;
  font-style: medium;
}
.info-contact-section .contact-email,
.info-contact-section .contact-instagram {
  color: #B8A5F0;
  text-decoration: none;
  font-style: medium;
  transition: opacity 0.2s ease;
}
.info-contact-section .contact-email:hover,
.info-contact-section .contact-instagram:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.modal-image-section {
  margin-bottom: 3rem;
}
.modal-image-section .simple-image img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .modal-image-section .simple-image img {
    max-width: 600px;
  }
}
@media (min-width: 1024px) {
  .modal-image-section .simple-image img {
    max-width: 1200px;
  }
}
.modal-image-section .modal-image {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .modal-image-section .modal-image {
    max-width: 600px;
  }
}
@media (min-width: 1024px) {
  .modal-image-section .modal-image {
    max-width: 1200px;
  }
}

.team-section .team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .team-section .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
@media (min-width: 1024px) {
  .team-section .team-grid {
    gap: 5rem;
  }
}
.team-section .team-member .team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: white;
}
@media (min-width: 768px) {
  .team-section .team-member .team-name {
    font-size: 1.375rem;
  }
}
.team-section .team-member .team-role {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 0.75rem 0;
  color: #B8A5F0;
}
@media (min-width: 768px) {
  .team-section .team-member .team-role {
    font-size: 1.5rem;
  }
}
.team-section .team-member .team-email {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: opacity 0.2s ease;
}
.team-section .team-member .team-email:hover {
  opacity: 0.7;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .team-section .team-member .team-email {
    font-size: 1.5rem;
  }
}
.team-section .team-member .team-text {
  color: white;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .team-section .team-member .team-text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.modal-scroll-content::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.modal-scroll-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-scroll-content::-webkit-scrollbar-thumb {
  background: transparent;
}

.modal-scroll-content {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.info-modal.active .info-modal-content {
  animation: modalFadeIn 0.3s ease-out;
}

.impressum-link {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  text-align: right;
}
@media (min-width: 768px) {
  .impressum-link {
    right: 2rem;
  }
}
@media (min-width: 1024px) {
  .impressum-link {
    right: 5rem;
  }
}
.impressum-link a {
  background: transparent;
  font-family: inherit;
  font-size: 2rem;
  font-weight: bold;
  color: black;
  letter-spacing: -1px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.impressum-link a:hover {
  text-decoration: underline;
}
.impressum-link a:focus {
  outline: 2px solid #7b61ff;
  outline-offset: 2px;
}

/*# sourceMappingURL=main.css.map */
