<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
  font-family: Manrope;
  font-weight: 200;
  src: url(../../font/Manrope/static/Manrope-ExtraLight.ttf);
}

@font-face {
  font-family: Manrope;
  font-weight: 300;
  src: url(../../font/Manrope/static/Manrope-Light.ttf);
}

@font-face {
  font-family: Manrope;
  font-weight: 400;
  src: url(../../font/Manrope/static/Manrope-Regular.ttf);
}

@font-face {
  font-family: Manrope;
  font-weight: 500;
  src: url(../../font/Manrope/static/Manrope-Medium.ttf);
}

@font-face {
  font-family: Manrope;
  font-weight: 600;
  src: url(../../font/Manrope/static/Manrope-SemiBold.ttf);
}

body {
  font-family: "Manrope", sans-serif !important;
}

/* Animation Biocolab */
.container {
  width: 100%;
  height: 100%;
  background-color: white;
}

.slider {
  width: 100%;
  height: 50vh;
  min-height: 200px;
  max-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.slider [class*="box"] {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider [class*="box"] img {
  height: 100%;
}

.slider [class*="box"]:nth-child(1) {
  transform: scale(0.6) translateX(-50%);
  left: -20%;
  opacity: 0.5;
  z-index: 1;
  animation: first-to-second 2s ease-in-out;
  animation-fill-mode: forwards;
}

.slider [class*="box"]:nth-child(2) {
  transform: none;
  left: 0px;
  opacity: 1;
  z-index: 2;
  animation: second-to-third 2s ease-in-out;
  animation-fill-mode: forwards;
}

.slider [class*="box"]:nth-child(3) {
  transform: scale(0.6) translateX(-50%);
  left: 80%;
  opacity: 0.5;
  z-index: 1;
  animation: third-to-first 2s ease-in-out;
  animation-fill-mode: forwards;
}
/* Animation Biocolab */

img {
  -webkit-user-drag: none;
}

.btn-primary {
  @apply w-full lg:w-[70%] lg:h-full h-[50vw] min-h-fit flex lg:justify-center lg:items-center pt-[20%] pl-[5%] relative rounded-md bg-blue-eco-slider lg:p-[90px] mb-[25%];
}

.sub-menu-mobile.open,
#sub-menu.open {
  display: flex !important;
}

.news-title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Request demo form */
input:required + .biostudio-label::after,
textarea:required + .biostudio-label::after,
select:required + .biostudio-label::after {
  content: ' *';
  color: red;
}
/* Request demo form */

/* Animation Banner */
.bio-banner-content:nth-child(1) .bio-banner-content-title,
.bio-banner-content:nth-child(1) .bio-banner-content-content {
  position: absolute;
  top: -24px;
  opacity: 0;
  animation: banner-first-to-third 2s ease-in-out;
  animation-fill-mode: forwards;
}

.bio-banner-content:nth-child(2) .bio-banner-content-title,
.bio-banner-content:nth-child(2) .bio-banner-content-content {
  position: absolute;
  top: -12px;
  opacity: 1;
  animation: banner-second-to-first 2s ease-in-out;
  animation-fill-mode: forwards;
}

.bio-banner-content:nth-child(3) .bio-banner-content-title,
.bio-banner-content:nth-child(3) .bio-banner-content-content {
  position: absolute;
  top: 12px;
  opacity: 0;
  animation: banner-third-to-second 2s ease-in-out;
  animation-fill-mode: forwards;
}

.bio-banner-content .bio-banner-content-content {
  left: 150px;
}

/* Animation Banner */

@layer utilities {
  .custom-section-container {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
  }
}

@keyframes first-to-second {
  0% {
    transform: scale(0.6) translateX(-50%);
    left: -20%;
    opacity: 0.5;
    z-index: 1;
  }

  100% {
    transform: none;
    left: 0px;
    z-index: 2;
    opacity: 1;
  }
}

@keyframes second-to-third {
  0% {
    transform: none;
    left: 0px;
    opacity: 1;
    z-index: 2;
  }

  33% {
    opacity: 0.3;
  }

  66% {
    opacity: 0.4;
  }

  100% {
    transform: scale(0.6) translateX(-50%);
    left: 80%;
    opacity: 0.5;
    z-index: 1;
  }
}

@keyframes third-to-first {
  0% {
    transform: scale(0.6) translateX(-50%);
    left: 80%;
    opacity: 0.5;
    z-index: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    transform: scale(0.6) translateX(-50%);
    left: -20%;
    opacity: 0.5;
    z-index: 1;
  }
}

@keyframes banner-second-to-first {
  0% {
    top: -12px;
    opacity: 1;
  }

  100% {
    top: -24px;
    opacity: 0;
  }
}

@keyframes banner-third-to-second {
  0% {
    top: 12px;
    opacity: 0;
  }

  70% {
    top: 2px;
    opacity: 0;
  }

  100% {
    top: -12px;
    opacity: 1;
  }
}

@keyframes banner-first-to-third {
  0% {
    top: -24px;
    opacity: 0;
  }

  100% {
    top: 12px;
    opacity: 0;
  }
}

@keyframes banner-second-to-first-title-mobile {
  0% {
    top: 0px;
    opacity: 1;
  }

  100% {
    top: -12px;
    opacity: 0;
  }
}

@keyframes banner-third-to-second-title-mobile {
  0% {
    top: 24px;
    opacity: 0;
  }

  70% {
    top: 12px;
    opacity: 0;
  }

  100% {
    top: 0px;
    opacity: 1;
  }
}

@keyframes banner-first-to-third-title-mobile {
  0% {
    top: -12px;
    opacity: 0;
  }

  100% {
    top: 24px;
    opacity: 0;
  }
}

@keyframes banner-second-to-first-content-mobile {
  0% {
    top: 24px;
    opacity: 1;
  }

  100% {
    top: 12px;
    opacity: 0;
  }
}

@keyframes banner-third-to-second-content-mobile {
  0% {
    top: 48px;
    opacity: 0;
  }

  70% {
    top: 36px;
    opacity: 0;
  }

  100% {
    top: 24px;
    opacity: 1;
  }
}

@keyframes banner-first-to-third-content-mobile {
  0% {
    top: 12px;
    opacity: 0;
  }

  100% {
    top: 48px;
    opacity: 0;
  }
}

@media only screen and (max-width: 640px) {
  .bio-banner-content .bio-banner-content-title, .bio-banner-content .bio-banner-content-content p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  
  .bio-banner-content {
    display: flex;
    flex-direction: column;
  }

  .bio-banner-content:nth-child(1) .bio-banner-content-title {
    position: absolute;
    top: -12px;
    opacity: 0;
    animation: banner-first-to-third-title-mobile 2s ease-in-out;
    animation-fill-mode: forwards;
  }

  .bio-banner-content:nth-child(1) .bio-banner-content-content {
    position: absolute;
    top: 12px;
    opacity: 0;
    animation: banner-first-to-third-content-mobile 2s ease-in-out;
    animation-fill-mode: forwards;
  }
  
  .bio-banner-content:nth-child(2) .bio-banner-content-title {
    position: absolute;
    top: 0px;
    opacity: 1;
    animation: banner-second-to-first-title-mobile 2s ease-in-out;
    animation-fill-mode: forwards;
  }

  .bio-banner-content:nth-child(2) .bio-banner-content-content {
    position: absolute;
    top: 24px;
    opacity: 1;
    animation: banner-second-to-first-content-mobile 2s ease-in-out;
    animation-fill-mode: forwards;
  }

  .bio-banner-content:nth-child(3) .bio-banner-content-title {
    position: absolute;
    top: 24px;
    opacity: 0;
    animation: banner-third-to-second-title-mobile 2s ease-in-out;
    animation-fill-mode: forwards;
  }

  .bio-banner-content:nth-child(3) .bio-banner-content-content {
    position: absolute;
    top: 48px;
    opacity: 0;
    animation: banner-third-to-second-content-mobile 2s ease-in-out;
    animation-fill-mode: forwards;
  }

  .bio-banner-content .bio-banner-content-content {
    left: 0px;
  }  
}



</pre></body></html>