.curriculum-section {
    width: 100%;
    margin:0 auto 92px;
}

.curriculum-section .curriculum-header {
    width: 100%;
    background: var(--color-accent-3);
    padding: 16px 16px 0 16px;
    box-sizing: border-box;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-primary);
    gap: 32px;
    margin-bottom: 64px;
}
.curriculum-section .curriculum-header .heading-text {
    margin-top: 8px;
}
.curriculum-section .curriculum-header .heading-text .leading-text {
    font-size: var(--f6);
    font-weight: 600;
}
.curriculum-section .curriculum-header .heading-text .desc {
    font-size: var(--f3);
    font-weight: normal;
}

.curriculum-section .curriculum-header .tag-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 32px;
}
.curriculum-section .curriculum-header .tag-container .curriculum-tag {
    border-radius: 8px 8px 0 0;
    padding: 16px 64px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.curriculum-section .curriculum-header .tag-container .curriculum-tag:hover,
.curriculum-section .curriculum-header .tag-container .curriculum-tag.active {
    background: var(--color-primary);
    color: #000;
}
/*Card Box*/
.card-box{
    width: 100%;
    max-width: 1024px;
    margin: auto;
    display: block;
    margin-bottom: 100px;
}
.card-box-container {
    width: 100%;
    display: flex;
    justify-content: baseline;
}
.card-box:nth-child(even) .card-box-container {
    flex-direction: row-reverse; 
}
.card-box:nth-child(odd) .card-box-img{
    max-width: 450px;
    max-height: 450px;
    flex-shrink: 0;
    flex-grow: 0;
    padding-right: 36px;
    position: relative;
}
.card-box:nth-child(odd) .card-box-img::before{
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
}
.card-box:nth-child(even) .card-box-img{
    max-width: 450px;
    max-height: 450px;
    flex-shrink: 0;
    position: relative;
    flex-grow: 0;
    padding-left: 32px;
    padding-right: 0;
}
.card-box:nth-child(even) .card-box-img::before{
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    right: 0;
    top: 0;
}
.card-box:nth-child(even) .card-box-img img {
    top: 32px;
    left: -32px;
}
.card-box .card-box-img img{
    width: 450px;
    height: 450px;
    object-fit: cover;
    position: relative;
    top: 36px;
    left: 36px;
}
.card-box .leading-text {
    font-weight: 600;
    font-size: var(--f6);
}
.card-box .leading-text .sub-text {
    all: unset;
    display: block;
    font-size: var(--f5);
    font-weight: normal;
    max-width: 480px;
    width: 100%;
}
.card-box .card-box-desc p{
    font-weight: normal;
    font-size: var(--f3);
}

.card-box .card-box-desc {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.card-box .card-box-container .card-box-desc a{
    color: inherit;
    text-decoration: none;
    background: var(--color-secondary);
    transition: transform 0.3s ease-in-out;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    max-width: 138px;
    width: 100%;
    color: var(--color-primary);
}
.card-box .card-box-container .card-box-desc a::after {
    content: "\f061";
    font-family: "FontAwesome";
    font-size: var(--f3) ;
    padding-left: 4px;
    transition: transform 0.3s ease;
}
.card-box .card-box-container .card-box-desc a:hover::after {
    transform: translateX(8px);
}



@media screen and (max-width: 992px) {
    .curriculum-section .curriculum-header .tag-container {
        gap: 0;
    }
    .curriculum-section .curriculum-header .tag-container .curriculum-tag {
        width: 30%;
        text-align: center !important;
        display: flex;
        justify-content: center;
    }
    .card-box-container {
        margin: 0 auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
    }
    .card-box:nth-child(odd) .card-box-img,
    .card-box:nth-child(even) .card-box-img {
        top: 0;
        left: 0;
        padding: 16px;
    }
    .card-box:nth-child(odd) .card-box-img img,
    .card-box:nth-child(even) .card-box-img img {
        padding: 0;
        top: 0;
        left: 0;
        right: 0;
    }
    .card-box:nth-child(2n) .card-box-container {
        flex-direction: column;
    }

}