:root {
    --primary-color: #0067b8;
    --background-Color: #f2f8f9;
}

* {
    padding: 0;
    margin: 0;
    /* color: black; */
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    margin: 0;
    padding: 0;
    color: black;
}

.main-div {
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.padding-10 {
    padding: 10px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.ml-10 {
    margin-left: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.ml-15 {
    margin-left: 15px;
}

.mt-15 {
    margin-top: 15px;
}

.mr-auto {
    margin-right: auto;
}

.search-box {
    width: fit-content;
    height: fit-content;
    position: relative;
}


.input-search {
    height: 50px;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all .5s ease-in-out;
    background-color: var(--primary-color);
    padding-right: 40px;
    color: var(--primary-color);
}

.input-search::placeholder {
    color: var(--primary-color);
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
}

.btn-search {
    width: 50px;
    height: 50px;
    border-style: none;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    top: 10px;
    color: var(--primary-color);
    background-color: transparent;
    pointer-events: painted;
}

.btn-search:focus~.input-search {
    width: 200px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid var(--primary-color);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.input-search:focus {
    width: 200px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid var(--primary-color);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.title-div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 170px;
    width: 100%;
    background-image: url(../img/screen_bg.svg);
    padding: 20px;
}

.welcome-text {
    font-size: 30px;
    color: white;
    font-weight: 600;
    text-align: center;
}

.welcome-dis {
    /* margin-left: 10px; */
    color: white;
    text-align: center;
}

.started-button {
    width: 150px;
    height: 45px;
    padding: 10px;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
}

.started-button a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
}

.started-button:hover {
    border: 2px solid var(--primary-color);
}

.document-title-div {
    width: calc(100% - 15px);
    margin-top: 20px;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
}

/* ///// */

nav {
    width: 100%;
}

nav .wrapper {
    position: relative;
    width: 99%;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
}

.wrapper .logo a {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    font-weight: 600;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #fff;
    width: 180px;
    line-height: 25px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links .drop-menu.sub-menu {
    width: auto !important;
    padding: 15px;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
    z-index: 99;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 8px 0 0 15px !important;
    font-weight: 400;
    border-radius: 0px;
}

.login-btn {
    border: 1px solid;
    background-color: var(--background-Color);
}

.login-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #242526;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}

.content .row .mega-links {
    margin-left: -40px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
    margin-top: 15px;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

.sidebar {
    width: 270px;
    height: 100%;
    background-color: var(--background-Color);
    position: fixed;
    top: 0;
    left: -270px;
    transition: left 0.3s ease;
    z-index: 100;
    /* padding: 25px; */
    padding: 15px;
}

.sidebar.active {
    left: 0;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar li {
    position: relative;
    line-height: 10px;
    margin-bottom: 10px;
}

.sidebar li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 18px;
}

.sidebar li:hover>a {
    background-color: var(--primary-color);
    color: #fff;
}

.sidebar li:hover .sub-menu {
    display: block;
}

.sidebar .sub-menu {
    display: none;
    background-color: #f5f5f5;
    padding-left: 20px;
    margin-top: 5px;
    /* border-left: 3px solid var(--primary-color); */
    display: block;

}

/* .sidebar .sub-menu li {
    margin: 5px 0px;
} */

.sidebar .sub-menu li a {
    padding: 8px !important;
    color: var(--primary-color);
    /* white-space: nowrap;
    overflow: hidden; */
    line-height: 18px;
}

.sidebar .sub-menu li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn.menu-btn {
    cursor: pointer;
    margin-left:15px;
    margin-right:15px;
}

nav .d-none input {
    display: none;
}

ul {
    padding-left: 0px !important;
}

input {
    line-height: inherit !important;
}

/* button {
    line-height: inherit !important;
} */

section.services {
    max-width: 1600px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.card6 {
    --border-radius: 0.75rem;
    --primary-color: #0067b8;
    --secondary-color: #3c3852;
    width: calc(25% - 24px);
    margin: 12px;
    font-family: "Arial";
    padding: 1rem;
    /* cursor: pointer; */
    border-radius: var(--border-radius);
    background: #f2f8f9;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 3%);
    position: relative;
    min-height: 130px;
}
.card6 .card6_content {
    color: var(--secondary-color);
    font-size: 0.86rem;
    margin: 12px;
}
.card2 {
    display: block;
    position: relative;
    width: calc(50% - 24px);
    border-radius: 4px;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

.services .service-item {
    border-radius: 5px;
    padding: 40px;
    display: flex;
}

.services .service-item i {
    transition: all .5s;
    float: left;

    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 30px;
    margin-right: 30px;
}

.services .service-item img {
    height: 64px;
    width: 64px;
}

.fas,
.fa-solid {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.fa-archive::before {
    content: "\f187";
}

.services .service-item h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.services .service-item:hover i {
    /* margin-top: 15px; */
}

.services p {
    font-size: 15px;
    /* line-height: 26px; */
    color: #212741;
}

.category-div {
    /* background-image: url(../img/star.png); */
    background-repeat: no-repeat;
    background-attachment: local;
    background-position: 100% 00px;
    background-size: 150px 150px;
    display: flex;
    flex-direction: column;
    width: calc(100% - 40PX);
    justify-content: center;
    align-items: center;
    margin: 70px 20px 0px 20px;
}



.category-div-p1 {
    color: #757995;
    font-weight: 500;
    font-size: 16px;
}

.category-div-p2 {
    font-size: 35px;
    font-weight: 600;
    color: #14183e;
    margin: 0px 0px 10px 0px;
}

.cat-img-main-div {
    width: calc(33% - 24px);
    margin: 12px;
}

.category-imagediv {
    display: flex;
    align-items: center;
    max-width: 1600px;
    width: 100%;
    flex-wrap: wrap;

}

.category-imagediv-subdiv {
    height: 280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    border: 1px solid var(--bs-gray-200);
    border-radius: 30px;
    position: relative;
    border: 1px solid #80808038;
    margin: 25px 12px 0px 12px;
    background-color: white;
}

.hoverdiv {
    display: none;
    position: absolute;
    z-index: -1;
    height: 100px;
    width: 100px;
    left: -20px;
    bottom: -20px;
    background-color: #da664d;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 20px;
}

.category-imagediv-subdiv:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.category-imagediv-subdiv:hover .hoverdiv {
    display: block;
}

.imagediv {
    margin: 12px;
    width: calc(25% -24px);
}


.imagediv-category {
    height: 100px;
    width: 100px;
    margin: 20px 0px 20px 0px;
}

.category-name-p {
    text-align: center;
    color: #14183e;
    font-size: 20px;
    font-weight: 500;
}

.category-name-p2 {
    text-align: center;
    color: #757995;
    font-size: 14px;
    font-weight: 500;
    margin: 0px 20px 0px 20px;
}

/* //////// */

.dashboard-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    width: calc(100% - 20px);
    background-color: #80808024;
    border-radius: 15px;
    margin-right: 10px;
    margin-left: 10px;
}

.side-container {
    width: calc(60% - 40px);
    /* height: 280px; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
    margin: 20px;
    cursor: pointer;
}

.side-container div {
    font-size: 30px;
}

.video-container {
    width: calc(40% - 40px);
    /* height: 280px; */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 20px;
}

video {
    width: 600px;
    /* height: 350px; */
    border-radius: 15px;
}

.click-me-btn {
    color: white;
    background-color: #393939;
    padding: 15px;
    border-radius: 10px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.click-me-btn a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ////////////// */

.container2 {
    max-width: 1600px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.card3 {
    --border-radius: 0.75rem;
    --primary-color: #0067b8;
    --secondary-color: #3c3852;
    width: calc(25% - 24px);
    margin: 12px;
    font-family: "Arial";
    padding: 1rem;
    /* cursor: pointer; */
    border-radius: var(--border-radius);
    background: #f1f1f3;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 3%);
    position: relative;
    min-height: 130px;
}

.card4 {
    --border-radius: 0.75rem;
    --primary-color: #0067b8;
    --secondary-color: #3c3852;
    width: calc(25% - 24px);
    margin: 12px;
    font-family: "Arial";
    padding: 1rem;
    cursor: pointer;
    border-radius: var(--border-radius);
    background: #8a8aa1;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 3%);
    position: relative;
}

.card3>*+* {
    margin-top: 1.1em;
}

.card3 .card3__content {
    color: var(--secondary-color);
    font-size: 0.86rem;
}

.card3__content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.card3 .card3__title {
    padding: 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.card3 .card3_title {
    padding: 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.card3 .card3__date {
    color: #6e6b80;
    font-size: 0.8rem;
}

.card3 .card3__arrow {
    position: absolute;
    background: var(--primary-color);
    padding: 0.4rem;
    border-top-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    bottom: 0;
    right: 0;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card3 svg {
    transition: 0.2s;
}

.card3:hover .card3__title {
    color: var(--primary-color);
    /* text-decoration: underline; */
}

.card3:hover .card3__arrow {
    background: #111;
}

.card3:hover .card3__arrow svg {
    transform: translateX(3px);
}

.dashboard-image-div {
    height: 280px;
    width: calc(50% - 40px);
    margin: 20px;
    border: 1px solid rgba(128, 128, 128, 0.202);
    border-radius: 15px;
    /* background-image: url(../img/demo.jpg);
    background-size: cover; */

}

.previous-releases-div {
    height: 280px;
    width: calc(50% - 40px);
    margin: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    font-size: 30px;
}


/*  */

.dashboard-container2 {
    max-width: 1600px;
    width: calc(100% - 20px);
    display: flex;
    flex-wrap: wrap;
    background: #80808017;
    border-radius: 15px;
    padding: 20px;
    margin-right: 10px;
    margin-left: 10px;
}

.dashboard-image-div2 {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;

}

.previous-releases-div2 {
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px 20px;
}

/* social media */

.social-media-main-div {
    margin-top: 15px;
}

.social-media-div {
    margin-bottom: 10px;
}

.social-media-div a {
    display: inline-flex;
    width: 130px;
}

.social-media-div a i {
    width: 30px;
    font-size: 20px;
}

.social-media-div a span {
    font-size: 20px;
}

.social-media-div a:hover i,
.social-media-div a:hover span {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-media-div a img {
    width: 26px;
    border-radius: 0px;
    margin-right: 5px
}

/* end */


/* /// unifyi Platform css /// */
.card1 {
    display: block;
    position: relative;
    width: calc(25% - 24px);
    height: 160px;
    background-color: var(--background-Color);
    border-radius: 4px;
    padding: 32px 24px;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
}

.card1 h3 {
    color: #262626;
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card1 p {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    color: #666;
}

.card1 p.small {
    font-size: 14px;
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 32px;
    height: 32px;
    overflow: hidden;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 0 4px 0 32px;
}

.go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
}

.card1:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: var(--primary-color);
    height: 32px;
    width: 9.2%;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}

.card1:hover:before {
    transform: scale(21);
}

.card1:hover p {
    transition: all 0.3s ease-out;
    color: rgba(255, 255, 255, 0.8);
}

.card1:hover h3 {
    transition: all 0.3s ease-out;
    color: #fff;
}


.card4 {
    display: flex;
    flex-direction: column;
    width: calc(25% - 24px);
    height: 350px;
    overflow: hidden;
    border-radius: .5em;
    text-decoration: none;
    background-color: var(--background-Color);
    margin: 12px;
    padding: 2.75em 2.5em;
    box-shadow: 0 1.5em 2.5em -.5em rgba(#000000, .1);
    transition: transform .45s ease, background .45s ease;

    h3 {
        color: #2E3C40;
        font-size: 17px;
        font-weight: 600;
        line-height: 1;
        padding-bottom: .5em;
        margin: 0 0 0.142857143em;
        border-bottom: 2px solid var(--primary-color);
        transition: color .45s ease, border .45s ease;
    }

    h4 {
        color: #627084;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.1em;
        margin: 0 0 1.777777778em;
        transition: color .45s ease;
    }

    p {
        opacity: 1;
        color: #627084;
        height: 220px;
        overflow: auto;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.8;
        margin: 0 0 1.25em;
        transform: translateY(-1em);
        transition: opacity .45s ease, transform .5s ease;
    }

    .link-text {
        display: block;
        color: var(--primary-color);
        font-size: 1.125em;
        font-weight: 600;
        line-height: 1.2;
        margin: auto 0 0;
        transition: color .45s ease;

        svg {
            margin-left: .5em;
            transition: transform .6s ease;

            path {
                transition: fill .45s ease;
                fill: var(--primary-color)
            }
        }
    }

    &:hover {
        background: var(--primary-color);
        transform: scale(1.02);

        h3 {
            color: #FFFFFF;
            border-bottom-color: #fff;
        }

        h4 {
            color: #FFFFFF;
        }

        p {
            opacity: 1;
            color: #fff;
            transform: none;
        }

        .link-text {
            color: #FFFFFF;

            svg {
                animation: point 1.25s infinite alternate;

                path {
                    fill: #FFFFFF;
                }
            }
        }
    }
}

.card5 {
    border-radius: 10px;
    filter: drop-shadow(0 5px 10px 0 #ffffff);
    width: calc(25% - 24px);
    height: 180px;
    background-color: var(--background-Color);
    padding: 20px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    margin: 12px;
    transition: 0.6s ease-in;
}

.card5 div {
    font-size: 15px;
    font-weight: bold;
}

.card5::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -15px;
    right: -15px;
    background: var(--primary-color);
    height: 220px;
    width: 25px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}

.card5:hover::before {
    transition-delay: 0.2s;
    transform: scale(40);
}

.card5:hover {
    color: #ffffff !important;
}

.card5 h4:hover {
    color: #fff;
}

.card5 p:hover {
    color: #fff;
}

.card5 p {
    padding: 10px 0;
}

.paragraph {
    margin-top: 0;
    margin-bottom: 1rem !important;
    text-align: justify !important;
    line-height: 1.6;
    font-weight: 500;  
    color: #191919;
}
li {
    /* padding: 5px; */
    padding: 0 0 0 10px;
    /* color: #191919 !important; */
}
/* Carousel */

.container-10 {
    width: 100%;
    max-width: 800px;
    height: 230px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.card-10 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    flex-direction: column;
    width: 150px;
    height: 150px;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform 0.4s ease;
    cursor: pointer;
    background: #10afd5;
    border-radius: 50%;
}

.card-10 img {
    height: 50px !important;
    width: auto !important;
    margin-bottom: 10px;
}

.card-10 .name {
    font-size: 15px;
    color: white;
    text-align: center;
}

.container-10 input[type="radio"] {
    display: none;
}

.cards {
    /* position: relative; */
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}

img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

#item-1:checked~.cards #items-5,
#item-2:checked~.cards #items-1,
#item-3:checked~.cards #items-2,
#item-4:checked~.cards #items-3,
#item-5:checked~.cards #items-4 {
    transform: translatex(-150%) scale(0.8);
    opacity: 0.4;
    z-index: 0;
}

#item-1:checked~.cards #items-2,
#item-2:checked~.cards #items-3,
#item-3:checked~.cards #items-4,
#item-4:checked~.cards #items-5,
#item-5:checked~.cards #items-1 {
    transform: translatex(150%) scale(0.8);
    opacity: 0.4;
    z-index: 0;
}

#item-1:checked~.cards #items-1,
#item-2:checked~.cards #items-2,
#item-3:checked~.cards #items-3,
#item-4:checked~.cards #items-4,
#item-5:checked~.cards #items-5 {
    transform: translatex(0) scale(1);
    opacity: 1;
    z-index: 1;
}

.player {
    /* display: none; */
    background-color: #fff;
    border-radius: 8px;
    min-width: 320px;
    padding: 16px 10px;
    /* margin-top: 150px; */
}

.upper-part {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    height: 36px;
    overflow: hidden;
}

.play-icon {
    margin-right: 10px;
}

.items-info {
    width: calc(100% - 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.items-info .title {
    color: #403d40;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.sub-line {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.subtitle,
.time {
    font-size: 12px;
    line-height: 16px;
    color: #c6c5c6;
}

.time {
    font-size: 12px;
    line-height: 16px;
    color: #a5a5a5;
    font-weight: 500;
    margin-left: auto;
}

.progress-bar {
    height: 3px;
    width: 100%;
    background-color: #e9efff;
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    display: block;
    position: relative;
    width: 60%;
    height: 100%;
    background-color: #2992dc;
    border-radius: 6px;
}

.info-area {
    width: 100%;
    position: absolute;
    top: 0;
    left: 30px;
    transition: transform 0.4s ease-in;
}

#item-1:checked~.player #test {
    transform: translateY(0);
}

#item-2:checked~.player #test {
    transform: translateY(-40px);
}

#item-3:checked~.player #test {
    transform: translateY(-80px);
}

#item-4:checked~.player #test {
    transform: translateY(-120px);
}

#item-5:checked~.player #test {
    transform: translateY(-160px);
}

/* END */

/* Slider */

.page-slider {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    width: calc(100% - 20px);
    /* background-color: #80808024; */
    border-radius: 15px;
    margin-right: 10px;
    margin-left: 10px;
}

.carousel {
    position: relative;
}

.carousel.pointer-event {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
    transform: translateX(-100%);
}

.carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-item.active,
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    z-index: 1;
    opacity: 1;
}

.active.carousel-item-left,
.active.carousel-item-right {
    z-index: 0;
    opacity: 0;
}

.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: 50% / 100% 100% no-repeat;
}

.carousel-control-prev-icon {
    background-image: url(../img/screen_bg.svg);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: 50% / 100% 100% no-repeat;
}

.carousel-inner img {
    width: 100%;
    height: 100%;
}

.sidebar-brand {
    color: #f8f9fa;
    display: flex;
    align-items: center;
    padding: 20px;
    margin-right: auto;
}

.align-middle {
    vertical-align: middle !important;
}

.logo-img-div {
    width: 159px;
    height: 30px;
    background-image: url(../img/unifiya_logo.svg);
}

.peronal-vault-title {
    margin-top: 50px;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.applies-to-main-div {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
}

.applies-to-main-div>img {
    width: 20px;
    margin-bottom: 3px;
    margin-right: 10px;
}

.applies-to-main-div>div {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
}

.peronal-vault-title-a {
    color: #0067b8;
}

.title-sub-txt {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* END */

/* @media screen and (max-width: 970px) { */
@media screen and (max-width: 1050px) {
    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #242526;
        display: block;
        padding: 50px 0px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }

    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    #close-btn:checked~.btn.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links .mobile-item:hover {
        background: #3A3B3C;
    }

    .drop-menu li {
        margin: 0;
    }

    .drop-menu li a {
        border-radius: 5px;
        /* font-size: 18px; */
        font-size: 15px;
    }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }

    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content .row header {
        font-size: 19px;
    }
}


/* ///// */

#goTopBtn {
    height: 50px;
    width: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--background-Color);
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}


#goTopBtn.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: scale(1);
}

html {
    scroll-behavior: smooth;
}

@keyframes point {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(.125em);
    }
}

@media (max-width: 1200px) {
    .card3 {
        width: calc(33% - 24px)
    }

    .card1 {
        width: calc(33% - 24px)
    }

    .card4 , .card6 {
        width: calc(33% - 24px)
    }

    .card5 {
        width: calc(33% - 24px)
    }
}

@media (max-width: 960px) {
    .side-container {
        width: calc(50% - 40px);
    }

    .video-container {
        width: calc(50% - 40px);
    }
}

@media (max-width: 790px) {
    .side-container {
        width: calc(100% - 40px);
    }

    .video-container {
        width: calc(100% - 40px);
        justify-content: center;
    }
}

@media (max-width: 450px) {
    video {
        width: 100%;
        height: 100%;
        border: 1px solid rgba(128, 128, 128, 0.1);
    }
}

@media (max-width: 960px) {
    .cat-img-main-div {
        width: calc(50% - 24px)
    }

    .card3 {
        width: calc(50% - 24px)
    }

    .card1 {
        width: calc(50% - 24px)
    }

    .card4,.card6 {
        width: calc(50% - 24px)
    }

    .card5 {
        width: calc(50% - 24px)
    }

}

@media (max-width: 630px) {
    .card2 {
        width: calc(100% - 24px);
    }
}

@media (max-width: 610px) {
    .cat-img-main-div {
        width: calc(100% - 24px)
    }

    .dashboard-image-div {
        width: calc(100% - 40px);
    }

    .previous-releases-div {
        width: calc(100% - 40px);
    }

    .dashboard-image-div2 {
        width: calc(100% - 40px);

    }

    .previous-releases-div2 {
        width: calc(100% - 40px);
        margin-top: 40px;
    }

    .side-container {
        width: calc(100% - 40px);
    }

    .video-container {
        width: calc(100% - 40px);
    }

    .card3 {
        width: calc(100% - 24px)
    }

    .card1 {
        width: calc(100% - 24px)
    }

    .card4,.card6 {
        width: calc(100% - 24px)
    }

    .card5 {
        width: calc(100% - 24px)
    }


    .welcome-text {
        font-size: 27px;
     }

    .welcome-dis {
       font-size: 15px;
    }

}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.table th {
    font-weight: 500;
}

.table tbody th {
    border-bottom: 1px solid #eaeff4;
}

.table .thead-light th {
    background-color: #eef6f6;
    font-size: 1rem;
    text-align: center;
    border-bottom: 4px solid #dee2e6;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #757575;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #f1f2f3;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #f1f2f3;
}

.table tbody+tbody {
    border-top: 2px solid #f1f2f3;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 2px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

home-footer-text {
    font-size: 17px !important;
}

.boxcontainerwidth {
    width: 90%;
}

.hometextdiv {
    margin: 0  20%;
}
.hometextdiv > * {
    margin-bottom: 10px;
}
/* .mb-10 {
    margin-bottom: 15px;
} */
.hometextdiv ul {
    margin-left: 30px;
}
.customImage {
    max-height: 500px;
    text-align: center;
}
.customImage > img {
    max-width: 100%;
    max-height: 100%;
    border: 2px solid gray;
    border-radius: 5px;
}

@media only screen and (max-width: 360px) {
    .hometextdiv {
        margin: 0 5%;
    }
}

h1 {
    font-size: 1.6rem;
    color: #0067b8;
}

h2 {
    font-size: 1.5rem !important;
}

h3 {
    font-size: 1.4rem;
    color: #495057;
}
/* 
h4 {
    font-size: 1.3rem;
    color: #3e72c1;
}

h5 {
    font-size: 1.2rem;
    color: #6c757d;
}

h6 {
    font-size: 1rem;
    color: #3e72c1 !important;
} */


.search-box {
    width: fit-content;
    height: fit-content;
    position: relative;
}

.input-search {
    height: 50px;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all .5s ease-in-out;
    background-color: var(--primary-color);
    padding-right: 40px;
    color: var(--primary-color);
}

.input-search::placeholder {
    color: var(--primary-color);
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
}

.btn-search {
    width: 50px;
    height: 50px;
    border-style: none;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color: var(--primary-color);
    background-color: transparent;
    pointer-events: painted;
}

.btn-search:focus~.input-search {
    width: 200px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid var(--primary-color);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.input-search:focus {
    width: 200px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid var(--primary-color);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.search-result-div {
    margin-top: 10px;
    z-index: 5;
    position: absolute;
    border-radius: 5px;
    border: 1px solid rgba(128, 128, 128, 0.462);
    background: white !important;
    max-height: 400px;
    overflow: auto;
}

.search-result-sub-div {
    max-width: 750px;
    font-size: 16px;
    font-weight: 600;
    color: gray;
    width: max-content;
    display: flex;
    flex-direction: column;
}

.search-result-sub-div p {
    padding: 10px;
    margin-bottom: 0px !important;
}

.search-list-main-div {
    padding: 20px;
}

.search-list-main-div>div {
    color: #007bff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.search-list-main-div>div>div {
    margin-bottom: 10px;
}
.result-item {
    padding: 10px;
}

.result-item a {
    text-decoration: none;
    color: #007bff;
}

.result-item a span {
    color: #495057 !important;
    font-weight: 400 !important;
    font-size: 14px !important;
}


.result-item{
    line-height: normal !important;
}

.show-more-btn{
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    margin: 0px auto;
    margin: 15px auto;
    cursor: pointer;
}

.align-items-normal{
    align-items: normal !important;;
}