/**************************************
                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: #160F41;
}

html::-webkit-scrollbar-thumb {
    background-color: #D42817;
    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;
}

body {
    color: #4A4A4A;
   font-family: 'Sofia Pro Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 166.667%;
}

a,
a:hover,
a:focus {
    color: #6C0000;
    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-weight: normal;
    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;
}


/* 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: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}

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

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

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

.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 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #15222b70 0%, #1e3a5f7a 30%), url(../img/about-img.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.right {
    padding: 30px;
    text-align: left;
    .form-title{
        font-size: 38px;
        margin-bottom: 10px;
        color: #160F41;
    }
    .btn-group{
        margin-top: 10px;
    }
    .primary-btn{
        width: 100%;
    }
}
@keyframes ring {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}

.fixed-btn {
    position: fixed;
    right: 10px;
    top: 68%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
    a:hover{
        transform: scale(1.1);
    }
}
.fixed-call {
    width: 58px;
    height: 58px;
    background-color: #057009;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.wp{
    width: 67px;
    height: 67px;
}
/* Ultra Modern View Transitions Collection 2025 */
/* Choose any one animation set by uncommenting it */

/* Enable view transitions for navigation */
@media(prefers-reduced-motion: no-preference) {
    @view-transition {
        navigation: auto;
    }
}

/* Basic settings for all animations */
::view-transition-group(*) {
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
}
/* ========================
   3. PARALLAX DEPTH TRANSITION (Uncomment to use)
   ======================== */

::view-transition-old(root) {
    animation: parallaxDepthOut 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

::view-transition-new(root) {
    animation: parallaxDepthIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes parallaxDepthOut {
    0% { 
        transform: perspective(1000px) translateZ(0px) rotateX(0deg);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
    50% {
        transform: perspective(1000px) translateZ(-300px) rotateX(-15deg);
        opacity: 0.6;
        filter: blur(5px) brightness(0.7);
    }
    100% { 
        transform: perspective(1000px) translateZ(-600px) rotateX(-30deg);
        opacity: 0;
        filter: blur(15px) brightness(0.3);
    }
}

@keyframes parallaxDepthIn {
    0% { 
        transform: perspective(1000px) translateZ(600px) rotateX(30deg);
        opacity: 0;
        filter: blur(15px) brightness(1.5);
    }
    50% {
        transform: perspective(1000px) translateZ(300px) rotateX(15deg);
        opacity: 0.6;
        filter: blur(5px) brightness(1.2);
    }
    100% { 
        transform: perspective(1000px) translateZ(0px) rotateX(0deg);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
}
/**************************************
                Helper Class
**************************************/

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

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

.mb-20 {
    margin-bottom: 20px;
}
.mb-50{
    margin-bottom: 50px;
}
p {
    color: #4A4A4A;
    font-family: 'Sofia Pro Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 166.667%;
}
.sub-dec{
    color: #1D1D22;
    font-family: 'Sofia Pro Medium';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 125%;
}
.title {
    color: #DE172B;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 63px;
    margin-bottom: 45px;
    text-transform: uppercase;
}
.section-title {
    color: #000;
    font-family: 'Uncut Sans SemiBold';
    font-size: 60px;
    font-style: normal;
    font-weight: normal;
    line-height: 111.667%;
    margin-bottom: 20px;
}
.sub-title{
    color: #980606;
    font-family: 'Uncut Sans SemiBold';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    text-transform: uppercase;

}
.primary-btn {
    color: #FFF;
    font-family: 'Uncut Sans SemiBold';
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    padding: 13px 22px;
    border-radius: 60px;
    border: 2px solid #980606;
    background: #980606;
    transition: all 1s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    scale: 1 0;
    left: 0;
    background: #057009;
    z-index: -1;
    transition: all .35s;
    transform-origin: bottom;
}
.primary-btn:before {
    opacity: .5;
}
.primary-btn:after {
    transition-delay: .2s;
}
.primary-btn:hover:before,
.primary-btn:hover:after {
    scale: 1 1;
}
.primary-btn:hover {
    color: #ffffff;
    border-color: #057009;
}
.primary-btn:focus {
    color: currentColor;
}
.primary-btn:focus{
    color: #FFF;
}
.secondary-btn{
    background: transparent;
    border-color: #3D3861;
    color: #3D3861;
    padding: 13px 32px;
    img{
        filter: brightness(0) saturate(100%) invert(19%) sepia(14%) saturate(2430%) hue-rotate(207deg) brightness(89%) contrast(81%);
    }
}
.secondary-btn::before,
.secondary-btn::after {
    background: #980606;
}
.secondary-btn:hover{
    color: #FFF;
    border-color: #980606;
    img{
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(320deg) brightness(106%) contrast(103%);
    }
}
.form-control {
    border-radius: 10px;
    border: 1px solid #3D3861;
    background: #FFF;
    font-family: 'Sofia Pro Medium';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: normal;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 13px 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    width: 100%;
    outline: none;
}
label{
    color: #000;
    font-family: 'Sofia Pro Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}
.form-control:focus {
    border-color: #6C0000;
}

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

.form-control::placeholder {
    color: #8C8C8C;
}

.form-group {
    position: relative;
}

form .primary-btn{
    padding: 14px 37px;
    cursor: pointer;
    &:hover{
        background: #057009;
    }
}
.italic {
    font-style: italic;
}


/**************************************
         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{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D9D9D9;
    justify-content: space-between;
    padding-block: 7px;
}
.address{
    color: #282828;
    font-family: 'Sofia Pro Medium';
    font-size: 18px;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}
.header-social{
    display: flex;
    align-items: center;
    gap: 12px;
    a:hover{
        scale: 1.1;
        img{
            filter: brightness(0) saturate(100%) invert(9%) sepia(75%) saturate(6114%) hue-rotate(7deg) brightness(93%) contrast(109%);
        }
    }
}
.header-call, .header-book, .header-test{
    color: #980606;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    &:hover{
        color: #980606;
        scale: 1.05;
    }
}
.header-book{
    color: #057009;
    &:hover{
        color: #057009;
    }
}
.header-test{
    color: #3D3861;
    &:hover{
        color: #3D3861;
    }
}
.header-area {
    background-color: rgba(255, 255, 255, 0);
    border-top: 3px solid #6C0000;
    position: fixed;
    z-index: 999;
    right: 0;
    left: 0;
    padding-inline: 80px;
}
.flex-box {
    display: flex;
    align-items: center;
    gap: 28px;
}
.header-btn{
    border-color: #980606;
    color: #980606;
    padding: 10px 17px;
}
.s-mobile{
    display: none;
}
.header-area.sticky {
    background: #FFF;
    box-shadow: 0 14px 34px 0 rgba(0, 0, 0, 0.12);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
}

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

    to {
        transform: translateY(0);
    }
}

#menu{
    padding-block: 9px;
}
.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;

}

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;
    justify-content: space-between;
}

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

#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: 30px 6px;
    display: inline-block;
    font-family: 'Sofia Pro Medium';
    color: #241E51;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}
#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    color: #6C0000;
}
#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 {
    background: #e9cba400 !important;
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease
}

#menu>.main-menu>ul>li.has-sub>a::before {
    top: 34px;
    right: -8px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    transform: rotate(225deg);
}
.has-sub{
    margin-right: 7px;
}
#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
    top: 60px;
}

#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 li:hover>ul {
    left: auto
}

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

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

#menu ul ul li a {
    padding: 10px 20px;
    width: auto;
    font-size: 18px;
    text-decoration: none;
    font-weight: normal;
    white-space: nowrap;
    display: block;
    color: #241E51;
    font-style: normal;
    line-height: normal;
}

#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 {
    color: #fff;
    background-color: #241E51;
}
#menu .main-menu ul ul li.has-sub ul li a{
    background-color: #fff;
    color: #000;
    &:hover{
        background-color: #D2B450;
        color: #fff;
    }

}
#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: #ffffff
}

#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;
}
.menu-btn{
    background: #DE172B;
    border: 1px solid #DE172B;
    color: #fff;
    display: inline-block;
    padding: 23px 33px;
    font-family: 'Flama Trial Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 12px;
    transition: all .5s;
    &:hover{
        background-color: #ffffff;
        color: #DE172B;
    }
}
.search-btn {
    width: 30px;
    height: 30px;
    &:hover{
        img{
            transform: scale(1.1);
        }
    }
}
.search-container {
            position: relative;
            z-index: 1000;
        }

        .search-btn.active {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            transform: rotate(180deg);
        }

        .search-box {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%) scaleX(0);
            transform-origin: right center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid #241E51;
            border-radius: 0;
            width: 300px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            z-index: 999;
            display: flex;
            align-items: center;
        }

        .search-box.active {
            transform: translateY(35%) scaleX(1);
            opacity: 1;
        }

        .search-input {
            width: 100%;
            border: none;
            outline: none;
            padding: 18px 48px 18px 16px;
            font-size: 1rem;
            background: transparent;
            color: #2c3e50;
            border-radius: 25px;
        }

        .search-input::placeholder {
            color: #7f8c8d;
        }

        .search-close-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #7f8c8d;
        }

        .search-close-btn:hover {
            background: #9806060c;
            color: #980606;
            transform: translateY(-50%) scale(1.1);
        }

        .search-close-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
@media screen and (max-width:992px) {
    header {
        position: relative;
        width: 100%;
    }

    #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: 100dvh !important;
        background-color: #160F41;
        transform: translateX(-100%);
        transition: all .4s;
        top: 100px;
        left: 0;
        z-index: 3;
        overflow-y: scroll;
        padding-bottom: 30px;
    }

    #menu .main-menu.open {
        transform: translateX(0%);

    }

    #menu .main-menu ul li {
        width: 100%;
    }

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

    #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 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
    }

    .main-menu {
        align-items: start;
    }
    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: -10px;
        top: 3px;
        cursor: pointer;
        z-index: 12399994;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #d42817;
        border-bottom: 2px solid #D42817;
        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: #D42817;
        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: #D42817;
        -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: #D42817;
        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: 15px;
        top: 0;
        display: block;
        border-left: 0;
        height: 50px;
        width: 60px;
        cursor: pointer;
        background: #ffffff21;
    }

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

    #menu ul ul .submenu-button {
        height: 56px;
        width: 68px;
        background: rgb(255 255 255 / 3%);
    }

    #menu .submenu-button:after {
        position: absolute;
        top: 15px;
        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: 25px;
        right: 27px;
    }

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

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


    #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 .main-menu ul ul li.has-sub>a:after{
        display: none;
    }
}
.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.banner {
    position: relative;
    z-index: 2;
    .container {
        position: absolute;
        z-index: 1;
        inset: 0;
        display: flex;
        align-items: center;
    }
    .img-cover{
        margin-bottom: -10px;
    }
}
.banner-content {
    width: 55%;
    padding-top: 80px;
    h5{
        color: #980606;
        font-family: 'Uncut Sans Bold';
        font-size: 35px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        text-transform: uppercase;
        margin-bottom: 4px;
    }
    h1{
        color: #000;
        font-family: 'Uncut Sans Bold';
        font-size: 76px;
        font-style: normal;
        font-weight: normal;
        line-height: 96.053%;
        margin-bottom: 23px;
        span{
            background: linear-gradient(180deg, #D20000 0%, #6C0000 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }
    p{
        color: #000;
        font-size: 20px;
        font-family: 'Sofia Pro Medium';
        line-height: 135%;
    }
}
.banner-btn {
    color: #FFF;
    font-family: 'Flama Trial Semibold';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    display: inline-block;
    border-bottom: 2px solid #DE172B;
    padding-bottom: 10px;
    img{
        margin-left: 10px;
    }
}
.banner-dtls{
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
}
.banner-dtls-card{
    border-radius: 10px;
    background: #057009;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #FFF;
    font-family: 'Sofia Pro Medium';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    padding: 13px 15px;
    padding-right: 20px;
    transition: 0.6s;
    &:hover{
        transform: translateY(-5px);
        background: #6C0000;
        color: #FFF;

    }
}
.banner-arrow{
    margin-left: auto;
}
.btn-group {
    display: flex;
    align-items: center;
    gap: 17px;
}
/* ***** Introduced ***** */
.introduced{
    position: relative;
    z-index: 2;
    background: #160F41;
    padding-block: 50px;
    .btn-group{
        justify-content: center;
    }
    .section-title{
        color: #FFF;
        font-family: 'Sofia Pro Medium';
        font-size: 34px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 13px;
    }
}
.learn-more-btn{
    color: #FFF;
    font-family: 'Uncut Sans SemiBold';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.5s;
    &:hover{
        color: #DE172B;
        img{
            transform: translateX(5px);
            filter: brightness(0) saturate(100%) invert(14%) sepia(92%) saturate(4546%) hue-rotate(0deg) brightness(93%) contrast(84%);
        }
    }
}
/* ***** Provide ***** */
.provide{
    position: relative;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        width: 130%;
        height: 106%;
        background: #8EDCCC;
        transform: rotate(342deg);
        left: -200px;
        top: -367px;
        z-index: -2;
    }
}
.provide-content{
    padding-block: 85px;
    position: relative;
    .btn-group{
        margin-top: 40px;
        padding-left: 58px;
    }
}
.provide-doctor{
    position: absolute;
    width: 50%;
    bottom: 0;
    right: -70px;
    z-index: 1;
    img{
        margin-bottom: -10px;
    }
    &::before{
        position: absolute;
        content: '';
        width: 85%;
        height: 55%;
        border-radius: 50%;
        left: 5px;
        top: 115px;
        background: #3D3861;
        z-index: -1;
    }
}
.provide-icon{
    width: 69px;
    height: 69px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 3px solid #ffffff3d;
    transition: 0.5s;
}
.provide-card{
    width: 70%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-block: 20px;
    position: relative;
    h5{
        color: #000;
        font-family: 'Sofia Pro Medium';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 5px;
    }
    p{
        color: #3F3F3F;
        margin-bottom: 0;
    }
    &::after{
        position: absolute;
        content: '';
        width: 70%;
        height: 1px;
        background: linear-gradient(90deg, #000 0%, rgba(102, 102, 102, 0.00) 100%);
        left: 58px;
        bottom: 0;
    }
    &:hover{
        .provide-icon{
            background: #6C0000;
            img{
                filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(203deg) brightness(102%) contrast(105%);
                transform: rotateY(180deg);
            }
        }
        h5{
            color: #6C0000;
        }
    }
}
.appointment-form{
    height: 100%;
    background: #FEF9F6;
    padding-block: 22px;
    margin-left: 20px;
    form{
        padding: 25px 29px;
    }
}
.provide-tab{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    background: #EBE9F3;
    gap: 5px;
    padding: 3px;
    li{
        color: #000;
        font-family: 'Sofia Pro Medium';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        padding: 7px 17px;
        border-radius: 60px;
        transition: 0.5s;
        cursor: pointer;
    }
}
.provide-tab li:hover,
.provide-tab li.active{
    background: #3D3861;
    color: #FFF;
}
.disclimer{
    padding-left: 20px;
    li{
        color: #000;
        font-family: 'Sofia Pro Medium';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 216.667%;
        padding-block: 5px;
        position: relative;
        &::after{
            position: absolute;
            content: '';
            width: 70%;
            height: 1px;
            background: linear-gradient(90deg, #000 0%, rgba(102, 102, 102, 0.00) 100%);
            left: 0;
            bottom: 0;
        }
    }
}
.form-title{
    color: #000;
    font-family: 'Uncut Sans Bold';
    font-size: 35px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 20px;
}
/* ***** Emergency banner ***** */
.emergency-banner{
    position: relative;
    z-index: 2;
    .container{
        border-radius: 34px;
        background: #160F41;
        padding: 15px 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        .section-title{
            color: #FFF;
            font-family: 'Uncut Sans Medium';
            font-size: 46px;
            line-height: 106.522%;
            margin-bottom: 5px;
        }
        p, p a{
            color: #FFF;
            font-size: 18px;
            line-height: 172.222%;
            transition: 0.5s;
            margin-bottom: 0;
        }
        p a:hover{
            color: #E21F10;
        }
    }
}
.emer-logo{
    display: flex;
    align-items: center;
}
.emergency-content{
    display: flex;
    align-items: center;
    gap: 8px;
}
/* ***** About ***** */
.about{
    position: relative;
    .section-title{
        font-family: 'Uncut Sans Medium';
        margin-bottom: 10px;
        font-size: 54px;
    }
    p{
        font-size: 20px;
        color: #141414;
    }
}
.row-back{
    position: relative;
    padding-block: 60px;
    z-index: 1;
    &::before{
        position: absolute;
        content: '';
        width: 70%;
        height: 100%;
        border-radius: 38px;
        background: #F6F5FF;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1;
    }
}
.about-vector{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.about-img{
   position: relative;
   img{
    margin-bottom: -10px;
    border-radius: 38px;
   }
}
.about-logo{
    position: absolute;
    top: -60px;
    right: -60px;
}
.about-content{
    padding-left: 50px;
}
/* ***** Counter ***** */
.counter{
    margin-top: 60px;
    padding-inline: 130px;
}
.counter-item{
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    &::after{
        position: absolute;
        content: '';
        width: 0;
        height: 3px;
        background: #980606;
        left: 0;
        bottom: 0;
        transition: 0.6s;
    }
    &:hover{
        h4, p{
            background: linear-gradient(180deg, #D20000 0%, #7D73C7 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        &::after{
            width: 100%;
        }
    }
}
.counter-item {
    h4 {
        color: #3D3861;
        font-family: 'Sofia Pro Medium';
        font-size: 60px;
        font-style: normal;
        font-weight: normal;
        line-height: 111.667%;
        margin-bottom: 8px;
        transition: 0.6s;
    }
    p {
        color: #3D3861;
        font-family: 'Uncut Sans SemiBold';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        transition: 0.6s;
        margin-bottom: 0;
    }
}
/* ***** Department ***** */
.department{
    background: #FEF9F6;
    .section-title{
        color: #141414;
        font-size: 56px;
        margin-bottom: 8px;
    }
    .sub-dec{
        font-size: 20px;
        color: #141414;
    }
    .btn-group{
        margin-top: 30px;
    }
    .learn-more-btn{
        color: #3D3861;
        font-family: 'Uncut Sans SemiBold';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        img{
            filter: brightness(0) saturate(100%) invert(20%) sepia(9%) saturate(3084%) hue-rotate(207deg) brightness(95%) contrast(87%);
        }
        &:hover{
            color: #6C0000;
            img{
                filter: brightness(0) saturate(100%) invert(8%) sepia(86%) saturate(3675%) hue-rotate(355deg) brightness(92%) contrast(114%);
            }
        }
    }
}
.depart-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    transition: 0.5s;
    img{
        margin-bottom: 5px;
        height: 65px;
    }
    p{
        color: #000;
        font-family: 'Sofia Pro Medium';
        font-size: 20px;
        line-height: 150%;
        margin-bottom: 0;
        white-space: nowrap;
    }
    &:hover{
        background: #FFF;
        box-shadow: 0px 0px 10px 0px #6c000030;
        img{
            transform: rotateY(180deg);
        }
    }
}
/* ***** Our Doctor ***** */
.our-doctors{
    position: relative;
    .sub-dec{
        color: #141414;
    }
    &::after{
        position: absolute;
        content: '';
        width: 130%;
        height: 75%;
        background: #8EDCCC;
        rotate: 10deg;
        left: -20px;
        top: -115px;
        z-index: -2;
    }
}
.our-dr-card{
    border-radius: 25px;
    border: 1px solid #E6EFF6;
    overflow: hidden;
}
.our-dr-content{
    padding-block: 16px 20px;
    text-align: center;
    h4{
        color: #000;
        font-family: 'Sofia Pro Medium';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 83.333%;
        margin-bottom: 5px;
    }
    h5{
        color: #3F3F3F;
        font-family: 'Sofia Pro Regular';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 172.222%;
        margin-bottom: 12px;
    }
    .btn-group{
        gap: 10px;
        justify-content: center;
    }
    .secondary-btn{
        padding: 6px 30px;
        border-color: #6C0000;
        color: #6C0000;
    }
    .secondary-btn:before, .secondary-btn:after{
        background: #057009;
    }
    .secondary-btn:hover{
        color: #fff;
        border-color: #057009;
    }
}
.dr-media{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3D3861;
    transition: 0.5s;
    &:hover{
        background: #6C0000;
    }
}
.slick-slide{
    margin: 0 15px;
}
.slick-list{
    margin: 0 -15px;
}
.slick-arrow{
    width: 45px;
    height: 45px;
    top: 38%;
    background: #9692AD;
    border-radius: 50%;
    z-index: 2;
    transition: 0.5s;
    &::before {
        position: absolute;
        content: '';
        width: 50%;
        height: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: url(../img/slider-arrow.webp) no-repeat;
        background-size: contain;
        background-position: center;
        transition: 0.5s;
    }
    &:hover,
    &:focus{
      background: #3D3861;
      &::before{
        filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(4%) hue-rotate(347deg) brightness(103%) contrast(100%);
      }
    }
}
.slick-prev{
    &::before{
        transform: translate(-50%, -50%) rotate(180deg);
    }
}
/* ***** Book Online ***** */
.online-book{
    background: #160F41;
    .section-title, .sub-dec{
        color: #FFF;
    }
}
.online-book-img{
    border-radius: 52px;
    overflow: hidden;
    img{
        margin-bottom: -10px;
    }
    &:hover{
        img{
            transform: scale(1.1);
        }
    }
}
.online-book-content{
    padding-top: 22px;
    h4{
        color: #FFF;
        font-family: 'Sofia Pro Medium';
        font-size: 40px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 15px;
    }
    p{
        color: #C8C8C8;
    }
}
/* ***** Top Services ***** */
.top-services{
    position: relative;
    &::after{
        position: absolute;
        content: '';
        width: 100%;
        height: 45%;
        background: #8EDCCC;
        rotate: 25deg;
        right: -190px;
        top: -320px;
        z-index: -2;
    }
}
.top-service-content{
    ul{
        width: 85%;
        li{
            color: #2C284B;
            font-family: 'Sofia Pro Medium';
            font-size: 21px;
            font-style: normal;
            font-weight: normal;
            line-height: normal;
            border-radius: 60px;
            border: 1px solid #FFF;
            padding: 23px 24px;
            position: relative;
            margin-bottom: 15px;
            transition: 0.5s;
            cursor: pointer;
        }
    }
}
.service-tab li:hover,
.service-tab li.active{
    border-color: #C9C6DE;
    .arrow-btn{
        right: 5px;
        opacity: 1;
    }
}
.arrow-btn{
    position: absolute;
    width: 63px;
    height: 63px;
    background: #980606;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s;
    opacity: 0;
}
.top-service-img{
    position: relative;
    img{
        border-radius: 50px;
    }
}
.top-img-content{
    width: 90%;
    position: absolute;
    bottom: 0;
    left: -100px;
    border-radius: 55px 55px 0 55px;
    background: #FFF;
    padding: 40px;
    h4{
        color: #000;
        font-family: 'Uncut Sans Bold';
        font-size: 35px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 10px;
    }
    p{
        color: #1B1B1B;
    }
    .primary-btn{
        background: #3D3861;
        border-color: #3D3861;
        &:hover{
            border-color: #057009;
        }
    }
}
/* ***** Gallery ***** */
.our-gallery{
    background: url(../img/our-gallery-bg.webp) no-repeat;
    background-size: cover;
}
.our-gallery-card{
    display: block;
    border-radius: 57px;
    overflow: hidden;
    position: relative;
    height: 416px;
    span{
        position: absolute;
        inset: 0;
        border-radius: 57px;
        background: rgba(50, 40, 121, 0.70);
        scale: 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }
    &:hover{
        span{
            scale: 1 1;
        }
    }
}
/* ***** Why Choose ***** */
.why-choose{
    .container{
        border-radius: 67px;
        background: #FBFAF9;
        padding: 45px 35px;
    }
}
.why-card{
    text-align: center;
    height: 100%;
    img{
        height: 80px;
    }
    h4{
        color: #000;
        font-family: 'Sofia Pro Medium';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 9px;
        transition: 0.5s;
    }
    p{
        color: #3F3F3F;
    }
    &:hover{
        img{
            transform: rotateY(180deg);
        }
        h4{
            color: #6C0000;
        }
    }
}
/* ***** Testimonial ***** */
.testimonial{
    background: url(../img/testimonial-bg.webp) no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-block: 160px;
}
.testi-card{
    border-radius: 41px;
    background: #FFF;
    padding: 18px;
    padding-bottom: 0;
}
.testi-top{
    display: flex;
    align-content: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.user{
    width: 78px;
    height: 78px;
    border-radius: 50%;
}
.coma{
    width: 53px;
    height: 53px;
}
.testi-bottom{
    display: flex;
    align-content: center;
    justify-content: space-between;
    h4{
        color: #000;
        font-family: 'Sofia Pro Medium';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
    p{
        color: #666;
        margin-bottom: 0;
    }
}
.rating{
    color: #F0C127;
    font-size: 26px;
    line-height: 3;
}
.test-text{
    color: #3D3861;
    line-height: 144.444%;
    margin-bottom: 20px;
}
.testimonial-slider{
    margin-top: 40px;
}
.slick-dots{
    bottom: -49px;
    text-align: left;
  li{
    width: auto;
    button{
      background: #9692AD;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      transition: all .5s;
      &::before{
        display: none;
      }
    }
    &.slick-active{
      button{
        background: #3D3861;
        width: 25px;
        border-radius: 50rem;
      }
    }
  }
}
/* ***** Awards ***** */
.awards{
    background: #F3F2FD;
}
.awards-card{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 460px;
    .img-cover {
    width: auto;
    height: auto;
    object-fit: contain;
}
}
.awards-slider{
    .slick-slide{
        transition: 0.5s;
    }
    .slick-dots{
        text-align: center;
    }
    .slick-center{
        .awards-card{
            scale: 1.2;
        }
    }
    .slick-slide{
        margin: 45px 40px;
    }
    .slick-list{
        margin: 0 40px;
    }
}
/* ***** News ***** */
.news{
    position: relative;
    &::after{
        position: absolute;
        content: '';
        width: 100%;
        height: 60%;
        background: #8EDCCC;
        rotate: -25deg;
        left: -220px;
        top: -340px;
        z-index: -2;
    }
    .sub-dec{
        color: #2F2F2F;
    }
    .secondary-btn{
        padding: 12px 48px;
        border-color: #6C0000;
        color: #6C0000;
    }
    .secondary-btn:before, .secondary-btn:after {
        background: #057009;
    }
    .secondary-btn:hover {
        color: #fff;
        border-color: #057009;
    }
    .row.g-lg-0{
        .btn-group{
            justify-content: flex-end;
        }
    }

}
.main-row{
    margin-top: 50px;
}
.news-img{
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    display: block;
    img{
        margin-bottom: -10px;
    }
}
.news-content{
    padding-top: 25px;
    .primary-btn{
        padding: 13px 27px;
    }
}
.news-title{
    color: #0F0F0F;
    font-family: 'Sofia Pro Medium';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 12px;
}
.date{
    position: absolute;
    right: 35px;
    bottom: 25px;
    color: #000;
    font-family: 'Sofia Pro Medium';
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    padding: 8px 15px;
    background: #FFF;
    border-radius: 20px;
    z-index: 1;
}
.news-card:hover{
    .news-img{
        img{
            scale: 1.1;
        }
    }
    .news-title{
        color: #6C0000;
    }
}
.padding-right{
    padding-right: 120px;
    position: relative;
    z-index: 1;
    .date{
        color: #000;
    }
    .news-title{
        color: #fff;
    }
    p{
        color: #DBDBDB;
    }
    &::after{
        position: absolute;
        content: '';
        width: 160%;
        height: 120%;
        background: #160F41;
        border-radius: 59px;
        top: 50%;
        transform: translateY(-50%);
        right: 25px;
        z-index: -1;
    }
    .news-card:hover{
        .news-title{
            color: #D42817;
        }
    }
}
/* ***** Faq ***** */
.faq{
    position: relative;
    .emergency-banner{
        .container{
            border-radius: 10px;
        }
    }
    .about-vector {
        bottom: 0;
        left: unset;
        right: 0;
    }
}
.accordion__item {
    margin: 12px auto;
    transition: .5s;
    border-radius: 10px;
    border: 1px solid #3D3861;
    background: #FFF;
}
.accordion__item:hover {
    transform: translateY(-5px)
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 12px 90px 12px 18px;
    margin-bottom: 0;
    font-family: 'Uncut Sans SemiBold';
    font-size: 21px;
    text-decoration: none;
    color: #3D3861;
    border-radius: 3px;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    font-weight: normal;
}

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

.accordion__title::after {
    content: ' ';
    position: absolute;
    border-style: solid;
    border-color: #000000;
    border-width: 0px 1px 1px 0px;
    transform: rotate(45deg);
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    right: 15px;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}

.accordion__item .accordion__content {
    padding: 14px 40px 14px 16px;
    color: #4A4A4A;
    line-height: 1.667;
    margin-bottom: 0;
    display: none;
    border-radius: 10px;
    background: #F2F1F0;
    margin: 0 12px 12px 12px;
    p{
        margin-bottom: 0;
    }
}
/* ***** Map ***** */
.map{
    iframe{
        width: 100%;
        height: 595px;
        border: none;
        margin-bottom: -10px;
    }
}
/*********************.
        Footer
**********************/
footer {
    background: #0E0220;
    width: 100%;
    padding-top: 80px;
    h6{
        color: #FFF;
        font-family: 'Sofia Pro Bold';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 177.778%;
    }
}
.footer-first{
    h5{
        color: #FFF;
        font-family: 'Uncut Sans SemiBold';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
}
footer p, p a {
    color: #E9E9E9;
    line-height: 166.667%;
}
footer a:hover{
    color: #D42817;
}
footer ul li{
    font-family: 'Sofia Pro Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 255.556%;
    position: relative;
    transition: 0.5s;
    a{
        color: #EBEBEB;
        transition: 0.6s;
    }
    &:hover{
        transform: translateX(5px);
        &::after{
            background: #D42817;
        }
    }
    &::after{
        content: '';
        position: absolute;
        width: 30%;
        height: 2px;
        background: #756EAA;
        left: 0;
        bottom: 0;
        transition: 0.5s;
    }
}
.footer-title {
    color: #FFF;
    font-family: 'Uncut Sans SemiBold';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 20px;
}
.footer-social {
    margin-top: 60px;
    gap: 15px;
    a{
        img{
            filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(7474%) hue-rotate(138deg) brightness(110%) contrast(95%);
        }
    }
}
.footer-social a:hover {
    transform: scale(1.2);
}
.copyright {
    color: #fff;
    padding: 25px 0;
    text-align: left;
    display: flex;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
    p{
        margin: 0;
    }
}
.copyright a {
    color: #F5990F;
    text-decoration: underline;
    transition: 0.5s;
    &:hover{
        color: #6C0000;
    }
}
.footer-contact p{
    position: relative;
    padding-left: 40px;
}
.footer-contact p span{
    border-style: solid;
    border-width: 1px;
    border-color: rgb(237, 143, 0);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    left: 0px;
    top: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*******************************
  Inner Page
********************************/
/* About Page */
 .img-tag{
    position: absolute;
    left: 15px;
    top: -15px;
    border-radius: 8px;
    background: #980606;
    padding: 15px;
    color: #FFF;
    font-family: "Sofia Pro SemiBold";
    font-size: 23px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0.23px;
    text-transform: uppercase;
 }
 .b-f{
    font-family: 'Sofia Pro Medium';
    font-size: 45px;
    letter-spacing: 0.45px;
 }
 .y-f{
    font-family: 'Uncut Sans SemiBold';
    font-size: 20px;
 }
.about-img{
    .about-since{
        position: absolute;
        right: -70px;
        bottom: 35px;
        border-radius: 25px;
        border: 20px solid #FFF;
    }
}
.since-padd{
    padding-right: 85px;
}
.since{
    position: relative;
    .section-title{
        font-size: 54px;
    }
    p{
        color: #141414;
    }
    .provide-card{
        width: 100%;
        &::after{
            display: none;
        }
        p{
            color: #3F3F3F;
        }
    }
    .provide-icon{
        background: #EAEAEA;
    }
    .provide-card-content{
        width: 75%;
    }
    .btn-group{
        margin-top: 25px;
        gap: 50px;
    }
}
.call-btn{
    color: #3D3861;
    font-family: 'Uncut Sans Bold';
    font-size: 25px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    small{
        color: #000;
        font-family: 'Sofia Pro Medium';
        font-size: 19px;
        line-height: 152.632% ;
    }
    &:hover{
        color: #6C0000;
    }
}
.call-icon{
    width: 63px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAEAEA;
    border-radius: 50%;
}
.directors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  .director-item {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 2;
    &:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        img {
            transform: scale(1.12);
            }
        }
    }
    .director-img {
    overflow: hidden;
        img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            transition: transform 0.6s ease;
            object-position: top center;
            margin-bottom: -10px;
        }
    }
    .director-info {
        padding: 22px 20px;
        text-align: center;
        background: #ffffff;
        h3 {
            font-size: 22px;
            margin-bottom: 6px;
            color: #000;
            font-family: "Uncut Sans Medium";
        }
        p {
            font-size: 16px;
            color: #464646;
            margin: 0;
        }
    }
}
.department-choose {
    overflow: hidden;
}
/* Trust Us */
.trust{
    position: relative;
    background: url(../img/trust-us-bg.webp) no-repeat;
    background-size: cover;
    .section-title{
        color: #FFF;
    }
    p{
        color: #FFF;
    }

    .provide-icon{
        width: 86px;
        height: 86px;
        background: #FFF;
        outline: none;
    }
    .provide-card{
        width: 80%;
        gap: 18px;
        h5{
            color: #FFF;
        }
        &::after{
            display: none;
        }
    }
    .provide-card-content{
        width: 83%;
    }
}
.ambulance{
    width: 40%;
    position: absolute;
    right: 0;
    top: 10%;
    .img-cover{
        border-radius: 30px 0 0 30px;
    }
}
.ambulance-bottom{
    position: absolute;
    width: 40%;
    left: -50px;
    bottom: -85px;
    border: 15px solid #FFF;
    border-radius: 50px;
}
.miss-vis{
    position: relative;
}
.miss-viss-content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}
.miss-vis-card{
    width: 90%;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 70px;
    &:hover{
        .miss-vis-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.miss-vis-icon{
    width: 107px;
    height: 107px;
    transform: rotate(46.627deg);
    border-radius: 20px;
    border: 2px solid #000;
    background: #8EDCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    img{
        rotate: -46.627deg;
    }
}
.miss-vis-content{
    width: 80%;
    h4{
        color: #000;
        font-family: 'Uncut Sans SemiBold';
        font-size: 32px;
        font-style: normal;
        font-weight: normal;
        line-height: 90.625%;
        margin-bottom: 20px;
    }
}
.miss-viss-card-right{
    transform: translateX(130px);
}
.miss-viss-card-bottom{
    margin-bottom: 0;
}
.mission-vission-img{
    position: absolute;
    left: 0;
    bottom: 0;
}
.miss-vector{
    position: absolute;
    left: unset;
    bottom: unset;
    top: 0;
    right: 0;
}
.our-patients{
    background: url(../img/our-patients-bg.webp) no-repeat;
    background-size: cover;
}
.patients-content{
    .section-title, p{
        color: #FFF;
    }
    span{
        display: block;
        width: 70%;
        height: 1px;
        background: #FFF;
        margin-top: 30px;
        margin-bottom: 40px;
    }
}
.patients-img{
    img{
        width: 100%;
    }
}
.regards-content{
    h4{
        color: #FFF;
        font-family: 'Uncut Sans SemiBold';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 83.333%;
        margin-bottom: 15px;
    }
    h5{
        color: #FFF;
        font-family: 'Sofia Pro Regular';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 150%;
    }
}
.achievement{
    position: relative;
    .about-vector{
        bottom: unset;
        top: 0;
    }
}
.achievemt-card{
    border-radius: 20px;
    overflow: hidden;
    display: block;
    height: 100%;
    border: 2px solid #6C0000;
    .img-cover{
        margin-bottom: -10px;
        object-fit: contain;
        background: #b99e5b;
    }
    &:hover{
        .img-cover{
            scale: 1.1;
        }
    }
}
.achievement-vector{
    left: unset;
    top: unset;
    right: 0;
    bottom: 0;
}
.about-faq{
    margin-bottom: 70px;
}
/* Blog Page */
.blog-listing{
    position: relative;
    .about-vector{
        left: unset;
        bottom: 0;
        right: 0;
    }
}
.blog-img{
    border-radius: 34px;
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
    img{
        margin-bottom: -10px;
    }
}
.blog-date{
    color: #000;
    font-family: 'Sofia Pro Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 13px;
    span{
        color: #4A4A4A;
    }
}
.blog-title{
    color: #0F0F0F;
    font-family: 'Uncut Sans SemiBold';
    font-size: 29px;
    font-style: normal;
    font-weight: normal;
    line-height: 106.897%;
    margin-bottom: 12px;
    transition: 0.5s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-content{
    p{
        line-height: 130.667%;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
.blog-card:hover{
    .blog-img{
        img{
            scale: 1.1;
        }
    }
    .blog-title{
        color: #6C0000;
    }
}
/* Doctor */
.inner-banner.doctor-banner{
    .banner-content{
        width: 50%;
    }
}
.doctor-tabs{
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 56px 0 rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 175px;
    h4{
        color: #FFF;
        font-family: 'Uncut Sans SemiBold';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 136.364%;
        border-radius: 20px 20px 0 0;
        background: #3D3861;
        padding: 16px 30px;
    }
    ul{
        li{
            color: #000;
            font-family: 'Sofia Pro Regular';
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 144.444%;
            padding: 10px 30px;
            padding-left: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #D3CFCF;
            transition: 0.5s;
            cursor: pointer;
            position: relative;
            &::before{
                position: absolute;
                left: 25px;
                top: 50%;
                transform: translateY(-50%);
                content: '';
                display: block;
                width: 10px;
                height: 10px;
                background: #FFD0D0;
                border-radius: 50%;
            }
        }
    }
}
.doctor-tabs ul li:hover,
.doctor-tabs ul li.active{
    border-radius: 20px;
    background: #980606;
    color: #FFF;
    &::before{
        background: #FFF;
    }
}
.doctor-card{
    border-radius: 20px;
    border: 2px solid rgba(22, 15, 65, 0.27);
    background: #EDFFFF;
    padding: 22px;
    text-align: center;
    margin-bottom: 22px;
    .btn-group{
        flex-direction: column;
        gap: 8px;
        .primary-btn{
            width: 95%;
            padding: 10px 22px;
        }
    }
}
.doctor-btn{
    background: #64E3C9;
    color: #000;
    border-color: #64E3C9;
    &:hover{
        border-color: #160F41;
    }
}
.doctor-btn::before,
.doctor-btn::after{
    background: #160F41;
}
.dr-name{
    color: #000;
    font-family: 'Sofia Pro Bold';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    margin-bottom: 15px;
}
.depart{
    color: #FFF;
    font-size: 15px;
    line-height: 133.333%;
    border-radius: 60px;
    background: #160F41;
    padding: 5px 14px;
    display: inline-block;
    margin-bottom: 10px;
}
.qualification{
    color: #000;
    font-family: 'Sofia Pro Medium';
    font-size: 15px;
    font-style: normal;
    font-weight: normal;
    line-height: 153.333%;
    margin-bottom: 12px;
}
.doctor-img{
    margin-top: -45px;
    position: relative;
    margin-bottom: 25px;
    img{
        border-radius: 12px;
    }
    &::after{
        position: absolute;
        content: '';
        width: 70%;
        height: 20px;
        border-radius: 0 0 12px 12px;
        background: #8EDCCC;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
    }
}
/* Doctor Details  */
.doctor-profile-box{
    border-radius: 23px;
    background: #0D2466;
    padding: 30px;
    margin-bottom: 50px;
}
.doctor-profile-img{
    border-radius: 23px;
    overflow: hidden;
    img{
        margin-bottom: -10px;
    }
}
.doctor-profile-content{
    h2{
        color: #FFF;
        font-family: 'Uncut Sans Bold';
        font-size: 41px;
        font-style: normal;
        font-weight: normal;
        line-height: 163.415%;
    }
    .dr-qualification{
        color: #FFF;
        font-family: 'Sofia Pro Regular';
        font-size: 23px;
        font-style: normal;
        font-weight: normal;
        line-height: 130.435%;
        margin-bottom: 10px;
    }
    p{
        color: #FFF;
    }
}
.doctor-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
  font-family: 'Sofia Pro SemiBold';
  margin-bottom: 20px;
  color: #FFF;
  tr:last-child{
    td{
        border-bottom: none;
    }
  }
}
.doctor-info-table td {
  padding: 10px 12px;
  border-bottom: 1px dashed #FFF;
}
.doctor-info-table .label {
  width: 40%;
}
.doctor-details{
    h3,h4{
        color: #000;
        font-family: 'Uncut Sans SemiBold';
        font-size: 53px;
        font-style: normal;
        font-weight: normal;
        line-height: 75.472%;
        margin-bottom: 20px;
    }
    h5{
        color: #000;
        font-family: 'Uncut Sans Medium';
        font-size: 27px;
        font-style: normal;
        font-weight: normal;
        line-height: 148.148%;
        margin-bottom: 10px;
    }
    h4{
        font-size: 36px;
        line-height: 111.111%;
        margin-bottom: 20px;
    }
    ul{
        margin-bottom: 30px;
        li{
            color: #000;
            font-family: 'Sofia Pro Regular';
            font-size: 23px;
            font-style: normal;
            font-weight: normal;
            line-height: 110.609%;
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            span{
                font-family: 'Sofia Pro SemiBold';
                font-weight: normal;
            }
            &::before{
                position: absolute;
                content: '';
                width: 17px;
                height: 17px;
                background: url(../img/li-arrow.webp) no-repeat;
                background-size: contain;
                background-position: center;
                left: 0;
                top: 5px;
            }
        }
    }
}
.doctor-visit{
    border-radius: 23px;
    background: #F6F1F1;
    overflow: hidden;
    .visit-title{
        color: #000;
        font-family: 'Uncut Sans SemiBold';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: 133.333%;
        padding: 20px 35px;
        background: #8EDCCC;
        margin-bottom: 0;
    }
}
.doctor-visit-dtls{
    padding: 30px;
}
.doctor-visit-card{
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 15px;
}
.doctor-visit-content{
    width: 82%;
    h6{
        color: #000;
        font-family: 'Uncut Sans SemiBold';
        font-size: 19px;
        font-style: normal;
        font-weight: normal;
        line-height: 136.842%;
    }
    p{
        color: #000;
        margin-bottom: 0;
    }
}
.doctor-visit-icon{
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0D2466;
}
.visit-btn{
    width: 100%;
    padding-block: 21px;
    font-size: 23px;
    gap: 12px;
    img{
        filter: brightness(0) saturate(100%) invert(99%) sepia(6%) saturate(2%) hue-rotate(319deg) brightness(113%) contrast(100%);
    }
}
.related-doctor{
    background: #E1EFF8;
    .section-title{
        margin-bottom: 40px;
    }
}
.doctor-slider{
    .slick-slide{
        margin: 30px 10px;
    }
    .slick-list{
        margin: 0 -10px;
    }
    .slick-arrow{
        width: 64px;
        height: 64px;
        top: -12%;
        left: 94%;
        background: transparent;
        border-radius: 50%;
        border: 1px solid #000;
        z-index: 2;
        transition: 0.5s;
        &::before {
            position: absolute;
            content: '';
            width: 60%;
            height: 60%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: url(../img/dr-slider-arrow.webp) no-repeat;
            background-size: contain;
            background-position: center;
            transition: 0.5s;
        }
        &:hover,
        &:focus{
            background: #3D3861;
            &::before{
                filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(4%) hue-rotate(347deg) brightness(103%) contrast(100%);
            }
        }
    }
    .slick-prev{
        left: 88%;
        &::before{
            transform: translate(-50%, -50%) rotate(180deg);
        }
    }
}
/* Department Page */
.leading{
    position: relative;
    .section-title{
        font-size: 52px;
    }
    &::after {
        position: absolute;
        content: '';
        width: 20%;
        height: 135%;
        rotate: 20deg;
        background: #8EDCCC;
        left: 22%;
        top: -20%;
        z-index: -1;
    }
}
.leading-img{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    img{
        width: 48%;
        border-radius: 30px;
        height: auto;
    }
}
.department-choose{
    background: #160F41;
    position: relative;
    .section-title, p{
        color: #FFF;
    }
    .about-vector{
        z-index: 1;
    }
    .department-choose-vector{
        left: unset;
        bottom: unset;
        right: 0;
        top: 0;
    }
}
.department-choose-content{
    padding-left: 50px;
}
.department-choose-icon{
    width: 104px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #8EDCCC;
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}
.department-choose-card{
    border-radius: 20px;
    border: 1px solid #FFF;
    background: #160F41;
    position: relative;
    margin-bottom: 40px;
    padding: 20px;
    padding-left: 80px;
    z-index: 1;
    h4{
        color: #FFF;
        font-family: 'Uncut Sans Bold';
        font-size: 29px;
        font-style: normal;
        font-weight: normal;
        line-height: 134.483%;
        margin-bottom: 10px;
        transition: 0.5s;
    }
    p{
        transition: 0.5s;
    }
    &::before{
        position: absolute;
        content: '';
        width: 0;
        height: 100%;
        left: 0;
        top: 0;
        background: #FFF;
        border-radius: 20px;
        transition: 0.5s;
        z-index: -1;
    }
    &:hover{
        h4, p{
            color: #160F41;
        }
        &::before{
            width: 100%;
        }
        .department-choose-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.department-choose-img{
    padding-left: 40px;
    position: relative;
    z-index: 1;
    img{
        border-radius: 30px;
    }
    &::after{
        position: absolute;
        content: '';
        width: 50%;
        height: 60%;
        background: #8EDCCC;
        left: -10px;
        top: -30px;
        clip-path: polygon( 0% 0%,100% 0%,39.57% 60.633%,0% 100%,0% 0% );
        z-index: -1;
    }
}
.technology{
    background: #A3D8F1;
}
.technology-card{
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.21);
    background: #FFF;
    padding: 30px;
    h4{
        color: #000;
        font-family: 'Uncut Sans Bold';
        font-size: 29px;
        font-style: normal;
        font-weight: normal;
        line-height: 134.483%;
        text-transform: capitalize;
        margin-bottom: 2px;
    }
    p{
        color: #151515;
        line-height: 144.444%;
    }
    img{
        border-radius: 30px;
        margin-bottom: 20px;
    }
}
.technology-slider{
    .slick-prev{
        left: -60px;
    }
    .slick-next{
        right: -60px;
    }
}
.about-department{
    position: relative;
    &::after {
        position: absolute;
        content: '';
        width: 20%;
        height: 135%;
        rotate: 20deg;
        background: #8EDCCC;
        left: 12%;
        top: -20%;
        z-index: -1;
    }
}
.about-department-img{
    padding-left: 20px;
    position: relative;
    z-index: 1;
    img{
        border-radius: 30px;
    }
    &::before{
        position: absolute;
        content: '';
        width: 70%;
        height: 90%;
        left: -20px;
        bottom: -25px;
        clip-path: polygon( 0% 0%,100% 100%,0% 100%,0% 0% );
        background: #160F41;
        z-index: -1;
    }
}
.about-department-content{
    h3{
        color: #000;
        font-family: 'Uncut Sans SemiBold';
        font-size: 29px;
        font-style: normal;
        font-weight: normal;
        line-height: 134.483%;
        margin-bottom: 20px;
    }
    ul{
        margin-bottom: 30px;
        li{
            color: #000;
            font-family: 'Sofia Pro Regular';
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 188.889%;
            position: relative;
            padding-left: 30px;
            &::before {
                position: absolute;
                content: '';
                width: 17px;
                height: 17px;
                background: url(../img/li-arrow.webp) no-repeat;
                background-size: contain;
                background-position: center;
                left: 0;
                top: 8px;
            }
        }
    }
}
.department-specialist{
    background: #160F41;
    .section-title, p{
        color: #FFF;
    }
}
.depart-specialist-slider{
    .slick-slide{
        margin: 30px 20px;
    }
    .slick-list{
        margin: 0 -20px;
    }
    .slick-arrow{
        top: 44%;
        background: #FFF;
        &::before{
            filter: brightness(0) saturate(100%) invert(15%) sepia(43%) saturate(5320%) hue-rotate(351deg) brightness(90%) contrast(108%);
            opacity: 1;
        }
    }
    .slick-prev {
        left: -70px;
    }
    .slick-next {
        right: -70px;
    }
}
.department-faq{
    .section-title{
        font-size: 54px;
    }
    .accordion__item{
        border-radius: 10px;
        border: 0 solid #3D3861;
        background: #E1EFF8;
    }
    .accordion__item .accordion__title {
        padding: 20px 70px 20px 27px;
    }
    .accordion__item .accordion__content {
        background: transparent;
        padding: 20px 70px 20px 27px;
        padding-top: 0;
        margin: 0;
    }
    .accordion__item.accordion-item-active {
        background: #F8F8F8;
    }
    .accordion__title.accordion-active {
        padding: 20px 70px 15px 27px;
    }
    .accordion__title::after {
        content: '+';
        position: absolute;
        transform: rotate(0);
        background: #160F41;
        width: 33px;
        height: 33px;
        right: 20px;
        border-radius: 50%;
        font-size: 22px;
        color: #FFF;
        top: 18px;
        transition: all .5s;
    }
    .accordion__title.accordion-active::after {
        content: '-';
        transform: rotate(180deg);
    }
}
.faq-img{
    img{
        border-radius: 30px;
    }
}
/* ICCU Page */
.itu{
    z-index: 1;
    position: relative;
    &::before{
        position: absolute;
        content: '';
        width: 40%;
        height: 100%;
        background: #8EDCCC;
        clip-path: polygon(0% 0%, 100% 0%, 39.57% 60.633%, 0% 100%, 0% 0%);
        left: 0;
        top: 0;
        z-index: -1;
    }
    .section-title{
        font-size: 56px;
    }
}
.itu-img{
    display: flex;
    align-items: center;
    img{
        border-radius: 30px;
    }
}
.itu-img1{
    width: 80%;
}
.itu-img2{
    width: 45%;
    margin-left: -150px;
    border: 10px solid #FFF;
}
.itu-content{
    ul{
        margin-bottom: 20PX;
        li{
            color: #000;
            font-family: 'Sofia Pro Regular';
            font-size: 23px;
            font-style: normal;
            font-weight: normal;
            line-height: 188.889%;
            position: relative;
            padding-left: 30px;
            &::before {
                position: absolute;
                content: '';
                width: 17px;
                height: 17px;
                background: url(../img/li-arrow.webp) no-repeat;
                background-size: contain;
                background-position: center;
                left: 0;
                top: 13px;
            }
        }
    }
}
.conditions{
    background: #160F41;
    position: relative;
    .container{
        position: relative;
        z-index: 2;
    }
    .about-vector{
        left: unset;
        bottom: unset;
        right: 0;
        top: 0;
        z-index: 1;
        width: 39%;
    }
    .section-title, p{
        color: #FFF;
    }
    h3{
        color: #FFF;
        font-family: 'Uncut Sans SemiBold';
        font-size: 50px;
        font-style: normal;
        font-weight: normal;
        line-height: 118%;
        margin-bottom: 20px;
    }
    img{
        border-radius: 25px;
    }
}
.conditions-content{
    ul{
        li{
            color: #FFF;
            font-family: 'Sofia Pro Medium';
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 188.889%;
            position: relative;
            padding-left: 30px;
            &::before{
                position: absolute;
                content: '';
                width: 17px;
                height: 17px;
                background: url(../img/li-arrow.webp) no-repeat;
                background-size: contain;
                background-position: center;
                left: 0;
                top: 8px;
            }
        }
    }
}
.iccu-choose{
    position: relative;
}
.iccu-choose-card{
    border-radius: 30px;
    border: 0 solid rgba(0, 0, 0, 0.21);
    background: #FFF;
    box-shadow: 0 4px 45px 0 rgba(0, 0, 0, 0.20);
}
.iccu-choose-icon{
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #160F41;
    margin-bottom: 15px;
    transition: 0.5s;
}
.iccu-choose-card{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 25px;
    height: 100%;
    transition: 0.5s;
    h4{
        color: #000;
        font-family: 'Uncut Sans Bold';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 122.727%;
        margin-bottom: 5px;
        transition: 0.5s;
    }
    p{
        color: #0A0A0A;
        line-height: 144.444%;
        transition: 0.5s;
    }
    &:hover{
        background: #160F41;
        .iccu-choose-icon{
            background: #FFF;
            img{
                transform: rotateY(180deg);
                filter: brightness(0) saturate(100%) invert(6%) sepia(94%) saturate(3236%) hue-rotate(247deg) brightness(73%) contrast(99%);
            }
        }
        h4, p{
            color: #FFF;
        }
    }
}
.iccu-choose-vector{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}
.facilities{
    background: url(../img/facilities-bg.webp) no-repeat;
    background-size: cover;
}
.facilities-img{
    display: block;
    border-radius: 23px;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    img{
        margin-bottom: -8px;
    }
    span {
        position: absolute;
        inset: 0;
        border-radius: 23px;
        background: rgba(50, 40, 121, 0.70);
        scale: 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }
    &:hover {
        span {
            scale: 1 1;
        }
    }
}
.monitoring{
    .emergency-banner{
            .container {
                border-radius: 10px;
            }
    }
}
.monitoring-img{
    border-radius: 30px;
    overflow: hidden;
    img{
        margin-bottom: -10px;
    }
}
.monitoring-content{
    h3{
        color: #000;
        font-family: 'Sofia Pro SemiBold';
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: 134.615%;
        margin-bottom: 12px;
    }
    ul{
        li{
            color: #000;
            font-family: 'Sofia Pro Regular';
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 188.889%;
            padding-left: 30px;
            position: relative;
            &::before {
                position: absolute;
                content: '';
                width: 17px;
                height: 17px;
                background: url(../img/li-arrow.webp) no-repeat;
                background-size: contain;
                background-position: center;
                left: 0;
                top: 8px;
            }
        }
    }
}
.inner-banner{
    .banner-content {
    width: 48%;
    padding-top: 120px;
}
}
.contact-page {
    position: relative;
    padding-top: 140px;
    padding-bottom: 66px;
    z-index: 1;
    .top-vector{
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .bottom-vector{
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -1;
    }
}
.contact-details {
    border-radius: 30px;
    background: #160F41;
    box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.25);
    padding: 30px 34px;
    padding-bottom: 15px;
    h3{
        color: #FFF;
        font-family: 'Uncut Sans SemiBold';
        font-size: 34px;
        font-style: normal;
        font-weight: normal;
        line-height: 88.235%;
        margin-bottom: 20px;
    }
    .provide-card {
    width: 100%;
        display: flex;
        align-items: center;
        padding-block: 0;
        position: relative;
        border-bottom: 1px solid #FFFFFF;
        margin-bottom: 0px;
        padding-left: 96px;
        height: 114px;
        h5 {
        color: #ffffff;
        margin-bottom: 5px;
        font-family: 'Uncut Sans SemiBold';
        font-weight: normal;
    }
    p,a{
            color: #fff;
            margin: 0;
        }
        &:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        &::after{
            display: none;
        }
        a:hover{
            color: #c70400;
        }
        &:hover{
            h5{
                color: #fff;
            }
            .provide-icon{
                background-color: #c70400;
            }
        }
}
.provide-icon {
    width: 76px;
    height: 76px;
    outline: none;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
}
.contact-form {
    padding-left: 5%;
    .section-title{
        margin-bottom: 6px;
    }
    p{
        margin-bottom: 40px;
    }
    .form-control{
        border-radius: 12px;
        background: #F4F4F4;
        padding: 22px 22px;
        border: 0;
        color: #171717;
        font-family: 'Uncut Sans Medium';
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        line-height: 88.235%;
        &::placeholder{
            color: #171717;
        }
    }
}

.header-area.white-header{
    background: #FFF;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.06);
    position: relative;
}
.tag {
    border-radius: 50rem;
    background: #980606;
    color: #FFF;
    font-family: 'Sofia Pro Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    padding: 12px 17px;
    display: inline-block;
}
.date-admin {
    color: #4A4A4A;
    font-family: 'Sofia Pro Regular';
    font-size: 21px;
    font-style: normal;
    font-weight: normal;
    line-height: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    .tag,.admin{
        display: flex;
        align-items: center;
        gap: 7.7px;
    }
}
.event-feature-img {
    margin-bottom: 30px;
    img{
        border-radius: 40px;
		width: 100%;
    }
}
.event-details{
    h2{
    color: #000;
    font-family: 'Uncut Sans SemiBold';
    font-size: 44px;
    font-style: normal;
    font-weight: normal;
    line-height: 113.636%;
    margin-bottom: 14px;
    }
    h3{
        color: #000;
        font-family: 'Uncut Sans SemiBold';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: 134.483%;
        text-transform: capitalize;
        margin-bottom: 13px;
    }
.provide-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-block:0;
    padding-left: 80px;
    position: relative;
    margin-bottom: 10px;
    .provide-icon {
    background: #8EDCCC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: 0.5s;
    width: 71px;
    height: 71px;
    color: #000;
    position: absolute;
    left: 0;
    top: 0;
}
&::after{
    display: none;
}
&:hover{
    .provide-icon{
        background-color: #c70400;
        color: #fff;
    }
}
}
.side-bar-title {
    color: #282828;
    font-family: "Uncut Sans SemiBold";
    font-size: 39px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
}
.heightlight {
    border-radius: 40px;
    background: #E1EFF8;
    padding: 40px;
    margin-bottom: 30px;
    ul{
        list-style: disc;
        padding-left: 20px;
        & ::marker{
            color: #3D3861;
        }
    }
}
.event-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    .event-arrow {
    width: 286px;
    height: 86px;
    border-radius: 80px;
    background: #E1EFF8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 10px;
    color: #000;
    font-family: "Uncut Sans SemiBold";
    font-size: 19px;
    font-style: normal;
    font-weight: normal;
    line-height: 30px;
    text-transform: capitalize;
    &.next{
        background-color: #C5F1E8;
    }
    &:hover{
        background-color: #c70400;
        color: #fff;
        .img{
            img{
                transform: scale(1.1);
            }
        }
        .arrow{
            img{
                transform: rotate(35deg);
            }
        }
    }
}
.arrow {
    width: 66px;
    height: 66px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
}
.img {
    width: 69px;
    height: 69px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
}
.up-event-list {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #919191;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.upcoming-events-list{
    margin-bottom: 50px;
    .up-event-list:last-child{
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}
.up-event-img {
    border-radius: 12px;
    overflow: hidden;
    height: 174px;
    width: 200px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.up-event-content {
    width: 47%;
    h4{
        color: #000;
        font-family: "Uncut Sans SemiBold";
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 123.81%;
        text-transform: capitalize;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .learn-more-btn{
        color: #000000;
        justify-content: start;
        img{
            filter: brightness(0) saturate(100%)
        }
    }
}
.ev-date{
    margin-bottom: 10px;
    display: flex;
    .tag{
        display: flex;
        gap:7.7px;
        align-items: center;
    }
}

.recent-post-list:not(:last-child){
    border-bottom: 1px solid #919191;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.recent-post-img{
        margin-bottom: 10px;
        img{
            border-radius: 30px;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
.recent-post-content{
    
    .date-admin{
        margin-bottom: 10px;
    }
    .learn-more-btn{
        color: #000000;
        justify-content: start;
        img{
            filter: brightness(0) saturate(100%)
        }
    }
    h4{
        color: #000;
        font-family: "Uncut Sans SemiBold";
        font-size: 25px;
        font-style: normal;
        font-weight: normal;
        line-height: 120%;
        text-transform: capitalize;
        margin-bottom: 15px;
    }
}
.blog-details{
    ul,ol{
        list-style: disc;
        padding-left: 20px;
        margin-bottom: 20px;
        & ::marker{
            color: #980606;
        }
    }
    ol{
        list-style: decimal;
    }
    .event-pagination{
        margin-top: 100px;
    }
    .up-event-list {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 0;
    margin-bottom: 15px;
    border-radius: 20px;
    background: #160F41;
    padding: 10px;
}
.up-event-img {
    border-radius: 20px;
    overflow: hidden;
    width: 185px;
    height: 144px;
}
.up-event-content {
    h4 {
        color: #ffffff;
        font-family: "Uncut Sans Medium";
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 123.81%;
        text-transform: unset;
        margin-bottom: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
        .learn-more-btn {
        color: #ffffff;
        justify-content: start;
        font-family: 'Uncut Sans Medium';
        img {
            filter: unset;
        }
        &:hover{
            color: #c70400;
            img{
                filter: brightness(0) saturate(100%) invert(12%) sepia(58%) saturate(7434%) hue-rotate(358deg) brightness(90%) contrast(110%);
            }
        }
    }
    .ev-date {
    .tag {
        display: flex;
        gap: 7.7px;
        align-items: center;
        font-size: 14px;
        background: #FFFFFF;
        color: #000;
    }
}
}
.upcoming-events-list {
    .up-event-list:last-child {
        padding-bottom: 10px;
    }
}
}
.category-list-box{
    margin-bottom: 30px;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.14);
    overflow: hidden;
    .side-bar-title {
        background: #160F41;
        color: #fff;
        padding: 22px 40px;
        margin-bottom: 24px;
        line-height: normal;
}
    .category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 8px;
        list-style: none;
        padding: 20px;
        margin: 0;
        padding-top: 0;
}

.category-list li a {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 60px;
    border: 1px solid #160F41;
    background: #FFF;
  font-size: 16px;
  color: #160F41;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.category-list li a:hover {
  background: #830505;
  color: #fff;
  border-color: #830505;
}

.category-list li.active a {
  background: #830505;
  color: #fff;
  border-color: #830505;
}

}
.blog-details{
    position: relative;
    .about-vector {
        left: unset;
        bottom: 0;
        right: 0;
    }
    .event-pagination {
    .event-arrow {
        width: 286px;
        height: 86px;
        border-radius: 12px;
        gap: 10px;
        background: #E8F6FE;
        border-bottom: 10px solid #8EDCCC;
        &:hover{
            color: #c70400;
        }
    }
        .img {
        width: 150px;
        height: 115px;
        border-radius: 20px;
        overflow: hidden;
        display: inline-block;
        margin-top: -43px;
    }
        .arrow {
        width: 44px;
        height: 44px;
        background: #980606;
        padding: 14px;
        img{
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
        }
    }
}
}
.mb-40{
    margin-bottom: 40px;
}
.latest-event-listing{
    .recent-post-list.event-big{
        height: 100%;
        position: relative;
        border-radius: 30px;
        overflow: hidden;
        .recent-post-img {
            margin-bottom: 0;
            height: 100%;
        }
        .recent-post-content{
            position: absolute;
            padding: 20px 40px;
            background: linear-gradient(180deg, rgba(92, 90, 90, 0.00) 47.38%, #000 115.09%);
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: end;
            .date-admin{
                color: #fff;
                margin-bottom: 14px;
                img{
                    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
                }
                span{
                    font-size: 16px;
                }
            }
            h4{
                color: #fff;
            }
            a:hover{
        h4{
            color: #c70400;
        }
    }
        }
    }
    .recent-post-content {
    .date-admin {
       span{
            font-size: 16px;
        }
        .tag {
            padding: 5px 13px;
        }
    }
    a:hover{
        h4{
            color: #c70400;
        }
    }
    }
    .row .row{
       .recent-post-content {
    h4 {
        font-size: 17px;
        margin-bottom: 15px;
        height: 41px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .learn-more-btn {
    font-size: 16px;
    }
}
.recent-post-img {
    margin-bottom: 7px;
    overflow: hidden;
}
    }
    .recent-post-list:hover{
        .recent-post-img{
            img{
                transform: scale(1.1);
            }
        }
        a{
        h4{
            color: #c70400;
        }
    }
    }
}
.trending-news{
    background-image: url(../img/trending-news-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    .section-title{
        color: #fff;
    }
}
.trending-news.latest-event-listing {
    & .recent-post-content {
        & .date-admin {
            span {
                font-size: 16px;
                color: #fff;
                img{
                    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
                }
            }
        }
        h4{
            color: #fff;
        }
        .learn-more-btn {
            color: #fff;
            img{
                filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
            }
            &:hover{
                color: #c70400;
                img{
                    filter: brightness(0) saturate(100%) invert(39%) sepia(85%) saturate(3216%) hue-rotate(348deg) brightness(95%) contrast(93%);
                }
            }
        }
    }
}
.upcoming-event-slider{
    .up-event-list{
        border: 0;
        padding-bottom: 0;
        margin-bottom: 0;
        &:hover{
            a{
                h4{
                    color: #c70400;
                }
            }
        }
        .learn-more-btn {
            &:hover{
                color: #c70400;
                img{
                    filter: brightness(0) saturate(100%) invert(39%) sepia(85%) saturate(3216%) hue-rotate(348deg) brightness(95%) contrast(93%);
                }
            }
        }
        .ev-date {
            .tag {
                font-size: 16px;
                padding: 5px 13px;
            }
        }
    }
    .slick-arrow {
    width: auto;
    height: auto;
    top: -42%;
    background: #9692ad00;
    border-radius: 0;
    transition: 0.5s;
    right: 0;
        &::before {
        width: 55px;
        height: 15px;
        background: url(../img/long-arrow-right.webp) no-repeat;
        background-repeat: no-repeat;
    }
        &:hover, &:focus {
        &::before {
            filter: brightness(0) saturate(100%) invert(8%) sepia(89%) saturate(7485%) hue-rotate(4deg) brightness(96%) contrast(105%);
        }
    }
}
.slick-prev.slick-arrow {
    right: 8%;
    left: unset;
}
}
/*******************************
  Responsive
********************************/
@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    .right {
        .form-title {
            font-size: 30px;
            margin-bottom: 5px;
        }
    }
    .flex-box {
        gap: 18px;
    }
    .header-area {
        padding-inline: 40px;
    }
    .header-call, .header-book, .header-test {
        font-size: 16px;
    }
    .address {
        font-size: 16px;
        
    }
    .logo{
        width: 314px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 17px;
        padding: 20px 5px;
    }
    .search-btn {
        width: 23px;
        height: 23px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 26px;
        right: -7px;
    }
    #menu ul ul li a {
        font-size: 17px;
    }
    #menu li:hover>ul>li {
        height: 37px;
    }
    .testimonial {
        padding-block: 70px;
    }
    .since{
        .about-vector {
            width: 40%;
        }
    }
    .miss-vis{
        .about-vector {
            width: 42%;
        }
        .miss-vector {
            width: 9%;
        }
    }
    .mission-vission-img {
        position: absolute;
        width: 50%;
    }
    .miss-vis-card {
        margin-bottom: 25px;
    }
    .achievement {
        .about-vector {
            width: 20%;
        }
        .achievement-vector{
            width: 15%;
        }
    }
    .doctor-tabs{
        top: 156px;
    }
}

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

@media (max-width: 1440px),
(max-width: 1366px){
    .right {
        padding: 20px;
        .form-title{
            font-size: 28px;
        }
    }
    .popup .popup__content {
        width: 60%;
    }
    .sec-gap{
        padding: 50px 0;
    }
    p{
        font-size: 16px;
    }
    .topbar{
        padding-block: 4px;
    }
    .address {
        font-size: 14px;
        gap: 3px;
    }
    .header-call, .header-book, .header-test {
        font-size: 14px;
        img{
            height: 18px;
        }
    }
    .header-call{
        gap: 2px;
        img{
            height: 16px;
        }
    }
    .header-area {
        padding-inline: 30px;
    }
    .header-social{
        a{
            img{
                height: 17px;
            }
        }
    }
    .nabh{
        img{
            width: 36px;
        }
    }
    .logo {
        width: 256px;
    }
    #menu {
        padding-block: 4px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 15px;
        padding: 16px 3px;
    }
    #menu ul ul li a {
        font-size: 15px;
    }
    #menu li:hover>ul>li{
        height: 35px;
    }
    #menu .main-menu ul ul{
        top: 50px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        width: 6px;
        height: 6px;
        top: 22px;
        right: -6px;
    }
    .primary-btn{
        font-size: 15px;
        padding: 9px 23px;
    }
    .secondary-btn{
        padding: 9px 31px;
        img{
            height: 18px;
        }
    }
    .header-btn {
        padding: 7px 13px;
    }
    .flex-box {
        gap: 12px;
    }
    .search-btn {
        width: 20px;
        height: 20px;
    }
    .search-input{
        padding: 14px 44px 14px 12px;
    }
    .banner-content {
        h5 {
            font-size: 24px;
        }
        h1{
            font-size: 66px;
            margin-bottom: 15px;
        }
        p{
            font-size: 18px;
        }
    }
    .banner-dtls-card {
        font-size: 18px;
        padding: 11px 12px;
        img{
            height: 28px;
        }
        .banner-arrow{
            height: 12px;
        }
    }
    .introduced {
        padding-block: 30px;
        .section-title {
            font-size: 28px;
            margin-bottom: 8px;
        }
    }
    .learn-more-btn{
        font-size: 15px;
        gap: 8px;
        img{
            width: 22px;
        }
    }
    .section-title {
        font-size: 50px;
        margin-bottom: 10px;
    }
    .provide-icon {
        width: 59px;
        height: 59px;
        padding: 11px;
    }
    .provide-card {
        gap: 10px;
        padding-block: 15px;
        h5 {
            font-size: 20px;
            margin-bottom: 3px;
        }
    }
    .form-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .provide-tab {
        li {
            font-size: 16px;
        }
    }
    label {
        font-size: 16px;
    }
    .form-control{
        font-size: 15px;
    }
    .appointment-form {
        padding-block: 13px;
        form {
            padding: 20px 20px;
        }
    }
    .disclimer {
        li {
            font-size: 16px;
            line-height: 160.667%;
            padding-block: 4px;
        }
    }
    .emergency-banner {
        & .container {
            .section-title {
                font-size: 36px;
            }
            p, p a {
                color: #FFF;
                font-size: 16px;
                line-height: 172.222%;
                transition: 0.5s;
            }
        }
    }
    .emer-logo{
        width: 96px;
    }
    .sub-title {
        font-size: 18px;
    }
    .about {
        .section-title {
            font-size: 44px;
            margin-bottom: 6px;
        }
        p{
            font-size: 17px;
        }
    }
    .about-content {
        padding-left: 30px;
    }
    .row-back {
        &::before {
            height: 95%;
        }
    }
    .about-logo{
        width: 146px;
    }
    .counter{
        margin-top: 40px;
        padding-inline: 80px;
    }
    .counter-item {
        h4 {
            font-size: 50px;
        }
        p{
            font-size: 18px;
        }
    }
    .sub-dec{
        font-size: 18px;
    }
    .department {
        .section-title {
            font-size: 46px;
        }
        .sub-dec{
            font-size: 16px;
        }
        .btn-group {
            margin-top: 20px;
        }
        .learn-more-btn {
            font-size: 16px;
        }
    }
    .depart-card {
        padding: 20px;
        img {
            margin-bottom: 3px;
            height: 55px;
        }
        p {
            font-size: 16px;
        }
    }
    .our-dr-content {
        h4 {
            font-size: 17px;
        }
        h5{
            font-size: 15px;
            margin-bottom: 9px
        }
    }
    .slick-arrow{
        width: 35px;
        height: 35px;
    }
    .online-book-content {
        h4 {
            font-size: 30px;
            margin-bottom: 8px;
        }
    }
    .top-service-content {
        & ul {
            li {
                font-size: 17px;
                padding: 17px 18px;
                margin-bottom: 10px;
            }
        }
    }
    .top-service-img {
        img {
            border-radius: 45px;
        }
    }
    .arrow-btn{
        width: 50px;
        height: 50px;
    }
    .service-tab li:hover, .service-tab li.active {
        .arrow-btn {
            right: 3px;
        }
    }
    .top-img-content {
        padding: 25px;
        h4 {
            font-size: 26px;
            margin-bottom: 5px;
        }
    }
    .our-gallery-card{
        height: 356px;
        border-radius: 47px;
        span{
            border-radius: 47px;
            img{
                width: 33px;
            }
        }
    }
    .why-card {
        img {
            height: 60px;
        }
        h4 {
            font-size: 20px;
            margin-bottom: 5px;
        }
    }
    .user{
        width: 58px;
        height: 58px;
    }
    .coma {
        width: 43px;
        height: 43px;
    }
    .testi-card{
        padding: 18px;
        border-radius: 36px;
    }
    .testi-top{
        margin-bottom: 10px;
    }
    .test-text{
        margin-bottom: 10px;
    }
    .testi-bottom{
        h4{
            font-size: 16px;
        }
    }
    .rating{
        font-size: 18px;
        line-height: 2;
    }
    .testimonial {
        padding-block: 80px;
    }
    
    .awards-slider {
        .slick-slide {
            margin: 40px 35px;
        }
        .slick-list{
            margin: 0 -35px;
        }
    }
    .date{
        right: 30px;
        bottom: 15px;
        font-size: 12px;
    }
    .news-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .news-content {
        padding-top: 15px;
    }
    .main-row{
        margin-top: 0;
    }
    .padding-right {
        padding-right: 100px;
        &::after{
            right: 20px;
        }
    }
    .accordion__item .accordion__title {
        padding: 10px 80px 10px 14px;
        font-size: 17px;
    }
    .accordion__title::after {
        width: 9px;
        height: 9px;
        top: 16px;
    }
    .map {
        iframe {
            height: 495px;
        }
    }
    .mb-20 {
        margin-bottom: 10px;
    }
    .footer-logo{
        width: 300px;
    }
    .footer-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    footer ul li {
        font-size: 16px;
    }
    .footer-first {
        h5 {
            font-size: 20px;
        }
    }
    .copyright {
        padding: 18px 0;
        margin-top: 20px;
    }
    .fixed-call {
        width: 48px;
        height: 48px;
        padding: 12px;
    }
    .wp {
        width: 57px;
        height: 57px;
    }
    .since {
        .section-title {
            font-size: 46px;
        }
    }
    .img-tag {
        font-size: 19px;
    }
    .b-f{
        font-size: 39px;
    }
    .y-f {
        font-size: 16px;
    }
    .trust {
        .provide-icon {
            width: 76px;
            height: 76px;
        }
    }
    .miss-vis{
        .mb-50{
            margin-bottom: 20px;
        }
    }
    .miss-vis-icon {
        width: 97px;
        height: 97px;
        padding: 11px;
    }
    .miss-vis-content {
        h4 {
            font-size: 26px;
            margin-bottom: 12px;
        }
    }
    .miss-vis-card {
        gap: 30px;
        margin-bottom: 20px;
    }
    .regards-content {
        h4 {
            font-size: 20px;
        }
        h5{
            font-size: 16px;
        }
    }
    .blog-date {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .blog-title {
        font-size: 23px;
    }
    .doctor-tabs {
        top: 117px;
        h4 {
            font-size: 18px;
            padding: 12px 20px;
        }
        ul{
            li{
                font-size: 16px;
                padding: 8px 20px;
                padding-left: 45px;
                span{
                    width: 8px;
                    height: 8px;
                }
            }
        }
    }
    .doctor-img{
        z-index: 1;
        margin-bottom: 18px;
        &::after{
            bottom: -6px;
            z-index: -1;
        }
    }
    .dr-name {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .depart{
        font-size: 12px;
        margin-bottom: 8px;
    }
    .qualification {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .doctor-card {
        & .btn-group {
            .primary-btn {
                padding: 9px 18px;
            }
        }
    }
    .doctor-profile-content {
        h2 {
            font-size: 34px;
        }
        .dr-qualification {
            font-size: 19px;
        }
    }
    .doctor-info-table {
        width: 100%;
        font-size: 15px;
        margin-bottom: 10px;
    }
    .doctor-profile-box {
        padding: 20px;
        margin-bottom: 30px;
    }
    .doctor-details {
        h3, h4 {
            font-size: 43px;
            margin-bottom: 15px;
        }
        h5{
            font-size: 21px;
        }
        h4{
            font-size: 28px;
        }
        ul {
            li {
                font-size: 19px;
                padding-left: 25px;
                margin-bottom: 10px;
                &::before {
                    width: 13px;
                    height: 13px;
                    top: 4px;
                }
            }
        }
    }
    .doctor-visit {
        .visit-title {
            font-size: 24px;
            padding: 15px 30px;
        }
    }
    .doctor-visit-dtls{
        padding: 25px;
    }
    .doctor-visit-content {
        h6 {
            font-size: 17px;
        }
    }
}

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

@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {
    .header-social {
        display: none;
    }
    .footer-social{
        display: flex;
        margin-top: 40px;
    }
    .header-area {
        padding-inline: 20px;
    }
    .topbar{
        padding-block: 2px;
        .address:first-child{
            display: none;
        }
    }
    .address{
        font-size: 16px;
    }
    .header-call, .header-book, .header-test {
        font-size: 16px;
        img{
            height: 20px;
        }
    }
    .logo {
        width: 206px;
    }
    .banner{
        height: 600px;
    }
    .flex-box {
        gap: 20px;
        margin-right: 70px;
    }
    .search-input {
        padding: 10px 44px 10px 8px;
    }
    .search-box{
        width: 215px;
        border: 2px solid #d42817;
    }
    .search-box.active {
        transform: translateY(-50%) scaleX(1);
    }
    #menu>.main-menu>ul>li {
        border-bottom: 1px solid #ffffff8c;
        padding-inline: 25px;
    }
    #menu>.main-menu>ul>li:hover>a, #menu .main-menu ul li.current-menu-item a {
        color: #D42817;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 16px;
        padding: 18px 6px;
    }
    #menu .main-menu ul ul {
        top: unset;
        background: #ffffff21;
    }
    #menu ul ul li a {
        font-size: 16px;
        padding: 14px 15px;
    }
    #menu .main-menu ul ul li:hover a {
        color: #fff;
        background-color: #d42817;
    }
    #menu .main-menu ul ul{
        margin-bottom: 5px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }
    .banner-content {
        width: 80%;
        padding-top: 5px;
        h5 {
            font-size: 18px;
        }
    }
    .banner-dtls{
        bottom: 10px;
    }
    .provide-content {
        padding-block: 30px;
    }
    .provide-doctor {
        right: -55px;
    }
    .provide {
        &::after {
            height: 70%;
        }
    }
    .emergency-banner {
        .container {
            flex-direction: column;
            gap: 10px;
            padding: 20px 30px;
        }
    }
    .disclimer {
        li {
            padding-block: 8px;
        }
    }
    .emergency-content {
        flex-direction: column;
        gap: 10px;
    }
    .row-back{
        .col:last-child{
            order: -1;
        }
        &::before{
            width: 102%;
            left: -7px;
        }
    }
    .about-img {
        img {
            border-radius: 18px;
        }
    }
    .about-logo {
        width: 136px;
        top: -35px;
        right: -35px;
    }
    .about-content {
        padding-left: 0;
    }
    .counter {
        margin-top: 20px;
        padding-inline: 0;
    }
    .department {
        text-align: center;
        .btn-group{
            justify-content: center;
        }
    }
    .sec-gap {
        padding: 40px 0;
    }
    .online-book-img {
        border-radius: 32px;
    }
    .top-services {
        &::after {
            display: none;
        }
    }
    .top-service-content {
        & ul {
            width: 100%;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: space-between;
            li {
                width: 47%;
            }
        }
    }
    .top-service-img {
        img {
            border-radius: 25px;
        }
    }
    .top-img-content {
        padding: 25px;
        border-radius: 0 55px 0 0;
        left: 0;
    }
    .our-gallery-card {
        height: 200px;
        border-radius: 17px;
    }
    .testimonial{
        display: block;
        padding-block: 40px;
        background-position: right;
        padding-left: 30px;
    }
    .awards-card {
    height: 280px;
}
    .awards-slider {
        .slick-slide {
            margin: 30px 30px;
        }
        .slick-list{
            margin: 0 -30px;
        }
    }
    .news {
        & .row.g-lg-0 {
            .btn-group {
                justify-content: flex-start;
            }
        }
        &::after {
            display: none;
        }
    }
    .padding-right {
        &::after {
            height: 110%;
        }
    }
    .mb-50{
        margin-bottom: 20px;
    }
    .map{
        iframe{
            height: 395px;
        }
    }
    footer {
        padding-top: 40px;
    }
    .footer-first{
        text-align: center;
    }
    .footer-logo{
        margin-inline: auto;
    }
    .copyright{
        justify-content: center;
    }
    .fixed-btn {
        right: 5px;
        top: 80%;
    }
    .popup .popup__content {
        width: 70%;
    }
    .left{
        display: none;
    }
    .about-banner{
        height: auto;
        .banner-content{
            padding-top: 80px;
        }
    }
    .about-img {
        .about-since {
            border-radius: 16px;
            border-width: 14px;
        }
    }
    .img-tag {
        padding: 10px;
    }
    .about-banner{
        .banner-content{
            width: 70%;
        }
    }
    .since {
        .section-title {
            font-size: 38px;
        }
        .about-vector {
            width: 50%;
        }
    }
    .provide-card {
        padding-block: 15px;
    }
    .ambulance{
        position: relative;
        width: 90%;
        right: unset;
        top: unset;
        margin-left: auto;
        margin-bottom: 60px;
    }
    .ambulance-bottom{
        width: 35%;
        left: -50px;
        bottom: -50px;
        border-width: 10px;
        border-radius: 30px;
    }
    .mission-vission-img {
        display: none;
    }
    .miss-viss-card-right {
        transform: translateX(0);
    }
    .miss-vis-card {
        width: 100%;
        gap: 30px;
        margin-bottom: 15px;
        background: #ebeaea;
        border-radius: 14px;
        padding: 25px;
    }
    .achievemt-card {
        border-radius: 10px;
    }
    .inner-banner{
        .banner-content{
            width: 50%;
        }
    }
    .blog-banner{
        height: 299px;
        .banner-content{
            padding-top: 90px;
        }
    }
    .blog-img {
        border-radius: 14px;
        margin-bottom: 15px;
    }
    .blog-title{
            margin-bottom: 6px;
    }
    .inner-banner.doctor-banner{
        height: 400px;
        .banner-content{
            width: 60%;
        }
    }
    .doctor-tabs{
        ul{
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            li{
                width: 31.8%;
                margin: 5px;
            }
        }
    }
}
@media (max-width: 575.98px) {
    p{
        font-size: 14px;
    }
    .topbar{
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 10px;
        padding-block: 3px;
    }
    .nabh {
        img {
            width: 28px;
        }
    }
    .header-call, .header-book, .header-test {
        gap: 2px;
        img {
            height: 15px;
        }
    }
    .header-call {
        img {
            height: 13px;
        }
    }
    .address {
        font-size: 13px;
    }
    .header-area {
        padding-inline: 10px;
    }
    .header-call, .header-book, .header-test {
        font-size: 13px;
    }
    .header-btn{
        display: none;
    }
    .logo {
        width: 150px;
    }
    .hamburger {
        top: -3px;
    }
    .search-close-btn {
        right: 2px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 14px;
        padding: 12px 3px;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 10px;
    }
    #menu .submenu-button {
        height: 40px;
        width: 50px;
    }
    #menu .submenu-button:after {
        right: 20px;
        width: 8px;
        height: 8px;
    }
    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 17px;
        right: 20px;
    }
    #menu ul ul li a {
        font-size: 14px;
        padding: 10px 10px;
    }
    .banner-content {
        width: 100%;
        padding-top: 130px;
        h5 {
            font-size: 14px;
        }
        h1 {
            font-size: 34px;
            margin-bottom: 5px;
        }
        .btn-group{
            flex-direction: column;
            align-items: start;
            gap: 7px;
        }
        p {
            font-size: 15px;
            margin-bottom: 10px;
        }
    }
    .primary-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    .secondary-btn {
        padding: 8px 23px;
        img {
            height: 14px;
        }
    }
    .banner{
        height: 550px;
        .container{
            flex-direction: column;
            justify-content: center;
            gap: 25px;
        }
    }
    .banner-dtls{
        padding-right: 25px;
        position: relative;
    }
    .banner-dtls-card {
        font-size: 15px;
        padding: 8px 14px;
        img {
            height: 20px;
        }
    }
    .introduced {
        padding-block: 15px;
        .section-title {
            font-size: 22px;
        }
    }
    .learn-more-btn {
        font-size: 13px;
        gap: 5px;
    }
    .section-title {
        font-size: 26px;
        margin-bottom: 5px;
    }
    .provide-doctor {
        display: none;
    }
    .provide {
        &::after {
            width: 215%;
            height: 70%;
            left: -230px;
            top: -440px;
        }
    }
    .provide-card{
        width: 100%;
        h5 {
            font-size: 16px;
        }
        &::after {
            left: 34px;
        }
    }
    .provide-content {
        .btn-group {
            margin-top: 20px;
            padding-left: 36px;
        }
    }
    .provide-icon {
        width: 49px;
        height: 49px;
        padding: 10px;
    }
    .appointment-form {
        margin: 0;
        form{
            padding: 10px;
        }
    }
    .form-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .provide-tab {
        li {
            font-size: 13px;
        }
    }
    .form-control {
        padding: 12px 10px;
    }
    label {
        font-size: 14px;
    }
    form .primary-btn {
        padding: 8px 27px;
    }
    .disclimer {
        padding-left: 10px;
        li {
            font-size: 14px;
            padding-block: 6px;
        }
    }
    .emergency-banner {
        padding-inline: 10px;
        .container {
            text-align: center;
            border-radius: 14px;
            .section-title{
                font-size: 24px;
            }
            p, p a {
                font-size: 14px;
            }
        }
    }
    .emergency-content {
        gap: 5px;
    }
    .emer-logo {
        width: 86px;
    }
    .row-back {
        padding-block: 40px;
        &::before {
            border-radius: 18px;
        }
    }
    .about-logo {
        width: 90px;
        top: -38px;
        right: -13px;
    }
    .sub-title {
        font-size: 13px;
    }
    .btn-group {
        gap: 7px;
    }
    .about {
        .section-title {
            font-size: 26px;
            margin-bottom: 0px;
        }
        p {
            font-size: 15px;
        }
        .btn-group{
            flex-direction: column;
            align-items: start;

        }
    }
    .counter{
        margin-top: 0;
    }
    .counter-item {
        padding-bottom: 3px;
        h4 {
            font-size: 34px;
        }
        p {
            font-size: 14px;
        }
    }
    .department {
        .section-title {
            font-size: 24px;
        }
        .sub-dec {
            font-size: 14px;
        }
        .btn-group {
            flex-direction: column;
            margin-top: 10px;
        }
        .learn-more-btn {
            font-size: 14px;
        }
    }
    .depart-card {
        padding: 15px;
        border-radius: 13px;
        p {
            font-size: 14px;
        }
        img{
            height: 40px;
        }
    }
    .sec-gap {
        padding: 20px 0;
    }
    .our-doctors-slider{
        padding-inline: 25px;
    }
    .slick-arrow {
        width: 30px;
        height: 30px;
    }
    .slick-next {
        right: -7px;
    }
    .slick-prev {
        left: -7px;
    }
    .sub-dec{
        font-size: 15px;
    }
    .our-dr-content{
        padding-block: 10px 5px;
    }
    .online-book .row > div:nth-child(1) { order: 1; } 
    .online-book .row > div:nth-child(2) { order: 2; }

    .online-book .row > div:nth-child(3) { order: 4; }
    .online-book .row > div:nth-child(4) { order: 3; } 

    .online-book .row > div:nth-child(5) { order: 5; }  
    .online-book .row > div:nth-child(6) { order: 6; }

    .online-book .row > div:nth-child(7) { order: 8; }   
    .online-book .row > div:nth-child(8) { order: 7; }  

    .online-book-img {
        border-radius: 12px;
    }
    .online-book-content {
        padding-top: 7px;
        h4 {
            font-size: 20px;
            margin-bottom: 3px;
        }
    }
    .top-service-content {
        & ul {
            li{
                width: 100%;
                font-size: 14px;
                padding: 10px 12px;
                margin-bottom: 5px;
            }
        }
    }
    .arrow-btn {
        width: 32px;
        height: 32px;
        padding: 8px;
    }
    .service-tab li:hover, .service-tab li.active {
        .arrow-btn {
            right: 2px;
        }
    }
    .top-img-content {
        padding: 15px;
        border-radius: 0 22px 0 0;
        h4 {
            font-size: 16px;
            margin-bottom: 2px;
        }
    }
    .top-service-img {
        img {
            border-radius: 15px;
        }
    }
    .our-gallery-card {
        height: 315px;
        border-radius: 10px;
        span{
            border-radius: 10px;
            img {
                width: 23px;
            }
        }
    }
    .why-choose {
        .container {
            border-radius: 17px;
            padding: 15px;
        }
    }
    .why-card {
        img {
            height: 45px;
                        margin-bottom: -5px;
        }
        h4 {
            font-size: 16px;
        }
    }
    .testimonial {
        padding-block: 20px;
        padding-left: 10px;
    }
    .testimonial-slider {
        margin-top: 15px;
        .slick-slide{
            margin: 0 10px;
        }
        .slick-list{
            margin: 0 -10px;
        }
    }
    .coma {
        width: 33px;
        height: 33px;
    }
    .user {
        width: 48px;
        height: 48px;
    }
    .testi-card{
        padding: 12px;
        border-radius: 16px;
    }
    .testi-bottom {
        h4 {
            font-size: 15px;
        }
    }
    .rating {
        font-size: 16px;
        line-height: 3;
    }
    .slick-dots {
        bottom: -38px;
        left: 0;
    }
    .form-control {
        font-size: 14px;
    }
    .awards-slider{
        padding-inline: 40px;
    }
    .padding-right {
        padding-right: 30px;
        &::after {
            border-radius: 19px;
        }
    }
    .news-img {
        border-radius: 14px;
    }
    .news-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .news-content {
        .primary-btn {
            padding: 8px 18px;
        }
    }
    .accordion__item .accordion__title {
        padding: 5px 35px 5px 8px;
        font-size: 16px;
        line-height: 130%;
    }
    .accordion__item .accordion__content{
        padding: 8px 30px 8px 8px;
        border-radius: 10px;
        margin: 0 5px 5px 5px;
        p{
            line-height: 140%;
        }
    }
    .accordion__title::after {
        top: 11px;
    }
    .map {
        iframe {
            height: 280px;
        }
    }
    .footer-logo {
        width: 215px;
    }
    footer {
        text-align: center;
        padding-top: 20px;
        h6 {
            font-size: 14px;
        }
    }
    .footer-first {
        h5 {
            font-size: 16px;
        }
    }
    .footer-title {
        font-size: 16px;
        margin-bottom: 7px;
    }
    footer ul li {
        font-size: 14px;
        line-height: 175.556%;
        margin-bottom: 7px;
        &::after {
            width: 20%;
            height: 1px;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    .footer-social {
        justify-content: center;
                margin-top: 30px;
    }
    .copyright{
        text-align: center;
    }
    .fixed-call {
        width: 44px;
        height: 44px;
        padding: 12px;
    }
    .wp {
        width: 49px;
        height: 49px;
    }
    .fixed-btn {
        right: 1px;
        gap: 8px;
    }
    .popup .popup__content {
        width: 90%;
    }
    .right {
        .form-title {
            font-size: 22px;
        }
    }
    .popup .popup__content .close{
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    .popup .popup__content .close span {
        width: 15px;
        height: 2px;
    }
    .news {
        .secondary-btn {
            padding: 8px 25px;
        }
    }
    .date{
        right: 15px;
        bottom: 5px;
    }
    .about-banner{
        height: 355px;
        .img-cover{
            object-position: left;
        }
        .banner-content {
            padding-top: 100px;
            width: 100%;
        }
    }
    .img-tag {
        font-size: 14px;
    }
    .b-f {
        font-size: 24px;
    }
    .y-f {
        font-size: 13px;
    }
    .since-padd {
        padding-right: 55px;
    }
    .about-img {
        img {
            border-radius: 10px;
        }
        .about-since {
            width: 40%;
            border-radius: 10px;
            border-width: 6px;
            right: -52px;
            bottom: 20px;
        }
    }
    .since {
        .section-title {
            font-size: 24px;
        }
        .btn-group{
            flex-direction: column;
            gap: 15px;
            align-items: start;
        }
    }
    .call-icon {
        width: 50px;
        height: 50px;
    }
    .call-btn {
        font-size: 18px;
        small {
            font-size: 15px;
        }
    }
    .provide-card {
        padding-block: 7px;
    }
    .ambulance {
        margin-bottom: 40px;
        .img-cover {
            border-radius: 15px 0 0 15px;
        }
    }
    .ambulance-bottom {
        left: -30px;
        bottom: -30px;
        border-width: 6px;
        border-radius: 15px;
    }
    .trust {
        .provide-card {
            width: 100%;
            gap: 10px;
            h5{
                font-size: 17px;
            }
        }
        .provide-icon{
            width: 56px;
            height: 56px;
            padding: 12px;
        }
        .provide-card-content {
            width: 80%;
        }
    }
    .miss-vis-card{
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 15px;
        padding-top: 25px;
    }
    .miss-vis-content {
        width: 100%;
        h4 {
            font-size: 21px;
            margin-bottom: 5px;
        }
        p{
            margin-bottom: 0;
        }
    }
    .miss-vis-icon {
        width: 77px;
        height: 77px;
        padding: 11px;
        border-radius: 10px;
    }
    .achievement{
        .mb-50 {
            margin-bottom: 5px;
        }
    }
    .inner-banner{
        .img-cover{
            object-position: left;
        }
        .banner-content{
            width: 100%;
        }
    }
    .blog-banner{
        height: 240px;
    }
    .blog-img {
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .blog-date {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .blog-title{
        font-size: 18px;
    }
    .blog-content{
        p{
            margin-bottom: 7px;
        }
    }
    .inner-banner.doctor-banner{
        height: 225px;
        .banner-content{
            width: 100%;
            padding-top: 105px;
        }
    }
    .doctor-tabs {
        border-radius: 10px;
        h4 {
            font-size: 16px;
            padding: 10px 20px;
            border-radius: 10px 10px 0 0;
        }
        ul{
            li{
                width: 48.8%;
                margin: 2px;
                font-size: 14px;
                padding: 6px 6px;
                padding-left: 25px;
                height: 100%;
                &::before{
                    width: 6px;
                    height: 6px;
                    left: 10px;
                }
            }
        }
    }
    .doctor-card{
        border-radius: 10px;
    }
    .doctor-img{
        img{
            border-radius: 10px;
        }
    }
    .dr-name {
        font-size: 16px;
        margin-bottom: 7px;
    }
    .qualification {
        margin-bottom: 7px;
    }
    .awards-card {
        height: 370px;
    }
}

@media (max-width: 1366px) {
    .directors-grid {
        .director-info {
            padding: 16px 6px;
            text-align: center;
            background: #ffffff;
            h3 {
                font-size: 20px;
            }
        }
        .director-img {
            img {
                width: 100%;
                height: 280px;
            }
        }
    }
}
@media (max-width: 1200px) {
  .directors-grid {
    grid-template-columns: repeat(2, 1fr);
    .director-info {
        padding: 16px 16px;
        text-align: center;
        background: #ffffff;
    }
        & .director-img {
        img {
            width: 100%;
            height: 460px;
        }
    }
}
}

@media (max-width: 576px) {
  .directors-grid {
    grid-template-columns: 1fr;
  }
  .directors-grid {
        & .director-img {
            img {
                width: 100%;
                height: 360px;
            }
        }
    }
}

@media (max-width: 1600px) {
 .mb-40 {
    margin-bottom: 40px;
}
}
@media (max-width: 1536px) {
  
}
@media (max-width: 1366px) {
 .contact-details {
    padding: 30px 20px;
        & .provide-card {
        p, a {
            font-size: 15px;
        }
    }
}
.up-event-img {
    height: 150px;
    width: 160px;
}
.up-event-list {
    gap: 14px;
}
.up-event-content {
    h4 {
        font-size: 17px;
    }
}
.tag {
    font-size: 15px;
    padding: 10px 17px;
}
.event-details {
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 26px;
    }
    .side-bar-title {
        font-size: 30px;
    }
}
.date-admin{
    span{
        font-size: 14px;
    }
}
.recent-post-content {
    h4 {
        font-size: 20px;
    }
}
.category-list-box {
    .side-bar-title {
        padding: 15px 26px;
        margin-bottom: 15px;
    }
    .category-list li a {
        padding: 2px 13px;
        font-size: 14px;
    }
}
.blog-details {
    .up-event-img {
        width: 140px;
        height: 120px;
    }
.up-event-list {
        gap: 10px;
        .up-event-content {
    width: 56%;
}
    }
}
.technology-card {
    padding: 20px;
    h4 {
        font-size: 24px;
    }
}
.leading {
    .section-title {
        font-size: 45px;
    }
}
.itu {
    .section-title {
        font-size: 48px;
    }
}
.itu-content {
    & ul {
        li {
            font-size: 18px;
            &::before {
                top: 9px;
            }
        }
    }
}
.conditions {
    h3 {
        font-size: 40px;
    }
}
.conditions-content {
    & ul {
        li {
            font-size: 16px;
        }
    }
}
.iccu-choose-card {
    padding: 25px 20px;
    h4 {
        font-size: 20px;
    }
}
.monitoring-content {
    h3 {
        font-size: 22px;
    }
}
}

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

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

@media (max-width: 991.98px) {
      .inner-banner {
        height: 340px;
            .banner-content {
        h1 {
            font-size: 56px;
            margin-bottom: 8px;
        }
        p {
            font-size: 16px;
        }
    }
    }
    .contact-page {
    padding-top: 60px;
}
.upcoming-event-slider {
    .slick-arrow {
        right: 30px;
    }
    .slick-prev.slick-arrow {
        right: 15%;
        left: unset;
    }
}
.leading-img {
    margin-bottom: 40px;
}
.slick-arrow {
    top: 50%;
}
.technology-slider {
    .slick-next {
        right: -18px;
    }
    .slick-prev {
        left: -18px;
    }
}
.depart-specialist-slider {
    .slick-prev {
        left: -24px;
    }
    .slick-next {
        right: -24px;
    }
}
.conditions{
 .row .col:nth-child(3){
    order: 4;
 }
}
.facilities {
    background-position: right;
}
}

@media (max-width: 575.98px) {
    .inner-banner {
        height: 240px;
        & .banner-content {
            h1 {
                font-size: 30px;
                margin-bottom: 8px;
            }
            p {
                font-size: 14px;
            }
        }
    }
    .contact-page {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .contact-details {
    h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .provide-icon {
        width: 56px;
        height: 56px;
        padding: 16px;
    }
    .provide-card {
        padding-left: 65px;
        height: 114px;
        p, a {
                font-size: 14px;
                line-height: 130%;
            }
    }
}
.contact-details {
        padding-bottom: 0px;
    }
    .contact-form {
    padding-left: 5%;
    padding-right: 5%;
}
    .mb-40 {
        margin-bottom: 20px;
    }
    .latest-event-listing {
    & .recent-post-list.event-big {
        .recent-post-content {
            padding: 8px 18px;
            h4 {
                font-size: 16px;
            }
            & .date-admin {
                span {
                    font-size: 14px;
                }
            }
        }
    }
}
.latest-event-listing {
    & .recent-post-content {
        & .date-admin {
            span {
                font-size: 14px;
            }
        }
    }
        & .row .row {
        & .recent-post-content {
            h4 {
                font-size: 16px;
            }
        }
    }
}
.upcoming-event-slider {
    .slick-arrow {
        top: -18%;
    }
    .slick-prev.slick-arrow {
        right: 27%;
        left: unset;
    }

}
.section-title {
        font-size: 24px;
    }
    .up-event-content {
    h4 {
        font-size: 16px;
    }
}
.up-event-img {
    height: 140px;
    width: 160px;
}
.heightlight {
    border-radius: 20px;
    padding: 15px;
}
body {
    font-size: 14px;
    line-height: 166.667%;
}
    .event-details {
                h2 {
            font-size: 22px;
        }
        h3 {
            font-size: 20px;
        }
    }
    .event-feature-img {
        margin-bottom: 10px;
    img {
        border-radius: 12px;
    }
}
.date-admin {
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 10px;
    gap: 10px;
    .tag{
        font-size: 14px;
    }
}
.event-pagination {
    margin-top: 40px;
    gap: 10px;
    .arrow {
        width: 40px;
        height: 40px;
        padding: 12px;
    }
        .img {
        width: 40px;
        height: 40px;
    }
        .event-arrow {
        width: 170px;
        height: 50px;
        font-size: 12px;
        padding-inline: 5px;
    }
}
    .tag {
        font-size: 14px;
        padding: 6px 15px;
    }
    .blog-details {
    & .event-pagination {
        .event-arrow {
            width: 160px;
                height: 64px;
                border-radius: 12px;
                gap: 4px;
        }
        .img {
            width: 60px;
            height: 70px;
            border-radius: 6px;
            margin-top: -30px;
        }
        .arrow {
            width: 36px;
            height: 36px;
            padding: 11px;
        }
    }
}
.blog-details {
    & .up-event-content {
        h4 {
            font-size: 15px;
        }
    }
}
    .event-details {
        .side-bar-title {
            font-size: 24px;
        }
    }
    .about-banner {
        height: 355px;
    }
    .leading-img {
    img {
        border-radius: 10px;
    }
}
.leading {
        .section-title {
            font-size: 24px;
        }
        .btn-group {
        gap: 7px;
        flex-wrap: wrap;
    }
    }
.department-choose-icon {
    width: 90px;
    height: 75px;
}
.department-choose-card {
    margin-bottom: 15px;
    padding-left: 50px;
        h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    p{
        margin: 0;
    }
}
.technology-slider {
        .slick-next {
            right: -8px;
        }
        .slick-prev {
            left: -8px;
        }
    }
    .about-department-content {
    h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    & ul {
        li {
            font-size: 14px;
            line-height: 130.889%;
            margin-bottom: 10px;
            &::before {
                top: 1px;
            }
        }
    }
}
.depart-specialist-slider {
    .slick-prev {
        left: -8px;
    }
.slick-next {
        right: -8px;
    }
}
.department-faq {
    .section-title {
        font-size: 24px;
    }
}
.department-faq {
    .accordion__title.accordion-active {
        padding: 12px 70px 9px 12px;
    }
        .accordion__item .accordion__title {
        padding: 12px 70px 9px 12px;
    }
        .accordion__title::after {
        right: 12px;
        top: 15px;
    }

}
.department-faq {
    .accordion__item .accordion__content {
        background: transparent;
        padding: 9px 12px 12px 12px;
        padding-top: 0;
        margin: 0;
    }
}
.itu-img {
    img {
        border-radius: 14px;
    }
}
.itu-img2 {
    margin-left: -85px;
    border: 7px solid #FFF;
}
    .itu {
        .section-title {
            font-size: 24px;
        }
    }
    .itu-content {
        & ul {
            li {
                font-size: 14px;
                &::before {
                    top: 6px;
                }
            }
        }
            .btn-group {
        gap: 7px;
        flex-wrap: wrap;
    }
    }
        .conditions {
        h3 {
            font-size: 22px;
        }
    }
    .conditions-content {
        & ul {
            li {
                font-size: 14px;
                line-height: 135%;
                margin-bottom: 10px;
                &::before {
               
                top: 1px;
            }
            }
        }
    }
    .facilities-img {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin-bottom: 8px;
}
.monitoring-content {
        h3 {
            font-size: 17px;
        }
    }
    .monitoring-content {
    & ul {
        li {
            font-size: 15px;
            line-height: 130.889%;
            padding-left: 25px;
            margin-bottom: 10px;
            &::before {
                top: 2px;
            }
        }
    }
}
    .doctor-profile-content {
        h2 {
            font-size: 24px;
        }
        .dr-qualification {
            font-size: 16px;
        }

    }
    .doctor-info-table {
        font-size: 14px;
    }
        .doctor-details {
        h3, h4 {
            font-size: 24px;
            margin-bottom: 10px;
            line-height: 95%;
        }
                & ul {
            li {
                font-size: 14px;
                padding-left: 25px;
                margin-bottom: 10px;
                                &::before {
                    width: 13px;
                    height: 13px;
                    top: 1px;
                }
            }
        }
    }
    .doctor-slider {
    .slick-arrow {
        width: 45px;
        height: 45px;
        top: 97%;
        left: 50%;
    }
}
.doctor-slider {
    .slick-prev {
        left: 33%;
    }
}
}

.header-area.white-header.sticky{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
}


#menu .main-menu ul ul li.current-menu-item > a,
#menu .main-menu ul ul li.current_page_item > a {
    background-color: #241E51;   
    color: #ffffff;
    font-weight: 500;
}

/* ================================
   WP PageNavi – Minimal Style
================================ */

.wp-pagenavi {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

/* Common button style */
.wp-pagenavi a,
.wp-pagenavi span {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.wp-pagenavi a:hover {
    background: #b30000;   /* primary red */
    color: #fff;
    border-color: #b30000;
}

/* Current page */
.wp-pagenavi span.current {
    background: #b30000;
    color: #fff;
    border-color: #b30000;
    cursor: default;
}

/* Disabled prev/next */
.wp-pagenavi span.extend {
    color: #999;
    border-color: #eee;
}

/* Prev & Next buttons */
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
    padding: 0 18px;
    font-weight: 600;
}

/* Remove unwanted text */
.wp-pagenavi .pages {
    display: none;
}
