/* custom */

.container{

}

body {
  background-color: #FFFFFF;
  cursor: crosshair; auto;
  /*cursor: none;*/
}

.row {
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 0px;
  margin-right: 0px;
}

/* Fade Fx */
.fadein {
    opacity:0;
}

.fadeonload {
   opacity:0;
}

.custom-cursor {
  position: fixed; /* Or absolute, depending on your layout */
  width: 24px; /* Adjust size as needed */
  height: 24px;
  border-radius: 50%; /* For a circular cursor */
  background-color: white; /* Or any base color */
  pointer-events: none; /* Prevents the cursor div from interfering with clicks */
  mix-blend-mode: difference; /* Creates the color inversion effect */
  z-index: 9999; /* Ensures it stays on top */
  transform: translate(-50%, -50%); /* Centers the cursor on the mouse pointer */
}

.pad0{
  /*padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;*/
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.pad1{
  padding-bottom: 10px;
}

.pad2{
  padding-bottom: 20px;
}

.pad3{
  padding-top: 25px;
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 2000; /* prevents video iframe non-clickable behavior */
}

.panel {
  background-color: #FFFFFF;
}

.container-description {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.button {
  background-color: #ffffff;
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  /*margin: 4px 2px;*/
  transition-duration: 0.4s;
  cursor: pointer;

}

.button1 {
  background-color: white; 
  color: black; 
  border: 1px solid #000000;
}

.button1:hover {
  background-color: #000000;
  color: white;
}

.intro {
  display: flex; /* Makes the div a flex container */
  align-items: center; /* Vertically centers the content */
  padding-top: 10px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  border-right: none;
}

.intro-vid {
  align-items: center; /* Vertically centers the content */
  border-left: 1px solid #000000;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  border-right: none;
}

.vimeo-wrapper {
  padding:100% 0 0 0;
  position:relative;
}

.img-feature{
  width: 100%; 
  height: auto;
}

.img-vert{
  width: 340px; 
  height: auto;
}

.img-sq{
  width: 480px; 
  height: auto;
}

/* base typography */
.unselectable-text {
  user-select: none; /* Standard syntax */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}

/* unvisited link */
.hyper:link {
  color: #18181A;
  text-decoration:  none;
}

/* visited link */
.hyper:visited {
  color: #18181A;
  text-decoration: none;
}

/* mouse over link */
.hyper:hover {
  color: #dedede;
}

/* selected link */
.hyper:active {
  color: #18181A;
}

/* unvisited body link */
.hyper-sm:link {
  color: #b900d5;
  text-decoration: none;
}

/* visited body link */
.hyper-sm:visited {
  color: #b900d5;
  text-decoration: none;
}

/* mouse over body link */
.hyper-sm:hover {
  color: #b900d5;
  text-decoration: underline;
}

/* selected body link */
.hyper-sm:active {
  color: #18181A;
  text-decoration: underline;
}

.hover-container {
  position: relative; /* Essential for absolute positioning of the image */
  display: inline-block; /* Or any other appropriate display property */
}

.hidden-image {
  visibility: hidden; /* Or display: none; */
  position: fixed; /* Or absolute, if you want it centered within the container */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centering trick */
  z-index: 100; /* Adjust as needed */
  
  opacity: .1; /* Initial opacity */
  transition: opacity .40s ease-in-out; /* Fade effect on hover */
}

.hover-container:hover .hidden-image {
  display: block; /* Show on hover */
  visibility: visible; /* Or display: block; */
  opacity: 1; /* fully visible at 100% */
  /*transform: scale(1.5);*/
  /*scale: 1.0;*/
  /*transform: scale(1);*/

}

svg {
  fill: #18181A;
}

svg:hover {
    fill: #b900d5;
}

/* -- start Ticker */
.marquee {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    --offset: 20vw;
    --move-initial: calc(-25% + var(--offset));
    --move-final: calc(-50% + var(--offset));
}

.marquee__inner {
    width: fit-content;
    display: flex;
    position: relative;
    transform: translate3d(var(--move-initial), 0, 0);
    animation: marquee 10s linear infinite;
    animation-play-state: running;
}

.marquee span {
  font-family: 'studioFont-extrafett-kursiv', Helvetica, sans-serif;
  color: #18181A;
  font-size: 42px;
  line-height: 56px;
  letter-spacing: 0;
  padding-top: 10px;
}

.marquee:hover .marquee__inner {
    /* animation-play-state: paused; */
}

@keyframes marquee {
    0% {
        transform: translate3d(var(--move-initial), 0, 0);
    }

    100% {
        transform: translate3d(var(--move-final), 0, 0);
    }
}

/* -- end Ticker */