/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: unset;
}

html::-webkit-scrollbar {
    width: 6px;
    background-color: #3C2B9970;
}

html::-webkit-scrollbar-thumb {
    background-color: #3C2B99;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-size: 16px;
    font-family: 'Libre Franklin';
    font-weight: 400;
    color: #000;
}

a,
a:hover,
a:focus {
    color: #DD2B1C;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oakes Grotesk Regular';
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.container-fluid {
    padding: 0 70px;
}

.hidden{
	display:none;
}
.department-filter {
    background: aliceblue;
    padding: 15px;
    border-radius: 10px;
    height: 100%;
}
.department-item {
    background: #fff;
    display: block;
    border-bottom: 1px solid #ddd;
    color: #000;
    font-size: 20px;
    padding: 18px 15px;
    cursor: pointer;
    transition: all .5s;
	&:hover{
		color:#DD2B1C;
	}
}
/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
    width: 61%;
    padding: 0px;
    background: url(../img/popup-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 30px;
    padding: 40px 22px;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 6px;
    top: -16px;
    width: 60px;
    height: 60px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #3C2B99;
    transition: all .5s;
    z-index: 9;
}

.popup .popup__content .close:hover {
    background-color: #ffffff;
}

.popup .popup__content .close:hover span {
    background-color: #15222B;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}

.left {
    background: #15222B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right {
    padding: 30px;
    text-align: left;
}

.contact-form {
    width: 50%;
    text-align: left;
}

.offcanvas-body {
    .title {
        color: #3C2B99;
        font-size: 42px;
        font-style: normal;
        font-weight: 600;
        line-height: 50px;
        /* 119.048% */
    }

    label {
        display: inline-block;
        background: #fff;
        padding-right: 5px;
        margin-left: 10px;
        font-size: 18px;
        color: #242424;
        font-weight: 500;

    }

    .btn-group {
        justify-content: start;
        margin-top: 15px;
    }

    .form-control {
        font-size: 18px;
        padding: 22px 20px;

        ::placeholder {
            color: #A6A6A6;
        }
    }
}
.btn-group{
	.wpcf7-spinner {
    position: absolute;
}
}


/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 60px 0;
}

.pb-60 {
    padding-bottom: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

p {
    color: #484848;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 155.556%;
}

.title {
    color: #1B1B1B;
    font-family: 'Oakes Grotesk Bold';
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: inherit;
}

.section-title {
    font-family: 'Oakes Grotesk Bold';
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 106.25%;
    color: #3C2B99;
    margin-bottom: 13px;
}

.text-white {
    color: #FFFFFF;
}

.primary-btn {
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.36px;
    padding: 18px 23px;
    border-radius: 10px;
    background: #DD2B1C;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: #3C2B99;
    z-index: -1;
    transition: all .35s;
}

.empower-content .primary-btn::after,
.empower-content .primary-btn::before {
    background: #3C2B99;
}

.primary-btn:before {
    opacity: .5;
}

.primary-btn:after {
    transition-delay: .2s;
}

.primary-btn:hover:before,
.primary-btn:hover:after {
    top: 0;
}

.primary-btn:hover {
    color: #ffffff;
}

.primary-btn:focus {
    color: currentColor;
}

.primary-btn .arrow-right {
    margin-left: 10px;
}

.link-btn {
    color: #3C2B99;
    font-family: 'Oakes Grotesk SemiBold';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.36px;
    text-decoration-line: underline;
}

.link-btn .arrow-right {
    border-top: 1px solid #3C2B99;
    border-left: 1px solid #3C2B99;
}

.link-btn:hover {
    color: #DD2B1C;
    text-decoration: underline;
}

.link-btn:hover .arrow-right {
    border-top: 1px solid #DD2B1C;
    border-left: 1px solid #DD2B1C;
}

.arrow-right {
    display: inline-block;
    width: 11px;
    height: 11px;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    transform: rotate(135deg);
}

.secondary-btn {
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
    background: #092966;
    border-color: #092966;
}


.secondary-btn:hover {
    background: #fff;
    box-shadow: 0px 4px 4px rgb(27 40 56 / 26%);
}

.container {
    max-width: 1530px;
}

.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    align-items: center;
    color: #000000;
    padding: 12px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
}

.form-control:focus {
    border-color: #DD2B1C;
}

form .btn-group {
    justify-content: center;
}

form .primary-btn {
    padding: 16px 50px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    border: 0;
}

form .primary-btn:hover {
    background: #632C76;
    color: #ffffff;
}

.form-group {
    margin-bottom: 10px;
}

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

.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}
.department-item.active {
    background: #DD2B1C;
    color: #fff;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}

/*******************************
	Menu
*******************************/
.topbar {
    background-color: #fff;
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: inherit;
    padding: 14px 0;
    border-top: 5px solid #3C2B99;
}

.topbar a {
    color: rgb(255, 255, 255);
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 34px;
}

.call-time {
    display: flex;
    gap: 40px;
    align-items: center;
}

.call {
    position: relative;
    padding-left: 42px;
}

.call img {
    position: absolute;
    left: 0;
}

.call p {
    color: #3C2B99;
    font-family: "Libre Franklin";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.call p:last-child,
.call p a {
    color: #3C2B99;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}
.call p a:hover{
    color: #DD2B1C;
}
.logo {
    position: absolute;
    bottom: 5px;
}

.header-area {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 999;
    right: 0;
    left: 0;
}

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

.header-area.sticky {
    background: rgb(255, 255, 255);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.main-menu {
    display: flex;
    align-items: center;
}

header {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transition: ease-in-out .4s;
}

.main-menu {
    margin-left: auto;
    background: #3C2B99;
    position: relative;
}

header::after {
    content: '';
    background: #3C2B99;
    position: absolute;
    inset: 0;
    left: 50%;
    z-index: -1;
}

header::before {
    content: '';
    background: #3C2B99;
    position: absolute;
    bottom: 0;
    height: 4px;
    right: 50%;
    z-index: -1;
    left: 0;
}

.main-menu::before {
    content: "";
    position: absolute;
    width: 43px;
    height: 43px;
    border-bottom: solid 22px #3C2B99;
    border-right: solid 22px #3C2B99;
    border-left: solid 22px transparent;
    border-top: solid 22px transparent;
    display: inline-block;
    vertical-align: middle;
    left: -43px;
    bottom: 0px;
    z-index: -1;
    border-radius: 5px;
}

.close {
    position: absolute;
    top: 38%;
    transform: translateX(50%);
    right: 20px;
    color: #000;
}

.s_icon {
    position: absolute;
    top: 24%;
    transform: translateX(50%);
    left: 0px;
    filter: brightness(0);
}

.search-form .form-control {
    padding: 12px 35px 12px 45px !important;
}

nav {
    position: relative;
    margin: 0 auto
}

#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#menu {
    position: relative;
    display: flex;
    align-items: center;

}

#menu>.main-menu>ul>li {
    float: left;
    padding-inline: 0px;
}

#menu>.main-menu>ul>li>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    padding: 11px 30px;
    display: inline-block;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

#menu>.main-menu>ul>li.has-sub a {
    padding-right: 30px;
}

#menu>.main-menu>ul>li>a:hover::after,
#menu .main-menu ul li.current-menu-item a::after {}

#menu .main-menu ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 1px;
    height: 50%;
    background: #ffffff;
    top: 50%;
    transform: translateY(-50%);
}

#menu .main-menu ul li:first-child:after {
    width: 0;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    color: #DD2B1C;
}

#menu>.main-menu>ul>li.has-sub>a::before {}

#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease
}

#menu>.main-menu>ul>li.has-sub>a {}

#menu>.main-menu>ul>li.has-sub>a::before {
    top: 16px;
    right: 15px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    transform: rotate(225deg);
}

#menu>.main-menu>ul>li.has-sub:hover>a::before,
#menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: rgb(255, 255, 255);
    border-left-color: rgb(255, 255, 255);
}

/* #menu>.main-menu>ul>li.has-sub:hover>a::before {
    transform: rotate(-316deg);
    top: 36px;
} */

#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: rgb(255, 255, 255);
    transition: all .25s ease
}

#menu ul ul li:hover {}

#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    height: 40px;
    display: flex;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 10px 20px;
    width: auto;
    font-size: 19px;
    line-height: 19px;
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    white-space: nowrap;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover a,
#menu .main-menu ul ul li:hover {
    color: #fff;
    background-color: #3C2B99;
}

#menu .main-menu ul ul li.has-sub>a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}


#menu .main-menu ul ul li.has-sub:hover,
#menu .main-menu ul li.has-sub ul li.has-sub ul li:hover {
    background: #363636
}

#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333
}

#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}

@media screen and (max-width:992px) {
    header {
        position: relative;
        width: 100%;
    }

    header::before {
        display: none;
    }

    .logo {}

    #menu .main-menu ul li.current-menu-item ul li a {
        color: #ffffff;
    }

    nav {
        width: 100%
    }

    #menu {
        width: 100%
    }

    #menu ul {
        width: 100%;
        display: none;
    }

    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100% !important;
        background-color: #002569;
        transform: translateX(-100%);
        transition: all .4s;
        top: 90px;
        left: 0;
    }

    #menu .main-menu.open {
        transform: translateX(0%);
        /* height: 500px !important;
        overflow-x: scroll; */
    }

    #menu .main-menu ul li {
        width: 100%;
        border-top: 1px solid #4444442e;
    }

    #menu .main-menu ul li:hover {
        background: #ffffff05
    }

    #menu .main-menu ul li::after {
        display: none;
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }

    #menu .main-menu ul li a,
    #menu .main-menu ul ul li a {
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }

    #menu>.main-menu>ul>li {
        float: none
    }

    #menu ul ul li a {
        padding-left: 25px
    }

    #menu ul ul li {
        background: #1b268600 !important
    }

    #menu ul ul li:hover {
        background: #d84514 !important
    }

    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #fff
    }

    #menu .main-menu ul ul {
        box-shadow: none;
    }

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
    }

    #menu>ul>li.has-sub>a:after,
    #menu>ul>li.has-sub>a:before,
    #menu ul ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a:before {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    /* .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 0;
        top: 12px;
        cursor: pointer;
        z-index: 12399994;
    } */

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #ffffff;
        border-bottom: 2px solid #ffffff;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #ffffff;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #ffffff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #ffffff;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 0;
        height: 50px;
        width: 60px;
        cursor: pointer
    }

    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

    #menu ul ul .submenu-button {
        height: 34px;
        width: 40px
    }

    #menu .submenu-button:after {
        position: absolute;
        top: 9px;
        right: 22px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }

    #menu ul ul .submenu-button:after {
        top: 11px;
        right: 19px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 15px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
}

.menu-white {
    position: relative;
    background: #FFF;
    box-shadow: 0px 7px 11px 0px rgba(0, 0, 0, 0.06);
}

.menu-white.header-area.sticky {
    background-color: #fff;
    box-shadow: 5px 0px 17px 0px #00000030;
}

.menu-white #menu>.main-menu>ul>li>a {
    color: #1E1E1E;
}

.menu-white #menu>.main-menu>ul>li:hover>a,
.menu-white #menu .main-menu ul li.current-menu-item a {
    color: #95C12B;
}

.menu-white #menu>.main-menu>ul>li.has-sub>a::before {
    border-top: 1px solid #1E1E1E;
    border-left: 1px solid #1E1E1E;
}

.menu-white #menu>.main-menu>ul>li.has-sub:hover>a::before,
.menu-white #menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: #95C12B;
    border-left-color: #95C12B;
}

.menu-white .primary-btn {
    color: #1E1E1E;
}

.menu-white .serch-box input {
    border: 1px solid #D6D6D6;
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(7.5px);
}

.fixed-btn {
    position: fixed;
    bottom: 5%;
    right: 10px;
    z-index: 8;
    width: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enq-btn {
    position: fixed;
    top: 30%;
    right: 5px;
    z-index: 9;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    display: flex;
}

.enq-btn a {
    font-weight: 400;
    text-align: center;
    display: flex;
    border-radius: 6px;
    background: #DD2B1C;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 37px;
    color: #fff;
    padding: 8px 25px;
    font-weight: 100;
    font-family: 'Oakes Grotesk Bold';
    font-style: normal;
    font-weight: 700;
}

.enq-btn a:hover {
    background: #3C2B99;

}

.enq-btn a:last-child {
    background: #F1F1F1;
    color: #DD2B1C;
    border-radius: 6px;
    margin-bottom: 0px;
    margin-left: 5px;
}

.enq-btn a:last-child:hover {
    background: #3C2B99;
    color: #fff;
}

.fc:hover,
.fw:hover {
    transform: scale(1.2);
}

/************************************* Home Page **************************************/

.banner {
    overflow: hidden;
    position: relative;
}

.slider-bg {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-item {
    position: relative;
    padding-block: 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-content {
    width: 56%;
    position: relative;
}

.banner-item .btn-group {
    align-items: center;
    margin-bottom: 30px;
}

.banner-item .container {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: center;
}

.banner-item ul {
    display: flex;
    gap: 20px;
}

.banner-item ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3A393C;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}

/* .banner-item:after {
    content: '';
    background: linear-gradient(45deg, #000000cf, transparent);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
} */
.banner-item h3 {
    color: #DD2B1C;
    font-family: 'Libre Franklin';
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 111.429%;
    margin-bottom: 11px;
}

.banner-item h1 {
    color: #3C2B99;
    font-family: 'Oakes Grotesk Bold';
    font-size: 66px;
    font-style: normal;
    font-weight: 700;
    line-height: 110.606%;
    margin-bottom: 15px;
    margin-bottom: 2px;
}
.banner-item p{
    color: #1E1E1E;
    font-family: 'Libre Franklin';
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 145.455%;
}
.banner-item.slick-active h3 {
    animation: slideInUp .6s both .6s;
}

.banner-item.slick-active h1 {
    animation: slideInDown .8s both .8s;
}

.banner-item.slick-active p {
    animation: slideInUp 1s both 1s;
}
.banner-item.slick-active .btn-group {
    animation: slideInUp 1.2s both 1.2s;
}

.banner-item.slick-active ul {
    animation: slideInLeft 1.2s both 1.2s;
}

.banner-item.slick-active .discount-box {
    animation: zoomIn 1s both 1s;
}

.banner-item.slick-active .banner-img,
.banner-item.slick-active .banner-img-back {
    animation: slideInLeft 1s both 1s;
}

.banner-item .primary-btn {
    color: #fff;
}

.btn-group {
    display: flex;
    gap: 25px;
}

.banner-slider .slick-dots li button {
    padding: 5px;
    border: 0;
    background-color: #e4ccf500;
    border: 2px solid #3C2B99;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    outline-offset: 3px;
    margin: 0 5px;
}

.banner-slider .slick-dots li.slick-active button {
    background-color: #3C2B99;
    width: 6px;
    height: 6px;
    outline: 2px solid #3C2B99;
    border: 0;
    outline-offset: 3px;
}


.banner-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.banner-slider .slick-dots li.slick-active button:before {
    opacity: 0;
    color: white;
}

.banner-slider .slick-dots li button:before {
    opacity: 0;
    color: white;
}

.banner-slider .slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    bottom: 50px;
}
.banner-slider.slick-dotted.slick-slider{
    margin-bottom: 0;
}

/*********** Category ***********/
.category {
    padding-block: 24px;
    background: #3C2B99;
}

.category-item {
    position: relative;
    padding-left: 113px;
    height: 107px;
    transition: all .5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    &:hover .icon-box{
        background: #DD2B1C;
    }
    &:hover .icon-box img{
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(349deg) brightness(106%) contrast(102%);
    }
}

.icon-box {
    width: 103px;
    height: 103px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    box-shadow: 0 0 0 4px rgb(255 255 255 / 51%);
    transition: all .5s;
}

.category-item h4 {
    color: #FFF;
    font-family: 'Oakes Grotesk Bold';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.category-item p {
    color: #FFF;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    margin: 0;
}

/* ***** About ***** */
.about-us {
    position: relative;
    background-image: url(../img/about-vector2.webp);
    background-repeat: no-repeat;
    background-position: left bottom;
    .service-item{
        .card-title{
            display: flex;
            align-items: center;
            gap: 6px;
        }
    }
}
.about-vector {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.service-item{
    border-radius: 15px;
border: 1px solid #EAEAEA;
background: #FFF;
box-shadow: 0px 10px 27px 1px rgba(0, 0, 0, 0.06);
padding: 16px;
}
.card-title{
    color: #252525;
    font-family: 'Oakes Grotesk Medium';
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
/************************************
    Counter
************************************/
.immediate-care {
    background: url(../img/counter-bg.webp);
    background-position: right;
    background-repeat: no-repeat;
    padding: 60px 0px;
}

.counter-item {
    position: relative;
    padding-left: 100px;
    &:hover img{
        -webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
    }
    p{
        color: #fff;
    }
}

.counter-item h3 {
    color: #FFF;
    font-family: 'Oakes Grotesk SemiBold';
    font-size: 68px;
    font-style: normal;
    font-weight: 600;
    line-height: 59px;
}

.counter-item img {
    position: absolute;
    left: 0;
}

/* ***** Services ***** */
.services {
    .row .col:nth-child(2n){
        .service-box{
            &::after{
                background: #DD2B1C;
            }
        }
    }
}

.service-box {
    border-radius: 14px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.10);
    height: 100%;
    padding: 30px;
    position: relative;
    text-align: center;
    p{
        transition: all .5s;
    }
    &::after{
        position: absolute;
        content: "";
        bottom: 0;
        height: 4px;
        background: #3C2B99;
        width: 60%;
        left: 50%;
        transform: translateX(-50%);
    }
}

.service-box img {
    height: 80px;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    margin-bottom: 10px;
}

.service-box h4 {
    color: #2B2B2B;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
   transition: all .5s;
}

.service-box:hover {
    background-color: #3C2B99;
    h4,p {
        color: #fff;
    }
}


.service-box:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(95%) saturate(2%) hue-rotate(122deg) brightness(107%) contrast(101%);
}
/* **** appointment **** */
.trusted{
    background: #3C2B99;
    position: relative;
    .primary-btn{
        &::before,&::after{
            background-color: #fff;
        }
        &:hover{
            color: #3C2B99;
        }
    }
}
.trusted-img{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 0px 0px 0px 200px;
    border-left: 30px solid rgb(104 94 155 / 90%);
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0px 0px 0px 180px;
    }
    &::after{
        position: absolute;
        content: "";
        bottom: 0;
        left: -53px;
        right: 0;
        height: 100%;
        border-radius: 0px 0px 0px 200px;
        opacity: 0.1;
        background: linear-gradient(180deg, #FAFAFA 0%, #949494 100%);
        z-index: -1;
    }
}
.dec {
    text-align: center;
    font-size: 20px;
}

/* *** Why Choose *** */
.why-choose {
position: relative;
.col-lg-7{
    padding-top: 57px;
    margin-bottom: 40px;
}
}
.left-choose,.right-choose{
.choose-item:first-child{
        margin-top: -130px;
        margin-bottom: 130px;
}
}
.choose-item {
    border-radius: 21px;
    background: #FFF;
    box-shadow: 0px 8px 19px 0px rgba(0, 0, 0, 0.13);
    text-align: center;
    padding: 12px;
    transition: all .5s;
}

.choose-item:hover {
    transform: scale(1.1);
    img{
        transform: rotateY(180deg);
    }
}
.popular-choices{
    .primary-btn{
        &::before,&::after{
            background-color: #fff;
        }
        &:hover{
            color: #3C2B99;
        }
    }
}
.choose-item img {
    margin-bottom: 10px;
}

.choose-item h4 {
    text-align: center;
    font-family: "Libre Franklin";
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 107.692%;

}
.hand{
    position: relative;
}
.choose-logo {
    width: 336px;
    height: 336px;
    border-radius: 336px;
    background: #FFF;
    box-shadow: 0px 7px 44px 6px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding-top: 24px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-53%);
    img{
        position: relative;
        z-index: 1;
    }
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 300px;
        background: #FFF;
        box-shadow: 0px 7px 44px 6px rgba(0, 0, 0, 0.15);
        scale: .9;
    }
}
.popular-choices{
    background-color: #3C2B99;
    .section-title,p{
        color: #fff;
        margin: 0;
    }
    .flex {
        gap: 23px;
    }
}
.about-diagnostic{
    position: relative;
    .container{
        position: relative;
        z-index: 1;
    }
}

.about-diagnostic-vector {
    position: absolute;
    bottom: -54px;
    left: 0;
    z-index: 0;
}
.slick-arrow {
    width: 56px;
    height: 56px;
    z-index: 1;
    background: #F0EDFE;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    border-radius: 50%;
}

.slick-arrow::before {
    content: '';
    width: 15px;
    height: 15px;
    border-top: 1px solid #3C2B99;
    border-left: 1px solid #3C2B99;
    display: inline-block;
    transform: rotate(135deg);
    margin-right: 5px;
    opacity: 1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.slick-arrow.slick-prev::before {
    transform: rotate(316deg);
    margin-left: 8px;
}

.slick-arrow:hover,
.slick-arrow:focus {
    background-color: #B9B5D3;
}


img {
    transition: all .5s;
}

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

/* *** Review *** */
.review{
    background: #F5F4FA;
}
.single-review {
    border-radius: 10px;
    border: 1px solid #ECECEC;
    background: #F9F9F9;
    padding: 7px;
    position: relative;
}

.single-review::after {
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    border-top: 27px solid #F9F9F9;
    border-right: 20px solid #0000;
    border-left: 20px solid #0000;
    border-bottom: 20px solid #0000;
    z-index: -1;
    left: 28px;
    bottom: -40px;
}

.star {
    position: relative;
    margin-bottom: 14px;
}

.google-icon {
    position: absolute;
    right: 0;
    top: 0;
}

.star i {
    background-image: url(../img/star.webp);
    width: 19px;
    height: 19px;
    display: inline-block;
    margin-right: 3px;
    background-repeat: no-repeat;
}

.first-letter {
    width: 54px;
    height: 54px;
    color: #FFF;
    background: #8C82C3;
    font-family: "Libre Franklin";
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    border-radius: 50%;
}
.review-slider .slick-track {
    .slick-slide:nth-child(6n){
        .first-letter{
            background: #FB9D95;
        }
    }
    .slick-slide:nth-child(7n){
        .first-letter{
            background: #a762b3;
        }
    }
    .slick-slide:nth-child(8n){
        .first-letter{
            background: #7db0d9;
        }
    }
    .slick-slide:nth-child(5n){
        .first-letter{
            background: #8C82C3;
        }
    }
}
.user-info h4 {
    color: #171717;
    font-family: "Libre Franklin";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.user-info p {
    color: #969696;
    font-family: "Libre Franklin";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    margin: 0;
}

.user-info {
    position: relative;
    padding-left: 64px;
    height: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 22px;
    margin-left: 22px;
}

.review-slider .slick-slide {
    margin: 0 10px;
}

.review-slider .slick-list {
    margin: 0 -10px;
}

.review-btn {
    background: #357DB6;
    width: 218px;
    height: 51px;
    display: inline-block;
    color: #FFF;
    font-family: "Libre Franklin";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: auto;
}

.mt-40 {
    margin-top: 40px;
}

/* Blog */
.blog {
    background: #f5fbfe00;
    text-align: left;
    .primary-btn{
        color: #3C2B99;
        background: #fff;
        &::after, &::before{
            background-color: transparent;
        }
        &:hover{
            color: #DD2B1C;
            .arrow-right{
                border-top-color: #DD2B1C;
                border-left-color: #DD2B1C;
            }
        }
        .arrow-right{
            border-top-color: #3C2B99;
            border-left-color: #3C2B99;
        }
    }
}

.single-blog {
position: relative;
}

.single-blog img {
    border-radius: 0px;
}

.date {
    color: #2C2C2C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
}

.single-blog h4 a {
    color: #171717;
    font-family: "Libre Franklin";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 5px;
}

.single-blog:hover h4 a {
    color: #3C2B99;
}

.blog-content {
    padding: 11px;
    padding-top: 9px;
    p{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
        overflow: hidden;
    }
}


.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/******************************/

footer {
    background: #211A4A;
    width: 100%;
    padding-top: 50px;
    .form-control {
        background: transparent;
        color: #fff;
        &::placeholder{
            color: #BCBCBC;
        }
    }
}

.footer-box {
    padding-right: 4%;
}

.footer-logo {
    margin-bottom: 25px;
}

footer p {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%;
    margin-bottom: 10px;
}

.footer-title {
    font-size: 22px;
    line-height: 53px;
    position: relative;
    margin-bottom: 15px;
    color: #FFF;
    font-family: 'Oakes Grotesk SemiBold';
    font-size: 22px;
    font-style: normal;
    line-height: 25px;
}


.footer-title:after {
    content: '';
    width: 37px;
    height: 2px;
    background: #DD2B1C;
    display: inherit;
    margin-top: 5px;
}

footer ul li a,
footer p a {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 212%;
}

footer ul li a:hover,
.contact-info a {
    color: #DD2B1C;
}

.footer-social {
    display: flex;
    gap: 9px;
    justify-content: end;
}

.footer-social a {
    width: 65px;
    height: 65px;
    stroke-width: 1px;
    border: 1px solid #ECECEC;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    transform: scale(1.2);
    background-color: #ECECEC;
}

.copyright-section {}

.logo-area {
    background: #ffffff;
    padding: 10px 0;
    margin-top: 40px;
}

.logo-area p {
    color: #000;
}

.copyright {
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    display: flex;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copyright a {
    color: #F5990F;
    text-decoration: underline;
}

.footer-contact p {
    position: relative;
    padding-left: 40px;
}

.footer-contact p span {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/************************************
Inner Page
/************************************/
.mission-vission{
    .item{
        border-radius: 14px;
        border: 1px solid #322990;
        background: #FFF;
        box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.10);
        position: relative;
        padding: 15px;
        padding-left: 145px;
        transition: all .5s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: all .5s;
		height: 100%;
        .icon-box{
            background-color: #3C2B99;
            outline: 1px solid rgba(57, 26, 236, 0.103);
            outline-offset: 7px;
            left: 22px;
        }
        &:hover{
            transform: translateY(-5px);
            background-color: rgba(57, 26, 236, 0.103);
            .icon-box{
                img{
                    transform: rotateY(180deg);
                }
            }
        }
    }
}
.mb-10 {
    margin-bottom: 10px;
}
.highlight{
    border-radius: 14px;
background: #F3F3F3;
padding: 38px 10px;
h4{
    color: #212121;
text-align: center;
font-family: 'Libre Franklin';
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: 37px; /* 123.333% */
}
}
.about-counter{
    position: relative;
    z-index: 2;
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(40, 23, 133, 0.90);
        z-index: -1;
    }
}
.team-slider{
    .slick-list{
        margin: 0 -10px;
    }
    .slick-slide{
        margin: 0 10px;
    }
    .slick-arrow{
        background-color: #211A4A;
        &:hover{
            background-color: #DD2B1C;
        }
    }
    .slick-arrow::before {
        border-top: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
    }
}
.featured-segments{
    .service-item{
        border-radius: 14px;
border: 1px solid #322990;
background: #FFF;
box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.10);
position: relative;
padding: 10px;
padding-bottom: 70px;
height: 100%;
transition: all .5s;
&:hover{
    transform: translateY(-5px);

}
.service-img{
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 15px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
h6{
    color: #3C2B99;
    font-family: 'Libre Franklin';
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: 27px;
text-transform: uppercase;
}
.btn-group{
    position: absolute;
    left: 10px;
    bottom: 10px;
}
    }
}
.service-title{
    color: #121212;
    font-family: 'Libre Franklin';
font-size: 26px;
font-style: normal;
font-weight: 700;
line-height: 26px;
margin-bottom: 4px;
}
.brand-name{
    color: #797979;
    font-family: 'Libre Franklin';
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 27px;
}
.other-segments{
    background-image: url(../img/feature-segment-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    & .item {
        height: 97px;
        padding-left: 100px;
        .icon-box {
            background-color: #3C2B99;
            outline: none;
            outline-offset: unset;
            left: 22px;
            width: 62px;
            height: 62px;
            box-shadow: 0 0 0 5px rgb(60 43 153 / 20%);
        }
        .card-title{
            color: #121212;
font-family: 'Libre Franklin';
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height:  130%;
        }
    }
}
.details-img {
    box-shadow: 0px 8px 13px 0px rgba(0, 0, 0, 0.15);
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.feature-details{
    ul{
        padding-left: 18px;
        margin-bottom: 15px;
        li{
            color: #484848;
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 211.111%;
            list-style-type: disc;
            ::marker {
                color: #3C2B99;
            }
        }
    }
}
.mb-70{
    margin-bottom: 70px;
}
.blog-item{
    position: relative;
    .blog-content{
        padding: 0;
    }
    .link-btn{
        display: flex;
        align-items: center;
        gap: 4px;
        text-decoration: none;
    }
    &:hover{
        .blog-title{
            color: #DD2B1C;
        }
    }
}
.blog-img {
    margin-bottom: 15px;
}
.blog-date{
    color: #2C2C2C;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 14px;
margin-bottom: 9px;
}
.blog-title{
    color: #161616;
    font-family: 'Libre Franklin';
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 120.833%;
margin-bottom: 8px;
}



.wp-pagenavi {
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 50px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    color: #9C9C9C;
    font-size: 20px;
    font-family: 'Work Sans Medium';
    font-weight: 500;
}

.wp-pagenavi a {
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s
}

.wp-pagenavi a.active {
    color: #3c2b99;
}

.wp-pagenavi a:hover:not(.active){
    background-color: #ddd;
}

.wp-pagenavi span.current {
    border-color: #3c2b99;
    background: #3c2b99;
    color: #fff;
}
.wp-pagenavi a:hover{
	border-color: #BFBFBF;
    background: #8BC34A;
    color: #000;
}

/* blog details start */

.blog-details {
    position: relative;
    overflow: hidden;
    .blog-date {
        display: flex;
        align-items: center;
        gap: 11px;
        span{
            display: flex;
        align-items: center;
        gap: 4px;
        }
    }
    .small-line {
        width: 151px;
        height: 2px;
        background: #3C2B99;
        display: block;
        margin-top: 12px;
    }
}
.blog-tag{
    background: #DD2B1C;
    color: #FFF;
font-size: 15px;
font-style: normal;
font-weight: 600;
line-height: 25px;
letter-spacing: 0.3px;
display: inline-block;
padding: 5px 22px;
margin-bottom: 15px;
}
.blog-details h1 {
    color: #0D0D0D;
    font-family: 'Oakes Grotesk SemiBold';
font-size: 56px;
font-style: normal;
font-weight: 600;
line-height: 117%;
}

.blog-details .cal::before {
    position: absolute;
    bottom: 0%;
    left: 0%;
    background-color: #2C9A15;
    width: 60px;
    height: 2px;
    content: '';
}

.blog-details .image-box {
    margin: 30px 0;
    height: 550px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.blog-details .p_txt {
    position: relative;
}
.blog-details-content{
    position: relative;
    padding-left: 15px;
    ul {
        padding-left: 20px;
        margin-inline: auto;
        margin-bottom: 10px;
        text-align: left;
        margin-bottom: 15px;
        li {
            color: #000;
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            position: relative;
            line-height: normal;
            margin-bottom: 12px;
            transition: all .5s;
            padding: 0;
            list-style-type: disc;
            ::marker{
                color: #3C2B99;
            }
        }
    }
}
.blog-details .blog-details-content::before {
    position: absolute;
    top: 80px;
    left: 0px;
    transform: translateY(-50%);
    background: #3C2B99;
    width: 2px;
    height: 148px;
    content: "";
}

.blog-details h2 {
    color: #262626;
    font-family: 'Oakes Grotesk SemiBold';
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
}

.social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 10px 0;
}

.social .s_icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.si_box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ECECEC;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.5s;
    padding: 6px;
}

.si_box:hover {
    transform: scale(1.1);
}

.r_div_box {
    position: relative;
    margin-bottom: 30px;
}

.r_div_box h3 {
    color: #DD2B1C;
    font-family: 'Oakes Grotesk Bold';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 41px;
    position: relative;
    margin-bottom: 10px;
}

.r_div_box h3::before {
    position: absolute;
    bottom: 0%;
    left: 0%;
    background: #3C2B99;
    width: 100%;
    height: 2px;
    content: "";
}

.post_box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-family: 'Oakes Grotesk Bold';
    padding: 10px 0;
    border-bottom: 1px solid #cecece;
    &:hover{
        h4{
            color: #3C2B99;
        }
    }
}
.category-tag{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    li{
        display: inline-block;
    }
    a{
        border: 1px solid #3C2B99;
        color: #3C2B99;
        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: 25px;
        letter-spacing: 0.3px;
        padding: 5px 21px;
        display: block;
        transition: all .5s;
        &:hover{
            color: #fff;
            background: #3C2B99;
        }
    }
}
.post_box h4 {
    color: #171717;
    font-family: 'Oakes Grotesk SemiBold';
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 129.167%;
}

.no_bdr {
    border-bottom: none;
}
.other-articles{
    .post_box {
        align-items: baseline;
        img{
            transform: translateY(10px);
        }
    }
}

.top_post_div {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Oakes Grotesk Bold';
    margin: 10px 0;
}

.blog-details .right_div p {
    color: #000 !important;
    font-size: 18px;
    margin: 0;
}

.blog_div .head_h3 {
    color: #3C2B99;
    font-family: 'Oakes Grotesk SemiBold';
font-size: 36px;
font-style: normal;
font-weight: 600;
line-height: 163.889%;
position: relative;
}

.blog_div .head_h3::after {
    display: block;
    width: 71px;
    height: 3px;
    content: "";
    background: #3C2B99;
    margin-bottom: 24px;
    margin-top: -8px;
}

.map {
    position: relative;
    overflow: hidden;
    text-align: center;
}


/* contact design */

.pb-0 {
    padding-bottom: 0 !important;
}

.contact_sec {
    position: relative;
    overflow: hidden;
}

.contact_sec h3 {
    position: relative;
    font-size: 40px;
    line-height: 50px;
    font-family: 'Oakes Grotesk Bold';
    background: linear-gradient(to right, #3EB6F2 0%, #2C76E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 10px;
}

.contact_sec ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.contact_sec ul li p {
    margin: 0;
    color: #000;
}

.contact_sec .right_div {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    border-radius: 40px 40px 40px 0;
    border: none;
    box-shadow: 0 0 10px 0 #84848473;
    padding: 50px 30px;
}

/* Home Collection */
.home-collection-banner {

    h1 {
        font-size: 69px;
        line-height: 117.391%;
        font-family: 'Oakes Grotesk Bold';
    }
}

.home-collection-form {
    .offcanvas-body {
        position: relative;
    }
    .form-group {
        margin-bottom: 17px;
    }
    .offcanvas-body {
        label {
            transform: unset;
            display: inline-block;
            background: #fff;
            padding-right: 5px;
            margin-left: 0;
            font-size: 18px;
            color: #000000;
            margin-bottom: 5px;
        }
    }
    .form-control{
        border-radius: 10px;
        border: 1px solid #AAA;
        font-size: 18px;
        padding: 20px 16px;
        &:focus{
            border: 1px solid #3C2B99;
        }
    }
    .control-fileupload {
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
        height: 61px;
        border-style: dotted;
        label {
            line-height: 24px;
            color: #A6A6A6;
            font-size: 17px;
            font-weight: normal;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            position: relative;
            z-index: 1;
            cursor: text;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 14px;
            padding: 0;
            background-color: transparent;
            width: 60%;
            font-family: 'Libre Franklin';
            font-weight: normal;
        }
    }
    .primary-btn{
        width: 100%;
    }
}
.pretty.p-default:not(.p-fill) input:checked~.state.p-primary-o label:after {
    background-color: #3C2B99 !important;
}
.pretty input:checked~.state.p-primary-o label:before, .pretty.p-toggle .state.p-primary-o label:before {
    border-color: #3C2B99;
}
.pretty {
    margin-bottom: 30px;
}

.pretty .state label {
    font-weight: 500;
    line-height: 82%;
}

input[type=file] {
    display: block !important;
    opacity: 0;
    width: 100%;
    background: none;
    position: absolute;
    inset: 0;
    z-index: 2;
}

.control-fileupload {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 55px;

    &:before,
    input,
    label {
        cursor: pointer !important;
    }

    /* File upload button */
    &:before {
        padding: 4px 12px;
        margin-bottom: 0;
        font-size: 15px;
        color: #949494;
        width: 82px;
        height: 34px;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
        vertical-align: middle;
        transition: color 0.2s ease;
        content: 'Browse';
        display: block;
        position: absolute;
        z-index: 1;
        top: 50%;
        transform: translateY(-50%);
        right: 17px;
        line-height: 20px;
        text-align: center;
        border-radius: 4px;
        background: linear-gradient(180deg, #F2F2F2 0%, #CACACA 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    &:hover,
    &:focus {
        &:before {
            color: #333333;
            background-color: #e6e6e6;
            color: #333333;
            text-decoration: none;
            background-position: 0 -15px;
            transition: background-position 0.2s ease-out;
        }
    }

    label {
        line-height: 24px;
        color: #A6A6A6;
        font-size: 17px;
        font-weight: normal;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        position: relative;
        z-index: 1;
        cursor: text;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 6px;
        padding: 0;
        background-color: transparent;
        width: 60%;
    }
}
.care{
    background: #F8F0EF;
}
.care-box{
    border-radius: 20px;
background: #FFF;
padding: 25px 15px;
height: 100%;
transition: all .5s;
&:hover{
    background: #ffffff91;
    transform: translateY(-5px);
}
img{
    height: 71px;
    width: auto;
    margin-bottom: 15px;
}
h3{
    color: #262626;
    font-family: 'Oakes Grotesk SemiBold';
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: 51px;
}
p a{
    color: #383838;
    &:hover{
        color: #3C2B99;
    }
}
}


.book-an-appointment {
    background: #F5F5F5;

    .offcanvas-body {
        border: 0;
    }
}

.appointment-img {
    border-radius: 76px 0px;
    overflow: hidden;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.doctor-box {
    border-radius: 14px;
    border: 1px solid #322990;
    background: #FFF;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.10);
    text-align: center;
    padding-inline: 16px;
    margin-top: 74px;
    padding-bottom: 80px;
    margin-bottom: 0;
    transition: all .5s;
    height: 80.3%;
    position: relative;
    &:hover{
        transform: translateY(-5px);
        .doctor-img{
            border: 9px solid #322990;
        }
    }

    h4 {
        color: #242424;
        font-family: 'Oakes Grotesk SemiBold';
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 25px;
        letter-spacing: 0.48px;
        margin-bottom: 11px;
        text-transform: uppercase;
    }

    p {
        color: #797979;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 26px;
        margin-bottom: 4px;
        margin-bottom: 10px;
    }

    h5 {
        color: #3C2B99;
        text-align: center;
        font-family: "Libre Franklin";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 26px;
        margin-bottom: 10px;
        text-transform: uppercase;
        margin-bottom: 22px;
    }

    .doctor-time {
        border-top: 1px solid #D0D0D0;
        padding-top: 25px;
        padding-bottom: 29px;
        margin-top: 20px;

        p {
            color: #242424;
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 21px;
            /* 131.25% */
        }
    }

    .btn-group {
        justify-content: center;
        position: absolute;
        bottom: 16px;
        left: 0;
        right: 0;
    }
}

.doctor-img {
    width: 158px;
    height: 158px;
    border-radius: 50%;
    border: 9px solid #F3F1FF;
    margin: auto;
    margin-top: -74px;
    margin-bottom: 20px;
    transition: all .5s;
	overflow: hidden;
}

.gallery-item {
    position: relative;
    border: 1px solid #D6D6D6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s;
    }
    a {
        position: absolute;
        inset: 0;
        background: rgba(60, 43, 153, 0.74);
        color: #fff;
        font-size: 60px;
        font-weight: 200;
        display: flex;
        align-items: center;
        justify-content: center;
        scale: .9;
        opacity: 0;
        img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }
    }
    &:hover {
        a {
            opacity: 1;
            scale: 1;
        }
    }
}



.test-list {
    background: #F8F8F8;
}
.accordion__item {
    margin: 12px auto;
    transition: .5s;
    border-bottom: 1px solid #3C2B99;
}

.accordion__item:hover {
    transform: translateY(-5px)
}

.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 13px 90px 15px 0px;
    margin-bottom: 2px;
    color: #3C2B99;
    font-size: 22px;
    text-decoration: none;
    border-radius: 3px;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    font-weight: 500;
}

  
.accordion__title::after {
    content: '';
    background-image: url(../img/faq-arrow.webp);
    background-repeat: no-repeat;
    position: absolute;
    width: 25px;
    height: 25px;
    right: 6px;
    top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    transform: rotate(180deg);
}
.accordion__item .accordion-active{
    border-color: #fff;
}

.accordion__item .accordion__title .accordion__arrow {
    position: absolute;
    top: 13px;
    right: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    line-height: 30px;
    font-size: 20px;
    font-weight: 700;
    margin-right: 5px;
    background-color: #c9c9c9;
    border-radius: 50%;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out
}

.accordion__item .accordion__content {
    margin-bottom: 0;
    display: none;
    color: #383838;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 155.556%;
padding-bottom: 15px;

}



.img-box {
    position: relative;

    img {
        width: 100%;
        border-radius: 70px;
    }

    &:after {
        content: '';
        border-radius: 20px;
        background: #3BA8EB;
        position: absolute;
        inset: 0;
        top: 37px;
        left: -16px;
        z-index: -1;
        right: 29%;
        bottom: -10px;
    }
}

.polyclinic-health {
    position: relative;

    .img-box {
        img {
            width: 100%;
            border-radius: 56px;
        }

        &:after {
            content: '';
            border-radius: 56px;
            background: #2C9A15;
            position: absolute;
            inset: 0;
            top: 26px;
            left: -17px;
            z-index: -1;
            right: -15px;
            bottom: -15px;
        }
    }

    &::after {
        content: '';
        background-image: url(../img/doctor-list-vector2.webp);
        background-repeat: no-repeat;
        position: absolute;
        width: 179px;
        height: 449px;
        right: 0%;
        bottom: -14%;
        background-size: contain;
        z-index: 0;
    }
}

.test-list-polyclinic {
    background: #FEFBF4;
}

.test-item {
    border-radius: 15px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    box-shadow: 0px 10px 27px 1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 6px 26px;
    color: #252525;
    font-family: 'Oakes Grotesk Medium';
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    min-height: 75px;
    transition: all .5s;

    span:first-child {
        position: relative;
        border-right: 1px solid #BABABA;
        padding-right: 15px;
    }

    &:hover {
        transform: translateY(-5px);
        background-color: #F2F6F8;
    }
}

.polyclinic-about {
    background: linear-gradient(90deg, #1C56D7 0%, #5980D6 100%);
    position: relative;

    .section-title,
    p {
        color: #fff;
    }

    p {
        line-height: 172.222%;
    }

    .polyclinic-about-img {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 46%;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .about-logo-box {
        width: 223px;
        height: 223px;
        background-color: #fff;
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.205);
        z-index: 1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 20px;
    }
}

.polyclinic-health-slider .slick-list {
    margin: 0 -15px;
}

.polyclinic-health-slider .slick-slide {
    margin: 0 15px;
    height: 100%;
}

.polyclinic-health-slider {
    .slick-arrow {
        background-color: #BCC0BB;

        &::before {
            border-top: 1px solid #fff;
            border-left: 1px solid #fff;
        }

        &:hover {
            background-color: #2C9A15;
        }
    }
}

.polyclinic-health-box {
    border-radius: 34px;
    background: #F4F4F4;
    padding: 15px;
    height: 100%;
    &:hover{
        background: #62b25126;
    }

    img {
        width: 100%;
        border-radius: 34px;
        margin-bottom: 15px;
    }

    .title {
        color: #2C9A15;
        font-size: 30px;
        font-style: normal;
        font-weight: 600;
        line-height: 35px;
        /* 116.667% */
    }

    p {
        color: #383838;
        line-height: 166.667%;
    }
}

.polyclinic-gallery {
    background: #E4F2FB;
}

.gallery {
    width: 100%;
    max-width: 100%;
    position: relative;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}



.reach-out-box {
    border-radius: 55px;
    background: #63A5CB;
    overflow: hidden;
    padding: 40px;
    position: relative;

    .content {
        width: 50%;

        .section-title,
        p,
        li {
            color: #fff;
        }

        ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        ul li {
            color: #FFF;
            font-family: 'Oakes Grotesk Medium';
            font-size: 24px;
            font-style: normal;
            font-weight: 500;
            line-height: 54px;
            /* 225% */
            list-style-type: disc;
        }
    }

    img {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        object-fit: cover;
        width: 48%;
        border-radius: 55px;
    }
}

.approach {
    background: #EEF3F6;

    & .approach-img-box {
        position: relative;
        padding-left: 55px;
        z-index: 1;

        img {
            border-radius: 170px 0px 150px;
            width: 100%;
        }

        &::after {
            content: '';
            border-radius: 170px 0px 150px;
            background: #D7D7D7;
            width: 571px;
            height: 605px;
            position: absolute;
            left: 0;
            bottom: -40px;
            z-index: -1;
        }
    }

}

.about {
    background-image: url(../img/about-about-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.mb-15 {
    margin-bottom: 15px;
}

.our-mission {
    position: relative;

    img {
        width: 50.2%;
        border-radius: 30px;
    }

    .container {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .col-lg-6 {
        padding-left: 30px;
        padding-block: 50px;
    }
}

.our-vision {
    margin-top: -30px;

    img {
        margin-left: auto;
        display: block;
    }

    .col-lg-6 {
        padding-right: 30px;
        padding-left: 15px;
    }
}

.core-value {
    background-image: url(../img/core-value-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;

    .col-lg-5 {
        background: rgba(255, 255, 255, 0.904);
        padding: 50px 40px;
    }
}

.list-item {
    position: relative;
    padding-left: 95px;
    margin-bottom: 30px;

    span {
        width: 74px;
        height: 74px;
        background-color: #2C9A15;
        box-shadow: 0 0 0 10px rgba(43, 154, 21, 0.212);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        border-radius: 50%;
    }
    &:hover span{
        background: linear-gradient(90deg, #2C9A15 0%, #25CB02 100%);
        img{
            -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
        }
    }
    h4 {
        background: linear-gradient(90deg, #25CB02 0%, #2C9A15 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: 'Libre Franklin';
        font-size: 30px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
        /* 106.667% */
    }

    p {
        color: #383838;
    }
}

.founder {
    background: #F5FBFE;
}

.team-box {
    border-radius: 20px 0px;
    overflow: hidden;
    position: relative;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    &:hover img {
        transform: scale(1.2);
    }

    .team-info {
        position: absolute;
        inset: 0;
        padding: 20px;
        background: linear-gradient(0deg, #010101 0%, rgba(103, 103, 103, 0.00) 100%);
        display: flex;
        flex-direction: column;
        gap: 5px;
        justify-content: end;

        h4 {
            color: #FFF;
            font-family: 'Libre Franklin';
            font-size: 30px;
            font-style: normal;
            font-weight: 600;
            line-height: 25px;
            /* 83.333% */
        }

        p {
            color: #FFF;
            text-transform: uppercase;
            margin: 0;
        }
    }
}

.founder-img-box {
    text-align: right;

    span {
        display: inline-block;
        position: relative;
        z-index: 1;

        img {
            border-radius: 0 170px;
        }

        &::after {
            content: '';
            border-radius: 0px 170px;
            background: #2C9A15;
            width: 571px;
            height: 605px;
            right: -50px;
            bottom: -40px;
            position: absolute;
            z-index: -1;
        }

        .founder-name {
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(27px);
            padding: 10px 25px;
            text-align: left;
            position: absolute;
            bottom: 65px;
            left: 36px;
            h4 {
                color: #FFF;
                font-family: 'Libre Franklin';
                font-size: 30px;
                font-style: normal;
                font-weight: 600;
                line-height: 25px;
                margin-bottom: 5px;
                /* 83.333% */
            }
    
            p {
                color: #FFF;
                text-transform: uppercase;
                margin: 0;
            }
        }
    }
}

.packages{
    .package-item {
        text-align: center;
        padding: 9px;
        transition: all .5s;
        z-index: 1;
        overflow: hidden;
        height: 100%;
        position: relative;
        border-radius: 14px;
        border: 1px solid #322990;
        background: #FFF;
        box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.10);
        ul {
            width: 90%;
            margin-inline: auto;
            margin-bottom: 10px;
            text-align: left;
            li {
                color: #000;
                font-size: 20px;
                font-style: normal;
                font-weight: 500;
                position: relative;
                line-height: normal;
                padding-left: 30px;
                margin-bottom: 12px;
                transition: all .5s;
                border-bottom: 1px dashed #8E8E8E;
                padding: 0;
                padding-bottom: 12px;
                list-style-type: disc;
                &::after{
                    display: none;
                }
                &:last-child{
                    border-bottom: none;
                }
                ::marker {
                    color: #3C2B99;
                }
            }
           
        }
        .package-head {
            clip-path: polygon(0% 9.302%, 0% 9.302%, 0.053% 7.793%, 0.208% 6.362%, 0.456% 5.027%, 0.788% 3.808%, 1.195% 2.725%, 1.671% 1.795%, 2.206% 1.038%, 2.792% 0.474%, 3.42% 0.122%, 4.082% 0%, 95.918% 0%, 95.918% 0%, 96.58% 0.122%, 97.209% 0.474%, 97.794% 1.038%, 98.329% 1.795%, 98.805% 2.725%, 99.212% 3.808%, 99.544% 5.027%, 99.792% 6.362%, 99.947% 7.793%, 100% 9.302%, 100% 77.981%, 100% 77.981%, 99.134% 78.598%, 96.699% 80.271%, 92.939% 82.737%, 88.098% 85.732%, 82.419% 88.991%, 76.147% 92.249%, 69.525% 95.244%, 62.797% 97.71%, 56.208% 99.383%, 50% 100%, 50% 100%, 43.792% 99.383%, 37.203% 97.71%, 30.475% 95.244%, 23.853% 92.249%, 17.581% 88.991%, 11.902% 85.732%, 7.061% 82.737%, 3.301% 80.271%, 0.866% 78.598%, 0% 77.981%, 0% 9.302%);
            background: linear-gradient(to top, #3C2B99 37.51%, #170F42 100%);
            padding: 21px;
            padding-bottom: 28px;
            margin-bottom: 20px;
            height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            h3{
                color: #FFF;
                text-align: center;
                font-family: 'Oakes Grotesk Bold';
                font-size: 40px;
                font-style: normal;
                font-weight: 700;
                line-height: 102.5%;
                margin-bottom: 20px;
            }
        }
       
        p{
            color: #000;
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 170%;
            margin-inline: auto;
            margin-bottom: 10px;
            margin-bottom: 30px;
        }
        small{
            display: block;
            width: 80%;
            margin-inline: auto;
            color: #5298D1;
        }
        h4{
            color: #FFC107;
            font-family: 'Oakes Grotesk Bold';
            font-size: 30px;
            font-style: normal;
            font-weight: 700;
            line-height: 150% ; 
            justify-content: center;
        }
        del {
            text-decoration: line-through;
            text-decoration-color: #F44336;
            color: #ffffff;
            opacity: .8;
        }
    }
  }
.mb-30{
    margin-bottom: 30px;
}
.health-check{
    background-image: url(../img/helth-checkup.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.gallery-page{
    .col-lg-4{
        .gallery-item {
            height: 759px;
        }
    }
    .col-lg-6{
        .gallery-item {
            height: 372px;
        }
    }
}
.mobile-doctor-filter{
	display:none;
}
/* inner page design */
.popup.diagnosis{
    .popup__content{
        background: #fff;
        text-align: left;
        width: 40%;
        padding: 0;
        display: block !important;
    }
    .accordion__content{
        display: block !important;
    }
    .accordion__title{
        border-color: #fff;
    border-radius: 10px;
    background: linear-gradient(180deg, #3BA8EB 0%, #1C56D7 100%);
    color: #fff;
    }
    .accordion__title::after{
        display: none;
    }
    .close{
        background-color: #00BCD4;
    }
}
/* Doctor Details */
.info-box {
    background: #ffffff;
    box-shadow: 0 0 17px 0px #00000026;
    border-radius: 20px;
    padding: 20px;
	.immediate-care{
		background: #3c2b99;
        padding: 10px;
        border-radius: 10px;
	}
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    .container {
        max-width: 1470px;
    }
    .trusted-img {
        width: 40%;
    }
    .gallery-page {
        & .col-lg-4 {
            .gallery-item {
                height: 728px;
            }
        }
        .col-lg-6{
            .gallery-item {
                height: 356px;
            }
        }
    }
}

@media (max-width: 1536px) {}

@media (max-width: 1440px) {}

@media (max-width: 1440px),
(max-width: 1366px) {
    .main-menu::before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-bottom: solid 21px #3C2B99;
        border-right: solid 21px #3C2B99;
        border-left: solid 21px transparent;
        border-top: solid 20px transparent;
        display: inline-block;
        vertical-align: middle;
        left: -41px;
        bottom: 0px;
        z-index: -1;
        border-radius: 5px;
    }
    
    .health-checkup-box {
        padding-left: 7.7%;
    }
    .service-box {
        padding: 20px;
    }
    .single-blog h4 a {
        font-size: 18px;
    }
    .health-box h4 {
        font-size: 20px;
        line-height: 20px;
    }

    .echo {
        background-position-x: 54%;
    }

    .banner-item ul li {
        font-size: 16px;
    }

    .banner-img-back,
    .banner-img {
        width: 600px;
    }

    .discount-box {
        right: -206px;
        bottom: -5px;
    }

    .service-box h4 {
        font-size: 18px;
    }
    footer p ,footer ul li a, footer p a{
        font-size: 14px;
    }
    .form-control {
        font-size: 14px;
        padding: 10px 10px;
    }
    .dec {
        text-align: center;
        font-size: 16px;
    }

    .container {
        max-width: 1200px;
    }

    .banner-content {
        width: 50%;
    }

    .banner-slider .slick-dots {
        left: 7%;
        bottom: 60px;
    }

    .banner-item h1 {
        font-size: 45px;
        line-height: 49px;
    }

    .banner-item h3 {
        font-size: 24px;
        line-height: 32px;
    }
    .banner-item p {
        font-size: 16px;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 12px;
    }

    .section-title {
        font-size: 38px;
    }
    .user-info h4 {
        font-size: 16px;
        line-height: 26px;
    }
    .user-info p {
        font-size: 11px;
    }
    p {
        font-size: 14px;
    }
.about-us{
    .service-item {
        padding: 12px;
    }
}
    .logo {
        position: absolute;
        bottom: 10px;
        width: 18%;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
        padding: 11px 8px;
    }
    .primary-btn {
        font-size: 14px;
        padding: 15px 20px;
    }
    .card-title {
        font-size: 20px;
    }
    .enq-btn a {
                font-size: 15px;
        line-height: 28px;
        padding: 8px 18px;
    }
    .counter-item .counter-icon {
        right: 70px;
        top: -5px;
    }

    .counter-item h3 {
        font-size: 48px;
    }

    .counter-item p {
        font-size: 14.5px;
    }
    .counter-item {
        padding-left: 93px;
    }
    .choose-item h4 {
        font-size: 16px;
        line-height: 26px;
    }
    .list-item {
        h4 {
            font-size: 28px;
        }
    }
    .title {
        font-size: 30px;
        margin-bottom: 8px;
    }

    .popup .popup__content {
        width: 70%;
        padding: 22px 22px;
        background-position: right;
    }

    .off h2 {
        font-size: 65px;
    }

    .off {
        padding-block: 30px;
    }

    .banner-item {
        height: 82vh;
    }

    .inner-banner .banner-item {
        height: auto;
    }

    .cta .heading-tag {
        font-size: 20px;
    }

    .form-head {
        height: 84px;
    }

    .counter {
        padding: 55px 0;
    }

    .offcanvas-body {
        .title {
            font-size: 30px;
            line-height: 36px;
            margin-bottom: 6px;
        }

        .form-control {
            font-size: 16px;
            padding: 16px 16px;
        }

        .btn-group {
            justify-content: start;
            margin-top: 6px;
        }
    }

    .offcanvas-body {
        label {
            font-size: 16px;
        }
    }

    .doctor-box {
        height: 77.3%;
        h4 {
            font-size: 20px;
        }

        p {
            font-size: 14px;
            line-height: 18px;
        }

        h5 {
            font-size: 13px;
            line-height: 22px;
        }

        .doctor-time {
            padding-top: 20px;
            padding-bottom: 18px;
        }

        .primary-btn {
            font-size: 16px;
        }
    }

    .filter-select {
        .form-control {
            font-size: 20px;
        }
    }

    .test-item {
        gap: 8px;
        padding: 6px 14px;
        font-size: 20px;
        min-height: 75px;

        span:first-child {
            position: relative;
            width: 58px;
            margin-right: 10px;
        }

        span:last-child {
            position: relative;
            width: 74%;
        }

    }
	 .enq-btn {
        top: 25%;
    }
	.fixed-btn {
    bottom: 20px;
}
.department-item {
    font-size: 16px;
    padding: 15px 15px;
}
    .polyclinic-health-box {
        .title {
            margin-bottom: 10px;
        }
    }

    .gallery {
        gap: 20px;
    }

    .reach-out-box {
        & .content {
            ul li {
                font-size: 22px;
                line-height: 40px;
            }
        }
    }

    .approach {
        & .approach-img-box {
            &::after {
                width: 475px;
                height: 490px;
            }
        }
    }
    .our-mission {
        img {
            width: 50.2%;
            height: 650px;
            object-fit: cover;
        }
    }
    .team-box {
        & .team-info {
            h4 {
                font-size: 20px;
            }
            p {
                font-size: 13px;
            }
        }
    }
    .founder-img-box {
        & span {
            & .founder-name {
                h4 {
                    font-size: 26px;
                }
                p {
                    font-size: 15px;
                }
            }
        }
    }
    .icon-box {
        width: 60px;
        height: 60px;
        padding: 10px;
    }
    .category-item {
        padding-left: 80px;
        height: 100%;
        p {
            font-size: 13px;
            line-height: 20px;
        }
    }
    .category-item h4 {
        font-size: 18px;
    }
    .feature-details {
        & ul {
            li {
                font-size: 14px;
            }
        }
    }
    .packages {
        & .package-item {
            & .package-head {
                h3 {
                    font-size: 30px;
                    margin-bottom: 15px;
                }
            }
        }
    }
    .accordion__item .accordion__content {
        font-size: 15px;
    }
    .gallery-page {
        & .col-lg-4 {
            .gallery-item {
                height: 589px;
            }
        }
        .col-lg-6{
            .gallery-item {
                height: 287px;
            }
        }
    }
	.home-collection-banner {
        h1 {
            font-size: 47px;
        }
    }

    .accordion__item .accordion__title {
        font-size: 20px;
    }
   
	.topbar {
    padding: 4px 0;
}
    .mission-vission {
        .item {
            padding: 10px;
            padding-left: 100px;
        }
    }
    .highlight {
        h4 {
            font-size: 24px;
            line-height: 32px;
        }
    }
    .service-title {
        font-size: 22px;
        margin-bottom: 0;
    }
    .other-segments {
        & .item {
            padding-left: 90px;
            height: 90px;
            .icon-box {
                left: 15px;
            }
            .card-title {
                font-size: 15px;
            }
        }
    }
    .blog-title {
        font-size: 20px;
    }
    .link-btn {
        font-size: 16px;
        img{
            width: 18px;
            height: auto;
        }
    }
    .blog-details h1 {
        font-size: 44px;
    }
    .blog-details h2 {
        font-size: 24px;
        line-height: 110%;
        margin-bottom: 4px;
    }
    .post_box h4 {
        font-size: 18px;
        line-height: 129.167%;
    }
    .home-collection-form {
        & .offcanvas-body {
            label {
                font-size: 15px;
            }
        }
    }
    .pretty .state label {
        font-weight: 500;
        line-height: 30%;
    }
    .care-box {
        h3 {
            font-size: 22px;
            line-height: 40px;
        }
    }
}

@media (max-width: 1366px) {    
}

@media (max-width: 1199.98px) {

    .banner-img-back,
    .banner-img {
        width: 560px;
    }

    #menu>.main-menu>ul>li {
        padding-inline: 10px;
    }


    .part-logo {
        width: 260px;
        height: 220px;
        padding: 30px;
    }

    .approach {
        & .approach-img-box {
            img {
                border-radius: 120px 0px 100px;
                width: 100%;
            }

            &::after {
                width: 390px;
                height: 400px;
                border-radius: 120px 0px 100px;
            }
        }
    }

    .gallery-page {
        & .col-lg-4 {
            .gallery-item {
                height: 493px;
            }
        }
        .col-lg-6{
            .gallery-item {
                height: 238px;
            }
        }
    }
    .founder-img-box {
        & span {
            &::after {
                content: '';
                border-radius: 0px 170px;
                width: 474px;
                height: 504px;
                right: -12px;
                bottom: -13px;
                position: absolute;
                z-index: -1;
            }
            & .founder-name {
                p {
                    font-size: 13px;
                }
            }
        }
    }
    .single-review {
        height: 330px;
    }
    .banner-item {
        height: 40vh;
    }
}

@media(max-width: 1024px) {

    .overlay-content ul li {
        font-size: 14px;
        line-height: 18px;
    }

    .overlay-content {
        transform: translateY(130%);
    }

    .counter-item h3 {
        font-size: 48px;
    }

    .discount-box {
        right: -176px;
        bottom: 15px;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 12px;
        padding: 11px 3px;
    }

    .banner-item ul li {
        font-size: 13px;
    }

    .banner-img-back,
    .banner-img {
        width: 496px;
    }
}

@media (max-width: 991.98px) {

    .user-info p {
        font-size: 14px;
        line-height: 34px;
    }

    .slick-dotted.slick-slider {
        margin-bottom: 0px;
    }
    .trusted-img {
        width: 100%;
        position: relative;
        margin-bottom: 30px;
    }
    .topbar {
        display: none;
    }
    #menu {
        justify-content: start;
        background: #fff;
        box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.07);
    }

    /* .logo {
        width: 170px;
        padding-block: 5px;
    } */
    .logo {
        width: 140px;
        padding-block: 5px;
        left: unset;
        bottom: unset;
        position: relative;
    }
.why-choose{
    .col-lg-8{
        order: -1;
    }
}

.left-choose, .right-choose {
    .choose-item:first-child {
        margin-top: -330px;
        margin-bottom: 40px;
    }
}
.popular-choices {
    text-align: center;
    .flex,.btn-group{
        justify-content: center;
    }
}
.about-diagnostic .row .col-lg-6:last-child{
    order: -1;
}
.logo-area {
    text-align: center;
    .footer-social{
        justify-content: center;
    }
}
.copyright {
    justify-content: center;
}
    .echo .container {
        padding: 0;
    }

    
    .health-checkup-slider .slick-arrow {
        top: -107px;
        right: 11.7%;
    }

    .slick-arrow {
        width: 36px;
        height: 36px;
    }

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 12px;
        top: 24px;
        cursor: pointer;
        z-index: 12399994;
    }

    .hamburger {
        background: #3C2B99;
        border-radius: 4px;
    }

    #menu .main-menu {
        background-color: #3C2B99;
        top: 94px;
        flex-direction: column;
        padding-right: 0;
    }
    #menu>.main-menu>ul>li {
        border-bottom: 1px solid #dddddd3d;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
        padding: 20px 6px;
    }

    header .flex-box {
        margin-top: 20px;
    }

    #menu .submenu-button {
        height: 77px;
        width: 70px;
    }

    #menu .submenu-button:after {
        top: 28px;
        right: 30px;
    }

    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 34px;
    }

    .topbar .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 7px;
    }

    .banner-content {
        width: 67%;
    }
    .banner-item h3 {
        font-size: 20px;
    }
    .banner-item h1 {
        font-size: 38px;
        line-height: 40px;
    }

    .banner-slider .slick-dots {
        left: 2%;
        bottom: 25px;
    }

    .off h2 {
        font-size: 64px;
    }

    .off {
        padding-block: 40px;
    }

    .who-we-are-img {
        width: 88%;
        margin: auto;
        margin-bottom: 50px;
    }

    .about-us {
        padding-bottom: 60px;
    }

    .counter-item .counter-icon {
        right: 100px;
        top: -5px;
    }

    .client-slider .slick-slide {
        margin: 0 10px;
    }

    .client-slider .slick-list {
        margin: 0 10px;
    }

    .slick-prev {
        left: 0px;
    }

    .slick-next {
        right: 0;
    }

    .section-title {
        font-size: 30px;
    }

    .testi-masonary .col-lg-4:nth-child(5),
    .testi-masonary .col-lg-4:nth-child(8) {
        transform: translateY(0px);
    }

    .inner-banner .banner-item {
        height: auto;
    }

    .cta .content h2 {
        font-size: 25px;
    }

    .cta .heading-tag {
        font-size: 13px;
    }

    .form-head {
        height: 112px;
    }

    .title-md {
        font-size: 36px;
    }

    .our-mision-content {
        width: 80%;
    }

    .banner-item {
        height: 62vh;
    }


    .icon-box {
        top: 15px;
    }
    .category .row{
        padding-bottom: 30px;
    }

    .category-item {
        padding: 9px 0;
        padding-left: 80px;
    }

    .about-category {
        padding: 30px 10% 0;
    }

    .counter-item {
        position: relative;
        padding-left: 100px;
        margin-top: 40px;
    }


    .why-choose-list .choose-item:first-child {
        margin-left: 0px;
    }

    .single-blog img {
        width: 100%;
    }

    .part-logo {
        width: 220px;
        height: 190px;
        margin: 0;
    }

    .enq-btn {
        top: 20%;
        right: 2px;
    }

    .footer-title {
        margin-top: 30px;
    }

    .desk_search {
        display: none;
    }

    .mob_search {
        display: none;
    }

    .mob_search .search-icon img {
        filter: brightness(0) saturate(100%) invert(44%) sepia(95%) saturate(458%) hue-rotate(63deg) brightness(89%) contrast(92%);

    }

    .health-checkup-slider .slick-list {
        margin: 0 -15px;
        padding-left: 9%;
    }

    .health-checkup-box {
        padding-left: 15px;
    }

    .popup .popup__content {
        width: 85%;
    }

    .contact-form {
        width: 70%;
        text-align: left;
    }

   

    .img-box {
        position: relative;
        width: 90%;
        margin: auto;
    }

    .polyclinic-about {
        .about-logo-box {
            margin: auto;
        }

        .polyclinic-about-img {
            position: absolute;
            right: 0;
            top: auto;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 44%;
        }
    }

    .polyclinic-health-box {
        .title {
            font-size: 22px;
            line-height: 30px;
        }
    }

    .gallery {
        gap: 17px;
    }

    .reach-out-box {
        .content {
            width: 100%;
            order: 2;
        }

        img {
            position: relative;
            width: 100%;
            border-radius: 55px;
            margin-top: 29px;
            order: 1;
        }
    }
    .our-mission {
        .container {
            position: relative;
        }
        img {
            width: 100%;
            height: 650px;
            object-fit: cover;
        }
    }
    .ps-timeline-sec .container ol.ps-timeline li p {
        width: 100%;
    }
    .founder-img-box {
        text-align: center;
    }
    .service-single .container .row:first-child{
        .col-lg-6:last-child{
            order: -1;
        }
    }
    .details-img {
        margin-bottom: 15px;
    }
    .mb-70 {
        margin-bottom: 30px;
    }
    .packages {
        & .package-item {
            & .package-head {
                h3 {
                    font-size: 26px;
                    margin-bottom: 12px;
                }
                h4 {
                    font-size: 26px;
                }
            }
            & ul {
                li {
                    font-size: 16px;
                }
            }
            p{
                font-size: 16px;
            }
        }
    }
    .blog-title {
        font-size: 18px;
    }
    .blog-details h1 {
        font-size: 28px;
        margin-bottom: 5px;
    }
    .blog-details-content {
        & ul {
            li {
                font-size: 14px;
            }
        }
    }
    .gallery-page {
        & .col-lg-4 {
            .gallery-item {
                height: 366px;
            }
        }
        .col-lg-6{
            .gallery-item {
                height: 175px;
            }
        }
    }
}



@media (max-width: 575.98px) {
    .banner-item {
        height: 52vh;
    }
	.department-item {
        font-size: 13px;
        padding: 10px 15px;
    }
    .blog-details h1 {
        font-size: 20px;
        line-height: 26px;
    }
    .blog-details .image-box {
        margin: 10px 0;
        height: auto;
    }
    .blog-details h2 {
        font-size: 18px;
    }
    .post_box h4 {
        font-size: 16px;
        line-height: 129.167%;
    }
    .blog_div .head_h3 {
        font-size: 22px;
    }
    .category-tag {
        a {
            font-size: 14px;
            padding: 3px 18px;
        }
    }
    .r_div_box h3 {
        font-size: 18px;
    }
    .blog-details .left_div p {
        text-align: justify;
    }

    .banner_con {
        width: 100%;
    }

    .banner_con h1 {
        font-size: 20px;
        line-height: 30px;
    }
    .single-blog h4 a {
        font-size: 16px;
    }
    .date {
        font-size: 14px;
        line-height: 22px;
    }
    .blog-content {
        p {
            margin: 0;
        }
    }
    footer {
        padding-top: 10px;
    }
    .banner_con h1 br {
        display: none;
    }

    .health-checkup-slider .slick-arrow {
        top: -97px;
        right: -0.3%;
    }

    .health-checkup-slider .slick-arrow.slick-prev {
        right: 7.7%;
        left: auto;
    }

    .form-group {
        margin-bottom: 5px;
    }

    .offcanvas-body .contact-form label {
        font-size: 15px;
        margin-bottom: 0px;
    }

    form .btn-group {
        justify-content: center;
        margin-top: 15px;
    }


    .echo-content {
        padding: 30px 20px;
        background: #00000087;
    }
    .single-review {
        height: 280px;
    }
    

    #menu .submenu-button {
        height: 46px;
        width: 60px;
        background: rgb(255 255 255 / 3%);
    }
    #menu .submenu-button:after {
        top: 16px;
        right: 24px;
    }
    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 20px;
    }

    .section-title {
        font-size: 22px;
        line-height: inherit;
        margin-bottom: 2px;
    }

    p {
        font-size: 14px;
    }

    .sec-gap,
    .sec-pad {
        padding: 30px 0;
    }

    .mb-20 {
        margin-bottom: 10px;
    }

    .choose-item h4 {
        font-size: 18px;
    }
    .left-choose, .right-choose {
        .choose-item:first-child {
            margin-top: 0;
            margin-bottom: 20px;
        }
    }
    .why-choose {
        padding-bottom: 30px;
        .col-lg-7 {
            padding-top: 30px;
            margin-bottom: 30px;
        }
    }
    .choose-logo {
        scale: .7;
        top: -177px;
        left: 50%;
        transform: translateX(-68%);
    }
    .hand {
        position: relative;
        margin-top: 120px;
        margin-bottom: -160px;
    }
    .slick-center img {
        padding: 2px;
    }

    .map iframe {
        height: 300px;
        margin-top: 0px;
    }

    .footer-contact p {
        text-align: left;
        min-height: 32px;
    }

    .footer-contact p span {
        left: 0px;
        top: 0px;
    }

    .footer-box {
        width: 100%;
        padding: 0;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    footer p,
    footer ul li a,
    footer p a {
        font-size: 14px;
    }

    .footer-social {
        justify-content: center;
    }

    .copyright {
        padding: 10px 0;
        padding-bottom: 0;
        justify-content: center;
    }

    .copyright p {
        margin-bottom: 5px;
    }

    .flex-box {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 30px;
        background: #ffffff05;
        padding-block: 10px;
    }

    .health-checkup-slider .slick-list {
        margin: 0 -15px;
        padding-left: 0%;
    }

    .popup .popup__content {
        width: 90%;
        background-position: center;
    }

    .popup .popup__content .close {
        right: 14px;
        top: -6px;
        width: 40px;
        height: 40px;
    }
    .card-title {
        font-size: 18px;
    }
    .title {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .left {
        padding-block: 15px;
    }

    .banner-item h1 {
        font-size: 25.5px;
        margin-bottom: 6px;
        line-height: 120%;
    }
    .banner-item h3 {
        font-size: 13.5px;
        line-height: 20px;
        margin-bottom: 6px;
    }
    .banner-item{
        .primary-btn {
            font-size: 12px;
            padding: 12px 15px;
        }
        .link-btn {
            font-size: 12px;
        }
    }
    .banner-item p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .primary-btn {
        font-size: 14px;
        padding: 13px 20px;
    }
    .immediate-care {
        background-size: cover;
        padding: 30px 0px;
    }
    .counter-item img {
        height: 50px;
    }
    .counter-item {
        padding-left: 60px;
    }
    .btn-group {
        display: flex;
        gap: 10px;
    }

    .banner-content {
        width: 94%;
    }
    .banner-item ul {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .banner-item ul li {
        gap: 6px;
        width: 48%;
        font-size: 12px;
        line-height: normal;
        img{
            width: 30px;
        }
    }
    .banner-item .btn-group {
        align-items: center;
        margin-bottom: 20px;
    }
    .banner-slider .slick-dots li button {
        padding: 2px;
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }

    .banner-slider .slick-dots {
        left: 0;
        bottom: 25px;
    }
    .icon-box {
        top: 3px;
    }
    .category-item {
        padding: 0px 0;
        padding-left: 80px;
        height: 68px;
    }
    .blog{
        .mt-40 {
            margin-top: 0px;
        }        
    }
    .off h2 {
        font-size: 46px;
        margin-bottom: 10px;
    }

    .off {
        padding-block: 20px;
    }

    .who-we-are-img {
        width: 84%;
        margin: auto;
        margin-bottom: 25px;
    }

    .about-small {
        padding: 6px;
        width: 50%;
        border-radius: 4px;
    }

    .small-line {
        width: 58px;
        height: 2px;
        margin-top: 0px;
        margin-bottom: 12px;
    }

    .counter-item h3 {
        font-size: 26px;
        line-height: inherit;
        margin-bottom: 0px;
    }

    .counter-item .counter-icon {
        right: 16px;
        top: 0px;
        width: 35px;
    }

    .counter-item p {
        font-size: 12.5px;
        line-height: inherit;
    }

    .enq-btn {
        height: 30px;
    }

    .enq-btn a {
        font-size: 13px;
        line-height: normal;
        padding: 8px 14px;
    }

    .fixed-btn {
        top: 80%;
        right: 5px;
        width: 30px;
    }

    .counter {
        padding: 30px 0;
    }

    .client-logo .clogo {
        height: 70px;
        padding: 10px;
    }

    .client-logo .clogo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .client-slider .slick-slide {
        margin: 0 5px;
    }

    .client-slider .slick-list {
        margin: 0 -5px;
    }

    .slick-arrow {
        width: 30px;
        height: 30px;
    }

    .slick-arrow::before {
        width: 10px;
        height: 10px;
    }

    .client-slider .slick-slide {
        height: auto;
    }

    .testi-user h4 {
        font-size: 16px;
        line-height: 16px;
    }

    .inner-banner .banner-item {
        height: auto;
    }

    .inner-banner .banner-item .slider-bg {
        height: 170px;
    }
    .mission-vission {
        & .item {
            padding-left: 90px;
            .icon-box {
                outline-offset: 5px;
                left: 15px;
                top: 15px;
            }
        }
    }
    h3 {
        font-size: 16px;
    }
    .highlight {
        padding: 18px 10px;
        h4 {
            font-size: 16px;
            line-height: 22px;
        }
    }
    .details-content h2 {
        font-size: 18px;
    }

    .details-content {
        padding: 6px;
    }

    .heading-tag {
        font-size: 16px;
        padding-bottom: 4px;
        padding-top: 2px;
        padding-inline: 8px;
    }

    .list li {
        font-size: 14px;
    }

    .cta img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        object-position: right;
    }

    .cta .content {
        inset: 4%;
        top: 40%;
    }

    .cta .content h2 {
        font-size: 17px;
        text-align: center;
    }

    .cta .content .flex {
        gap: 6px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta {
        position: relative;
        margin-bottom: 15px;
    }

    .list {
        list-style-type: none;
        margin-bottom: 20px;
    }

    .other-service-list li a {
        font-size: 16px;
    }

    .title-md {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .info-content h4 {
        font-size: 18px;
    }

    .follow .title-md {
        font-size: 18px;
    }

    .follow .footer-social {
        justify-content: start;
    }

    .form-head h3 {
        font-size: 22px;
    }

    .form-head {
        height: 60px;
    }

    .form-box .form-control {
        height: 42px;
    }

    .c-logo {
        height: 76px;
    }

    .blog-date {
        font-size: 14px;
    }

    .blog-title {
        font-size: 16px;
    }

    .read-more {
        border-radius: 3px;
        padding: 7px 12px;
    }

    .blog-item p {
        margin-bottom: 10px;
        line-height: 20px;
    }

    .award-box {
        border-radius: 2px;
    }

    .blog-details .blog-title {
        font-size: 18px;
    }

    .blog-heading .heading-tag {
        font-size: 14px;
        padding-inline: 15px;
        padding-bottom: 2px;
        margin-bottom: 5px;
    }

    .service-details-img {
        width: 100%;
        margin-bottom: 10px;
    }

    .our-mision-content {
        width: 100%;
        position: relative;
        top: 0;
        transform: unset;
        padding: 20px 15px;
    }

    .director-box h3 {
        font-size: 18px;
    }

    .director-content p {
        margin-bottom: 0;
    }

    .overlay-content {
        padding: 10px;
        transform: translateY(104%);
    }

    .team-member h3 {
        line-height: 18px;
        font-size: 16px;
    }

    .team-member p {
        line-height: normal;
        font-size: 12px;
    }

    .accordion__item .accordion__title {
        padding: 4px 39px 4px 0px;
        font-size: 16px;

        span.icon-box {
            width: 40px;
            height: 40px;
            padding: 5px;
            top: 0;
        }
    }

    .accordion__title::after {
        width: 27px;
        height: 27px;
        right: 6px;
        top: 10px;
        background-size: 27px;
    }

    .accordion__item .accordion__content {
        padding: 6px;
        font-size: 14.356px;

        ul li {
            font-size: 14px;
            line-height: 31px;
        }
    }

    .img-box {
        img {
            width: 100%;
            border-radius: 20px;
        }
    }

    .call-email {
        gap: 6px;
    }

    .empower-content {
        background: #632C76;
        padding: 30px 15px 30px 15px;
        height: 100%;
    }
    .service-box {
        height: 100%;
        padding-inline: 5px;
        padding-block: 10px;
        p {
            font-size: 12px;
        }
    }
    .trusted{
        padding-top: 0;
    }
    .trusted-img {
        border-radius: 0px 0px 0px 90px;
        border-left: 10px solid rgb(104 94 155 / 90%);
        width: 94%;
        margin-left: auto;
        margin-bottom: 20px;
        img {
            border-radius: 0px 0px 0px 80px;
        }
        &::after {
            left: -24px;
            border-radius: 0px 0px 0px 90px;
        }
    }
    .service-box img {
        height: 50px;
    }
    .service-box h4 {
        font-size: 16px;
        line-height: 22px;
    }
    .about-category {
        padding: 30px 0% 0;
    }

    .contact-form {
        width: 100%;
        text-align: left;
    }

    .offcanvas-body {
        .title {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 6px;
        }

        .form-control {
            font-size: 14px;
            padding: 12px 12px;
        }
    }

    .home-collection-form {
        .offcanvas-body {
            padding: 24px;
        }

        .pretty {
            margin-bottom: 0px;
            height: 28px;
        }
    }

    .control-fileupload {
        height: 44px;
        margin-top: 17px;
    }

    .appointment-img {
        border-radius: 40px 0px;
    }

    .filter-select {
        .form-control {
            font-size: 16px;
            padding: 12px 15px;
        }
    }

    .doctor-box {
        h4 {
            font-size: 18px;
            line-height: 16px;
        }

        .btn-group {
            justify-content: center;
            margin-bottom: 0px;
        }
    }

    .polyclinic-health {
        & .img-box {
            img {
                width: 100%;
                border-radius: 30px;
            }

            &:after {
                border-radius: 30px;
                top: 26px;
                left: -10px;
                z-index: -1;
                right: -10px;
                bottom: -10px;
            }
        }
    }

    .test-item {
        font-size: 16px;
        min-height: 60px;
        border-radius: 10px;
    }

    .polyclinic-about {
        .polyclinic-about-img {
            height: 33%;
        }
    }

    .polyclinic-health-box {
        border-radius: 20px;
        padding: 10px;

        img {
            border-radius: 20px;
            margin-bottom: 10px;
        }

        .title {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 4px;
        }
    }

    .reach-out-box {
        border-radius: 25px;
        padding: 20px;

        & .content {
            ul li {
                font-size: 14px;
                line-height: 18px;
                margin-bottom: 10px;
            }
        }

        img {
            border-radius: 20px;
        }
    }

    .approach {
        & .approach-img-box {
            position: relative;
            padding-left: 20px;
            z-index: 1;
            margin-bottom: 20px;

            img {
                border-radius: 70px 0px 50px;
                width: 100%;
            }

            &::after {
                width: 280px;
                height: 300px;
                border-radius: 70px 0px 50px;
                bottom: -15px;
            }
        }
    }

    .part-logo {
        width: 95px;
        height: 90px;
        margin: 0;
        padding: 10px;
    }

    .partner h2 {
        font-size: 14px;
    }

    .gallery {
        gap: 6px;
    }

    .gallery-item {
        border-radius: 6px;
    }
    .our-mission {
        img {
            height: auto;
        }
        .col-lg-6 {
            padding-left: 15px;
            padding-block: 20px;
        }
    }
    .core-value {
        .col-lg-5 {
            padding: 20px 20px;
        }
    }
    .list-item {
        padding-left: 70px;
    margin-bottom: 12px;
        span {
            width: 54px;
            height: 54px;
            padding: 10px;
            box-shadow: 0 0 0 5px rgba(43, 154, 21, 0.212);
            top: 10px;
        }
        h4 {
            font-size: 22px;
        }
    }
    .counter-item {
        margin-top: 15px;
    }
    .founder-img-box {
        & span {
            .founder-name {
                padding: 10px 12px;
                bottom: 65px;
                left: 14px;
                h4 {
                    font-size: 22px;
                }
                p {
                    font-size: 10px;
                }
            }
            img {
                border-radius: 0 120px;
            }
            &::after {
                content: '';
                border-radius: 0px 120px;
                width: 96%;
                height: 96%;
                right: -10px;
                bottom: -10px;
            }
        }
    }
    .team-box {
        & .team-info {
            h4 {
                font-size: 22px;
            }
            p {
                font-size: 13px;
            }
        }
    }
    .popup.diagnosis {
        .popup__content {
            width: 90%;

        }
    }
    .logo {
        width: 85px;
    }
    .hamburger {
        width: 45px;
        height: 38px;
        top: 12px;
    }
    .hamburger:before {
        top: 10px;
        right: 7px;
        height: 2px;
        width: 30px;
    }
    .hamburger:after {
        top: 19px;
        right: 7px;
        height: 10px;
        width: 30px;
    }
    .hamburger.menu-opened:after {
        top: 18px;
        border: 0;
        height: 2px;
        width: 30px;
    }
    .hamburger.menu-opened:before {
        top: 18px;
        width: 30px;
    }
    #menu .main-menu {
        top: 63px;
        overflow: auto;
        padding-bottom: 18%;
    }
    #menu>.main-menu>ul>li>a, #menu ul ul li a {
        font-size: 14px;
        padding: 14px 6px;
    }
    .service-title {
        font-size: 18px;
        margin-bottom: 0;
    }
    .brand-name {
        font-size: 14px;
        line-height: 18px;
    }
    .packages {
        & .package-item {
            & .package-head {
                padding: 21px;
                padding-bottom: 18px;
                margin-bottom: 10px;
                height: 100px;
                h3 {
                    font-size: 18px;
                    margin-bottom: 12px;
                }
                h4{
                    font-size: 18px;
                }
            }
            & ul {
                li {
                    font-size: 14px;
                }
            }
            p{
                font-size: 14px;
            }
        }
    }
    .wp-pagenavi a {
        padding: 5px 9.7px;
        font-size: 14px;
    }
    .link-btn {
        font-size: 14px;
        img{
            width: 16px;
            height: 16px;
        }
    }
    .home-collection-form {
        & .offcanvas-body {
            label {
                font-size: 14px;
            }
        }
        .form-group {
            margin-bottom: 10px;
        }
        .pretty .state label:after, .pretty .state label:before {
            top: calc((0% - (44% - 1em)) - 8%);
        }
    }
    .home-collection-form {
        & .control-fileupload {
            height: 45px;
   
        }
    }
    .gallery-page {
        & .col-lg-4 {
            .gallery-item {
                height: 366px;
            }
        }
        .col-lg-6{
            .gallery-item {
                height: 125px;
            }
        }
    }
	.mobile-doctor-filter{
		display:block;
		background: aliceblue;
        border-radius: 6px;
        color: #3C2B99;
        padding: 6px 12px;
		.filter-btn {
    background: rgb(60 43 153 / 25%);
    display: inline-block;
    border-radius: 4px;
    padding: 4px 10px;
}
	}
.department-filter {
    position: fixed;
    inset: 0;
    z-index: 9999;
    transform: translateX(-102%);
    overflow-y: auto;
	transition: all .5s;
}
	.department-filter.active {
    transform: translateX(0);
}
}
