.preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s ease;
}

.fade-out-animation {
  opacity: 0;
  visibility: hidden;
}

body {
}

.carousel-item h1 {
  text-align: center;
  color: #125c45;
  line-height: 1.3;
}

.image-col-j1 {
  object-fit: contain;
  overflow: clip;
}

.image-fp-j1 {
  width: 100%;
}

.div-img-j1 {
  position: relative;
  aspect-ratio: 3/2;
}

.item.div-img-j1 > a > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.item.div-img-j1.loaded > a > img {
  opacity: 1 !important;
}

.back-to-top {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(18,92,69,0.65);
  opacity: 1;
  color: rgb(255,255,255);
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.4s ease-in-out;
}

.back-to-top:hover {
  background-color: rgba(18,92,69,0.9);
}

#altras-logo g {
  opacity: 0;
  animation: animate-logo 8s ease forwards infinite;
  animation-delay: calc(var(--order) * 200ms);
}

@keyframes animate-logo {
  20% {
    opacity: 0;
    transform: translateY(-20%);
  }
  30%, 90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

.floating-button {
  position: fixed;
  bottom: 35px;
  right: 20px;
  z-index: 50;
  cursor: pointer;
  width: auto;
  background-color: #25d366;
  border-radius: 30px;
}

.floating-button svg {
  height: 55px;
  width: auto;
  color: white;
  padding: 10px;
}

.par-portfolio-j1 {
  position: absolute;
  bottom: 0;
  background-color: rgba(233,236,239,0.75);
  font-weight: 700;
  color: var(--bs-primary);
  padding: 10px 15px;
}

.homepage-title {
  color: white !important;
  font-size: clamp(2.3rem, 11vw, 4rem);
  padding: 15px;
}

.fit-cover {
  object-fit: cover;
}

