/* aside */
.parallex {
  height: auto;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: clip;
  position: relative;
}

.checkImg {
  width: 250px;
  height: 250px;
}

.inside_parallex {
  border: 1px solid var(--bc);
  color: var(--df);
  height: 50%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
  position: relative;
  position: absolute;
  overflow: clip;
  width: 740px;
}

.image_parallex {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0px;
  transform: translate3d(0, 0, 0);
}

.image_parallex img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: translateY(100px);
  animation: imageParallex 0.3s ease-in-out;
  animation-timeline: view();
  opacity: 0.8;
}

@keyframes imageParallex {
  0% {
    transform: translateY(100px);
  }

  100% {
    transform: translateY(-50px);
  }
}

@media screen and (max-width: 500px) {
  .parallex {
    height: 40vh;
  }

  .inside_parallex {
    height: 90%;
    gap: 20px;
  }

  aside .inside_parallex h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .image_parallex img {
    margin: 0;
  }

  .inside_parallex {
    gap: 40px;
  }
}

.support {
  font-size: var(--thirtySix);
  font-family: var(--libre);
  font-style: italic;
  color: var(--bc);
}

.volunteer {
  font-size: var(--thirtySix);
  font-weight: var(--xl);
}

.contribution {
  text-align: center;
  width: 55%;
  font-size: var(--twenty);
  font-family: var(--libre);
  line-height: var(--libreHeight);
  color: var(--df);
}

@media screen and (max-width: 850px) {
  aside .inside_parallex {
    width: 90%;
  }

  .image_parallex {
    width: 100%;
  }
}
