.realwork-schedule-grid {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: white;
    border-radius: 30px;
}

@media (max-width: 1279px) {
    .realwork-schedule-grid {
        margin: 0 -32px;
        padding: 54px 30px;
    }
}

@media (max-width: 799px) {
    .realwork-schedule-grid {
        padding: 40px 16px;
        margin: 0 -16px;
    }
}

.realwork-schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #000CB5;
    padding: 16px 0;
}

@media (max-width: 799px) {
    .realwork-schedule-item {
        padding: 8px 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

.realwork-schedule-item:last-child {
    border-bottom: 1px solid #000CB5;
}

.realwork-schedule-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.realwork-schedule-spoiler {
    border-top: 1px solid #000CB5;
}

.realwork-schedule-spoiler-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    gap: 30px;
}

@media (max-width: 799px) {
    .realwork-schedule-spoiler-name {
        padding: 16px 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

.realwork-schedule-spoiler-content {
    display: none;
}

.realwork-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 74px;
    padding: 44px 0 30px;
}

.realwork-schedule-spoiler-icon {
    flex: none;
    height: 50px;
    width: 50px;
    background: url(../../images/realwork/schedule-arrow.svg) center / contain no-repeat;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.realwork-schedule-spoiler.open .realwork-schedule-spoiler-icon {
    transform: rotate(90deg);
}

@media (max-width: 799px) {
    .realwork-schedule-spoiler-icon {
        height: 40px;
        width: 40px;
    }
}

.realwork-schedule {
    position: relative;
}

.realwork-schedule .realwork-bg-element {
    position: absolute;
    top: 30%;
    left: 40%;
    width: 140vw;
    z-index: -1;
    transform: translate(-50%, -50%);
    animation: transform-shedule 60s linear infinite;
}

@media (max-width: 1279px) {
  .realwork-schedule .realwork-bg-element {
    top: 40%;
    width: 180%;
    height: 380% !important;
  }
}

@media (max-width: 799px) {
  .realwork-schedule .realwork-bg-element {
    width: 400%;
  }
}

@keyframes transform-shedule {
  0% {
    transform: scale(0.9) skew(0.15rad) translate(-50%, -50%) /* translateX(0%) */;
  }

  25% {
    transform: scale(1) skew(-0.15rad) translate(-50%, -50%) /* translateX(50%) */;
  }

  50% {
    transform: scale(0.9) skew(0.15rad) translate(-50%, -50%) /* translateX(100%) */;
  }

  75% {
    transform: scale(1) skew(-0.15rad) translate(-50%, -50%) /* translateX(50%) */;
  }

  100% {
    transform: scale(0.9) skew(0.15rad) translate(-50%, -50%) /* translateX(0%) */;
  }
}