@font-face { font-family: 'poppins'; src: url("https://help.mvnthemes.com/font/Poppins/Poppins-Medium.ttf"); }
@font-face { font-family: 'poppins-l'; src: url("https://help.mvnthemes.com/font/Poppins/Poppins-Light.ttf"); } 

*, ::before, ::after  {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    transition: .3s;
    font-family: 'Poppins';
}

html[data-theme=black] {
    --ms-body: #111;
    --ms-body-light: #1b1b1b;
    --ms-theme-color: #1249ff;
    --ms-theme-color-dark: #0036e7;
    --ms-theme-color-light: #3664fc;
    --ms-green-color: rgb(3, 179, 3);
    --ms-red-color: rgb(213, 4, 0);
}

body {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* min-height: 100%; */

}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background: linear-gradient(-10deg, #111111, #1111119f, #111111d8), linear-gradient(-160deg, #11111100, #111, #111);
    z-index: -1;
}

.ms_wrap {
    max-width: 980px;
    margin: auto;
}

header {
    padding: 10px 4px;
    /* box-shadow: 0 0 20px #00000085; */
}

header .menu-button {
    padding: 10px 15px;
    background: transparent;
    border: 0;
    outline: none;
    display: none;
}

header .menu-button svg path {
    stroke: #fff;
}

header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul {
    display: flex;
    list-style-type: none;
    gap: 20px;
    align-items: center;
}

header ul a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #BBB9B9;
    font-family: 'poppins-l';
    font-size: 14px;
}

header ul a:hover {
    color: #fff;
}

header ul a.contact-btn {
    background: var(--ms-theme-color);
    color: #fff;
    padding: 9px 29px;
    border-radius: 10px;
    font-weight: 'poppins-l';
}

header ul a.contact-btn:hover {
    background: var(--ms-theme-color-dark); 
}


main.in-home-page {
    margin-top: 60px;
}

main.in-home-page .title {
    font-size: 3rem;
    color: #fff;
    text-align: center;
}

main.in-home-page  .search-bar {
    position: relative;
    background: #1E1E1E;
    /* padding: 10px; */
    max-width: 680px;
    margin: auto;
    margin-top: 30px;
    border-radius: 999px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

main.in-home-page  .search-bar input {
    width: 100%;
    height: 80px;
    border-radius: 999px;
    background: transparent;
    border: 3px solid transparent;
    outline: none;
    padding: 10px 95px;
    font-size: 18px;
    color: #fff;
}

main.in-home-page  .search-bar input:focus + button {
    left: calc(100% - 75px);
}

main.in-home-page  .search-bar input:focus {
    padding: 10px 50px;
    border-color: var(--ms-theme-color);
}

main.in-home-page  .search-bar button {
    position: absolute;
    left: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .6s;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 60px;
    border-radius: 999px;
    background: var(--ms-theme-color);
    cursor: pointer;
    border: 0;
    outline: none;
}

main.in-home-page  .search-bar button:hover {
    background: var(--ms-theme-color-dark); 
}

main.in-home-page  .search-bar button:focus {
    transform: translateY(-50%) scale(1.1);
}

main.in-home-page  .search-bar button svg {
    height: 24px;
    width: 24px;
}

main.in-home-page  .search-bar button svg path {
    stroke: #fff;
}

main.in-home-page .topics {
    max-width: 680px;
    margin: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

main.in-home-page .topics label {
    color: #fff;
    margin-right: 20px;
}

main.in-home-page .topics .topics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

main.in-home-page .topics .topics-list a {
    display: block;
    text-decoration: none;
    color: #fff;
    background: var(--ms-theme-color);
    font-family: 'Poppins-l';
    padding: 6px 25px;
    font-size: 14px;
    border-radius: 999px;
}

main.in-home-page .topics .topics-list a:hover {
    background: var(--ms-theme-color-dark);
}

main.in-home-page  .questions {
    margin-top: 80px;
    margin-left: 16px;
    margin-right: 16px;
}

.home-page-top-content {
    margin-left: 16px;
    margin-right: 16px;
}

main.in-home-page  .questions h2 {
    color: #fff;
    font-weight: 500;
}

main.in-home-page .ques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 2rem;
    grid-auto-rows: minmax(auto, auto);
    grid-auto-flow: dense;
}

main.in-home-page .ques-grid ul {
    list-style-type: none;
    margin-top: 10px;
}

main.in-home-page .ques-grid ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main.in-home-page .ques-grid ul a {
    display: block;
    width: 100%;
    margin: 10px 0;
    color: #BCBCBC;
    text-decoration: none;
}

main.in-home-page .ques-grid ul a:hover {
    text-decoration: underline;
}

main.in-home-page .ques-grid ul svg {
    height: 22px;
    width: 22px;
}

main.in-home-page .ques-grid ul svg path {
    stroke: #BCBCBC;
}

.see-all {
    display: block;
    text-decoration: none;
    margin-top: 20px;
    color: var(--ms-theme-color-light);
    font-size: 14px;
    font-weight: 600;
}

.see-all:hover {
    text-decoration: underline;
    color: var(--ms-theme-color);
}

@media screen and (max-width: 670px) {

    header .menu-button {
        display: block;
        cursor: pointer;
    }

    header .menu-button:active svg {
        transform: translate(-50%, -50%) scale(1.3);
    }

    header {
        position: sticky;
        top: 0;
        background: #111111a9;
        backdrop-filter: blur(40px);
        z-index: 99;
    }

    header .menu-container {
        height: 0;
        overflow: hidden;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
    }

    header .menu-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        background: var(--ms-body);
        padding: 20px 10px;
    }

    header .menu-list li {
        width: 100%;
    }

    header .menu-list a {
        display: block;
        width: 100%;
    }
}

button.menu-button { position: relative; height: 40px; width: 40px; }
button.menu-button svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
button.menu-button #x { visibility: hidden; opacity: 0; }
button.menu-button.rotate-90 #x { visibility: visible; opacity: 1; }
button.menu-button.rotate-90 #burger { visibility: hidden; opacity: 0; }
button.rotate-90 svg { transform: translate(-50%, -50%) rotate(90deg) scale(1.2); }


.multi-layout {
    display: flex;
    gap: 8rem;
    margin-left: 15px;
    margin-right: 15px;
}

@media screen and (max-width: 860px) {
    .multi-layout {
        flex-direction: column;
    }

    .reverse-col-860 {
        flex-direction: column-reverse;
    }

    .article-header {
        align-items: none;
        justify-content: none;
    }

    .article-header .top-left {
        width: 100%;
    }

    .article-header .top-right {
        margin-bottom: 40px;
        width: 100%;
    }

    .article-header .top-right .search-bar {
        min-width: 100%;
    }
}

.multi-layout .in-article-page {
    width: 100%;
}

.multi-layout .page-sidebar {
    min-height: 100%;
    min-width: 290px;
}

.article-header {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.article-header .breadcrums {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    gap: 10px;
}

.article-header .breadcrums a {
    font-size: 13px;
    text-decoration: none;
    color: #666;
    position: relative;
    padding-right: 20px;
}

.article-header .breadcrums a::after {
    content: '>';
    margin-left: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.article-header .breadcrums li:last-child a::after {
    display: none;
}


.article-header .article-title {
    font-weight: 500;
    color: #fff;
    margin-top: 5px;
}

.article-header .article-meta-data {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.article-header .article-meta-data span {
    font-size: 14px;
    color: #888;
}

.in-article-page #html_content {
    color: #999;
    margin-top: 30px;
}

.in-article-page #html_content ul,
.in-article-page #html_content ol {
    margin-left: 30px;
}

.article-header .search-bar {
    position: relative;
    background: var(--ms-body-light);
    display: flex;
    min-width: 300px;
    overflow: hidden;
    border-radius: 999px;
}

.article-header .search-bar input {
    height: 50px;
    width: 100%;
    outline: none;
    border: 0;
    background: transparent;
    padding: 0 20px;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 999px;
}

.article-header .search-bar input:focus {
    border-color: var(--ms-theme-color);
}

.article-header .search-bar input:focus + button {
    /* background: var(--ms-theme-color-light); */
}

.article-header .search-bar input:focus + button svg path{
    stroke: #fff;
}

.article-header .search-bar button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: calc(100% - 2px);
    background: transparent;
    border: 0;
    border-radius: 999px;
    outline: line;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--ms-body-light);
}

.article-header .search-bar button svg path {
    stroke: var(--ms-theme-color-light);
}

.article-header .search-bar button svg {
    height: 16px;
    width: 16px;
}

.in-article-page #html_content h1,
.in-article-page #html_content h2,
.in-article-page #html_content h3,
.in-article-page #html_content h4,
.in-article-page #html_content h5,
.in-article-page #html_content h6 {
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
}

.page-sidebar .heading {
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
}

.page-sidebar .list-box {
    padding: 20px;
    background: var(--ms-body-light);
    border-radius: 10px;
    margin-bottom: 30px;
}

.page-sidebar .list-box ul {
    list-style-type: none;
}

.page-sidebar .list-box ul a {
    display: block;
    color: #888;
    text-decoration: none;
    margin: 12px 0;
}

.page-sidebar .list-box ul a:hover {
    text-decoration: underline;
}

ul.styled {
    list-style-type: none;
    width: 100%;
}

ul.bg-styled {
    padding: 20px;
    background: var(--ms-body-light);
    border-radius: 20px;
}

 ul.styled li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    width: 100%;
}

ul.styled li svg path {
    stroke: #888;
}

ul.styled a {
    display: block;
    width: 100%;
    padding: 9px 0;
    text-decoration: none;
    color: #888;
}

ul.styled a:hover {
    text-decoration: underline;
}

.in-section-page {
    margin-top: 20px;
}


.article-header .sub-para {
    font-size: 14px;
    color: #dcdcdc;
    font-style: italic;
}

.in-search-page .res-card {
    background: #222;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 15px 20px #00000030;
    border-radius: 20px;
}

.in-search-page .res-card .title {
    font-size: 18px;
    text-decoration: none;
    color: #fff;
}

.in-search-page .res-card .title:hover {
    text-decoration: underline;
}

.in-search-page .res-card .breadcrums {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
}

.in-search-page .res-card .breadcrums a {
    display: block;
    margin-right: 20px;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    color: #777;
}

.in-search-page .res-card .breadcrums a:hover {
    color: #fff;
}

@media screen and (max-width: 705px) {
    .in-search-page .res-card  .meta-body {
        display: block;
        line-height: 16px;
    }

    .in-article-page #html_content img {
        width: 100%;
    }

    .in-search-page .res-card  .meta-body .article-meta-data {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .in-search-page .res-card  .divider {
        display: none;
    }
}

.in-search-page {
    margin-left: 20px;
    margin-right: 20px;
}

.in-search-page .res-card .breadcrums a::after {
    content: '>';
    margin-left: 10px;
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
}

.in-search-page .res-card .breadcrums a:last-child:after {
    display: none;
}

.in-search-page .res-card p {
    font-size: 15px;
    font-weight: 400;
    color: #999;
}

.in-search-page .res-card p {
    margin-top: 5px;
}

.in-search-page .res-card .divider {
    color: #777;
}

.in-search-page .res-card:hover {
    box-shadow: 0 15px 30px #0000005f;
    cursor: pointer;
    transform: translateY(-10px);
}

.in-search-page .res-card .article-meta-data {
    margin-left: 20px;
}

.in-search-page .res-card .article-meta-data span {
    font-size: 14px;
    color: #777;
}

.in-contact-page {
    margin-left: 20px;
    margin-right: 20px;
}

.in-contact-page .contact-form {
    background: var(--ms-body);
    box-shadow: 0 0 20px #00000085;
    max-width: 600px;
    margin-top: 30px;
    /* margin: auto; */
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 10rem;
}


.in-contact-page .contact-form .input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.in-contact-page .contact-form .input-group label {
    color: #777;
    font-size: 14px;
    margin-bottom: 8px;
}

.in-contact-page .contact-form .input-group input {
    height: 50px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 9px;
    padding: 15px;
    color: #fff;
}

.in-contact-page .contact-form .input-group textarea {
    height: 130px;
    padding: 15px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 9px;
    color: #fff;
    resize: vertical;
    
}

.in-contact-page .contact-form .input-group p {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}

.in-contact-page .contact-form .input-group textarea:hover,
.in-contact-page .contact-form .input-group input:hover
 {
    border-color: var(--ms-theme-color);

}

.in-contact-page .contact-form .input-group textarea:focus,
.in-contact-page .contact-form .input-group input:focus {
    outline-color: #194df7;
    outline-offset: 0;
    outline-style: solid;
}

.in-contact-page .contact-form .submit-form {
    padding: 10px 28px;
    border-radius: 9px;
    border: 0;
    background: var(--ms-theme-color);
    cursor: pointer;
    color: #fff;
    font-size: 14px;
}

.in-contact-page .contact-form .submit-form:disabled {
    opacity: 0.2;
}

.in-contact-page .contact-form .submit-form:not(:disabled):hover {
    background: var(--ms-theme-color-dark);
}

.in-contact-page .contact-form .attachment {
    height: max-content;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    border: 1px solid #333;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.in-contact-page .contact-form .attachment.disabled {
    opacity: 0.2;
}

.in-contact-page .contact-form .attachment .select-file {
    display: flex;
    align-items: center;
    color: #888;
}


.in-contact-page .contact-form .attachment .select-file span {
    font-size: 14px;
    margin-left: 10px;
}

.in-contact-page .contact-form .attachment .select-file .icon {
    height: 40px;
    width: 40px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(26, 97, 251, 0.363);
}

.in-contact-page .contact-form .attachment:not(.disabled):hover .icon {
    background: rgb(26, 97, 251);
}

.in-contact-page .contact-form .attachment:not(.disabled):hover span {
    color: #fff;
}

.in-contact-page .contact-form .attachment:not(.disabled):hover {
    border-color: var(--ms-theme-color-light);
}

.in-contact-page .contact-form .attachment:not(.disabled):hover .select-file .icon svg path {
    stroke: rgb(251, 251, 251);
}

.in-contact-page .contact-form .attachment .select-file .icon svg path {
    stroke: rgb(26, 105, 251);
}

.in-contact-page  .file-mini-card {
    position: relative;
    background: #222;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    user-select: none;
    transform: translateY(-10px);
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    border: 1px solid transparent;
}

/* .in-contact-page  .file-mini-card.completed {
    border: 1px solid var(--ms-green-color);
} */

.in-contact-page  .file-mini-card.completed .icon.complete path {
    stroke: var(--ms-green-color);
}

.in-contact-page  .file-mini-card.completed .icon.complete {
    display: flex;
}

.in-contact-page  .file-mini-card.pending .icon.pending {
    display: flex;
}

.in-contact-page  .file-mini-card.error .icon.error {
    display: flex;
}

.in-contact-page  .file-mini-card.error .progress {
    display: none;
}

.in-contact-page  .file-mini-card.error {
    border-color: var(--ms-red-color);
}

.in-contact-page  .file-mini-card.error .icon.error path {
    stroke: var(--ms-red-color);
}

.in-contact-page  .file-mini-card.error .file-progress {
    display: none;
}

.in-contact-page  .file-mini-card.completed .progress .line {
    background: var(--ms-green-color);
}

.in-contact-page  .file-mini-card .icon {
    height: 40px;
    width: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.in-contact-page  .file-mini-card .icon svg path {
    stroke: #dcdcdc;
    stroke-width: 4px;
}

.in-contact-page  .file-mini-card .file-name {
    font-size: 14px;
    color: #dcdcdc;
}

.in-contact-page  .file-mini-card .file-size {
    font-size: 12px;
    color: #868686;
    margin-top: 2px;
}

.in-contact-page  .file-mini-card .cencel-operation {
    position: absolute;
    right: 10px;
    font-size: 19px;
    width: 30px;
    height: 30p3;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.in-contact-page  .file-mini-card .cencel-operation:hover {
    background: #333;
}

.in-contact-page  .file-mini-card .details {
    width: calc(100% - 100px);
}

.in-contact-page  .file-mini-card .progress {
    position: relative;
    height: 4px;
    width: 100%;
    background: #444;
    margin-top: 6px;
    border-radius: 999px;
    overflow: hidden;
}

.in-contact-page  .file-mini-card .progress .line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--ms-theme-color-light);
}

.in-contact-page  .file-mini-card .file-progress {
    font-size: 12px;
    font-style: italic;
    color: #868686;
}

.in-contact-page .file-lists {
    max-height: calc(64px * 4);
    overflow-y: scroll;
}

.in-contact-page  .file-mini-card.removed {
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
}

.in-contact-page  .file-mini-card {
    opacity: 0;
    visibility: hidden;
}

.in-contact-page  .file-mini-card.added {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}


.line-lmt-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; /* Change the number to the desired line limit */
    overflow: hidden;
}

.spinner {
    height: 20px;
    width: 20px;
    border: 2px solid #fff;
    border-top-color: transparent;
    animation: 0.3s Spin linear infinite;
    border-radius: 999px;
}


@keyframes Spin {
    to { transform: rotate(0deg); }
    from { transform: rotate(-360deg); }
}


/* utility CSS  */
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.block { display: block; }
.bg-red { background: red; }
.symbol { color: var(--ms-green-color); }
.trans-none { transition: none !important; }
.text-sm { font-size: 14px; }
.text-700 { color: #777; }
.scroll-none::-webkit-scrollbar { display: none; }
/* .smooth-shadow:hover { box-shadow: 0 0 2px 4px #076eff46; } */