*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* video styles */
.process-video {
    margin-top: -136px;
    background-color: #393739;
    background: url(../assets/images/video_bg.jpg) no-repeat center;
    position: relative;
    overflow: hidden;
}
.process-video .background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}
.process-video .background video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
}
.process-video .mask {
    width: 100%;
    height: 100%;
    background: url(../assets/images/video_mask.png) repeat center;    
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.process-video .foreground {
    width: 1120px;
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    text-align: center;
    color: #fff;
    z-index: 4;
}
.process-video .foreground img {
    width: 100%;
    display: block;
}

/* process steps styles */
.process-steps {
    padding: 130px 0;
    background-color: #f1f1f1;
}

.process-steps-container {
    width: 80%;
    max-width: 1120px;
    margin: 0 auto;
}

.process-steps__title {
    color: var(--color-theme);
    margin-bottom: 40px;
    text-align: center;
}

.process-steps__content {
    display: flex;
    gap: 20px;
}

.process-steps__content__box {
    flex: 1;
    min-height: 646px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.process-steps__content__box img {
    width: 100%;
}

.process-steps__content__box div {
    padding: 30px 30px 15px;
}

.process-steps__content__box h4 {
    color: var(--color-black);
}

/* process details styles */
.process-details {
    background-color: #fff;
    padding: 140px 0px 90px;
}
.process-details-container {
    width: 80%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.process-details__side {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-details__side img {
    width: 100%;
}
.process-details__side h4 {
    color: var(--color-black);
}

.process-details__main {
    flex: 5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-details__main__title {
    color: var(--color-black);
    margin-bottom: 0;
}

.main__progress__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main__progress__box h6 {
    margin-bottom: 0px;
    color: var(--color-black);
}

.main__progress__box .percentage {
    display: block;
    font-size: 0.75rem;
    padding: 0 6px;
    font-weight: 400;
    border-radius: 4px;
    background: rgba(0, 0, 0, .05);
    color: rgba(0, 0, 0, .35);
}

.main__progress__box .bar {
    width: 100%;
    height: 12px;
    margin: 15px 0;
    background: rgba(0, 0, 0, 0.04);
}

.main__progress__box .progress {
    display: block;
    height: 100%;
    background-color: var(--color-theme);
    animation: progress 2s ease-in 1;
}

.main__progress__box .one {
    width: 78%;
}
.main__progress__box .two {
    width: 95%;
}
.main__progress__box .three {
    width: 40%;
}

@keyframes progress {
    from {
        width: 0;
    }
}

.process-details__main__description {
    display: flex;
    gap: 24px;
}
.main__description__box {
    width: calc(50% - 12px);
}
.main__description__box p {
    font-size: 0.875rem;
}

@media(max-width:1200px) {
    .process-video .foreground {
        width: 880px;
    }
}
@media(max-width:960px) {
    .process-video .foreground {
        width: 690px;
    }
    .process-steps__content__box {
        min-height: 540px;
    }
}
@media(max-width:768px) {
    .process-video {
        margin-top: 0px;
    }
    .process-video .foreground {
        width: 420px;
    }
    .process-steps-container {
        width: 90%;
    }
    .process-steps__content {
        flex-direction: column;
    }
    .process-details-container {
        width: 90%;
        flex-direction: column;
        gap: 20px;
    }
    .process-details__main__description {
        flex-direction: column;
        gap: 0;
    }
    .main__description__box {
        width: 100%;
    }
}
@media(max-width:480px) {
    .process-video {
        padding: 0 15px;
    }
    .process-video .foreground {
        width: 100%;
    }
}
