body {
    font-family: 'Roboto', sans-serif;
    border-right: 10px solid #880025;
    border-left: 10px solid #880025;
    letter-spacing: 1px;
}

header {
    background: #880025;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.header-bottom-space {
    height: 78px;
}

/*.sticky-header {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    z-index: 9;*/
/*    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);*/
/*    animation-name: sticky_header_fadein;*/
/*    animation-duration: 0.5s;*/
/*    animation-iteration-count: 1;*/
/*}*/

@keyframes sticky_header_fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

a {
    text-decoration: none;
}

.header-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.header-menu-mobile {
    display: none;
}

.header-menu img {
    width: 27px;
}

.header-right-side {
    display: flex;
    gap: 7px;
    align-items: flex-start;
}

#menu-sidebar-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
}

#menu-sidebar-btn img {
    width: 7px;
    height: 27px;
    object-fit: contain;
}

#menu-sidebar {
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    width: 350px;
    max-width: 100%;
    left: -400px;
    height: 100vh;
    overflow-y: auto;
    transition: ease-in-out 0.3s;
    padding: 50px 20px;
    z-index: 9;
}

#menu-sidebar::-webkit-scrollbar {
  width: 5px;
}

#menu-sidebar::-webkit-scrollbar-track {
  background: #f5f5f5; 
  border-radius: 5px;
}
 
#menu-sidebar::-webkit-scrollbar-thumb {
  background: #880025; 
  border-radius: 5px;
}

#menu-sidebar.menu-sidebar-active {
    left: 0;
}

#menu-sidebar-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    font-size: 25px;
}

.sidebar-menu-ul {
    padding: 0;
    list-style-type: none;
}

.sidebar-menu-ul li {
    padding: 10px 0;
    border-bottom: 1px solid #444;
}

.sidebar-menu-ul-a {
    color: white;
    background: #880025;
    padding: 5px 20px;
    border-radius: 5px;
    display: block;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    text-transform: capitalize;
}

.banner-heading {
    color: #000;
    text-align: center;
    border-bottom: 4px solid #880025;
    width: fit-content;
    margin: 0 auto;
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
    margin-top: 10px;
}

.banner-contact-link {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 5px;
    margin-top: 5px;
}

.banner-contact-link img {
    width: 22px;
    object-fit: contain;
}

.banner-contact-link a {
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

.sub-banner-div {
    background: #fff;
    padding: 10px;
    border: 3px solid #000;
    border-radius: 10px;
    margin-top: 10px;
}

.red-btn {
    color: #fff;
    background: #880025;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    border: none;
    outline: none;
    letter-spacing: 1px;
}

.btn-center {
    margin: 0 auto;
    width: fit-content;
    display: block;
}

.total-pending-div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
}

.total-pending {
    color: #000;
    font-weight: 700;
    padding: 7px 10px;
    font-size: 13px;
    line-height: 15px;
    text-align: center;
    border: 2px solid #880025;
    border-radius: 1000px;
}

.profile-view-count-div {
    background: yellow;
    color: #000;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    margin: 10px auto 0;
    width: fit-content;
    text-align: center;
}

.welcome-msg {
    margin: 10px 0 0 0;
    text-align: center;
    color: #000;
    font-weight: 700;
    font-size: 20px;
}

.third-party-btn {
    display: block;
    color: #fff;
    background: #0a65fe;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    width: fit-content;
    margin: 10px auto 0;
}

.categories-div {
    padding: 5px;
    width: 25%;
}

.categories-inner-div {
    background: #fff;
    border: 4px solid #000;
    border-radius: 10px;
    height: 100%;
}

.categories-div-img {
    width: 100%;
    height: 205px;
    border-radius: 7px 7px 0 0;
    object-fit: cover;
    object-position: top;
}

.categories-content-div {
    height: calc(100% - 205px);
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.categories-div-head {
    margin-bottom: 0;
    text-transform: capitalize;
    color: #000;
    font-size: 25px;
    line-height: 28px;
    font-weight: 700;
    text-align:  center;
    margin-bottom: 10px;
}

.categories-div-number {
    background: #880025;
    color: #fff;
    padding: 7px 25px;
    border-radius: 5px;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.categories-div-btn {
    background: #880025;
    color: #fff;
    border: none !important;
    border-radius: 5px;
    max-width: 100%;
    font-size: 19px;
    font-weight: 700;
    padding: 7px 25px;
    margin-top: auto;
}

.categories-content-div-inner {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.biodataslider-slide {
    padding: 0 5px;
}

.biodataslider-slide-inner {
    width: 100%;
    position: relative;
}

.biodataslider-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top;
}

.biodataslider-tag-line {
    margin: 0;
    position: absolute;
    top: 260px;
    left: -115px;
    text-shadow: rgb(0, 0, 0) 2px 2px 0px, rgb(0, 0, 0) -1px -1px 0px, rgb(0, 0, 0) 1px -1px 0px, rgb(0, 0, 0) -1px 1px 0px, rgb(0, 0, 0) 1px 1px 0px;
    font-size: 27px;
    color: #fff;
    transform: rotate(270deg);
}

.biodataslider-latest-head {
    position: absolute;
    top: 0;
    left: 0;
    background: #880025;
    padding: 9px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.biodataslider-serial-no {
    position: absolute;
    top: 0;
    right: 0;
    background: #880025;
    padding: 10px 24px;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
}

.biodataslider-phone-link {
    position: absolute;
    top: 5px;
    left: 100px;
    display: flex;
    gap: 5px;
}

.biodataslider-phone-link a {
    width: 35px;
}

.biodataslider-phone-link a img {
    width: 100%;
    object-fit: contain;
}

.biodataslider-content-div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #00000087;
    padding: 10px 15px;
}

.biodataslider-content-div ul {
    padding: 0;
    list-style-type: none;
}

.biodataslider-content-div ul li {
    color: #fff;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    font-weight: 600;
}

.biodataslider-btn {
    background: #880025;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    padding: 15px 5px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
}

.biodataslider .slick-arrow {
    height: 40px;
    width: 40px;
    background-color: #880025c2 !important;
    font-size: 0;
    border-radius: 5px;
    border: 3px solid #fff;
    background-size: 20px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.biodataslider .slick-arrow::before {
    display: none;
}

.biodataslider .slick-prev.slick-arrow {
    left: 10px;
    background-image: url(../images/left-arrow.png);
}

.biodataslider .slick-next.slick-arrow {
    right: 10px;
    background-image: url(../images/right-arrow.png);
}

.section-padding {
    padding: 10px 0;
}

.heading-center {
    font-size: 35px;
    line-height: 38px;
    font-weight: 600;
    text-align: center;
    border-bottom: 5px solid #880025;
    width: fit-content;
    margin: 0 auto;
}

.contact-icon-div {
    margin: 0 auto;
    background: #880025;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    padding: 15px;
    margin-top: 30px;
}

.contact-icon-div img {
    width: 100%;
}

.contact-head {
    background: #000;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    width: fit-content;
    margin: 10px auto 0;
}

.contact-link {
    background: #880025;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    margin: 10px auto 0;
}

.contact-link img {
    width: 25px;
}

.contact-address {
    border: 3px solid #880025;
    border-radius: 10px;
    padding: 5px;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.social-links a {
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 20px;
    line-height: 24px;
}

.allbiodatabtndiv {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.allbiodatabtndiv a {
    background: #880025;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
}

.allbiodatabtndiv img {
    width: 53px;
}

.allbiodatabtndiv-total img {
    width: 75px;
}

.search-form {
    width: 100%;
    max-width: 500px;
    margin: 10px auto 0;
}

.search-form form {
    width: 100%;
    position: relative;
}

.search-form form input {
    width: 100%;
    outline: none;
    border: 3px solid  #880025;
    border-radius: 30px;
    color: #880025;
    padding: 10px;
    font-size: 19px;
    line-height: 23px;
    font-weight: 700;
}

.search-form form .search-form-button {
    position: absolute;
    top: 4px;
    right: 5px;
    background: #880025;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 20px;
    line-height: 21px;
    padding: 10px 11px;
}

.modal .modal-header {
    background: #880025;
}

.modal .modal-title {
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
    padding: 5px;
    border: 5px solid #fff;
    text-align: center;
    margin: 0 auto;
    text-transform: capitalize;
}

.modal .btn-close {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    background-image: none;
    opacity: 1;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 23px;
    height: auto;
    width: auto;
    margin: 0;
    outline: none;
    box-shadow: none;
    z-index: 9;
}

#paymentmodal .btn-close {
    top: 0;
    right: 0;
    background: #880025;
    padding: 3px 9px;
    border-radius: 1000px;
}

.form-label {
    color: #880025;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    margin-top: 15px;
    display: block;
}

.form-label-star {
    color: #000;
    font-size: 35px;
}

.form-control {
    border: 2px solid #880025 !important;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    outline: none !important;
    box-shadow: none !important;
}

select.form-control {
    background-image: url(../images/arrow-down-sign-to-navigate.png);
    background-repeat: no-repeat;
    background-size: 27px;
    background-position: calc(100% - 12px) 6px;
}

.form-control-checkbox {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    line-height: 20px;
    cursor: pointer;
}

.form-control-checkbox input {
    width: 20px;
    height: 20px;
}

.sub-label {
    margin: 0;
    color: #880025;
    font-weight: 600;
    font-size: 20px;
}

.form-preview-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: .5rem;
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.form-final-msg {
    margin-bottom: 0;
    margin-top: 10px;
    color: #880025;
    font-weight: 600;
    font-size: 25px;
    line-height: 40px;
}

.form-final-msg span {
    padding: 5px 10px;
    background: #00788b;
    border-radius: 5px;
    color: #fff;
}

.form-submit-btn {
    background: #880025;
    padding: 12px 25px;
    border-radius: 20px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 1px;
    margin-top: 10px;
}

.login-form-div {
    border: 4px solid #000;
    padding: 20px;
    border-radius: 25px;
}

.login-head {
    font-size: 37px;
    font-weight: 700;
    padding: 10px 35px;
    background: #880025;
    width: fit-content;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.password-div {
    position: relative;
}

.passwordshowbtn {
    position: absolute;
    right: 10px;
    top: 11px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

footer {
    background: #880025;
    padding: 10px 0;
    margin-top: 20px;
}

.footer-policy-links a {
    color: #fff;
}

.footer-policy-links {
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-size: 13px;
    line-height: 14px;
    font-weight: 600;
}

.footer-copyright {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    margin-top: 8px;
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
}

.footer-reg-no {
    background: #000;
    border: 3px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 13px;
    display: block;
    margin: 10px auto 0;
    width: fit-content;
}

.biodata-detail-div {
    padding: 0 10px 10px;
    box-shadow: 0px 5px 5px 7px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.biodata-detail-box {
    padding: 15px;
    border: 5px solid #880025;
    margin-top: 10px;
}

.biodata-detail-box-head {
    font-size: 30px;
    line-height: 35px;
    color: #880025;
    text-transform: capitalize;
    font-weight: 700;
    margin: 0;
}

.biodata-detail-box-para {
    color: #000;
    font-size: 30px;
    line-height: 35px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 15px;
}

.biodata-detail-box-para a {
    color: #000;
}

.biodata-detail-box-three .border-right {
    border-right: 1px solid #880025;
}

.biodata-detail-box-three .biodata-detail-box-head, .biodata-detail-box-three  .biodata-detail-box-para {
    text-align: center;
}

.category-title {
    color: #fff;
    background: #880025;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
    border: none;
    outline: none;
    letter-spacing: 1px;
    margin: 0 auto;
    width: fit-content;
    display: block;
}

.biodatagriddiv-main {
    display: flex;
    flex-wrap: wrap;
}

.biodatagriddiv {
    width: 33.33%;
    padding: 5px;
}

.biodatagriddiv-inner {
    width: 100%;
    position: relative;
}

.biodatagriddiv-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top;
}

.biodatagriddiv-tag-line {
    margin: 0;
    position: absolute;
    top: 260px;
    left: -115px;
    text-shadow: rgb(0, 0, 0) 2px 2px 0px, rgb(0, 0, 0) -1px -1px 0px, rgb(0, 0, 0) 1px -1px 0px, rgb(0, 0, 0) -1px 1px 0px, rgb(0, 0, 0) 1px 1px 0px;
    font-size: 27px;
    color: #fff;
    transform: rotate(270deg);
}

.biodatagriddiv-serial-no {
    position: absolute;
    top: 0;
    right: 0;
    background: #880025;
    padding: 10px 24px;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
}

.biodatagriddiv-phone-link {
    position: absolute;
    top: 5px;
    left: 20px;
    display: flex;
    gap: 5px;
}

.biodatagriddiv-phone-link a {
    width: 35px;
}

.biodatagriddiv-phone-link a img {
    width: 100%;
    object-fit: contain;
}

.biodatagriddiv-content-div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #00000087;
    padding: 10px 15px;
}

.biodatagriddiv-content-div ul {
    padding: 0;
    list-style-type: none;
}

.biodatagriddiv-content-div ul li {
    color: #fff;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    font-weight: 600;
}

.biodatagriddiv-btn {
    background: #880025;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    padding: 15px 5px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
}

.allpagefilters {
    display: flex;
    flex-wrap: wrap;
}

.allpagefilters-div {
    padding: 5px;
    width: 25%;
}

.allpagefilters-div-inner {
    background: #fff;
    border: 4px solid #000;
    border-radius: 10px;
    height: 100%;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.allpagefilters-div-head {
    text-transform: capitalize;
    color: #000;
    font-size: 25px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.allpagefilters-content-div-inner {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    align-items: center
}

.allpagefilters-div-number {
    background: #880025;
    color: #fff;
    padding: 7px 25px;
    border-radius: 5px;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.allpagefilters-div-btn {
    background: #880025;
    color: #fff;
    border: none !important;
    border-radius: 5px;
    max-width: 100%;
    font-size: 19px;
    font-weight: 700;
    padding: 7px 25px;
    margin-top: auto;
}

.sidebar-menu-ul .dropdown-menu.show {
    position: static !important;
    border: none;
    padding: 0 0 0 20px !important;
    margin: 0 !important;
    transform: translate(0px, 0px) !important;
}

.sidebar-menu-ul .dropdown-toggle::after {
    border-top-width: 10px;
    border-right-width: 10px;
    border-left-width: 10px;
}

.sidebar-menu-ul-a svg {
    width: 20px;
}

.content-div p, .content-div ul {
    margin-top: 10px;
    margin-bottom: 0;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
}

.content-div h1 {
    margin-top: 10px;
    font-size: 30px;
    letter-spacing: 0;
    font-weight: 900;
    margin-bottom: 0;
}

.content-div h2, .content-div h3, .content-div h4 {
    margin-bottom: 0;
    margin-top: 15px;
    font-size: 25px;
    color: #000;
    letter-spacing: 0;
    font-weight: 600;
}

/*Responsive Start*/

@media (max-width: 991px) {

    .header-menu-desktop {
        display: none;
    }

    .header-menu-mobile {
        display: flex;
    }

    .header-right-side {
        width: 100%;
        justify-content: space-between;
    }

    .categories-div {
        width: 33.33%;
    }

    .biodatagriddiv {
        width: 50%;
    }

    .allpagefilters-div {
        width: 33.33%;
    }

}

@media (max-width: 767px) {

    .allbiodatabtndiv a {
        padding: 12px 15px;
        font-size: 18px;
    }

    .categories-div {
        width: 50%;
    }

    #login-section .red-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

    .login-head {
        font-size: 24px;
        padding: 10px 20px;
    }

    .biodatagriddiv {
        width: 100%;
    }

    .allpagefilters-div {
        width: 50%;
    }

}

@media (max-width: 479px) {

    .categories-div-img {
        height: 125px;
    }

    .categories-div {
        padding: 3px;
    }

    .categories-content-div {
        height: calc(100% - 125px);
    }

    .container {
        padding-left: 5px;
        padding-right: 5px;
    }

    .heading-center {
        font-size: 25px;
        line-height: 28px;
    }

    footer {
        margin-top: 0px;
    }

    .contact-icon-div {
        margin-top: 20px;
    }

}