.body__overflow {
  overflow: hidden;
}

.slidercontainer {
  top: var(--nav--height);
  min-height: calc(var(--full-height) - (var(--nav--height) * 2));
  max-height: calc(var(--full-height) - (var(--nav--height) * 2));
  position: absolute;
  display: inline-flex;
  overflow: hidden;
  transform: translateX(0);
  transition: transform 0.45s ease-out;

}

.slide {
  max-height: var(--full-height);
  min-height: 100%;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--main--margin);
  user-select: none;
}

.slide.shifting {
  transition: opacity 800ms ease-in;
}

.fade-in {
  opacity: 0;
  transition: opacity 550ms ease-out;
}

.fade-in.appear {
  opacity: 1;
  transition: opacity 550ms 150ms ease-in;
}

/* for webp */
.picture {
  width: 100%;
  display: flex;
  justify-content: center;
}

.slide img {
  height: auto;
  max-height: 85vh;
  min-height: 60vh;
  object-position: center center;
  transition: transform 0.5s ease-in-out;
}

.grabbing {
  cursor: grabbing;
}

.grabbing img {
  transform: scale(0.98);
}

.column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.acerto__Home {
  align-items: flex-start !important;
}

.columns-1 .column {
  width: 100%;
  flex-grow: 1;
}

.framing-portrait {
  object-fit: contain !important;
  max-height: 70vh !important;
  min-height: 70vh !important;
  }

.framing-small {
  width: 50% !important; 
  object-fit: contain;
  }
  
  .framing-medium {
  width: 65% !important;
  object-fit: contain;
  }
  
  .framing-full {
  width: 100% !important;
  object-fit: cover;
  padding-bottom: 3.5vh;
  }
  
.columns-2, 
.columns-3 {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
}

.columns-2 .column {
  width: 50%;
  flex-grow: 1;
  height: 100%;
}

.columns-2 .column:first-child img {
  object-position: right center;
  padding: 0;
}

.columns-2 .column:nth-child(2) img  {
  object-position: left center;
  padding: 0;
}
.columns-3 .column img  {
  min-width: 100% !important;
  padding: 0;
  width: auto !important;
}
.columns-3 .column:first-child img  {
  object-position: right center;
}
.columns-3 .column:nth-child(3) img  {
  object-position: left center;
}

.counter {
  position: fixed;
  display: flex;
  width: 100vw;
  justify-content: center;
  height: 12vh;
  bottom: 0rem;
  align-items: center;
}

.slider__video {
  max-width: 70vw;
  max-height: 100%;
  min-height: 50%;
  display: flex;
  object-position: center center;
}

.hide {
  opacity: 0;
}
