body {
    font-family: inter;
    color: #101010;
    line-height: 1.5;
    overflow-x: hidden
}

.main-container {
    width: 100%;
    padding: 180px 50px 50px 50px
}

.main-container h1 {
    margin: 30px auto;
    font-family: Inter;
    font-weight: 600;
    font-size: 52px;
    line-height: 1.5;
    text-align: center
}

.main-container h3 {
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    text-align: center
}

.panel-title {
    text-align: left
}

.toggel-lms-tubes {
    background-color: #fff;
    color: #101010;
    cursor: pointer;
    padding: 16px;
    width: 100%;
    text-align: left;
    font-size: 18px;
    transition: .4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.5;
    box-shadow: 0 0 4px 0 #00000029;
    border-radius: 12px;
    border: 1px solid #93cefb
}

.toggel-lms-tubes h4 {
    font-family: Inter;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center
}

.usecase-tab-container {
    padding: 30px 50px;
    text-align: left
}

.toggletext {
    color: #101010;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;
}

.toggle-bg {
    background: #E3F2FE;
    border-radius: 12px;
    margin: 20px 0px;
}


.toggel-lms-tubes:hover {
    background-color: #dbeefd;
    color: #101010
}

.toggel-lms-tubes.active {
    background-color: #fff;
    color: #101010
}

.toggeltextlms {
    max-height: 0;
    box-shadow: 0 3px 6px #0000001A;
    overflow: hidden;
    transition: max-height .2s ease-out;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px
}

.toggel-box-lms {
    padding: 0 20px
}

.toggle-arrow {
    width: 28px;
    height: 28px;
}

@media only screen and (min-width:767px) {
    .desktop-version {
        display: block
    }

    .mobile-version {
        display: none
    }
}

@media only screen and (max-width:767px) {
    .desktop-version {
        display: none !important
    }

    .main-container {
        flex-direction: column;
        padding: 140px 20px 20px 20px
    }

    .usecase-tab-container {
        padding: 20px;
        text-align: left;
    }

    .main-container h1 {
        font-size: 36px;
        margin: auto;
    }

    .main-container h3 {
        font-size: 20px;
    }

    .toggel-lms-tubes h4 {
        font-size: 20px;
    }
}

@media (min-width:768px) and (max-width:1024px) {
    .main-container {
        padding: 180px 20px 20px 20px;
        display: flex
    }
}