/* ===== STYLE 5 ===== */
.style-5 {
    margin: 100px auto;
    padding: 0 20px;
    position: relative;
}
/* big background text */
.style-5::before {
    content: "PROCESS";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.03);
    letter-spacing: 20px;
}

/* vertical line */
.style-5 .line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: #e5e5e5;
}

/* steps */
.style-5 .steps {
    position: relative;
}

/* item */
.style-5 .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

/* delay */
.style-5 .item:nth-child(1) {
    animation-delay: 0.3s;
}
.style-5 .item:nth-child(2) {
    animation-delay: 0.6s;
}
.style-5 .item:nth-child(3) {
    animation-delay: 0.9s;
}
.style-5 .item:nth-child(4) {
    animation-delay: 1.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* left / right */
.style-5 .left {
    width: 45%;
    text-align: right;
}

.style-5 .right {
    width: 45%;
}

/* dot */
.style-5 .dot {
    width: 10px;
    height: 10px;
    background: #ff6a00;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* number */
.style-5 .num {
    font-size: 18px;
    color: #aaa;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* title */
.style-5 .title {
    font-size: 26px;
    font-weight: 500;
}

/* desc */
.style-5 .desc {
    margin-top: 0;
    color: #666;
    font-size: 14px;
}

/* hover effect */
.style-5 .item:hover .title {
    color: #ff6a00;
}

/* responsive */
@media (max-width: 480px) {
    .style-5 .item {
        flex-direction: column;
        text-align: center;
    }
    .style-5 .left,
    .style-5 .right {
        width: 100%;
        text-align: center;
    }
    .style-5 .line {
        display: none;
    }
}
@media (max-width: 1024px) {
    .style-5::before {
        font-size: 100px;
    }
}
@media (max-width: 980px) {
    .style-5::before {
        font-size: 70px;
    }
}
@media (max-width: 640px) {
    .style-5::before {
        font-size: 70px;
    }
    .style-5 .dot {
        top: -10px;
    }
}
@media (max-width: 480px) {
    .style-5::before {
        display: none;
    }
}
