@media (min-width: 1024px) {

    .animate .properties-fold-title .subtitle {
        opacity: 0;
        transform: translateY(20px);
    }

    .animate-complete .properties-fold-title .subtitle {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s ease forwards;
    }

  .animate .property-item {
    opacity: 0;
    transform: translateY(20px);
  }

  .animate-complete .property-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
  }

    .animate-complete .property-item:nth-child(5n + 1) {
        animation-delay: 0.5s;
    }
    
    .animate-complete .property-item:nth-child(5n + 2) {
        animation-delay: 1s;
    }

    .animate-complete .property-item:nth-child(5n + 3) {
        animation-delay: 1.5s;
    }

    .animate-complete .property-item:nth-child(5n + 4) {
        animation-delay: 2s;
    }

    .animate-complete .property-item:nth-child(5n + 5) {
        animation-delay: 2.5s;
    }

    .animate.property-fold .property-image li{
        opacity: 0;
        transform: translateY(20px);
    }

    .animate-complete.property-fold .property-image li{
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s ease forwards 0.5s;
    }

    .animate div#property-gallery .splide__arrows {
        opacity: 0;
        transform: translateY(20px);
    }

    .animate-complete div#property-gallery .splide__arrows {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s ease forwards 1.5s;
    }

    .animate-complete.property-fold .property-image li:nth-child(2n) {
        animation-delay: 1s;
    }

    .animate.property-fold .property-content-left {
        opacity: 0;
        transform: translateY(20px);
    }

    .animate-complete.property-fold .property-content-left {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s ease forwards 1.5s;
    }

    .animate.property-fold .property-content-right {
        opacity: 0;
        transform: translateY(20px);
    }

    .animate-complete.property-fold .property-content-right {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s ease forwards 2s;
    }
}
