@tailwind base;
@tailwind components;
@tailwind utilities;
h1 {
  @apply text-4xl font-medium;
}

h2 {
  @apply text-3xl font-medium;
}

h3 {
  @apply text-2xl font-medium;
}

h4 {
  @apply text-xl font-medium;
}

h5 {
  @apply text-lg font-medium;
}

h6 {
  @apply text-lg font-medium;
}

.sidebar ul, ol {
  @apply list-inside;
}

.sidebar ul {
  @apply list-disc;
}

.sidebar ol {
  @apply list-decimal;
}

.main ul, ol {
  @apply list-inside;
}

.main ul {
  @apply list-disc;
}

.main ol {
  @apply list-decimal;
}

blockquote {
  font-size: 1.3em;
  font-style: italic;
  font-family: "Georgia", serif;
  font-size: 1.2em;
  border-left: 4px solid #ccc;
  padding-left: 20px;
  margin: 20px 0;
  color: #333;
  background-color: #f9f9f9;
  padding-top: 20px;
  padding-bottom: 20px;
}

blockquote footer {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
  font-family: sans-serif;
}

ul, ol {
  @apply list-inside;
}

ul {
  @apply list-disc;
}

ol {
  @apply list-decimal;
}

h1 {
  font-size: 2.25rem; /* equivalent to text-4xl */
  font-weight: 700; /* equivalent to font-bold */
  line-height: 1.1; /* equivalent to leading-tight */
}

h2 {
  font-size: 1.875rem; /* equivalent to text-3xl */
  font-weight: 600; /* equivalent to font-semibold */
  line-height: 1.25; /* equivalent to leading-snug */
}

h3 {
  font-size: 1.5rem; /* equivalent to text-2xl */
  font-weight: 500; /* equivalent to font-medium */
  line-height: 1.375; /* equivalent to leading-relaxed */
}

h4 {
  font-size: 1.25rem; /* equivalent to text-xl */
  font-weight: 500; /* equivalent to font-medium */
  line-height: 1.5; /* equivalent to leading-loose */
}

h5 {
  font-size: 1.125rem; /* equivalent to text-lg */
  font-weight: 400; /* equivalent to font-normal */
  line-height: 1.5; /* equivalent to leading-loose */
}

h6 {
  font-size: 1rem; /* equivalent to text-base */
  font-weight: 400; /* equivalent to font-normal */
  line-height: 1.25; /* equivalent to leading-normal */
}

.current > a {
  @apply text-blue-500 font-bold border-b-2 border-blue-500;
}

.material-symbols-outlined {
  font-display: swap;
}

[data-dropdown] {
  display: none;
}

.group:hover [data-dropdown] {
  display: block;
}

[x-cloak] {
  display: none !important;
}

[x-show] {
  transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
}

[x-show].slide-in {
  transform: translateY(0);
}

[x-show].slide-out {
  transform: translateY(-100%);
}

[x-show=open] {
  transition: opacity 0.3s ease-in-out;
}

[x-cloak] {
  opacity: 0;
  pointer-events: none;
}

main p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 18px;
}

p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.frosted-text {
  @apply bg-white bg-opacity-20 backdrop-blur-md rounded-lg p-2 inline-block;
}

.animate-frosted span {
  display: inline-block;
  transform: translateY(100px);
  opacity: 0;
  animation: frosted 1.2s ease-out forwards;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
}

@keyframes frosted {
  0% {
    transform: translateY(100px);
    opacity: 0;
    filter: blur(10px);
  }
  50% {
    opacity: 0.6;
    filter: blur(6px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0px);
  }
}
.cover img {
  transition: transform 0.3s ease-in-out;
}

.cover:hover img {
  transform: scale(1.1);
}

.cover:hover .zoom-overlay {
  opacity: 0.4;
}

:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 30);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

.marqueeHor {
  display: grid;
  align-content: center;
  overflow: hidden;
  gap: var(--gap);
  width: 100%;
  min-height: 80vh;
  font-size: 1rem;
  line-height: 1.5;
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: var(--gap);
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion) {
  .marquee__group {
    animation-play-state: paused;
  }
}
.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
.marquee img {
  display: grid;
  place-items: center;
  width: var(--size);
  fill: var(--color-text);
  padding: calc(var(--size) / 20);
  border-radius: 0.3rem;
  height: auto;
  max-height: 180px;
  width: 225px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 1s ease-in-out;
}

.marquee img:hover {
  transition: 0.3s ease-in-out;
  filter: none;
  opacity: 1;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
}

.objectSlide {
  transition: transform 0.2s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
  transition-delay: 0.1s;
}

.slideIn {
  transform: translateX(0);
  opacity: 1;
  transition: 0.2s;
}

.lockOn {
  transition: background-color 0.5s ease-in-out;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
  padding: 15px;
  border-radius: 0;
  border: 1px solid #000000;
  background-color: transparent;
  color: #181818;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  width: 100%;
  margin: auto;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required:focus,
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required:focus {
  border: none;
  border-bottom: 1px solid #ea580c;
  outline: none;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required::-moz-placeholder, textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required::-moz-placeholder {
  font-size: 16px;
  color: #ea580c;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required::placeholder,
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required::placeholder {
  font-size: 16px;
  color: #ea580c;
}

/* Target label separately */
.wpcf7-form label {
  color: #7b87a8;
}

/* Target submit button */
input.wpcf7-form-control.wpcf7-submit {
  color: #ea580c;
  background: transparent;
  border: 1px solid #ea580c;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
input.wpcf7-form-control.wpcf7-submit:hover {
  background: #ea580c;
  color: #ffffff;
}/*# sourceMappingURL=global.css.map */