/* default css */
:root {
    --white-color: #fff;
    --black-color: #494949;
    --grey-color: #6c6c6c;
    --lg-color: #dbdbdb;
    --bd-color: #dfdfdf;
    --red-color: #ed2f3d;
    --blue-color: #0092ca;
    --pure-blue: blue;
    --footer-bg: #868686;
    --footer-bd: #6b6b6b;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Outfit-VariableFont_wght.ttf) format('truetype');
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

::selection {
    background-color: var(--red-color);
    color: white;
}

a {
    text-decoration: none !important;
}

.text-justify {
    text-align: justify;
}

/* header section */
header {
    background-color: var(--white-color);
    padding: 0px 10px;
}

.topLinksMenu {
    justify-content: right;
}

.topLinksMenu ul li:nth-child(even) {
    color: var(--lg-color);
}

.topLinksMenu ul a {
    color: var(--grey-color);
    font-size: 15px;
}

.topLinksMenu ul a:hover {
    text-decoration: underline !important;
    color: var(--blue-color);
}

.main-menu a {
    color: var(--grey-color);
    padding: 5px;
    font-size: 15px;
}

.main-menu a:hover {
    background-color: var(--red-color);
    color: var(--white-color);
}

.main-menu a.active {
    background-color: var(--red-color);
    color: var(--white-color);
}

.nav-burger {
    display: none;
    color: var(--grey-color);
}

.header-menu {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
    position: relative;
    z-index: 9999999;
    width: 100%;
    box-shadow: 0px 23px 15px 0px rgba(0, 0, 0, 0.7);
}

.header-menu.active {
    height: 100%;
    opacity: 1;
    visibility: visible;

}

.header-menu-links {
    position: absolute;
    background-color: var(--white-color);
    top: 0;
    width: 100%;
}

.header-menu-links a {
    color: var(--grey-color);
}

.header-menu-links li {
    padding: .5rem 1rem;
    border-bottom: 1px solid var(--bd-color);
}

.header-menu-links li:hover {
    background-color: var(--red-color);
    color: var(--white-color);
}

.header-menu-links li.active {
    background-color: var(--red-color);
    color: var(--white-color);
}

.header-menu-links li:hover a {
    color: var(--white-color);
}

/* hero section */


.hero-section .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 30rem;
}

/* welcome section */

.welcome {
    margin: 3rem 0rem;
}


.welcome .heading h1 {
    color: var(--blue-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 2.5px 1px lightgray;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -o-transition: 1s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome .heading h1:hover {
    text-shadow: -2.5px 1px lightgray;
}

.welcome .heading h1::before {
    content: "";
    display: inline-block;
    margin-right: 2rem;
    height: .5rem;
    width: .5rem;
    background-color: var(--blue-color);
    box-shadow: 0px 0px 10px 2px rgba(38, 52, 153, 0.2);
}

.welcome .heading h1::after {
    content: "";
    display: inline-block;
    margin-left: 2rem;
    height: .5rem;
    width: .5rem;
    background-color: var(--blue-color);
    box-shadow: 0px 0px 10px 2px rgba(38, 52, 153, 0.2);
}


.welcome .heading p {
    font-size: 1.4;
    text-decoration: underline;
    font-weight: bold;
}

.intro .heading h5 span {
    color: var(--black-color);
    font-size: 14px;
}

.intro .content p {
    font-size: 17px;

}

.intro-btn {
    color: white;
    background-color: var(--blue-color);
    border: none;
    outline: none;
    padding: 10px 30px;
    border-radius: .5rem;
    font-size: 16px;
}

.reports .head h2 {
    color: var(--blue-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 3.3px 1px lightgray;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -o-transition: 1s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reports .head h2:hover {
    text-shadow: -3.3px 1px lightgray;
}

.reports .head h2::before {
    content: "";
    display: inline-block;
    margin-right: 2rem;
    height: .5rem;
    width: .5rem;
    background-color: var(--blue-color);
    box-shadow: 0px 0px 10px 2px rgba(38, 52, 153, 0.2);
}

.reports .head h2::after {
    content: "";
    display: inline-block;
    margin-left: 2rem;
    height: .5rem;
    width: .5rem;
    background-color: var(--blue-color);
    box-shadow: 0px 0px 10px 2px rgba(38, 52, 153, 0.2);
}

.reports p {
    font-size: 16px;
    margin-top: 10px;
}

.report-card {
    background-color: #f9f9f9;
    border: 1px solid var(--bd-color);
    padding: 1rem;
    width: 100%;
    border-radius: 1rem;
    align-items: center;
    justify-content: center;
}

.report-card .heading h5 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--black-color);
}

.report-card:hover {
    background-color: #f9f9f9;
    border: 1px solid var(--blue-color);
    padding: 1rem;
    width: 100%;
    border-radius: 1rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 15px 6px rgba(0, 0, 0, 0.1);
}

.report-card i {
    color: var(--black-color);
    font-size: 1.2rem;
}

.report-card:hover i {
    color: var(--blue-color);
}



/* testimonial section */
.testimonial {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-card img {
    height: 25rem;
    object-fit: cover;
    width: 100%;
}

.testimonial .heading h3 {
    color: var(--blue-color);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 4px 1px lightgray;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -o-transition: 1s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .heading h3:hover {
    text-shadow: -4px 1px lightgray;
}

.testimonial .heading h3::before {
    content: "";
    display: inline-block;
    margin-right: 2rem;
    height: .5rem;
    width: .5rem;
    background-color: var(--blue-color);
    box-shadow: 0px 0px 10px 5px rgba(38, 52, 153, 0.2);
}

.testimonial .heading h3::after {
    content: "";
    display: inline-block;
    margin-left: 2rem;
    height: .5rem;
    width: .5rem;
    background-color: var(--blue-color);
    box-shadow: 0px 0px 10px 5px rgba(38, 52, 153, 0.2);
}

.testimonial .content {
    border: 2px solid var(--bd-color);
    padding: 2rem 1rem 1rem 1rem;
    position: relative;
    margin-top: 4rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.testimonial-circle {
    position: absolute;
    display: none;
    top: -3rem;
    left: 40%;
    background-color: white;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    border: 8px solid var(--bd-color);
    /* display: grid;
    place-items: center; */
}

.review-card {
    padding-bottom: 2rem;
}

.testimonial .review-card .name h3 {
    color: var(--blue-color);
    font-weight: 600;
    font-size: 2rem;
}





/* about page */
.about-ms {
    border: 5px solid var(--blue-color);
}

.company .head h4 {
    font-size: 1.7rem;
    font-weight: 600;
    border-bottom: 1px dotted var(--black-color);
    padding-bottom: 6px;
    margin-bottom: 15px;
}

.company .heading h4 {
    font-size: 1.4rem;
    font-weight: 600;
    border-bottom: 1px dotted var(--black-color);
    margin-bottom: 15px;
    color: var(--blue-color);
    padding: 1rem 0rem;
    text-shadow: 2.5px 1px lightgray;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -o-transition: 1s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company .heading h4:hover {
    text-shadow: -2.5px 1px lightgray;
}

.company .heading h4::before {
    content: "";
    display: inline-block;
    margin-right: 2rem;
    height: 6.5px;
    width: 6.5px;
    background-color: var(--blue-color);
    box-shadow: 0px 0px 10px 2px rgba(38, 52, 153, 0.2);
}

.company .heading h4::after {
    content: "";
    display: inline-block;
    margin-left: 2rem;
    height: 6.5px;
    width: 6.5px;
    background-color: var(--blue-color);
    box-shadow: 0px 0px 10px 2px rgba(38, 52, 153, 0.2);
}

.company .about-hgl .heading h4 {
    color: var(--blue-color);

}

.company .about-hgl .content p {
    font-size: 18px;
    /*color: var(--grey-color);*/
}

.exper-profile {
    position: relative;
    margin-bottom: 2rem;
}

.exper-profile .expert-details {
    background-color: var(--red-color);
    padding: 1rem;
    position: absolute;
    bottom: -2.5rem;
    left: 12%;
    width: 75%;
    color: var(--white-color);
    margin: auto;
}

.exper-profile .expert-details .name h4 {
    font-weight: 600;
    font-size: 2rem;
}

.exper-profile .profile-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    transition: .5s all ease;
}

.exper-profile:hover .profile-overlay {
    opacity: 1;
}

.exper-profile:hover .profile-details {
    animation: zoomInAnimation .5s linear forwards;
}

.exper-profile .profile-details {
    animation: zoomOutAnimation .5s linear backwards;
}

.profile-overlay .profile-details .name h4 {
    font-size: 2.3rem;
    font-weight: 700;
}

.exper-profile:hover .expert-details {
    visibility: hidden;
    opacity: 0;
}

.profile-details .social-icons i {
    color: var(--white-color);
    font-size: 1.2rem;
}

.profile-details .social-icons i:hover {
    color: var(--red-color);
}

@keyframes zoomInAnimation {
    from {
        transform: scale(0.3);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomOutAnimation {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.3);
        opacity: 0;
    }

}

/* contact page */
.contact-Us .location .heading h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
}

.contact-Us strong {
    color: var(--black-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 1rem;
    border: 1px solid var(--bd-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border: 1px solid var(--bd-color);
}

/* preimum page */
.premium .body {
    height: 20rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--black-color);
}

/* courses page */
.courses {
    height: 40rem;
}

/* laboratory-reports page */
.laboratory-reports .heading h3 {
    color: var(--blue-color);
    padding: 1rem 0rem;
    border-bottom: 1px dotted var(--black-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 2.5px 1px lightgray;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -o-transition: 1s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laboratory-reports .heading h3:hover {
    text-shadow: -2.5px 1px lightgray;
}

.laboratory-reports .heading h3::before {
    content: "";
    display: inline-block;
    margin-right: 2rem;
    height: 6.5px;
    width: 6.5px;
    background-color: var(--blue-color);
    box-shadow: 0px 0px 10px 5px rgba(38, 52, 153, 0.2);
}

.laboratory-reports .heading h3::after {
    content: "";
    display: inline-block;
    margin-left: 2rem;
    height: 6.5px;
    width: 6.5px;
    background-color: var(--blue-color);
    box-shadow: 0px 0px 10px 5px rgba(38, 52, 153, 0.2);
}


.category-links li a {
    color: var(--blue-color);
    padding: .5rem .5rem;
    border-bottom: 1px solid var(--bd-color);
}

.category-links li a:hover {
    color: var(--white-color);
    background-color: var(--red-color);
}

/* verify reports page */
/* order form */
.order-form .form-group {
    position: relative;
}

.order-form .form-group label {
    position: absolute;
    top: 10px;
    left: 14px;
    transition: .5s all;
    padding: 0 2px;
    z-index: 1;
    font-size: 0.9rem;
    color: var(--grey-color);
}

.order-form .form-group label::before {
    content: "";
}

.order-form .form-group input:focus+label,
.order-form .form-group input:not(:placeholder-shown)+label {
    transform: translateY(-1.4rem);
    background-color: var(--white-color);
    padding: 0px 5px;
    font-size: 0.9rem;
    color: black;
}

#togglePassword {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.togglePassword {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.order-form input {
    margin-bottom: 1rem;
    padding: 0.6rem;
    border: 1px solid var(--bd-color);
    border-radius: 0.5rem;
    width: 100%;
}

input:focus {
    border: 1px solid var(--blue-color);
    outline: none;
}

.order-form input::placeholder {
    opacity: 0;
    transition: .3s all ease-in;
}

.order-form input:focus::placeholder {
    opacity: 1;
}

.datepicker table tr td.active:active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.selected,
.datepicker table tr td.selected.highlighted,
.datepicker table tr td span.active.active,
.datepicker table tr td span.focused {
    background-color: var(--red-color) !important;
    border-color: var(--red-color) !important;
    color: var(--white-color) !important;
}


.enquiry-card {
    background-color: #f9f9f9;
    border: 1px solid var(--bd-color);
    padding: 1rem;
    border-radius: 1rem;
}

.enquiry-card:hover {
    border: 1px solid var(--blue-color);
}

/* verify results page */
.report-certificate {
    padding: 1rem;
    background-color: #f9f9f9;
    border: 1px solid var(--bd-color);
    border-radius: 1rem;
}

.report-certificate .content {
    display: grid;
    place-items: center;
}

.report-certificate .content tr span {
    font-size: 0.9rem;
}

.report-certificate .content h6 {
    margin: 0;

}

/* education page */
.education-tabs .nav-tabs li {
    background-color: #f9f9f9;
    border-top: 1px solid var(--bd-color);
    border-left: 1px solid var(--bd-color);
    border-right: 1px solid var(--bd-color);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-right: 3px;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: none !important;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.education-tabs .nav-tabs li a {
    color: var(--grey-color);
}

.education-tabs .tab-pane {
    border-bottom: 1px solid var(--bd-color);
    border-left: 1px solid var(--bd-color);
    border-right: 1px solid var(--bd-color);
}

.education-links li a.active {
    color: var(--white-color);
    background-color: var(--red-color);
}

.education-links li a {
    color: var(--blue-color);
    padding: .5rem .5rem;
    border-bottom: 1px solid var(--bd-color);
}

.education-links li a:hover {
    color: var(--white-color);
    background-color: var(--red-color);
}





/* footer section */
footer {
    background-color: var(--footer-bg);
    border-top: 3px solid var(--footer-bd);
    color: var(--white-color);
    padding: 1rem 0rem 0rem 0rem;
}

footer .heading h4 {
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-links li a {
    color: var(--white-color);
    position: relative;
}

.footer-links li a::before {
    content: "|";
    font-size: 1rem;
    margin-right: 1rem;
}

.footer-links li {
    color: var(--lg-color);
    font-size: 14px;
    margin-bottom: .7rem;
}

.copyright {
    font-size: 14px;
    color: var(--white-color);
    border-top: 3px solid var(--footer-bd);
    padding: 10px 0px;
    background-color: var(--footer-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright a {
    color: var(--white-color);

}

.copyright a:hover {
    text-decoration: underline !important;
    color: var(--white-color);
}

.f-social-icons {
    background-color: var(--footer-bg);

    padding: 5px 0px;
}