.mcw-our-work {
    width: 100%;
}

.our-work-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.our-work-box {
    display: flex;
    gap: 46px;
    padding: 60px;
    border-radius: 16px;
    background-color: #020618;
    position: relative;
    overflow: hidden;
    border: 1px solid #00B8DB33;
    z-index: 1;
}

.our-work-box::before {
    content: "";
    background-image: url("../images/our-work-bg-shadow.webp");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -83px;
    left: -161px;
    width: 485px;
    height: 229px;
    opacity: 1;
    z-index: 0;
}

.our-work-box::after {
    content: "";
    background-image: url("../images/our-work-bg-shadow.webp");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: -198px;
    width: 485px;
    height: 260px;
    opacity: 1;
    z-index: 0;
    background-position: center;
}

.content-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border-left: 3px solid rgba(250, 250, 250, 0.05);
    width: 100%;
}

.content-list-item {
    cursor: pointer;
    padding: 20px 0 20px 28px;
    border-bottom: 3px solid rgba(250, 250, 250, 0.05);
    position: relative;
}

.content-list-item:last-child {
    border-bottom: none;
}

.content-list-item.is-active::before {
    transition: all 0.2s ease-out;
    opacity: 1;
}

.content-list-item::before {
    content: "";
    height: 100%;
    width: 3px;
    background-image: linear-gradient(270deg, #00D3F3 0%, #155DFC 100%);
    position: absolute;
    top: 0;
    left: -3px;
    z-index: 1;
    transition: all 0.2s ease-out;
    opacity: 0;
}

.content-list-title {
    margin: 0;
    font-size: 26px;
    line-height: 35px;
    font-weight: 400;
    color: #FAFAFA;
}

.content-list-desc {
    margin: 10px 0 0 0;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    color: #90A1B9;
}

.content-img-wrapper {
    position: relative;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 55%;
}

.content-list-wrapper {
    width: 45%;
    align-self: center;
}

.our-work-wrapper .content-img {
	border-radius: 10px;
	position: relative;
	z-index: 1;
	width: 100%;
	height: max-content;
	object-fit: cover;
	opacity: 1;
	transition: opacity 0.32s ease;
	max-height: 400px;
}

.content-img.is-fading {
    transition: opacity 0.32s ease;
    opacity: 0;
}

@media (max-width: 1366px) {

    .our-work-box {
        gap: 38px;
        padding: 45px;
    }
}

@media (max-width: 1024px) {

    .our-work-box {
        gap: 30px;
        padding: 20px;
        flex-direction: column-reverse;
    }

    .our-work-wrapper .content-img {
        max-height: 400px;
    }

    .content-img-wrapper {
        width: 100%;
    }

    .content-list-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .our-work-wrapper {
        padding: 12px;
    }

    .our-work-box {
        padding: 18px;
        gap: 18px;
        border-radius: 22px;
    }

    .content-list-item {
        padding: 16px 0 16px 28px;
    }

    .content-img {
        max-height: unset !important;
        object-fit: cover;
    }

    .content-list-title {
        font-size: 20px;
        line-height: 30px;
    }

    .content-list-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .our-work-box::before {
        opacity: 0;
    }

    .our-work-box::after {
        opacity: 0;
    }
}