/* Webfont include */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
}

/* Color */

:root {
    --primary-Light: #5663C1;
    --Primary-dark: #4A56AF;
    --secondary-dark: #DE700B;
    --gray-light-500: #6F6F6F;
    --gray-light-200: #DEDEDE;
    --gray-light-100: #F7F7F7;
    --white: #fff;
    --black: #000;
}


body {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
    transition: all .6s;
    text-decoration: none;
}

h1 {
    font-size: 90px;

}

h2 {
    font-size: 50px;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

h4,
h5,
h6 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

ul,
li {
    margin: 0px;
    font-size: 15px;
    font-weight: 500;
    list-style-type: none;
}

p {
    margin: 0px;
    font-size: 16px;
    font-weight: 300;
    line-height: 27px;
}

a {
    margin: 0px;
    font-size: 15px;
    font-weight: 500;
}


a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol,
li {
    padding: 0;
    margin: 0;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

textarea {
    resize: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: var(--white);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--Primary-dark);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--black);
    border-radius: 10px;
}

input,
button,
input:focus,
button:focus,
textarea,
textarea:focus,
select,
select:focus {
    outline: none !important;
    box-shadow: none;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
textarea,
textarea:hover,
textarea:focus {
    outline: none;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--Primary-dark-800);
}

.owl-dots button span {
    display: inline-block;
    height: 6px;
    width: 6px;
    background: white;
    margin: 3px;
    border-radius: 50%;
}

.owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(0px, -0px);
}

.owl-dots button span {
    display: inline-block;
    height: 10px;
    width: 10px;
    background: transparent;
    margin: 4px;
    border-radius: 50%;
    border: 1px solid var(--white);
}

.owl-dots button.active span {
    background-color: var(--white);
}

/* buttons add */
.globalBtnDark {
    padding: 8px 22px;
    color: var(--white);
    background-color: var(--secondary-dark);
    border-radius: 5px;
    text-transform: uppercase;
    display: inline-flex;
}

.globalBtnLight {
    padding: 12px 23px;
    color: var(--text-secondary);
    background-color: var(--text-primary);
    border-radius: 5px;
    display: inline-flex;
    text-transform: uppercase;
}

.globalBtnBorder {
    padding: 8px 22px;
    color: var(--white);
    background-color: transparent;
    border-radius: 5px;
    display: inline-flex;
    border: 1px solid var(--white);
    text-transform: uppercase;
}

.globalBtnDark:hover,
.globalBtnBorder:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* default header ui */
.main-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 41px;
}

.main-header p {
    color: var(--gray-light-500);
}

/* Slider navbar */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
.nav-pills .nav-link {
    background-color: transparent;
    color: var(--text-secondary);
}

.owl-nav {
    color: #fff;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
}

.owl-nav button.owl-prev span {
    left: -40px;
}

.owl-nav button.owl-next span {
    right: -40px;
}

.owl-nav button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    background-color: #0000008c;
    color: var(--white);
    border-radius: 50%;
    position: relative;
}

/* main header */
.main-header {
    margin-bottom: 25px;
}

.main-header h6 {
    color: var(--Primary-dark);
    margin-bottom: 8px;
}



/* Top bar start */
.top-bar {
    background-color: var(--Primary-dark);
    padding: 15px 0px;
    color: var(--white);
}

.top-bar ul {
    column-gap: 20px;
    align-items: center;
}

.top-bar-rgt li a,
.top-bar-rgt li {
    font-weight: 400;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
}

.top-bar-left li a {
    background: #fff;
    color: #4a56af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.top-bar-left li a:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
}

.top-bar .row {
    align-items: center;
}

.top-bar-rgt ul li {
    display: flex;
    align-items: center;
}

.top-bar-rgt ul {
    justify-content: end;
    align-items: center;
    column-gap: 30px;
}

/* Top bar end */

/* top navbar start */
.top-navbar {
    background-color: var(--white);
    padding: 24px 0px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: -2px 1px 7px 0px #d2d2d2;
}

.top-navbar ul.navbar-nav li {
    margin: 0px 3px;
    font-size: 16px;
}

.top-navbar ul.navbar-nav li a.nav-link {
    position: relative;
}

.top-navbar .navbar-expand-lg .navbar-nav .nav-link.active {
    color: var(--secondary-dark);
}

.top-navbar .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--black);
    white-space: nowrap;
}

.top-navbar .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--secondary-dark);
}

.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow:none;
}
li.nav-item.dropdown:hover ul.dropdown-menu {
    display: flex;
    flex-direction: column;
}

/* top navbar end */
/* Banner section start */
.banner-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topBanner-cntn {
    position: absolute;
    top: 25%;
    left: 100px;
    z-index: 5;
    transform: translate(0%, -25%);
    color: var(--white);
    max-width: 790px;
}

.topBanner-cntn h1 span {
    display: block;
}

.topBanner-cntn a.globalBtnBorder {
    margin-top: 20px;
}

.banner-afterItems {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -130px;
    z-index: 9;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.bannerAfterItem {
    flex: 1;
    text-align: center;
}

.bannerAfterItem:nth-child(even) {
    background-color: var(--Primary-dark);
}

.bannerAfterItem:nth-child(odd) {
    background-color: var(--primary-Light);
}

.bannerAfterItem {
    height: 220px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.bannerAfterItem:hover {
    background: #2a2a2a;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.bannerAfterItem img {
    max-width: 70px;
    max-height: 70px;
}

.bannerAfterItem p {
    margin-top: 20px;
}

.topBanner .owl-dots {
    transform: translate(35px, -30px);
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.topBanner .owl-dots button span {
    position: relative;
    display: flex;
    align-items: center;
}

.topBanner .owl-dots button span::after {
    content: '';
    height: 2px;
    width: 15px;
    position: absolute;
    left: 16px;
}

.topBanner .owl-dots button.active span::after {
    background-color: var(--white);
}


/* Banner section end */

/* after banner start */
.programs-service {
    padding: 70px 0;
    position: relative;
}

img.programs-srvc-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 90%;
    transform: translate(-50%, -31%);
    z-index: -1;
}

.programs-service .row {
    align-items: center;
}

.programs-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.programs-service-item h5 {
    margin-top: 22px;
}

.programs-service-item span {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    border: 1px solid var(--gray-light-200);
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.programs-service-item span:hover img {
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
}

.programs-service-item span img {
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.programs-service-item span::after {
    border: 12px solid var(--gray-light-100);
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

/* after banner end */

/* analysys labratory start */
.best-labratory .row {
    align-items: center;
}

.best-labratory {
    padding: 60px 0px;
    background: var(--Primary-dark);
    color: var(--white);
}

.best-labratory-rgt p {
    margin: 20px 0px;
}

.best-labratory-left {
    position: relative;
    padding: 25px 0 0 25px;
}

.best-labratory-left img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.best-labratory-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--secondary-dark);
    height: 94%;
    width: 97%;
    z-index: 0;
}

.best-labratory-rgt h2 span {
    display: block;
}

/* analysys labratory end */
/* counter section start */
.counter-section {
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    background: url('../images/counter-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.counter-section::after {
    content: '';
    background-color: #de700bcc;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.counter-section .row {
    position: relative;
    z-index: 99;
}

.counter-item h3 {
    margin: 15px 0px;
    font-size: 57px;
    font-weight: 700;
}

.counter-item h5 {
    font-weight: 300;
}

.counter-item img {
    max-width: 75px;
}

/* counter section end */

/* latest news start */
.insight-thumb-cntn-up {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.latest-insight-inner img {
    width: 100%;
    max-height: 295px;
    transition: all 0.4s ease-in-out;
}

.thumb-cnt-iner {
    position: absolute;
    bottom: 0;
    width: 80%;
    background: #e3e4f3;
    padding: 20px;
}

.thumb-cnt-iner ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.thumb-cnt-iner h4 {
    font-size: 21px;
    margin-top: 15px;
    line-height: 29px;
}

.insight-date {
    position: absolute;
    top: -40px;
    right: -40px;
    background: var(--Primary-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    line-height: 22px;
    height: 70px;
    width: 70px;
}

.latest-news-main {
    padding: 70px 0px;
}

p.insight-iner-main-pera {
    margin: 22px 0px;
}

.latest-insight-inner:hover .insight-thumb img {
    transform: scale(1.3);
    transition: all 0.4s ease-in-out;
}

/* latest news end */

/* footer contact details start */
.contact-main {
    background-color: var(--Primary-dark);
    color: var(--white);
    padding: 70px 0px;
}

.cntc-detailNav {
    display: flex;
    justify-content: space-between;
}

.cntc-form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cntc-form input.form-control {
    max-width: 271px;
    height: 48px;
}

.cntc-left-details {
    max-width: 439px;
}

.cntc-left-details p {
    margin: 0px 0px 25px;
}

.cntc-detailNavIner h5 {
    margin-bottom: 13px;
}

.cntc-detailNavIner li {
    display: flex;
    align-items: start;
    font-weight: 300;
    margin: 10px 0px;
    gap: 10px;
}

.cntc-detailNavIner li a {
    font-weight: 300;
}

.cntc-detailNavIner li img {
    margin-top: 1px;
}

.contact-main h2 {
    margin-bottom: 30px;
}

.cntc-form button {
    height: 47px;
}

/* footer contact details end */
/* footer start */
footer.footer {
    background-color: var(--black);
    color: var(--white);
}

.footer-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-nav ul li a:hover {
    color: var(--secondary-dark);
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 13px;
}

.footer-nav {
    padding: 30px 0px;
    border-bottom: 1px solid #a1a1a1;
    margin-bottom: 30px;
}

.footer-copyright {
    padding-bottom: 30px;
}

.footer-copyright img {
    max-width: 140px;
}

.footer-copyright .top-bar-left ul.list-inline.d-flex {
    gap: 10px;
}

.footer-copyright .top-bar-left ul.list-inline.d-flex {
    gap: 10px;
}

.footer-copyright .top-bar-left li a {
    background-color: var(--secondary-dark);
    color: var(--black);
}

.footer-copyright .top-bar-left li a:hover {
    background-color: var(--white);
    color: var(--secondary-dark);
    transition: all 0.3s ease-in-out;
}

/* footer end */



/* Animation start */
.imAnimate {
    position: relative;
    overflow: hidden;
}

.imAnimate::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    content: "";
    display: block;
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
}

.imAnimate:hover::before,
.imAnimate:focus::before {
    -webkit-animation: shine 0.85s;
    animation: shine 0.85s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Animation end */


/* Inner page top banner start */
.inner-pagetop-banner img {
    width: 100%;
}

/* Inner page top banner end */


/* book appointment page start */
.appointment-form {
    margin-top: -80px;
    z-index: 9;
    position: relative;
}

.appoint-form form {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.appointment-form .appoint-form {
    padding: 30px;
    background: #4a56af;
    color: #fff;
    border-radius: 10px;
}

.appointment-form .appoint-form .form-field {
    flex: 1;
}

.appointment-form .appoint-form .form-control,
.appointment-form .appoint-form .form-select {
    height: 48px;
}

.appointment-form .appoint-form button.globalBtnDark {
    height: 48px;
    display: inline-flex;
    align-items: center;
}

/* Main body cntn of book appintment */
.book-an-appointment {
    padding: 70px 0;
}

.book-appoint-card {
    border: 1px solid #dbdbdb;
    border-radius: 30px;
    box-shadow: 1px 1px 11px 0px #e4e4e4;
    overflow: hidden;
    margin: 15px 0px;
}

.apintmen-card-up {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
}

.apointment-card-form {
    padding: 25px;
    border-top: 1px solid #e4e4e4;
    background-color: #F7F7FD;
}

.apointment-card-form form {
    display: flex;
    align-items: end;
    gap: 15px;
}

.apointment-card-form form .form-field {
    flex: 1;
}

.apointment-card-form form input,
.apointment-card-form form button {
    height: 48px;
}

.apointment-card-form form button {
    display: flex;
    align-items: center;
}

.apointment-card-cnt h6 {
    color: #4A56AF;
    margin: 16px 0px;
}

span.appoint-follow {
    align-self: baseline;
    align-items: center;
    justify-content: center;
}

span.appoint-follow i {
    background: #F2F2F2;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.apointment-card-form form input {
    border: 1px solid #1A2574;
}

.appointment-time {
    background: #5663C1;
    padding: 13px 46px;
    border-radius: 10px;
    margin-top: 20px;
}

.appointment-time span.apoint-item {
    background: #fff;
    padding: 7px 14px;
    display: inline-block;
    border-radius: 6px;
}

.owl-nav button.owl-prev {
    position: relative;
    left: -35px;
}

.owl-nav button.owl-next {
    position: relative;
    right: -35px;
}

.owl-nav button i {
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid #fff;
    height: 28px;
    width: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* book appointment page end */

/* book appointment modal start */
.form-row {
    overflow: hidden;
    position: relative;
}

.form-input {
    -webkit-appearance: none;
    appearance: none;
}

.form-input::before {
    content: '';
    cursor: pointer;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.form-input:checked::before {
    background: #21209c;
}

.form-input:checked::after {
    border: 4px solid #ffffff;
}

.form-input:checked~.form-label {
    color: #ffffff;
    position: relative;
}

.form-input:checked~.form-label img {
    filter: invert(0);
}

.form-input:checked~.form-label span {
    background-color: #fff;
}

.healCareList label.form-label span {
    display: flex;
    background: #21209c;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 10px;
    margin-right: 16px;
}

.healCareList label.form-label span img {
    filter: invert(1);
}

.health-care-main button.closeBtn {
    border: none;
    background: transparent;
    position: absolute;
    right: 7px;
    top: 7px;
    font-size: 20px;
    color: #a1a1a1;
}

.healCareList h4 {
    text-align: center;
    width: 96%;
    margin: 0px auto 22px;
}

.healCareList label.form-label {
    margin-bottom: 0px;
    display: inline-flex;
    align-items: center;
}

.healCareList .form-row label.form-label img {
    width: 45px;
}

.healCareList .form-row.flex-center {
    border: 1px solid rgb(221, 221, 221);
    margin: 18px 0px;
    overflow: hidden;
    position: relative;
    padding: 15px;
    border-radius: 10px;
}

.healCareList .form-row.buttons .globalBtnDark {
    justify-content: center;
    height: 48px;
    align-items: center;
}

.health-care-main .modal-body {
    padding: 36px;
}

.health-care-main button.closeBtn img {
    max-width: 25px;
    max-height: 25px;
}

/* book appointment modal end */

/* Login page start */
.loginMain {
    height: 100%;
    overflow: hidden;
    display: flex;
}

.loginLeft img {
    width: 100%;
    max-height: 100%;
}

.loginLeft {
    width: calc(100% - 45%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.loginLeft::after {
    content: '';
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background: url('../images/login-register/loginshape.png');
    height: 100%;
    width: 100%;
    position: absolute;
}

.loginLeft h1 span {
    display: block;
    font-weight: 600;
}

.loginRgt {
    flex: 1;
    align-items: center;
    justify-content: center;
    display: flex;
}

.loginrgt-inner {
    width: 75%;
}

.login-cntn-up {
    margin-bottom: 30px;
}

.login-cntn-up h3 {
    margin: 30px 0 10px;
    font-weight: 500;
}

.login-cntn-up {
    margin-bottom: 30px;
}

label.form-label,
h5.frgt-pass {
    font-weight: 600;
    color: #14163C;
    font-size: 16px;
}



.loginrgt-inner .form-control {
    height: 48px;
    border: 3px solid #ACB4E4;
    color: #64698B;
    padding-left: 40px;
    position: relative;
}

.loginrgt-inner input[type="password"] {
    padding-right: 40px;
}

.loginrgt-inner button.globalBtnDark {
    width: 100%;
    text-align: center;
    justify-content: center;
    height: 48px;
    align-items: center;
    background: #4A56AF;
}

.loginRgt form span {
    display: flex;
    align-items: center;
    position: relative;
}

.loginRgt form span i.fa-solid.fa-envelope,
.loginRgt form span i.fa-solid.fa-lock,
.loginRgt form span i.fa-solid.fa-location-dot {
    position: absolute;
    left: 14px;
    color: #4a56af;
    z-index: 9;
    font-size: 18px;
}

.fa-input-icon{
    position: absolute;
    left: 14px;
    color: #4a56af;
    z-index: 9;
    font-size: 18px;
}

.loginRgt form span i.fa-regular.fa-eye {
    position: absolute;
    right: 16px;
    color: #4a56af;
}

.loginRgt form span i.fa-regular.fa-eye-slash {
    position: absolute;
    right: 16px;
    color: #4a56af;
}

.loginRgt form span i.fa-regular.fa-eye:hover {
    cursor: pointer;
}

p.dontsAccount {
    margin-top: 20px;
    text-align: center;
}

.loginrgt-inner a {
    color: #4a56af;
    font-weight: 600;
}

.loginCntn {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: left;
    z-index: 99;
    padding: 50px;
    color: #fff;
    height: 100%;
}

.loginLeft .loginCntn h1 {
    display: flex;
    align-items: start;
    height: 99%;
    flex-direction: column;
    font-weight: 200;
    text-transform: capitalize;
    justify-content: center;
}

.loginLeft .loginCntn :not(.btn-check)+.btn:active {
    background-color: #4A56AF;
}

/* Login page end */

/* clinic page start */
.clinic-card {
    box-shadow: 1px 0px 11px 1px #dadada;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}
.clinic-card .infos .info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 15px 0px;
}
.clinic-card .infos .info p strong {
    color: #de700b;
    font-weight: 600;
}
.clinic-card .infos .info img {
    margin-top: 2px;
    width: 22px;
}
.clinic-card .infos .info p {
    font-weight: 400;
    color: #0f0f0f;
}
.clinic-card .infos .info.show_clinic_services p span {
    font-weight: 500;
    display: inline-flex;
    background: #4a56af14;
    margin: 3px 0px;
    color: #4a56af;
    padding: 1px 13px;
    border-radius: 10px;
    border: 1px solid #4a56af1a;
    font-size: 14px;
}
.book-clinic-test-modal-body .modal-header {
    padding: 8px 10px;
}
.book-clinic-test-modal-body label.form-label {
    color: #de700b;
    font-weight: 500;
    font-size: 18px;
}

.book-clinic-test-modal-body .form-check label {
    font-weight: 500;
    display: inline-flex;
    background: #4a56af14;
    margin: 3px 0px;
    color: #4a56af;
    padding: 1px 13px;
    border-radius: 4px;
    border: 1px solid #4a56af1a;
    font-size: 14px;
    transform: translate(0px, -3px);
}
.book-clinic-test-modal-body .modal-header button.btn.btn-danger {
    border-radius: 50%;
    height: 30px;
    padding: 0;
    width: 30px;
}
/* clinic page end */
