/**************************************
                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: #04203F;
}

html::-webkit-scrollbar-thumb {
    background-color: #8F172A;
    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: #262626;
    font-family: 'Satoshi Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
}

a,
a:hover,
a:focus {
    color: #8F172A;
    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: 60%;
    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: url(../img/eye-treatment-img.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.right {
    padding: 30px;
    text-align: left;
        background: #04203F;
    .appoinment-form{
        background: transparent;
    }
}
@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: 80%;
    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: 58px;
    height: 58px;
}
/* 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: #262626;
    font-family: 'Satoshi Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
}
.sub-dec{
    color: #262626;
    font-family: 'Satoshi Bold';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height:  118.182%;
}
.title {
    color: #FFF;
    font-family: 'Satoshi Bold';
    font-size: 35px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 15px;
}
.section-title {
    color: #0C0C0C;
    font-family: 'Satoshi Bold';
    font-size: 50px;
    font-style: normal;
    font-weight: normal;
    line-height: 114%;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sub-title{
    color: #8F172A;
    font-family: 'Satoshi Bold';
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.primary-btn {
    width: 260px;
    color: #FFF;
    font-family: 'Satoshi Bold';
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    padding: 15px 10px;
    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;
    text-transform: uppercase;
}
.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    scale: 1 0;
    left: 0;
    background: #006637;
    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: #006637;
}
.primary-btn:focus {
    color: currentColor;
}
.primary-btn:focus{
    color: #FFF;
}
.secondary-btn{
    background: transparent;
    border-color: #04203F;
    color: #04203F;
    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: 'Satoshi Medium';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: normal;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 12px 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: #FFF;
    font-family: 'Satoshi 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{
    width: 140px;
    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;
    background: #FFF;
    justify-content: space-between;
    padding-block: 10px;
    box-shadow: 0vmax 0px 0 60vmax #ffffff;
    clip-path: inset(0vmax -60vmax);
}
.topbar-left,
.topbar-right{
    display: flex;
    align-items: center;
    gap: 15px;
}
.address,
.address a{
   display: flex;
   align-items: center;
   gap: 6px;
   margin-bottom: 0;
   color: #0D0D0D;
   font-family: 'Satoshi Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    transition: 0.5s;
}
.address a:hover{
    color: #980606;
}
.social-media{
    display: flex;
    align-items: center;
    gap: 12px;
    a:hover{
        scale: 1.1;
    }
}
.header-call a{
    font-family: 'Satoshi Bold';
    font-size: 22px;
    letter-spacing: 0.66px;
}
.logo-box{
    display: flex;
    align-items: center;
}
.header-area {
    background-color: #8F172A;
    position: relative;
    z-index: 999;
    right: 0;
    left: 0;
    padding-inline: 40px;
}
.flex-box {
    display: flex;
    align-items: center;
    gap: 28px;
}
.header-btn{
    border-color: #ffffff;
    color: #ffffff;
    &::before,
    &::after{
        background: #006637;
    }
    &:hover{
        border-color: #006637;
    }
}
.ad-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #FFF;
    font-family: 'Satoshi Bold';
    font-size: 19px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0.57px;
    text-transform: uppercase;
    padding-block: 14px;
    position: relative;
    background: #04203F;
}
.close-icon{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.header-area.sticky {
    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: 10px;
}
.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: 15px;
}

#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: 'Satoshi Bold';
    color: #FFF;
    font-size: 19px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0.57px;
    text-transform: uppercase;
    position: relative;
    &::after{
        content: '';
        position: absolute;
        bottom: 20px;
        left: 7px;
        width: 80%;
        height: 1px;
        background: #FFF;
        scale: 0 0;
        transform-origin: left;
        transition: all .5s;
    }
}
#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
  &::after{
    scale: 1 1;
  }
}

#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: -12px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    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: 39px;
    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: 19px;
    text-decoration: none;
    font-weight: normal;
    white-space: nowrap;
    display: block;
    color: #8F172A;
    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: #04203F;
}
#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 (max-width: 1199.98px), (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: #04203F;
        transform: translateX(-100%);
        transition: all .4s;
        top: 120px;
        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: 14px;
        cursor: pointer;
        z-index: 12399994;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #FFF;
        border-bottom: 2px solid #FFF;
        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: #FFF;
        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: #FFF;
        -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: #FFF;
        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: 23px;
        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 {
    background: #FFF;
    .container {
        position: absolute;
        z-index: 1;
        inset: 0;
        display: flex;
        align-items: center;
    }
    .img-cover{
       margin-bottom: -9px;
    }
}
.banner-item{
    position: relative;
}
.banner-content {
    width: 55%;
    h5{
        color: #FF0028;
        font-family: 'Satoshi Bold';
        font-size: 36px;
        font-style: normal;
        font-weight: normal;
        line-height: 61.111%;
        text-transform: uppercase;
        margin-bottom: 15px;
    }
    h1{
        color: #0D0D0D;
        font-family: 'Satoshi Bold';
        font-size: 63px;
        font-style: normal;
        font-weight: normal;
        line-height: 125.397%;
        text-transform: uppercase;
        margin-bottom: 12px;
    }
    p{
        color: #1A1A1A;
        font-size: 22px;
        font-family: 'Satoshi Bold';
        line-height: 136.364%;
    }
}
.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;
    }
}
.slick-dotted.slick-slider.banner-slider {
    margin-bottom: 0;
}
.slick-dots{
    width: auto;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-radius: 14.501px;
    background: #00000048;
    left: 50%;
    transform: translateX(-50%);
    .slick-active{
        background: transparent;
        border: 2px solid #FFF;
        width: 11px;
        height: 11px;
    }
    li{
        width: 11px;
        height: 11px;
        margin-inline: 7px;
        background: #FFF;
        border: 2px solid #FFF;
        border-radius: 50%;
        transition: 0.5s;
    }
    li button {
        opacity: 0;
        width: 100%;
    }
    &::before{
        width: 100%;
    }
}
.banner-slider{
    .slick-dots{
        bottom: 33px;
        z-index: 1;
    }
    .slick-active{
        h5{
           animation-name: slideInRight;
            animation-duration: 0.9s;
            animation-delay: 0.4s;
            animation-fill-mode: forwards;
            opacity: 0; 
        }
        h1{
            animation-name: slideInRight;
            animation-duration: 0.9s;
            animation-delay: 0.6s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        p{
            animation-name: slideInRight;
            animation-duration: 0.9s;
            animation-delay: 0.8s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .btn-group{
            animation-name: slideInRight;
            animation-duration: 0.9s;
            animation-delay: 1s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
    }
}
.btn-group {
    display: flex;
    align-items: center;
    gap: 17px;
}
/* ***** Features ***** */
.features{
    background: #04203F;
    padding-block: 60px;
}
.features-card{
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 10px;
    .card-title{
        color: #FFF;
        margin-bottom: 10px;
    }
    p{
        color: #EDEDED;
        font-size: 18px;
        line-height: 144%;
        margin-bottom: 0;
    }
}
.features-content{
    width: 75%;
}
.card-title{
    color: #000;
    font-family: 'Satoshi Bold';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 133.333%;
}

/* ***** Netralaya ***** */
.netralaya{
    padding-right: 16%;
    .section-title{
        margin-bottom: 20px;
    }
}
.netralaya-img{
    position: relative;
    padding-block: 60px;
    padding-right: 40px;
    z-index: 1;
    &::before, &::after{
        position: absolute;
        content: '';
        width: 130%;
        height: 95%;
        border-radius: 50%;
        opacity: 0.2;
        background: #8F172A;
        left: -240px;
        top: 10px;
        z-index: -1;
    }
    &::after{
        background: #04203F;
        left: -250px;
        top: -40px;
    }
}
/* ***** Counter ***** */
.counter{
    background: #8F172A;
}
.counter-item {
    text-align: center;
    h3 {
        color: #FFF;
        font-family: 'Satoshi Medium';
        font-size: 60px;
        font-style: normal;
        font-weight: normal;
        line-height: 111.667%;
        transition: 0.6s;
        margin-bottom: 6px;
    }
    p {
        color: #FFF;
        font-family: 'Satoshi Bold';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        transition: 0.6s;
        margin-bottom: 0;
    }
}
.about-counter{
    .counter-item{
        p{
            font-size: 20px;
        }
    }
}
/* ***** EYE Treatment ***** */
.eye-treatment{
    position: relative;
}
.section-vector{
    position: absolute;
    left: 0;
    bottom: 0;
}
.eye-treatment-content{
    ul{
        margin-bottom: 30px;
        li{
            display: flex;
            align-items: center;
            gap: 20px;
            color: #3B3B3B;
            font-family: 'Satoshi Medium';
            font-size: 24px;
            font-style: normal;
            font-weight: normal;
            line-height: 300%;
            position: relative;
            transition: 0.5s;
            margin-bottom: 10px;
            cursor: pointer;
            img{
                width: 50px;
            }
            &::after{
                position: absolute;
                content: '';
                width: 86%;
                height: 2px;
                background: #8F172A;
                left: 70px;
                bottom: 0;
                opacity: 0;
                transition: 0.8s;
            }
        }
    }
    .btn-group{
        padding-left: 70px;
    }
}
.eye-treatment-tab li:hover,
.eye-treatment-tab li.active{
    color: #8F172A;
    img{
        filter: brightness(0) saturate(100%) invert(18%) sepia(41%) saturate(5850%) hue-rotate(337deg) brightness(68%) contrast(95%);
    }
    &::after{
        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;
}
.eye-treatment-img{
    position: relative;
    padding-left: 100px;
}
.eye-treatment-img-content{
    width: 60%;
    position: absolute;
    bottom: 60px;
    left: -5px;
    background: #8f1729f3;
    padding: 40px;
    h4{
        color: #FFF;
        font-family: 'Satoshi Bold';
        font-size: 34px;
        font-style: normal;
        font-weight: normal;
        line-height: 115.118%;
        margin-bottom: 10px;
    }
    p{
        color: #FFF;
    }
    img{
        position: absolute;
        width: 70px;
        bottom: 10px;
        right: 10px;
        filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(3620%) hue-rotate(41deg) brightness(117%) contrast(104%);
    }
}
.learn-btn{
    margin-top: 30px;
    color: #FFF;
    font-family: 'Satoshi Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0.54px;
    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;
    text-transform: uppercase;
    &:hover{
        color: #FFF;
        scale: 1.1;
        text-decoration-line: underline;
    }
}
/* ***** Expart ***** */
.exparts{
    background: #04203F;
    .section-title{
        color: #FFF;
    }
}
.exparts-img{
    border-radius: 50%;
    overflow: hidden;
    outline: 11px solid #ffffff1a;
    margin-bottom: 30px;
}
.exparts-card{
    text-align: center;
    padding-top: 15px;
    h5{
        color: #FFF;
        font-family: 'Satoshi Bold';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 136.364%
    }
}
.slick-slide{
    margin: 0 30px;
}
.slick-list{
    margin: 0 -30px;
}
.exparts-slider{
    .slick-dots{
        background: transparent;
        bottom: -50px;
        li{
            width: 8px;
            height: 8px;
            background: #D9D9D9;
        }
        .slick-active{
            border-color: #8F172A;
            background: transparent;
        }
    }
}
/* ***** Corner ***** */
.corner{
    .container{
        position: relative;
    }
    .btn-group{
        margin-top: 30px;
    }
    .section-title{
        margin-bottom: 15px;
    }
}
.corner-logo{
    position: absolute;
    right: 0;
    bottom: 0;
}
/* ***** Benefits ***** */
.benefits{
    background: #8F172A;
    .section-title, p{
        color: #FFF;
    }
    p{
        line-height: 160%;
    }
}
.benefits-card{
    height: 100%;
    border-radius: 20px;
    background: #FFF;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.5s;
    .card-title{
        margin-bottom: 6px;
    }
    p{
        color: #000;
        font-size: 18px;
        line-height: 144.444%;
        margin-bottom: 0;
    }
    &:hover{
        background: #e6e6e6;
    }
}
.benefits-card-content{
    width: 82%;
}
/* ***** Why Choose ***** */
.why-choose{
    padding-left: 16%;
    overflow: hidden;
    position: relative;
}
.why-choose-img{
    position: relative;
    margin-left: 30px;
    z-index: 1;
    &::before, &::after{
        position: absolute;
        content: '';
        width: 130%;
        height: 107%;
        border-radius: 50%;
        opacity: 0.2;
        background: #8F172A;
        right: -190px;
        top: -45px;
        z-index: -1;
    }
    &::after{
        background: #04203F;
        right: -205px;
        top: -105px;
        height: 103%;
    }
}
.why-choose-card{
    display: flex;
    align-content: center;
    gap: 20px;
    margin-bottom: 40px;
    &:hover{
        .card-title{
            color: #8F172A;
        }
        .why-choose-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.why-choose-icon{
    width: 78px;
    height: 78px;
    background: #8F172A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    &::after {
        content: "";
        position: absolute;
        inset: -7px;
        border-radius: 50%;
        border: 4px solid #8F172A;
        border-left-color: #8F172A;
        border-top-color: transparent;
        transform: rotate(25deg);
    }
}
.why-choose-centent{
    width: 85%;
    p{
        font-family: 'Satoshi Regular';
        font-size: 18px;
        line-height: 144.444%;
        margin-bottom: 0;
    }
}
/* ***** Network ***** */
.network{
    background: #04203F;
    .sub-title{
        color: #E90025;
        font-size: 28px;
        line-height: 121.429%;
    }
    .section-title{
        color: #FFF;
    }
    h3{
        color: #FFF;
        font-family: 'Satoshi Bold';
        font-size: 34px;
        font-style: normal;
        font-weight: normal;
        line-height: 191.176%;
        text-transform: uppercase;
        margin-bottom: 20px;
    }
}
.mediclaim-card{
    border-radius: 10px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 98px;
    img{
        height: 100%;
        object-fit: contain;
    }
}
.flat-line{
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 55.95%, rgba(153, 153, 153, 0.00) 100%);
}
.mediclaim-slider, .insurance-slider{
    padding-inline: 40px;
    .slick-slide{
        margin: 0 15px;
    }
    .slick-list{
        margin: 0 -15px;
    }
}
.slick-arrow{
    width: 48px;
    height: 48px;
    background: #0C2B4D;
    border-radius: 50%;
    transition: 0.5s;
    z-index: 2;
    &::before{
        position: absolute;
        content: '';
        width: 60%;
        height: 60%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: url(../img/slider-arrow.webp) no-repeat;
        background-position: center;
        background-size: 100%;
        transition: 0.5s;
    }
    &:hover,
    &:focus{
        background: #E90025;
        &::before{
            filter: brightness(0) saturate(100%) invert(13%) sepia(22%) saturate(3646%) hue-rotate(184deg) brightness(93%) contrast(95%);
        }
    }
}
.slick-prev{
    &::before{
        transform: translate(-50%, -50%) rotateY(180deg);
    }
}
/* ***** WE Crae ***** */
.video-box{
    margin-block: 60px;
    position: relative;
    display: block;
    z-index: 1;
    &:hover{
        .play-btn{
            background: #8F172A;
            img{
                filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7485%) hue-rotate(311deg) brightness(112%) contrast(103%);
            }
        }
    }
    &::before, &::after{
        position: absolute;
        content: '';
        width: 50%;
        height: 100%;
        top: 35px;
        left: -35px;
        background: #8F172A;
        z-index: -1;
    }
    &::after{
        left: unset;
        right: -35px;
        top: -35px;
        background: #04203F;
    }
}
.play-btn {
    width: 78px;
    height: 78px;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    outline: 1px solid #FFF;
    outline-offset: 20px;
    z-index: 1;
    transition: 0.5s;
    p{
        color: #FFF;
        position: absolute;
        bottom: -75px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        width: 200px;
        text-align: center;
        z-index: 2;
        text-shadow: 0px 5px 30px #000;
    }
}
.play-btn:before{
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 80px;
    height: 80px;
    background: rgb(255 255 255 / 74%);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/* ***** Searchig ***** */
.searching{
    background: url(../img/searching-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    .btn-group{
        margin-top: 60px;
        margin-bottom: -95px;
    }
}
.searching-card{
    border-radius: 19px;
    border: 1px solid #8F172A;
    background: #FFF;
    padding: 10px;
    position: relative;
    text-align: center;
    padding-top: 110px;
    overflow: hidden;
    height: 350px;
    z-index: 1;
    .card-title{
        margin-bottom: 5px;
        font-size: 20px;
        transition: 0.5s;
    }
    p{
        font-size: 18px;
        line-height: 144.444%;
        color: #000;
        font-family: 'Satoshi Regular';
        transition: 0.5s;
    }
    &::before{
        position: absolute;
        content: '';
        width: 65%;
        height: 40%;
        border-radius: 50%;
        background: #8F172A;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.5s;
        z-index: -1;
    }
    &:hover{
        .card-title, p{
            color: #FFF;
        }
        .searching-icon{
            transform: rotateY(-180deg) translateX(50%);
        }
        &::before{
            width: 100%;
            height: 100%;
            border-radius: 0;
            top: 0;
        }
    }
}
.searching-icon{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
}
/* ***** Gallery ***** */
.gallery-card{
    display: block;
    overflow: hidden;
    position: relative;
    img{
        margin-bottom: -6px;
    }
    span{
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.40);
        scale: 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }
    &:hover{
        span{
            scale: 1 1;
        }
    }
}
.lenght-f{
    height: 460px;
    margin-bottom: 22px;
}
.lenght-s{
    height: 245px;
}
/* ***** Testimonial ***** */
.appoinment{
    background: url(../img/appoinment-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    .col-lg-5{
        margin-left: auto;
    }
}
.appoinment-form{
    background: #04203F;
    padding: 20px;
    padding-top: 0;
}
.disclimer{
    margin-top: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 20px;
    li{
        width: 45%;
        color: #EAEAEA;
        font-family: 'Satoshi Regular';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 216.667%;
    }
}
/* ***** Finding ***** */
.finding{
    background: #8F172A;
    padding-block: 140px;
    .section-title{
        color: #FFF;
    }
    p, p a{
        color: #EFEFEF;
    }
    p a{
        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;
        &:hover{
             text-decoration-line: none;
        }
    }
}
/* ***** Testimonial ***** */
.testimonial{
    .btn-group{
        justify-content: end;
    }
    img{
        width: 100%;
    }
}
/* ***** Eye-care-blogs ***** */
.eye-care-blogs{
    background: url(../img/care-blogs-bg.webp) no-repeat;
    background-size: cover;
}
.eye-care-blogs-card{
    position: relative;
    overflow: hidden;
    .img-cover{
        margin-bottom: -6px;
    }
    &:hover{
        .img-cover{
            scale: 1.1;
        }
        .eye-care-blogs-title{
            color: #980606;
        }
    }
}
.eye-care-blogs-date{
    color: #FFF;
    font-family: 'Satoshi Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    span{
        width: 5px;
        height: 5px;
        background: #FFF;
        border-radius: 50%;
    }
}
.eye-care-blogs-card-content{
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    padding: 50px;
    padding-top: 140px;
    .eye-care-blogs-date{
        color: #FFF;
        font-family: 'Satoshi Medium';
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        line-height: 150%;
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        gap: 8px;
        span{
            width: 5px;
            height: 5px;
            background: #FFF;
            border-radius: 50%;
        }
    }
    p{
        font-size: 18px;
        color: #FFF;
        line-height: 133.333%;
        margin-bottom: 0;
    }
}
.eye-care-blogs-title{
    color: #FFF;
    font-family: 'Satoshi Bold';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 133.333%;
    margin-bottom: 7px;
    transition: 0.5s;
}
.eye-care-blogs-sidebar-card{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    &:hover{
        h4{
            color: #980606;
        }
    }
}
.read-more-btn{
    color: #FFF;
    font-family: 'Satoshi Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 7px;
    &:hover{
        color: #980606;
        gap: 12px;
        img{
            filter: brightness(0) saturate(100%) invert(11%) sepia(93%) saturate(6456%) hue-rotate(27deg) brightness(73%) contrast(121%);
        }
    }
}
.eye-care-sidebar-blog-img{
    width: 180px;
    height: auto;
}
/* ***** Faq ***** */
.faq{
    position: relative;
    background: url(../img/faq-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.accordion__item {
    margin: 19px 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: 10px 50px 10px 20px;
    margin-bottom: 0;
    font-family: 'Satoshi Bold';
    font-size: 21px;
    text-decoration: none;
    color: #000;
    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__title.accordion-active{
    color: #8F172A;
}

.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: 17px 40px 17px 15px;
    color: #000;
    line-height: 1.667;
    margin-bottom: 0;
    display: none;
    border-radius: 10px;
    background: #F2F1F0;
    margin: 0 16px 16px 16px;
    p{
        margin-bottom: 0;
    }
}
/* ***** Our Location ***** */
.our-location{
    padding-right: 16%;
}
.location-img{
    position: relative;
    padding-block: 30px;
    padding-right: 0;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        width: 130%;
        height: 95%;
        border-radius: 50%;
        opacity: 0.2;
        background: #04203F;
        left: -225px;
        top: -20px;
        z-index: -1;
    }
}
.location-contant-card{
    border-radius: 22px;
    background: #FFF;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    padding: 16px;
    margin-block: 50px;
    iframe{
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 22px;
        margin-bottom: -6px;
    }
    h4{
        color: #000;
        font-family: 'Satoshi Bold';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 145.455%;
        margin-bottom: 2px;
    }
    p, p a{
        font-family: 'Satoshi Regular';
        font-size: 19px;
        color: #000;
    }
    p a:hover{
        color: #980606;
    }
}
.location-content-card-text{
    padding-left: 30px;
}
/* ***** Enhance ***** */
.enhance{
    background: url(../img/enhancing-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-block: 170px;
    .section-title, p{
        color: #FFF;
    }
    .btn-group{
        justify-content: center;
    }
    .primary-btn{
        width: 337px;
    }
}
/*********************.
        Footer
**********************/
footer {
    background: #100E11;
    width: 100%;
    padding-top: 60px;
    h5{
        color: #FFF;
        font-family: 'Satoshi Bold';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 177.778%;
    }
}
footer a:hover{
    color: #980606;
}
.footer-media{
    gap: 20px;
    justify-content: center;
    margin-bottom: 35px;
    a{
        img{
            filter: brightness(0) saturate(100%) invert(91%) sepia(93%) saturate(2%) hue-rotate(251deg) brightness(119%) contrast(100%);
        }
    }
}
.footer-first{
    text-align: center;
    h6{
        color: #FFF;
        font-family: 'Satoshi Medium';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 255.556%;
    }
}
footer p,
footer p a{
    color: #FFF;
    font-family: 'Satoshi Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 166%;
}
footer ul li{
    font-family: 'Satoshi Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 255.556%;
    position: relative;
    transition: 0.5s;
    padding-left: 14px;
    a{
        color: #EBEBEB;
        transition: 0.6s;
    }
    &:hover{
        transform: translateX(5px);
        &::after{
            background: #980606;
        }
    }
    &::after{
        content: '';
        position: absolute;
        width: 5px;
        height: 5px;
        background: #ffffff;
        top: 20px;
        left: 0;
        transition: 0.5s;
    }
}
.footer-title {
    color: #FFF;
    font-family: 'Satoshi Bold';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    text-transform: uppercase;
    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;
    }
}
/*******************************
  Inner Page
********************************/
/* About Page */
.counter{
    .section-title,p{
        color: #FFF;
    }
}
.mission{
    padding-right: 16%;
    margin-top: 80px;
    margin-bottom: 40px;
    .section-title{
        margin-bottom: 20px;
    }
}
.mission-content{
    background: url(../img/mission-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-block: 40px;
}
.vision{
    padding-left: 16%;
    margin-bottom: 80px;
}
.vision-content{
    background: url(../img/vision.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-block: 40px;
}
.journey-content{
    background: #04203F;
    position: relative;
    .section-title, p{
        color: #FFF;
    }
    img {
        position: absolute;
        left: 0;
        height: 100%;
        top: 0;
        object-fit: cover;
        width: 42%;
    }
    .col-lg-6{
        padding-left: 3%;
    }
}
.ms-auto{
    margin-left: auto;
}
.approach{
    position: relative;
}
.approach-vector{
    position: absolute;
    right: 0;
    bottom: 0;
}
.approach-img{
    position: relative;
    padding-left: 50px;
    z-index: 2;
    &::before, &::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 107%;
        border-radius: 50%;
        opacity: 0.2;
        background: #8F172A;
        right: -20px;
        top: -30px;
        z-index: -1;
    }
    &::after {
        background: #04203F;
        top: -60px;
        right: -10px;
    }
}
.research{
    background: #F3F3F3;
}
.research-img{
    padding-left: 0;
    padding-right: 50px;
    z-index: 2;
    margin-top: 70px;
    &::before{
        right: 25px;
    }
    &::after{
        right: 25px;
    }
}
.about-network{
    background: #FFF;
    .section-title{
        color: #050505;
    }
    h3{
        color: #000;
    }
    .mediclaim-card {
        background: #F4F4F4;
    }
    .slick-arrow{
        background: rgba(12, 43, 77, 0.50);
        &:hover,
        &:focus{
            background: #0C2B4D;
            &::before{
                filter: unset;
            }
        }
    }
    .flat-line {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #C5C5C5 55.95%, rgba(153, 153, 153, 0.00) 100%);
    }
}
.about-location{
    margin-top: 70px;
}
/* Doctor Listing */
.doctor-listing{
    position: relative;
    .section-title{
        margin-bottom: 25px;
    }
}
.doctor-list-card{
    border: 1px solid #8F172A;
    padding: 8px;
    height: 100%;
    position: relative;
    text-align: center;
    display: block;
    img{
        margin-bottom: 10px;
    }
    h4{
        color: #141414;
        font-family: 'Satoshi Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 127.273%;
        margin-bottom: 5px;
    }
    p{
        font-size: 16px;
        color: #313131;
        line-height: 137.5%;
    }
    .btn-group{
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    .primary-btn{
        background: #8F172A;
    }
    .doctor-btn{
        background: transparent;
    }
}
.doctor-btn{
    color: #000;
    background: transparent;
    border: 1px solid #868686;
}
.why-do{
    background: #F3F3F3;
    .approach-img{
        margin-top: 30px;
    }
}
.doctor-finding{
    padding-block: 70px;
}
/* Doctor Details  */
.doctor-details{
    background: #FFF7F8;
}
.doctor-dtls-content{
    h1{
        color: #000;
        font-family: 'Satoshi Black';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: 125%;
        text-transform: uppercase;
    }
    h6{
        color: #000;
        font-family: 'Satoshi Medium';
        font-size: 19px;
        font-style: normal;
        font-weight: normal;
        line-height: 178.947%;
        margin-bottom: 10px;
    }
    h5{
        color: #0C0C0C;
        font-family: 'Satoshi Bold';
        font-size: 19px;
        font-style: normal;
        font-weight: normal;
        line-height: 157.895%;
        text-transform: uppercase;
    }
    p{
        font-size: 19px;
        font-family: 'Satoshi Regular';
        line-height: 27px; /* 142.105% */
    }
    .btn-group{
        flex-direction: column;
        align-items: start;
    }
}
.personal-web-lisk{
    color: #3157F2;
    font-family: 'Satoshi Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 135%;
    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;
    display: flex;
    align-items: center;
    gap: 10px;
}
.schedule-card {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid #D5D5D5;
    background: #F4F4F4;
}
.schedule-title {
    color: #FFF;
    font-family: 'Satoshi Bold';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 70.833%;
    text-transform: uppercase;
    padding: 20px 12px;
    background: #04203F;
    text-align: center;
}

.location {
    color: #FFF;
    text-align: center;
    font-family: 'Satoshi Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 135%;
    background: #8F172A;
    text-align: center;
    padding: 10px;
}
table {
    width: 100%;
    border-collapse: collapse;
    color: #000;
    font-family: 'Satoshi Medium';
    font-size: 19px;
    font-style: normal;
    font-weight: normal;
    line-height: 180.158%;
}
td {
    padding: 8px 14px;
}
td:last-child {
    text-align: right;
}
tr:not(:last-child) td {
    border-bottom: 1px solid #000000;
}
.doctor-about-content{
    h5{
        color: #030303;
        font-family: 'Satoshi Bold';
        font-size: 27px;
        font-style: normal;
        font-weight: normal;
        line-height: 137.037%;
        margin-bottom: 15px;
        a{
            color: #113ED0;
            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;
            &:hover{
                color: #980606;
            }
        }
    }
    h3{
        color: #000;
        font-family: 'Satoshi Bold';
        font-size: 40px;
        font-style: normal;
        font-weight: normal;
        line-height: 142.5%;
        text-transform: uppercase;
        margin-bottom: 5px;
    }
}
.expertise{
    background: url(../img/doctor-expertise-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-right: 16%;
    .section-title{
        font-size: 40px;
    }
}
.proficiency{
    .section-title{
        font-size: 40px;
    }
}
.doctor-gallery{
    background: #04203F;
    .section-title{
        color: #FFF;
    }
}
.ready{
    background: url(../img/ready.webp) no-repeat;
    background-size: cover;
    .section-title, p{
        color: #FFF;
        margin-bottom: 20px;
    }
    .btn-group{
        justify-content: center;
    }
    .primary-btn{
        width: auto;
        padding-inline: 50px;
    }
}
.find-btn{
    background: transparent;
    border-color: #FFFF;
}
/* Treatment Page */
.treatment-banner{
    .primary-btn{
        width: 318px;
    }
}
.cataract-treatment{
    .primary-btn{
        width: 381px;
    }
}
.understanding{
    padding-left: 16%;
    background: #F3F3F3;
}
.understanding-content{
    .section-title{
        font-size: 40px;
    }
    .primary-btn{
        width: 318px;
    }
}
.understanding-img{
    img{
        border-radius: 20px 0 0 20px;
    }
}
.symptoms{
    background: #8F172A;
    .section-title{
        color: #FFF;
    }
}
.symptoms-card{
    border-radius: 20px;
    background: #FFF;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease-in-out;
    &:hover{
        transform: translateY(-10px);
        h5{
            color: #fff;
        }
        .sympotoms-icon{
            img{
                transform: rotate(360deg);
            }
        }
    }
}
.sympotoms-icon{
    width: 91px;
    height: 91px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8F172A;
    margin-inline: auto;
    margin-bottom: 20px;
}
.comprehensive-box{
    background: linear-gradient(269deg, #FEE 25.74%, #E5E5E5 79.38%);
    clip-path: polygon( 0% 50%,0% 50%,0.295% 41.89%,1.148% 34.196%,2.514% 27.022%,4.346% 20.471%,6.597% 14.645%,9.222% 9.647%,12.173% 5.581%,15.405% 2.549%,18.871% 0.654%,22.525% 0%,100% 0%,100% 100%,22.525% 100%,22.525% 100%,18.871% 99.346%,15.405% 97.451%,12.173% 94.419%,9.222% 90.353%,6.597% 85.355%,4.346% 79.529%,2.514% 72.978%,1.148% 65.804%,0.295% 58.11%,0% 50% );
    padding-block: 30px;
    margin-bottom: 60px;
    .research-img {
        margin-left: 60px;
        padding-right: 0;
        margin-top: 70px;
        &::before, &::after{
            width: 110%;
            top: -27px;
            right: -20px;
        }
        &::after {
            right: -15px;
            top: -60px;
        }
    }
    .col-lg-7{
        padding-inline: 40px;
        padding-right: 80px;
    }
    .section-title{
        margin-bottom: 30px;
    }
}
.determine-box{
    background: linear-gradient(269deg, #FEE 25.74%, #E5E5E5 79.38%);
    clip-path: polygon( 100% 50%,100% 50%,99.705% 41.89%,98.852% 34.196%,97.486% 27.022%,95.654% 20.471%,93.403% 14.645%,90.778% 9.647%,87.827% 5.581%,84.595% 2.549%,81.129% 0.654%,77.475% 0%,0% 0%,0% 100%,77.475% 100%,77.475% 100%,81.129% 99.346%,84.595% 97.451%,87.827% 94.419%,90.778% 90.353%,93.403% 85.355%,95.654% 79.529%,97.486% 72.978%,98.852% 65.804%,99.705% 58.11%,100% 50% );
    .research-img {
        margin-right: 60px;
        margin-left: 0;
    }
    .col-lg-7 {
        padding-inline: 40px;
        padding-left: 80px;
        
    }
}
.personalized{
    background: #04203F;
}
.personalized-card{
    border-radius: 30px;
    background: #FFF;
    padding: 30px;
    height: 100%;
    h3{
        color: #000;
        font-family: 'Satoshi Bold';
        font-size: 34px;
        font-style: normal;
        font-weight: normal;
        line-height: 117.647%;
        text-transform: uppercase;
        margin-bottom: 20px;
    }
}
.personalized-img{
    margin-bottom: 20px;
    img{
        border-radius: 30px;
    }
}
.risk{
    position: relative;
    padding-left: 16%;
    overflow: hidden;
    padding-top: 70px;
    h3{
        color: #000;
        font-family: 'Satoshi Bold';
        font-size: 40px;
        font-style: normal;
        font-weight: normal;
        line-height: 142.5%;
        text-transform: uppercase;
    }
}
.risk-img{
    padding-left: 60px;
    position: relative;
    img{
        margin-bottom: -8px;
    }
    &::before, &::after {
        position: absolute;
        content: '';
        width: 110%;
        height: 132%;
        border-radius: 50%;
        opacity: 0.2;
        background: #8F172A;
        right: -110px;
        top: -40px;
        z-index: -1;
    }
    &::after {
        background: #04203F;
        right: -105px;
        top: -70px;
    }
}
.surgery{
    background: #8F172A;
    .section-title{
        color: #FFF;
    }
}
.surgery-img{
    img{
        border-radius: 0 25px 25px 0;
    }
}
.surgery-box{
    padding-right: 16%;
}
.surgery-card{
    img{
        margin-bottom: 5px;
    }
    .card-title{
        margin-bottom: 10px;
    }
    .card-title, p{
        color: #FFF;
    }
    p{
        font-size: 18px;
    }
}
.cataract-faq{
    .section-title{
        font-size: 40px;
    }
}
.looking{
    background: url(../img/looking.webp) no-repeat;
    background-size: cover;
    padding-top: 130px;
    padding-bottom: 400px;
    .section-title, p{
        color: #FFF;
    }
    .btn-group{
        justify-content: center;
        margin-top: 40px;
    }
}
.feel-box{
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
    padding: 40px;
    margin-top: -350px;
}
.feel-img{
    img{
        margin-bottom: -6px;
        border-radius: 30px;
    }
}
.feel{
    .title{
        color: #000;
        font-family: 'Satoshi Bold';
        font-size: 41px;
        font-style: normal;
        font-weight: normal;
        line-height: 139.024%;
        text-transform: uppercase;
    }
    .form-control{
        font-size: 19px;
        padding: 22px 21px;
    }
    .form-control::placeholder{
        color: #000;
    }
    .primary-btn{
        width: 185px;
        padding: 22px 10px;
    }
}

/* **************************************************
  Inner Page Style 
  ************************************************ */
.inner-banner{
    position: relative;
    .banner-content {
    width: 52%;
}
}
.contact-page {
    position: relative;
    padding-top: 70px;
    padding-bottom: 66px;
    z-index: 1;
    .top-vector{
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .bottom-vector {
        position: absolute;
        bottom: -60%;
        right: 0;
        z-index: -1;
    }
    .bottom-vector2 {
        position: absolute;
        bottom: -60%;
        left: 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;
    h3{
        color: #FFF;
        font-family: 'Satoshi Bold';
        font-size: 42px;
        font-style: normal;
        font-weight: normal;
        line-height: 135.714%;
        text-transform: uppercase;
        margin-bottom: 20px;
    }
    
    .provide-card {
    width: 100%;
        display: flex;
        align-items: center;
        padding-block: 0;
        position: relative;
        margin-bottom: 30px;
        padding-left: 60px;
        h5 {
        color: #FFF;
        font-family: 'Satoshi Bold';
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 166.667%;
    }
    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;
                img{
                    filter: brightness(0) invert(1);
                }
            }
        }
}
.provide-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    outline: none;
    position: absolute;
    left: 0;
    top: 7px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
}
.contact-form {
    padding-left: 5%;
    .section-title{
        margin-bottom: 6px;
    }
    p{
        margin-bottom: 25px;
    }
    .form-control{
        border-radius: 12px;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.75);
        background: #F6F6F6;
        padding: 22px 22px;
        color: #171717;
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        line-height: 88.235%;
        &::placeholder{
            color: #171717;
        }
    }
    form .primary-btn {
    width: auto;
    cursor: pointer;
    padding-inline: 68px;
    padding-block: 20px;
}
}

.contact-youtube{
    padding-block: 50px;
    .primary-btn {
    width: auto;
    font-size: 18px;
    padding: 9px 8px;
    padding-right: 36px;
    gap: 14px;
    margin-top: 23px;
    margin-bottom: 80px;
}
.video-box {
    margin-block: 0;
    border-radius: 40px;
    border: 1px solid #000;
    background: #FFF;
    padding: 33px;
    &::after{
        content: '';
            inset: 33px;
            border-radius: 20px;
            opacity: 0.3;
            background: #080808;
            z-index: 1;
            width: auto;
            height: auto;
    }
    &::before{
        display:none;
    }
    .img-cover{
        border-radius: 20px;
        margin-bottom: -8px;
    }
    .play-btn {
    z-index: 2;
    outline: none;
    width: 130px;
    height: 130px;
    img{
        transform: scale(1.3);
    }
}
.play-btn:before {
    width: 120px;
    height: 120px;
}
}
}
.map{
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
}
.gallery-page{
    .gallery-card {
    height: 100%;
}
}

.testimonial-card{
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.20);
    position: relative;
    margin-top: 46px;
    &:hover{
        box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.20);
        .testimonial-content{
            &::after{
                transform: scale(2.4);
            }
        }
    }
}
.testimonial-title {
    color: #0C0C0C;
    font-family: 'Satoshi Bold';
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.testimonial-content {
    padding: 50px;
    padding-top: 90px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    &::after{
        content: '';
        width: 458.563px;
        height: 417px;
        position: absolute;
        background: rgba(255, 218, 224, 0.50);
        z-index: -1;
        top: 0;
        bottom: 0;
        right: 0;
        border-radius: 50%;
        transform: translate(40%, -40%);
        transition: all .5s;
    }
}
.testimonial-name {
    color: #FFF;
    font-family: 'Satoshi Bold';
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}
.testimonial-footer {
    border-radius: 0 0 20px 20px;
    background: #8F172A;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
}
.testimonial-quote {
    width: 123px;
    height: 123px;
    background: #04203F;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-bottom: -41px;
    position: absolute;
    right: 50px;
    top: -45px;
    z-index: 2;
}

.video-testimonials-box{
    border-radius: 20px;
    background: #FFF;
    padding: 30px;
    .img-box{
        height: 272px;
        width: 100%;
        margin-bottom: 30px;
        position: relative;
        .video-img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }
    }
    .play-btn {
    outline: 0;
    background: #8F172A;
    position: absolute;
    bottom: -40px;
    transform: unset;
    top: unset;
    right: 30px;
    left: unset;
    img{
        filter: brightness(0) invert(1);
    }
}
.testimonial-name{
    color: #000;
}
}
.video-testimonials {
    padding-block: 100px;
    background: #04203F;
    .section-title{
        color: #FFF;
    }
    .slick-arrow {
    background: #0c2b4d00;
    border: 1px solid #fff;
    opacity: 1;
}
.slick-next {
    right: -90px;
}
.slick-prev {
    left: -90px;
}
.slick-arrow {
    &:hover, &:focus {
        background: #fff;
        
    }
}
}

.blog-listing{
    position: relative;
    .about-vector{
        left: unset;
        bottom: 0;
        right: 0;
    }
}
.blog-img{
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 9px;
    display: block;
    img{
        margin-bottom: -10px;
    }
}
.blog-date{
    color: #9D9D9D;
    font-family: 'Satoshi Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
    margin-bottom: 5px;
}
.blog-title{
    color: #1C1C1C;
    font-family: 'Satoshi Bold';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 131.818%;
    margin-bottom: 12px;
    transition: 0.5s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.link-btn{
color: #8F172A;
font-family: 'Satoshi Medium';
font-size: 15px;
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;
text-transform: uppercase;
}
.arrow-right{
   display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 2px solid;
    border-left: 2px solid;
    transform: rotate(132deg);
}
.blog-card:hover{
    .blog-img{
        img{
            scale: 1.1;
        }
    }
    .blog-title{
        color: #6C0000;
    }
}




.date-admin {
    color: #9D9D9D;
    font-family: 'Satoshi Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 24px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
}
.event-feature-img {
    margin-bottom: 30px;
    img{
        border-radius: 0;
    }
}
.event-details{
    h2{
        color: #000;
        font-family: 'Satoshi Bold';
        font-size: 29px;
        font-style: normal;
        font-weight: normal;
        line-height: 113.636%;
        margin-bottom: 14px;
        text-transform: uppercase;
    }
    h3{
        color: #000;
        font-family: 'Satoshi Bold';
        font-size: 25px;
        font-style: normal;
        font-weight: normal;
        line-height: 113.636%;
        margin-bottom: 14px;
        text-transform: uppercase;
        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: #000;
    font-family: 'Satoshi Bold';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
}

.event-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    .event-arrow {
    width: 286px;
    height: 86px;
    border-radius: 0;
    border: 1px solid #CECECE;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 10px;
    text-transform: capitalize;
    color: #000;
    font-family: 'Satoshi Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
    
    &:hover{
        color: #980606;
        .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: 107px;
    height: 60px;
    overflow: hidden;
    display: inline-block;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
}


.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: 10px;
        margin-bottom: 15px;
        border-bottom: 1px solid #D8D8D8;
        padding-bottom: 15px;
        &:last-child{
            padding-bottom: 0;
            border: 0;
            margin: 0;
        }
        &:hover{
            h4{
                color: #980606;
            }
        }
}
.up-event-img {
   width: 75px;
height: 53px;
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
}
.up-event-content {
    width: 70%;
    h4 {
            text-transform: unset;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            color: rgb(28, 28, 28);
            font-family: "Satoshi Bold";
            font-size: 17px;
            font-style: normal;
            font-weight: 700;
            line-height: 21px;
            overflow: hidden;
            margin: 0px;
    }

}
.upcoming-events-list {
    background: #F4F4F4;
    margin-bottom: 30px;
    padding: 15px;
    .up-event-list:last-child {
        padding-bottom: 10px;
    }
}
}
.category-list-box{
    margin-bottom: 30px;
    overflow: hidden;
    .side-bar-title {
    margin-bottom: 20px;
}
    .category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 10px;
        list-style: none;
        margin: 0;
        padding-top: 0;
        padding: 0;

}

.category-list li a {
  display: inline-block;
        padding: 4px 8px;
        font-size: 17px;
        color: #160F41;
        text-decoration: none;
        transition: all 0.3s ease;
        background: transparent;
        border-radius: 4px;
        border: 1px solid #B3B3B3;
        font-family: 'Satoshi Medium';
}

.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: 0;
        gap: 10px;
        
    }
        .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;
}
.blog-vector{
    position: absolute;
    right: 0;
    bottom: 4%;
    z-index: -1;
}
/*******************************
  Responsive
********************************/
@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    .right {
        .appoinment-form {
            padding: 0;
        }
    }
	.header-area {
    padding-inline: 20px;
}
    .address, .address a {
        font-size: 18px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 17px;
        padding: 20px 3px;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 6px;
    }
    #menu ul ul li a{
        font-size: 17px;
    }
    #menu > .main-menu > ul > li > a {
        &::after {
            bottom: 16px;
            left: 3px;
        }
    }
    #menu li:hover>ul>li {
        height: 37px;
    }
    .logo{
        width: 170px;
    }
    .nabh-logo{
        width: 90px;
    }
	.banner-content {
    h1 {
        font-size: 55px;
    }
}
	.features-card {
    p {
        font-size: 17px;
    }
}
    .primary-btn{
        font-size: 16px;
        width: 240px;
        padding: 12px 10px;
    }
    .netralaya {
        padding-right: 9%;
    }
    .section-title {
        font-size: 46px;
    }
    .sub-title {
        font-size: 26px;
    }
    .section-vector {
        width: 161px;
    }
    .our-location {
        padding-right: 9%;
    }
    .why-choose {
        padding-left: 9%;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 23px;
        width: 9px;
        height: 9px;
    }
}

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

@media (max-width: 1440px),
(max-width: 1366px) {
    .right {
        padding: 20px;
        .appoinment-form {
            background: transparent;
            padding: 0;
        }
    }
    .form-control{
        padding: 10px 12px;
    }
    .sec-gap{
        padding: 50px 0;
    }
    p{
        font-size: 16px;
    }
    .header-area {
        padding-inline: 10px;
    }
    .topbar{
        padding-block: 5px;
    }
    #menu {
        padding-block: 5px;
    }
    .address, .address a {
        font-size: 16px;
        gap: 3px;
    }
    .address{
        img{
            width: 16px;
        }
    }
    .address a{
        img{
            width: 20px;
        }
    }
    .social-media{
        a{
            img{
                width: 23px;
            }
        }
    }
    #menu>.main-menu>ul>li>a{
        font-size: 15px;
        padding: 20px 3px;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 8px;
    }
    .logo {
        width: 140px;
    }
    .nabh-logo {
        width: 70px;
    }
    .primary-btn {
        font-size: 14px;
        width: 210px;
        padding: 10px 10px;
    }
    #menu ul ul li a {
        font-size: 15px;
    }
    #menu li:hover>ul>li {
        height: 35px;
    }
    #menu > .main-menu > ul > li > a {
        &::after {
            left: 4px;
        }
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        right: -9px;
        width: 7px;
        height: 7px;
    }
    .ad-bar {
        font-size: 16px;
        padding-block: 8px;
        .close-icon{
            width: 16px;
        }
        img{
            width: 28px;
        }
    }
    .banner-content {
        h5 {
            font-size: 26px;
            margin-bottom: 10px;
        }
        h1 {
/*             font-size: 53px; */
			font-size: 35px;
            margin-bottom: 5px;
        }
        p {
            font-size: 18px;
        }
    }
    .secondary-btn{
        img{
            width: 18px;
        }
    }
    .card-title {
        font-size: 19px;
    }
    .features-card {
        gap: 5px;
        .card-title{
            margin-bottom: 5px;
        }
        p {
            font-size: 14px;
        }
    }
    .feature-icon{
        img{
            width: 80%;
        }
    }
    .netralaya {
        padding-right: 8%;
        .section-title{
            margin-bottom: 10px;
        }
    }
    .section-title {
        font-size: 38px;
    }
    .sub-title {
        font-size: 23px;
    }
    .netralaya-img {
        padding-block: 50px;
        padding-right: 10px;
        &::before, &::after {
            left: -167px;
            top: 10px;
        }
        &::after {
            left: -175px;
            top: -15px;
        }
    }
    .counter-item {
        h3 {
            font-size: 45px;
        }
        p{
            font-size: 18px;
        }
    }
    .sub-dec {
        font-size: 20px;
    }
    .eye-treatment-content {
        & ul {
            li {
                gap: 15px;
                font-size: 20px;
                img{
                    width: 40px;
                }
                &::after{
                    left: 58px;
                }
            }
        }
    }
    .mission-content{
        .col-lg-7{
            padding-left: 10%;
        }
    }
    .vision-content{
        .col-lg-7{
            padding-right: 10%;
        }
    }
    
    .eye-treatment-img-content {
        padding: 30px;
        img{
            width: 60px;
        }
        & h4 {
            font-size: 28px;
            margin-bottom: 5px;
        }
    }
    .learn-btn {
        margin-top: 20px;
        font-size: 14px;
    }
    .eye-treatment-img {
        padding-left: 80px;
    }
    .exparts-card {
        h5 {
            font-size: 15px;
        }
    }
    .exparts-img {
        outline: 9px solid #ffffff1a;
        margin-bottom: 20px;
    }
    .corner-logo {
        width: 500px;
    }
    .corner {
        .section-title {
            margin-bottom: 7px;
        }
    }
    .section-vector {
        width: 131px;
    }
    .benefits-card {
        p {
            font-size: 14px;
        }
        img{
            width: 70px;
        }
    }
    .why-choose {
        padding-left: 8%;
    }
    .why-choose-centent {
        p {
            font-size: 14px;
        }
    }
    .why-choose-icon{
        width: 68px;
        height: 68px;
    }
    .why-choose-card{
        margin-bottom: 30px;
    }
    .why-choose-img {
        margin-left: 20px;
        &::before, &::after {
            right: -154px;
            top: -35px;
        }
        &::after {
            right: -150px;
            top: -85px;
            height: 103%;
        }
    }
    .slick-arrow {
        width: 38px;
        height: 38px;
    }
    .mediclaim-card{
        height: 88px;
    }
    .network {
        .sub-title {
            font-size: 22px;
        }
        h3{
            font-size: 28px;
            margin-bottom: 10px;
        }
    }
    .play-btn{
        width: 68px;
        height: 68px;
        outline-offset: 18px;
        img{
            width: 21px;
        }
    }
    .eye-treatment-content {
        .btn-group {
            padding-left: 60px;
        }
    }
    .play-btn:before{
        width: 70px;
        height: 70px;
    }
    .searching-icon{
        width: 45px;
    }
    .searching-card {
        padding: 7px;
        padding-top: 70px;
        height: 280px;
        .card-title{
            font-size: 17px;
        }
        p{
            font-size: 15px;
        }
        &::before {
            top: -50px;
        }
    }
    .searching {
        .btn-group {
            margin-top: 40px;
            margin-bottom: -70px;
        }
    }
    .lenght-f {
        height: 355px;
    }
    .gallery-card {
        span {
            img{
                width: 20px;
            }
        }
    }
    .title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    label {
        font-size: 16px;
    }
    .form-control{
        font-size: 15px;
    }
    form .primary-btn{
        width: 120px;
    }
    .disclimer {
        li {
            font-size: 14px;
        }
    }
    .appoinment{
        .text-center{
            img{
                width: 118px;
            }
        }
    }
    .finding{
        padding-block: 70px;
    }
    .eye-care-blogs-card-content {
        padding: 30px;
        padding-top: 110px;
        .eye-care-blogs-date{
            font-size: 14px;
        }
        p{
            font-size: 15px;
        }
    }
    .eye-care-blogs-title {
        font-size: 22px;
    }
    .eye-care-blogs-date {
        font-size: 14px;
    }
    .read-more-btn {
        font-size: 14px;
    }
    .eye-care-sidebar-blog-img {
        width: 170px;
        height: 120px;
    }
    .accordion__item .accordion__title {
        font-size: 17px;
    }
    .accordion__item {
        margin: 12px auto;
    }
    .accordion__title::after {
        width: 10px;
        height: 10px;
    }
    .location-contant-card {
        padding: 10px;
        margin-block: 30px;
        h4 {
            font-size: 18px;
        }
        p, p a {
            font-size: 15px;
        }
    }
    .location-content-card-text {
        padding-left: 20px;
    }
    .location-img {
        &::after {
            left: -175px;
        }
    }
    .enhance {
        padding-block: 110px;
        .primary-btn{
            width: 247px;
        }
    }
    footer{
        h5{
            font-size: 15px;
        }
    }
    footer p, footer p a {
        font-size: 14px;
    }
    footer ul li {
        line-height: 208.556%;
        a {
            font-size: 14px;
        }
    }
    .footer-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .footer-nabh{
        width: 183px;
    }
    .footer-first {
        h6 {
            font-size: 15px;
        }
    }
    .copyright {
        padding: 20px 0;
        margin-top: 20px;
    }
    .wp {
        width: 75px;
        height: 75px;
    }
    .testimonial-title {
    font-size: 24px;
}
.video-testimonials-box {
    padding: 16px;
}
.doctor-list-card {
    h4 {
        font-size: 17px;
    }
    p {
        font-size: 14px;
    }
}
.doctor-dtls-content {
    h1 {
        font-size: 24px;
    }
    p {
        font-size: 17px;
        line-height: 22px;
    }
}
.location {
    font-size: 16px;
}
table {
    font-size: 16px;
}
td {
    padding: 5px 14px;
}
.doctor-about-content {
    h3 {
        font-size: 32px;
        line-height: 103.5%;
    }
}
.expertise {
    padding-right: 8%;
}
.expertise {
    .section-title {
        font-size: 30px;
    }
}
.proficiency {
    .section-title {
        font-size: 30px;
    }
}
.understanding, .risk {
    padding-left: 9%;
}
.risk{
    .col-lg-5{
        padding-bottom: 100px;
    }
}
.surgery-box{
    padding-right: 9%;
}
.surgery-card {
    p {
        font-size: 16px;
        margin: 0;
    }
}
.about-counter {
    & .counter-item {
        p {
            font-size: 17px;
        }
    }
}
}

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



@media (max-width: 1199.98px),(max-width: 991.98px) {
    .topbar-left{
        display: none;
    }
    .topbar-right{
        width: 100%;
        justify-content: space-around;
    }
    .flex-box {
        margin-right: 70px;
    }
    #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: 15px;
        padding: 18px 6px;
    }
    #menu li:hover>ul>li {
        height: 44px;
    }
    #menu .main-menu ul ul {
        top: unset;
        background: #ffffff21;
    }
    #menu ul ul li a {
        font-size: 15px;
        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;
    }
    #menu > .main-menu > ul > li > a {
        &::after {
            display: none;
        }
    }
    .banner-item{
        height: 450px;
        .img-cover{
            object-position: left;
        }
    }
    .banner-content {
        width: 80%;
        h5 {
            font-size: 20px;
            margin-bottom: 5px;
        }
        h1{
            font-size: 32px;
        }
    }
    .banner-slider {
        .slick-dots {
            bottom: 13px;
            li{
                width: 9px;
                height: 9px;
            }
        }
    }
    .features {
        padding-block: 40px;
    }
    .netralaya{
        padding-right: unset;
        padding-bottom: 40px;
    }
    .netralaya-img {
        padding-block: 50px;
        padding-right: 40px;
        &::before, &::after {
            width: 120%;
        }
    }
    .netralaya-content{
        padding-inline: 30px;
    }
    .sec-gap {
        padding: 40px 0;
    }
    .eye-treatment-content {
        & ul {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5px 25px;
            margin-bottom: 20px;
            li {
                gap: 8px;
                background: #efefef;
                padding-inline: 10px;
                border-radius: 5px;
                img {
                    width: 33px;
                }
                &::after{
                    left: 0;
                    width: 100%;
                }
            }
        }
        .btn-group {
            justify-content: center;
            padding-left: 0;
        }
    }
    .eye-treatment-tab li:hover, .eye-treatment-tab li.active {
        background: #FFF;
    }
    .eye-treatment-img-content {
        padding: 20px;
        img{
            width: 50px;
        }
        .btn-group {
            padding-left: unset;
        }
    }
    .eye-treatment-img {
        padding-left: 60px;
    }
    .mb-40 {
        margin-bottom: 20px;
    }
    .corner{
        text-align: center;
        .btn-group{
            justify-content: center;
        }
    }
    .corner-logo {
        width: 400px;
        position: relative;
        right: unset;
        bottom: unset;
        margin-bottom: 20px;
    }
    .benefits-card {
        flex-direction: column;
        padding: 20px;
    }
    .benefits-card-content {
        width: 100%;
        text-align: center;
    }
    .why-choose{
        .row{
            .col-lg-6:last-child{
                order: -1;
            }
        }
    }
    .why-choose-img {
        margin-left: 50px;
        &::before, &::after {
            width: 127%;
            right: -169px;
            top: -55px;
        }
        &::after{
            right: -150px;
            top: -85px;
            height: 103%;
        }
    }
    .why-choose-content{
        padding-inline: 30px;
    }
    .network {
        .sub-title {
            font-size: 20px;
        }
    }
    .video-box {
        &::before{
            top: 25px;
            left: -25px;
        }
        &::after{
            top: -25px;
            right: -25px;
        }
    }
    .searching-card {
        height: 250px;
        &::before {
            top: -60px;
            height: 50%;
        }
    }
    .searching {
        .btn-group {
            margin-top: 30px;
            margin-bottom: -60px;
        }
    }
    .lenght-f{
        height: 390px;
        margin-bottom: 15px;
    }
    .lenght-s {
        height: 210px;
    }
    .testimonial{
        text-align: center;
        .btn-group{
            justify-content: center;
        }
    }
    .our-location {
        padding-right: unset;
    }
    .location-img {
        padding-right: 60px;
        &::after {
            width: 120%;
            height: 90%;
        }
    }
    .location-content{
        padding-inline: 30px;
    }
    .location-contant-card {
        margin-block: 20px;
    }
    .enhance {
        padding-block: 70px;
    }
    footer {
        padding-top: 40px;
    }
    .footer-first{
        text-align: center;
    }
    .footer-logo{
        margin-inline: auto;
    }
    .copyright{
        justify-content: center;
        flex-direction: column;
    }
    .popup .popup__content {
        width: 70%;
    }
    .left{
        display: none;
    }
    .right{
        .title{
            font-size: 30px;
            text-align: center;
        }
        .btn-group{
            justify-content: center;
        }
    }
    .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-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;
            }
        }
    }
    .video-testimonials {
    .slick-arrow {
        background: #04203f;
    }
    .slick-prev {
        left: -20px;
    }
    .slick-next {
        right: -20px;
    }
}
.expertise-content {
    padding-inline: 20px;
}
.cataract-treatment{
    text-align: center;
    .research-img {
    width: 60%;
    margin-inline: auto;
}
.btn-group{
    justify-content: center;
}
}
.understanding, .risk {
        padding: 40px 30px;
    }
    .understanding-content {
    .section-title {
        font-size: 30px;
    }
}
.comprehensive-box {
    clip-path: unset;
    border-radius: 45% 45% 0 0;
    padding-top: 0;
    text-align: center;
        .research-img {
        margin-left: 0px;
        padding-right: 0;
        margin-top: 42px;
        width: 80%;
        margin-inline: auto;
        margin-bottom: 39px;
    }
    .btn-group{
        justify-content: center;
    }
}
.determine-box{
    .col-lg-5{
        order: -1;
    }
}
.treatment-risk {
    padding-bottom: 0;
    }
        .surgery-box {
        padding-right: 4%;
        .col-lg-7{
            padding-left: 5%;
            padding-top: 30px;
        }
    }
    .cataract-faq {
        .approach-img {
    width: 60%;
    margin-inline: auto;
    margin-top: 70px;
}
}
.feel-img {
    height: auto;
    margin-bottom: 20px;
}
.mission {
    padding-right: 0%;
    margin-top: 40px;
    margin-bottom: 20px;
}
    .mission-content {
        padding: 0;
        .col-lg-7 {
            padding: 30px;
            text-align: center;
            background: #ffffffb7;
        }
    }
    .vision {
    padding-left: 0;
    margin-bottom: 30px;
    .vision-content {
        background-position: right;
        padding: 0;
        .col-lg-7 {
            padding: 30px;
            text-align: center;
            background: #ffffffd2;
        }
    }
}
.journey-content {
    text-align: center;
    img {
        position: relative;
        width: 60%;
        margin-bottom: 20px;
    }
}
.about-approach{
    text-align: center;
    .col-lg-5{
        order: -1;
    }
}
.research{
    text-align: center;
}
}
@media (max-width: 1199.98px) {
.testimonial-content {
    padding: 30px;
    padding-top: 90px;
}
    .testimonial-title {
        font-size: 22px;
    }
    .slick-slide {
    margin: 0 10px;
}
.slick-list {
    margin: 0 -10px;
}
.video-testimonials-box {
    .play-btn {
        bottom: -30px;
        right: 6px;
    }
}
.feel-img {
    height: 100%;
}
.feel {
    .title {
        font-size: 31px;
    }
}
.risk {
    h3 {
        font-size: 28px;
        line-height: 115.5%;
    }
}
.personalized-card {
    h3 {
        font-size: 24px;
    }
}
	.corner-content{
		margin-inline:auto;
	}
	.ms-auto {
    margin-left: auto;
    margin-right: auto;
}
	.why-choose {
        & .row {
            .col-lg-6:last-child {
                order: 2;
            }
        }
    }
	    .cataract-treatment {
        .research-img {
            width: 100%;
            margin-inline: auto;
        }
    }
	    .cataract-faq {
        .approach-img {
            width: 100%;
            margin-inline: auto;
            margin-top: 70px;
        }
    }
}
@media (max-width: 575.98px) {
    p{
        font-size: 14px;
    }
    .topbar{
        display: none;
    }
    .header-btn{
        display: none;
    }
    .hamburger {
        top: 4px;
    }
    .logo {
        width: 100px;
    }
    .nabh-logo {
        width: 50px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 13px;
        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: 13px;
        padding: 10px 10px;
    }
    #menu li:hover>ul>li {
        height: 34px;
    }
    #menu .main-menu {
        top: 60px;
    }
    .ad-bar {
        font-size: 13px;
        align-items: center;
        padding-left: 20px;
        img{
            width: 20px;
        }
        .close-icon {
            width: 12px;
        }
    }
    .primary-btn {
        font-size: 12px;
        width: 185px;
        padding: 8px 10px;
    }
    .secondary-btn{
        img{
            width: 16px;
        }
    }
    .banner-content {
        width: 100%;
        padding-bottom: 20px;
        h5 {
            font-size: 15px;
        }
        h1 {
            font-size: 28px;
        }
        p {
            font-size: 14px;
        }
        .btn-group{
            flex-direction: column;
            align-items: start;
        }
    }
    .banner-item {
        height: 370px;
    }
    .banner-slider {
        .slick-dots {
            bottom: 8px;
        }
    }
    .slick-dots{
        padding: 8px 5px;
    }
    .fixed-btn {
        top: 90%;
        right: 0px;
    }
    .btn-group{
        gap: 7px;
    }
    .wp {
        width: 65px;
        height: 65px;
    }
    .section-vector {
        width: 90px;
    }
    .section-title {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .netralaya {
        padding-bottom: 20px;
    }
    .card-title {
        font-size: 16px;
    }
    .feature-icon {
        width: 50px;
        img {
            width: 70%;
        }
    }
    .netralaya-img {
        &::before, &::after {
            left: -96px;
            top: 35px;
            height: 85%;
        }
        &::after {
            left: -100px;
            top: 5px;
        }
    }
    .netralaya-img {
        padding-bottom: 10px;
    }
    .netralaya-content {
        padding-inline: 10px;
    }
    .sub-title {
        font-size: 16px;
    }
    .sub-dec {
        font-size: 14px;
    }
    .counter-item {
        img{
            width: 130px;
        }
        h3 {
            font-size: 30px;
        }
        p {
            font-size: 15px;
            line-height: 94%;
        }
    }
    .sec-gap {
        padding: 20px 0;
    }
    .eye-treatment-content {
        & ul {
            gap: 8px 10px;
            li {
                font-size: 15px;
                margin-bottom: 0;
                img {
                    width: 24px;
                }
            }
        }
    }
    .eye-treatment-img {
        padding-left: 0;
    }
    .eye-treatment-img-content {
        width: 70%;
        padding: 10px;
        left: 0;
        bottom: 0;
        h4{
            font-size: 20px;
        }
        img {
            width: 40px;
        }
    }
    .learn-btn {
        margin-top: 15px;
        font-size: 12px;
    }
    .mb-50 {
        margin-bottom: 20px;
    }
    .exparts-slider {
        .slick-dots {
            bottom: -40px;
        }
    }
    .corner-logo {
        width: 250px;
        margin-bottom: 0px;
    }
    .benefits-card {
        gap: 8px;
        img {
            width: 55px;
        }
    }
    .why-choose-img {
        margin-left: 35px;
    }
    .why-choose-img {
        &::before, &::after {
            right: -77px;
            top: -25px;
        }
        &::after {
            right: -73px;
            top: -48px;
            height: 103%;
        }
    }
    .why-choose-content {
        padding-inline: 15px;
    }
    .why-choose-icon {
        width: 58px;
        height: 58px;
        padding: 14px;
    }
    .why-choose-card {
        gap: 15px;
    }
    .why-choose-centent {
        width: 75%;
    }
    .network {
        .sub-title {
            font-size: 15px;
        }
        h3 {
            font-size: 16px;
            margin-bottom: 5px;
        }
    }
    .slick-arrow {
        width: 28px;
        height: 28px;
    }
    .slick-next {
        right: -5px;
    }
    .slick-prev {
        left: -5px;
    }
    .video-box {
        margin-block: 30px;
        height: 200px;
        &::before {
            top: 15px;
            left: -15px;
        }
        &::after {
            top: -15px;
            right: -15px;
        }
    }
    .play-btn {
        width: 48px;
        height: 48px;
        outline-offset: 10px;
        img {
            width: 15px;
        }
        p {
            bottom: -55px;
        }
    }
    .searching-card{
        height: 260px;
        border-radius: 9px;
        padding-top: 60px;
        &::before {
            height: 45%;
        }
        .card-title {
            font-size: 15px;
        }
        p{
            font-size: 14px;
        }
    }
    .searching-icon {
        width: 35px;
    }
    .searching {
        .btn-group {
            margin-top: 20px;
            margin-bottom: -35px;
        }
    }
    .gallery{
        padding-top: 40px;
    }
    .lenght-f {
        height: 190px;
        margin-bottom: 10px;
    }
    .title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    label {
        font-size: 14px;
    }
    .form-control {
        font-size: 14px;
        padding: 13px 10px;
    }
    .appoinment-form{
        padding: 10px;
        .btn-group{
            margin-top: 10px;
        }
    }
    .disclimer {
        li {
            font-size: 12px;
            width: 46%;
        }
    }
    .finding {
        padding-block: 20px;
    }
    .eye-care-blogs-card-content {
        padding: 10px;
        p {
            font-size: 14px;
        }
    }
    .eye-care-blogs-title {
        font-size: 16px;
    }
    .eye-care-sidebar-blog-img {
        width: 120px;
        height: 90px;
    }
    .eye-care-blogs-sidebar-card{
        gap: 12px;
        margin-bottom: 15px;
    }
    .read-more-btn {
        font-size: 12px;
        img{
            width: 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;
        width: 8px;
        height: 8px;
    }
    .location-img {
        &::after {
            left: -112px;
            top: 0;
        }
    }
    .location-content {
        padding-inline: 10px;
    }
    .location-content-card-text {
        padding-left: 5px;
        padding-top: 5px;
    }
    .location-contant-card {
        border-radius: 11px;
        iframe {
            border-radius: 11px;
        }
        h4 {
            font-size: 16px;
        }
         p, p a {
            font-size: 14px;
        }
    }
    .enhance {
        padding-block: 35px;
        .primary-btn{
            width: 210px;
        }
    }
    .footer-logo {
        width: 170px;
    }
    .footer-media {
        margin-bottom: 20px;
    }
    .footer-nabh {
        width: 113px;
    }
    footer {
        text-align: center;
        padding-top: 20px;
    }
    .footer-first {
        h5 {
            font-size: 16px;
        }
    }
    .footer-title {
        font-size: 16px;
        margin-bottom: 7px;
    }
    footer ul li {
        font-size: 14px;
        line-height: 157.556%;
        margin-bottom: 7px;
        &::after{
            display: none;
        }
    }
    .copyright{
        text-align: center;
        padding: 10px 0;
        p{
            line-height: 110%;
        }
    }
    footer p, footer p a {
        line-height: 132%;
    }
    .popup .popup__content {
        width: 95%;
    }
    .right {
        .title {
            font-size: 20px;
            text-align: center;
        }
    }
    .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{
        z-index: 1;
        &::after{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgb(255 255 255) 0%, rgb(255 255 255 / 16%) 100%);
        }
        .img-cover{
            height: 170px;
        }
        .banner-content{
            width: 75%;
            padding: 0;
            position: relative;
            z-index: 1;
        }
    }
    
    .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;
    }
    .contact-page {
    position: relative;
    padding-top: 20px;
    padding-bottom: 10px;
    z-index: 1;
}
.contact-details {
    border-radius: 20px;
    padding: 20px 15px;
    h3 {
        font-size: 24px;
    }
}
.contact-form {
    padding-left: 0%;
        .form-control {
        padding: 14px 16px;
        font-size: 14px;
    }
}
.contact-youtube {
    .video-box {
        border-radius: 20px;
        padding: 6px;
        .play-btn {
            z-index: 2;
            outline: none;
            width: 60px;
            height: 60px;
        }
                .play-btn:before {
            width: 70px;
            height: 70px;
        }
    }
    .primary-btn {
        margin-bottom: 35px;
    }
}
.video-testimonials {
    padding-block: 30px;
}
    .video-testimonials {
        .slick-next {
            right: -8px;
        }
        .slick-prev {
            left: -8px;
        }
    }
        .video-testimonials-box {
        .play-btn {
            bottom: -22px;
            right: 20px;
        }
    }
    .testimonial-quote {
    width: 70px;
    height: 70px;
    padding: 17px;
    right: 30px;
    top: -35px;
    z-index: 2;
}
.testimonial-card {
    margin-top: 30px;
}
.testimonial-content {
        padding: 18px;
        padding-top: 35px;
    }
    .testimonial-title {
        font-size: 18px;
    }
    .testimonial-footer {
    gap: 16px;
    padding: 14px;
    img{
        width: 50px;
    }
}
.testimonial-name {
    font-size: 16px;
}
.date-admin {
    font-size: 15px;
    margin-bottom: 12px;
}
.event-details {
    h2 {
        font-size: 18px;
    }
    h3 {
        font-size: 16px;
    }
}
body {
    font-size: 14px;
}
.blog-details {
    .event-pagination {
        margin-top: 100px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}
.inner-banner{
        .banner-content {
        h1 {
            font-size: 24px;
        }
    }
}
.why-do {
    .approach-img {
        margin-top: 70px;
        width: 90%;
    }
}
.doctor-about-content {
    h5 {
        font-size: 17px;
    }
}
    .doctor-about-content {
        h3 {
            font-size: 24px;
            line-height: 103.5%;
        }
    }
        .expertise {
        .section-title {
            font-size: 22px;
        }
    }
    .proficiency {
    .section-title {
        font-size: 22px;
    }
    }
    .treatment-banner {
        .img-cover {
            height: 200px;
        }
    .primary-btn {
        width: auto;
        padding-inline: 20px;
    }
}
    .cataract-treatment {
        .research-img {
            width: 88%;
            margin-inline: auto;
            margin-bottom: 13px;
        }
    }
    .understanding{
        padding-left: 4%;
        .row .col:first-child{
            padding-right: 5%;
            padding-block: 30px;
        }
    }
        .understanding-content {
        .section-title {
            font-size: 20px;
        }
    }
    .comprehensive-box {
    .col-lg-7 {
        padding-inline: 40px;
        padding-right: 40px;
    }
        .section-title {
        margin-bottom: 10px;
    }
    .research-img {
            margin-top: 58px;
            margin-bottom: 20px;
        }
}
    .risk {
        h3 {
            font-size: 20px;
            line-height: 115.5%;
        }
    }
    .treatment-risk {
        padding-bottom: 0;
        padding-right: 0;
    }
    .surgery-card {
               padding: 20px;
        text-align: center;
        background: #00000017;
}
.cataract-faq {
    .section-title {
        font-size: 22px;
    }
            .approach-img {
            width: 90%;
            margin-inline: auto;
            margin-top: 70px;
        }
}
.looking {
    padding-top: 30px;
    padding-bottom: 380px;
}
.feel-box {
    padding: 15px;
}
    .feel {
        .title {
            font-size: 22px;
        }
        .form-control {
        font-size: 14px;
        padding: 15px 15px;
        margin-bottom: 10px;
    }
    }
}

@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;
            }
        }
    }
}



#menu .main-menu ul .current-menu-parent li.current-menu-item{
	    background: #04203F !important;
	a{
		color:#fff;
	}
}


/* ================================
   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: #262626;   /* primary red */
    color: #fff;
    border-color: #c089ff;
}

/* Current page */
.wp-pagenavi span.current {
    background: #262626;
    color: #fff;
    border-color: #c089ff;
    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;
}



.repocean-slider-main-v2 .left {
    background: none !important;
}


.repocean-slider-main-v2 .right {
    background: none !important;
}