.full-img-block {
  --bg-color: #E9ECF9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 62.1rem;
  background-color: #202122;
  transition: all 400ms ease;
}
.full-img-block:has(.animated-wrapper.active) {
  background-color: var(--bg-color);
}
.full-img-block .animated-wrapper {
  overflow: hidden;
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition: all 400ms ease;
}
.full-img-block .animated-wrapper.active {
  width: 90%;
  border-radius: 2.4rem;
}
.full-img-block .animated-wrapper .back-img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}
.full-img-block .animated-wrapper .back-img.mobile {
  display: none;
}
@media (max-width: 1024px) {
  .full-img-block {
    height: 43.8rem;
  }
  .full-img-block .animated-wrapper.active {
    border-radius: 1.6rem;
  }
}
@media (max-width: 767px) {
  .full-img-block {
    height: 43.8rem;
  }
  .full-img-block .animated-wrapper .back-img.mobile {
    display: block;
  }
  .full-img-block .animated-wrapper .back-img.desktop {
    display: none;
  }
}
@media (min-width: 2560px) {
  .full-img-block {
    height: 112.5rem;
  }
  .full-img-block .animated-wrapper.active {
    border-radius: 4rem;
  }
}
/*# sourceMappingURL=index.css.map */