/* AR VR development (Technology) */
.ar-vr-section {
    display: flex;
    padding: 48px;
    gap: 30px;
    background: var(--neutral-neutral-0, #FFF);
    box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.06);
}

.ar-vr-section-left {
    width: 30%;
}

.section-left-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -1px;
}

.section-left-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 31px;
    margin-top: 20px;
}

.section-left-menu::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #DBDCDE;
}

.section-left-menu li {
    position: relative;
    padding-left: 16px;
    font-size: 20px;
    color: #93969D;
    font-weight: 500;
    cursor: pointer;
    
}

.section-left-menu li::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 7px;
    width: 12px;
    height: 12px;
    background-color: #DBDCDE;
    border-radius: 50%;
    z-index: 1;
}

.section-left-menu li.active {
    color: #EF3F23;
    font-weight: 500;
}

.section-left-menu li.active::before {
    background-color: #EF3F23;
}

.ar-vr-section-right {
    width: 70%;
}

.section-right-edu-tab {
    display: none;
    position: relative;
    overflow: hidden;
}

.section-right-edu-tab.active {
    display: block;
}

.section-right-tab-overlay {
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.section-right-tab-title {
    color: var(--neutral-neutral-0, #FFF) !important;
    text-overflow: ellipsis;
    font-size: 21.467px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.671px;
    margin: 0;
}

.section-right-tab-desc {
    font-size: 14px;
    color: #DBDCDE;
    font-weight: 400;
    line-height: 1.6;
    padding: 6px 0 16px 0;
    margin: 0;
}

.section-right-tab-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    color: #EF3F23;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.section-right-tab-button:hover {
    color: #EF3F23;
}

@media (max-width: 1440px) {
    .ar-vr-section {
        padding: 30px;
        gap: 16px;
    }

    .ar-vr-section-left {
        position: relative;
        width: 30%;
    }

    .section-left-title {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .section-left-menu {
        gap: 20px;
        margin-top: 24px;
    }

    .section-left-menu li {
        position: relative;
        padding-left: 16px;
        font-size: 16px;
        color: #93969D;
        letter-spacing: -0.032px;
        
    }

    .section-left-menu li::before {
        content: '';
        position: absolute;
        left: -6px;
        top: 7px;
        width: 12px;
        height: 12px;
        background-color: #DBDCDE;
        border-radius: 50%;
        z-index: 1;
    }

    .section-left-menu li.active {
        color: #EF3F23;
        font-weight: 500;
    }

    .section-left-menu li.active::before {
        background-color: #EF3F23;
    }

    .ar-vr-section-right {
        width: 70%;
    }

    .section-right-tab-title {
        font-size: 20px;
        letter-spacing: -0.2px;
    }

    .section-right-tab-desc {
        font-size: 12px;
        padding: 4px 0 12px 0;
        margin: 0;
    }

    .section-right-tab-button {
        gap: 4px;
    }
}


@media (max-width: 767px) {
    .ar-vr-section {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }

    .ar-vr-section-left {
        width: 100%;
    }

    .section-left-title {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .section-left-menu {
        gap: 26px;
        margin-top: 20px;
    }

    .section-left-menu::after {
        left: -2px;
    }

    .section-left-menu li {
        position: relative;
        padding-left: 16px;
        font-size: 16px;
        color: #93969D;
        letter-spacing: -0.032px;
        
    }

    .section-left-menu li::before {
        content: '';
        position: absolute;
        left: -6px;
        top: 7px;
        width: 8px;
        height: 8px;
        background-color: #DBDCDE;
        border-radius: 50%;
        z-index: 1;
    }

    .section-left-menu li.active {
        color: #EF3F23;
        font-weight: 500;
    }

    .section-left-menu li.active::before {
        background-color: #EF3F23;
    }

    .ar-vr-section-right {
        width: 100%;
    }

    .section-right-tab-title {
        font-size: 14px !important;
        line-height: 21px !important;
        letter-spacing: -0.2px;
        margin-bottom: 4px;
    }

    .section-right-tab-desc {
        display: none;
    }

    .section-right-tab-button {
        font-size: 14px;
        gap: 4px;
    }
}