/**************************************
                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: auto;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #007468;
}

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

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

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

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

}

body {
    color: #4A4A4A;
    font-family: 'InterTight Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 160%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'InterTight Medium';
    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 50px;
}


/* 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%);
    border: 3px solid #198F83;
    box-sizing: border-box;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 6px;
    top: 6px;
    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: #198F83;
    transition: all .5s;
    z-index: 9;
    cursor: pointer;
}

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

.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 {
    background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 85%)), url(../img/why-choose.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position: left;
    display: flex;
    align-items: start;
    justify-content: start;
    padding: 20px;
}

.right {
    padding: 30px;
    text-align: left;
    .form-control {
        border: 1px solid rgb(0 116 104 / 22%);
        background: rgb(0 116 104 / 15%);
        &::placeholder{
            color: #000;
        }
    }
    .title{
        font-size: 40px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    .primary-btn{
        padding: 18px 65px;
    }
}
.fixed-contact{
    position: fixed;
    right: 20px;
    bottom: 5%;
    z-index: 9999999;
    gap: 10px;
}
.wp{
    width: 72px;
    height: 72px;
    display: block;
    &:hover{
        scale: 1.1;
    }
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 70px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-70 {
    margin-bottom: 70px;
}
.mb-80 {
    margin-bottom: 80px;
}
p {
    color: #373737;
    font-family: 'InterTight Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 160%;
}
.section-title {
    color: #202020;
    font-family: 'InterTight Medium';
    font-size: 62px;
    font-style: normal;
    font-weight: normal;
    line-height: 111.111%;
}
.dec{
    color: #151515;
    font-family: 'InterTight SemiBold';
    font-size: 26px;
    font-style: normal;
    font-weight: normal;
    line-height: 146.154%;
}
.btn-group{
    display: flex;
    align-items: center;
    gap: 20px;
}
.primary-btn {
    color: #FFF;
    font-family: 'InterTight SemiBold';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    padding: 27px 75px;
    border-radius: 20px;
    background: #EF8E4B;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    background: #007468;   
    z-index: -1;
    transition: all .35s;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    height: 53%;
    scale: 0 1;
    transform-origin: left;
}
.primary-btn:before {
    bottom: 0;
    top: auto;
    scale: 0 1;
    transform-origin: right;
}

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

.primary-btn:hover:before,
.primary-btn:hover:after {
    scale: 1 1;
}

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

.primary-btn:focus {
    color: #fff;
}

.italic {
    font-style: italic;
}

/**************************************
         Animation
**************************************/
/* Keyframes */
@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;
  }
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}
@keyframes spin {
    0%{
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@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;
}
/* Pulse animation */
.pulse-border{
    animation-name: pulse-border;
}
/* 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;
}
@media (prefers-reduced-motion: no-preference) {
    @view-transition {
        navigation: auto;
    }
}
::view-transition-group(*) {
    animation-duration: 2s;
}
/*******************************
	Menu
*******************************/
.flex-box {
    display: flex;
    align-items: center;
}

header.sticky {
    position: fixed;
    background: #FFF;
    padding-bottom: 15px;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.45s ease-out;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

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

    to {
        transform: translateY(0);
    }
}

.top-flex{
    display: flex;
    align-items: center;
    gap: 20px;
}
.topbar{
    padding-block: 15px;
    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    p, p a{
        margin-bottom: 0;
        color: #000;
        font-size: 19px;
        line-height: normal;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    p a{
        &:hover{
            color: #007468;
        }
    }
}
.dot{
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #198F83;
}
.social-media-bar{
    display: flex;
    align-items: center;
    gap: 10px;
    a{
        width: 32px;
        height: 28px;
        border-radius: 5px;
        border: 1px solid #EAEAEA;
        background: #FFF;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .4s;
        &:hover{
            background: #007468;
            img{
                filter: brightness(0) saturate(100%) invert(100%) sepia(54%) saturate(2%) hue-rotate(98deg) brightness(110%) contrast(101%);
            }
        }
    }
}
.header-btn{
    font-size: 18px;
    line-height: normal;
    padding: 16px 54px;
    border-radius: 17px;
    background: #007468;
    &::before,
    &::after{
        background: #EF8E4B;
    }
}
.main-menu {
    display: flex;
    align-items: center;
    gap: 70px;
}

header {
    position: fixed;
    width: 100%;
    transition: ease-in-out .4s;
    z-index: 999;
}
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: 10px;
}

#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: 10px 0;
    display: inline-block;
    color: #000;
    font-family: 'InterTight Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}
.hamburger{
    display: none;
}

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

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


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

#menu>.main-menu>ul>li.has-sub:hover>a::before,
#menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-color: #007468;
    transform: rotate(45deg);
    top: 20px;
}
.has-sub{
    margin-right: 10px;
}

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

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: #FFF;
    transition: all .25s ease
}


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

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

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

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

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

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

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


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

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

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

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

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}
@media screen and (max-width:992px) {
    nav {
        width: 100%
    }
    #menu {
        width: 100%
    }
    #menu ul {
        width: 100%;
        display: none;
    }
    #menu .main-menu {
        width: 50%;
        position: fixed;
        height: 100dvh !important;
        background: #198F83;
        transform: translateX(100%);
        transition: all .4s;
        top: 0;
        right: 0;
        border-left: 5px solid #EF8E4B;
        z-index: 9;
    }
    .main-menu {
        align-items: center;
    }
    #menu .main-menu.open {
        transform: translateX(0%);
        flex-direction: column;

    }
    #menu .main-menu ul {
        margin-top: 140px;
        background: transparent;
    }
    #menu .main-menu ul li {
        width: 100%;
        border-block: 1px solid #ffffff49;
    }
    #menu .main-menu ul ul li:hover a,
    #menu .main-menu ul ul li:hover {
        color: #fff;
        background-color: #5FB242;
        border-bottom: 1px solid #ffffff3d;
    }
    #menu .main-menu ul li:hover {
        background: transparent;
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }
    #menu .main-menu ul li a{
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }
    #menu .main-menu ul ul li a{
        color: #000;
        border-bottom: 1px solid #aede9d;
    }
    #menu .main-menu ul ul li{
        background: unset;
    }
    #menu>.main-menu>ul>li {
        float: none
    }
    #menu ul ul li a {
        padding-left: 25px
    }

    #menu ul ul li:hover {
        background: #45D8A3;
    }

    #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;
        background: #ffffff26;
    }

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

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

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

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

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 16px;
        top: -2px;
        cursor: pointer;
        z-index: 12399994;
        display: block;
    }

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

    }

    .flex-box{
        margin-right: 70px;
    }
    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

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

    #menu .submenu-button:after {
        position: absolute;
        top: 17px;
        right: 24px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }
    #menu>.main-menu>ul>li.has-sub>a::before{
            display: none;
        }
    #menu>.main-menu>ul>li {
        padding-inline: 0px;
    }
    #menu ul ul .submenu-button:after {
        top: 11px;
        right: 19px;
    }

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

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


    #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>li:hover>a, #menu .main-menu ul li.current-menu-item a {
        color: #FFF;
        scale: unset;
    }
}
.menu-white {
    position: relative;
    background: #FFF;
    box-shadow: 0px 7px 11px 0px rgba(0, 0, 0, 0.06);
}
.menu-white #menu>.main-menu>ul>li>a {
    color: #1E1E1E;
}
.menu-white #menu>.main-menu>ul>li:hover>a,
.menu-white #menu .main-menu ul li.current-menu-item a {
    color: #95C12B;
}
.menu-white #menu>.main-menu>ul>li.has-sub>a::before {
    border-top: 1px solid #1E1E1E;
    border-left: 1px solid #1E1E1E;
}
.menu-white #menu>.main-menu>ul>li.has-sub:hover>a::before,
.menu-white #menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: #95C12B;
    border-left-color: #95C12B;
}
.menu-white .serch-box input {
    border: 1px solid #D6D6D6;
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(7.5px);
}
.enquiry-btn {
    color: #FFF;
    font-family: 'Purista';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 143.75%;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 0px 20px 20px 0px;
    background: #1B5574;
    padding: 20px 10px;
    transform-origin: right center;
    transition: 0.8s;
    &:hover{
        color: #5E923F;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        background: #FFF;
    }

}
/******************************
            Banner  
*******************************/
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.banner-item{
    position: relative;
    overflow: clip;
    border-radius: 0 0 50px 50px;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
    }
}
.banner-content{
    width: 58%;
    z-index: 1;
    padding-top: 140px;
    h5{
        color: #FFF;
        font-family: "InterTight Medium";
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: 180.769%;
        border-radius: 60px;
        border: 1px solid #D0D0D0;
        background: rgba(255, 255, 255, 0.10);
        backdrop-filter: blur(12px);
        display: inline-block;
        padding-inline: 30px;
    }
    h1{
        color: #FFF;
        font-family: 'InterTight Medium';
        font-size: 72px;
        font-style: normal;
        font-weight: normal;
        line-height: 108.537%;
    }
    p{
        font-size: 24px;
        color: #FFF;
        line-height: 141.667%;
    }
}
.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -6px;
}
.banner-slider{
    .slick-dots{
        bottom: 30px;
    }
    .slick-dots{
        .slick-active{
            background: #007468;
        }
        li{
            width: 78px;
            height: 7px;
            margin-inline: 10px;
            background: #D9D9D9;
            border-radius: 110px;
        }
        li button {
            opacity: 0;
            width: 100%;
        }
        &::before{
            width: 100%;
        }
    }
    .slick-active{
        h5{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.4s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        h1{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.6s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        p{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.8s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .btn-group{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 1s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
    }
}
/******************************
        About
*******************************/
.about-content{
    padding-right: 20px;
}
.about-img{
    position: relative;
}
.dot-pattern{
    position: absolute;
    bottom: -40px;
    right: -65px;
    z-index: -1;
}
.section-img{
    overflow: hidden;
    &:hover{
        img{
            scale: 1.1;
        }
    }
}
/************************************
    Counter
************************************/
.counter-item{
  text-align: center;
  h4{
    color: #000;
    font-family: 'InterTight Medium';
    font-size: 72px;
    font-style: normal;
    font-weight: normal;
    line-height: 111.111%;
    .plus{
        color: #198F83;
    }
  }
  p{
    color: #000;
    font-size: 26px;
    line-height: 146.154%;
    transition: 0.5s;
  }
  &:hover{
    h4, p{
      color: #198F83;
    }
  }
}
.counter-box{
    margin-inline: 50px;
    background: #F6F6F6;
    border-radius: 20px;
    padding-block: 60px;
}
/******************************
        Services
*******************************/
.service-box{
    border-radius: 43px;
    background: #F4F4F4;
    padding: 50px 40px;
    padding-bottom: 350px;
    position: relative;
    .btn-group{
        flex-direction: column;
        align-items: start;
        gap: 25px;
    }
    h3{
        color: #101010;
        font-family: 'InterTight SemiBold';
        font-size: 44px;
        font-style: normal;
        font-weight: normal;
        line-height: 113.636%;
    }
    ul{
        list-style-type: disc;
        padding-left: 20px;
        li{
            color: #000;
            font-family: 'InterTight SemiBold';
            font-size: 24px;
            font-style: normal;
            font-weight: normal;
            line-height: 204.167%;
        }
    }
    .primary-btn{
        padding-inline: 30px;
    }
    .view-btn{
        margin-left: 15px;
    }
}
.service-img{
    position: absolute;
    bottom: 0;
    right: 0;
}
.view-btn{
    color: #198F83;
    font-family: 'InterTight SemiBold';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    text-decoration-line: underline;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: 0.4s;
    img{
        width: 20px;
        height: 20px;
        filter: brightness(0) saturate(100%) invert(42%) sepia(78%) saturate(415%) hue-rotate(125deg) brightness(92%) contrast(93%);
    }
    &:hover{
        color: #EF8E4B;
        img{
            filter: brightness(0) saturate(100%) invert(73%) sepia(12%) saturate(7092%) hue-rotate(329deg) brightness(103%) contrast(87%);
        }
    }
}
/******************************
    Why Choose
*******************************/
.why-choose-outer-box{
    margin-inline: 50px;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        background: linear-gradient(-90deg, rgba(0, 0, 0, 0.39) 55%, rgba(0, 0, 0, 0.00) 70%);
    }
}
.why-choose-content{
    width: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 110px;
    border-radius: 41px 30px 50px 50px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(17px);
    padding: 30px 40px;
    z-index: 1;
    .section-title{
        color: #FFF;
    }
    .favicon{
        display: block;
        margin-top: -60px;
        margin-bottom: 10px
    }
    ul{
        li{
            color: #FFF;
            font-family: 'InterTight Medium';
            font-size: 20px;
            font-style: normal;
            font-weight: normal;
            line-height: 135%;
            position: relative;
            margin-bottom: 25px;
            padding-left: 40px;
            &::before{
                position: absolute;
                content: '';
                width: 27px;
                height: 27px;
                background: url(../img/circle-tick.webp) no-repeat;
                background-size: 100%;
                background-position: center;
                left: 0;
                top: 8px;
            }
        }
    }
}
/******************************
    Surgery
*******************************/
.surgery-box{
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        border-radius: 26px;
        background: linear-gradient(0deg, #042420 0%, rgba(102, 102, 102, 0.00) 100%);
        transition: 0.5s;
    }
    &:hover{
        .surgery-box-content{
            transform: translateY(0);
            h3{
                margin-bottom: 12px;
            }
        }
        &::after{
            background: linear-gradient(0deg, #007468 0%, rgba(102, 102, 102, 0.00) 100%);
        }
    }
}
.surgery-box-content{
    padding: 15px;
    padding-bottom: 30px;
    z-index: 1;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    transform: translateY(60%);
    transition: 0.5s;
    img{
        margin-bottom: 20px;
    }
    h3{
        color: #FFF;
        font-family: 'InterTight SemiBold';
        font-size: 28px;
        font-style: normal;
        font-weight: normal;
        line-height: 125%;
        margin-bottom: 60px;
    }
    p{
        color: #FFF;
        line-height:  140%;
    }
}
.slick-slide{
    margin: 0 15px;
}
.slick-list{
    margin: 0 -15px;
}
.slick-dots{
    bottom: -60px;
    li{
        width: 300px;
        height: 5px;
        border-radius: 90px;
        background: #EF8E4B;
        margin-inline: 0;
        transition: 0.5s;
        button{
            opacity: 0;
        }
    }
    .slick-active {
        background: #E5E5E5;
    }
}
/* *************************************************
        Our Video
************************************************ */
.our-video{
    .container{
        padding: 0;
        position: relative;
        .img-cover{
            margin-bottom: -9px;
            border-radius: 50px;
        }
        .dot-pattern{
            right: unset;
            left: -40px;
            bottom: unset;
            top: -40px;
            width: 100px;
        }
        .dot-pattern2{
            right: -40px;
            bottom: -40px;
            left: unset;
            top: unset;
        }
    }
}
.video-btn{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.39) 55%, rgba(0, 0, 0, 0.00) 70%);
    border-radius: 50px;
    &:hover{
        img{
            scale: 1.1;
        }
    }
}
/************************************
    Benefits
************************************/
.benefits{
    background: #007468;
    .section-title, .dec{
        color: #FFF;
    }
    .accordion .accordion__item{
        position: relative;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #FFF;
        img{
            position: absolute;
            left: 0;
            top: 5px;
        }
    }
    .accordion__item.accordion-active{
        border-bottom: 1px solid #FFF;
        background: none;
    }
    .accordion .accordion__item .accordion__title{
        color: #FFF;
        font-family: 'InterTight SemiBold';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 58.333%;
        padding: 35px 10px;
        padding-left: 80px;
    }
    .accordion__item .accordion__content {
        padding: 0;
        padding-left: 80px;
        p {
            color: #FFF;
        }
    }
    p{
        color: #FFF;
    }
    .accordion__title::after {
        display: none;
    } 
}
/******************************
        Best Team
*******************************/
.best-team{
    background: #007468;
    position: relative;
    .section-title, .dec{
        color: #FFF;
    }
    .primary-btn{
        padding-inline: 30px;
        &::before,
        &::after{
            background: #FFF;
        }
        &:hover{
            color: #EF8E4B;
        }
    }
}
.best-team-img{
    position: absolute;
    right: 15px;
    bottom: -50px;
    z-index: 1;
}
/******************************
        Testimonial
*******************************/
.testi-card{
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    &::after{
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        width: 100%;
        height: 70%;
        border-radius: 26px;
        background: linear-gradient(0deg, #042420 0%, rgba(102, 102, 102, 0.00) 100%);
        transition: 0.5s;
    }
    .video-btn{
        background: #ffffff00;
        z-index: 1;
        img{
            width: 108px;
        }
    }
}
.testi-slider{
    .slick-dots{
        li{
            margin-inline: 8px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #B8D8D4;
        }
        .slick-active {
            width: 66px;
            height: 8px;
            border-radius: 20px;
            background: #198F83;
        }
    }
}
/******************************************
        Faq
********************************************/
.accordion__item {
    position: relative;
    transition: 0.5s;
    border-radius: 28px;
    border: 1px solid #B4B4B4;
    margin-bottom: 18px;
}
.accordion__item.accordion-active{
    border-color: #198F83;
    background: #F9F9F9;
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 27px 90px 27px 30px;
    color: #191919;
    font-size: 24px;
    text-decoration: none;
    font-family: 'InterTight SemiBold';
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    font-weight: normal;
    transition: 0.4s;
}
.accordion__item .accordion__title:hover {
    transform: translateY(-5px)
}
.accordion__title::after {
    content: '+';
    background-repeat: no-repeat;
    position: absolute;
    width: 20px;
    height: 20px;
    font-size: 30px;
    font-weight: normal;
    color: #198F83;
    right: 30px;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after {
    content: '-';
    transform: rotate(180deg);
    top: 35px;
}
.accordion__title.accordion-active{
    color: #198F83;
    padding: 27px 90px 10px 30px;
}
.accordion__item .accordion__content {
    padding: 0px 60px 10px 30px;
    p{
        color: #4A4A4A;
    }
}
/******************************
        Get In Touch
*******************************/
.get-in-touch-box{
    margin-inline: 50px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    .img-cover{
        position: absolute;
    }
}
.get-form{
    position: relative;
    width: 30%;
    border-radius: 20px;
    border: 3px solid #198F83;
    background: #FFF;
    padding: 20px 30px;
    margin: 20px 50px;
    left: 18%;
}
.title{
    color: #202020;
    font-family: 'InterTight Bold';
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    margin-bottom: 5px;
}
.form-head{
    margin-bottom: 10px;
    p{
        font-size: 17px;
        line-height: 123.529%;
    }
}
label{
    color: #1F1F1F;
    font-family: 'InterTight Medium';
    font-size: 17px;
    font-style: normal;
    font-weight: normal;
    line-height: 76.471%;
    margin-bottom: 8px;
    display: block;
}
.form-control {
    color: #000;
    font-family: 'InterTight Regular';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 81.25%;
    padding: 20px 13px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    width: 100%;
    outline: none;
    border-radius: 10px;
    border: 1px solid #F4F4F4;
    background: #F4F4F4;
    option{
        color: #000;
    }
}
.form-control::placeholder{
    color: #999;
}
.form-control:focus{
    border-color: #198F83;
}
form .primary-btn{
    border: none;
    &:hover{
        background: #007468;
    }
}
form{
    textarea{
        display: block;
        font-family: 'InterTight Regular';
    }
}
/******************************
        Latest News
*******************************/
.latest-box{
    position: relative;
    border-radius: 19px;
    overflow: hidden;
    display: block;
    &:hover{
        .latest-title{
            color: #EF8E4B;
        }
    }
}
.latest-box-content{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.12) 100%);
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 20px
}
.date{
    color: #FFF;
    font-family: 'InterTight Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 111.111%;
}
.latest-title{
    color: #FFF;
    font-family: 'InterTight SemiBold';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 122.727%;
}
.arrow-btn{
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #EF8E4B;
    transition: 0.5s;
    &:hover{
        background: #198F83;
    }
}
.latest-news-content{
    .primary-btn{
        background: #198F83;
        padding-inline: 50px;
        &::before,
        &::after{
            background: #EF8E4B;
        }
    }
}
.feature{
    position: absolute;
    top: 24px;
    right: 20px;
    color: #FFF;
    line-height: 50%;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(17px);
    padding: 17px 23px;
    z-index: 1;
}
/******************************
        Footer
*******************************/
footer{
    padding-block: 80px;
    p{
        color: #070707;
        font-family: 'InterTight Regular';
        line-height: 150%;
    }
    p a{
        display: block;
        color: #000;
        font-family: 'InterTight SemiBold';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 131.818%;
        margin-top: 5px;
    }
    .social-media-bar {
        a {
            width: 49.719px;
            height: 43px;
            border-radius: 10px;
            border: 1px solid #EAEAEA;
            background: #FFF;
            &:hover{
                transform: translateY(-10px);
            }
        }
    }
    ul{
        li{
            a{
                color: #070707;
                font-family: 'InterTight Regular';
                font-size: 18px;
                font-style: normal;
                font-weight: normal;
                line-height: 188.889%;
            }
        }
    }
}
.footer-title{
    color: #000;
    font-family: 'InterTight SemiBold';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 171.818%;
    position: relative;
    margin-bottom: 20px;
    &::before{
        position: absolute;
        content: '';
        width: 35px;
        height: 2px;
        background: #198F83;
        bottom: 0;
        left: 0;
    }
}
.sub-footer-title{
    color: #000;
    font-family: 'InterTight Bold';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 170%;
}
.location-card{
    h5{
        color: #198F83;
        font-family: 'InterTight Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 70%;
        margin-bottom: 15px;
    }
    p{
        span{
            color: #D53535;
        }
    }
}
/******************************************
        Inner Pages
********************************************/
/* Contact Page */
.inner-banner{
    .banner-content{
        position: relative;
        &::after{
            position: absolute;
            content: '';
            width: 100%;
            height: 80%;
            bottom: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.90);
            filter: blur(130px);
            z-index: -1;
        }
    }
}
.contact-dtls-card{
    border-bottom: 1px solid #198F83;
    padding-top: 20px;
    p a{
        display: block;
        color: #000;
        font-family: 'InterTight SemiBold';
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: 131.818%;
        margin-top: 5px;
        &:hover{
            color: #007468;
        }
    }
    p.mb-30{
        position: relative;
        padding-left: 80px;
        img{
            width: 60px;
            height: 60px;
            background: #007468;
            border-radius: 50%;
            object-fit: contain;
            padding: 14px;
            position: absolute;
            left: 0;
            top: 9px;

        }
    }
    h5 {
        color: rgb(25, 143, 131);
        font-family: "InterTight Bold";
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 70%;
        margin-bottom: 15px;
    }
    p {
        span {
            color: #D53535;
        }
    }
}
.location-time{
    padding-left: 80px;
    p.mb-30{
        margin-left: -80px;
        margin-bottom: 0;
    }
}
.contact-us{
    padding-bottom: 0;
    .get-form{
        width: 100%;
        left: unset;
        margin: 0;
        .title{
            font-size: 40px;
            margin-bottom: 30px;
        }
    }
}
.map{
    iframe{
        width: 100%;
        height: 540px;
        border: 3px solid #007468;
        border-radius: 30px;
    }
}
/* Blog Page */
.blog-img{
    display: block;
}
.blog-title {
    color: #000;
    font-family: 'InterTight SemiBold';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 122.727%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card{
    border: 3px solid #007468;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: 0.5s;
    .date{
        color: #000;
    }
    &:hover{
        transform: translateY(-10px);
        .blog-title{
            color: #198F83;
        }
    }
}
.blog-content{
    padding: 20px;
    background: #f8f8f8;
}
/* Blog Details */
.blog-details-header{
    position: relative;
    padding-bottom: 15px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}
.blog-details{
    h1 {
        color: #000;
        font-family: 'InterTight Medium';
        font-size: 72px;
        font-style: normal;
        font-weight: normal;
        line-height: 108.537%;
    }
    .date{
        color: #000;
    }
    h2, h3, h4{
        color: #202020;
        font-family: 'InterTight Medium';
        font-size: 36px;
        font-style: normal;
        font-weight: normal;
        line-height: 111.111%;
    }
    h3{
        font-size: 30px;
    }
    h4{
        font-size: 26px;
    }
    ul, ol{
        padding-left: 25px;
        li{
            color: #373737;
            font-family: 'InterTight Medium';
            font-size: 20px;
            font-style: normal;
            font-weight: normal;
            line-height: 160%;
            margin-bottom: 5px;
            span{
                color: #202020;
                font-size: 22px;
            }
        }
    }
    ul{
        list-style-type: disc;
    }
    ol{
        list-style-type: decimal;
    }
}
.admin{
    color: #000;
    font-family: 'InterTight Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 111.111%;
    span{
        color: #198F83;
    }
}
.rec-title{
    position: relative;
    &::before{
        position: absolute;
        content: '';
        width: 10%;
        height: 2px;
        background: #007468;
        border-radius: 50%;
        left: 0;
        bottom: -6px;
    }
}
.recent-card{
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #007468;
    border-radius: 10px;
    padding: 20px 10px;
    transition: 0.5s;
    img{
        width: 150px;
        height: 87px;
        object-fit: cover;
    }
    .blog-title{
        width: 60%;
        font-size: 20px;
    }
    &:hover{
        background: #007468;
        .blog-title{
            color: #FFF;
        }
    }
}
.recent-box{
    .social-media-bar{
        a {
            width: 49.719px;
            height: 43px;
            border-radius: 10px;
            border: 1px solid #EAEAEA;
            background: #FFF;
            &:hover {
                background: #007468;
                transform: translateY(-10px);
            }
        }
    }
}
/* FellowShip */
.fellowship-about{
    .about-img{
        .about-img-bg{
        border-radius: 0 87px 0 87px;
        }
    }
    .about-content{
        ul{
            li{
                color: #373737;
                font-family: 'InterTight Medium';
                font-size: 20px;
                font-style: normal;
                font-weight: normal;
                line-height: 160%;
                position: relative;
                padding-left: 40px;
                margin-bottom: 10px;
                &::before {
                    position: absolute;
                    content: '';
                    width: 27px;
                    height: 27px;
                    background: url(../img/circle-tick.webp) no-repeat;
                    background-size: 100%;
                    background-position: center;
                    left: 0;
                    top: 3px;
                    filter: brightness(0) saturate(100%) invert(73%) sepia(70%) saturate(2503%) hue-rotate(329deg) brightness(102%) contrast(87%);
                }
            }
        }
    }
}
.key-title{
    color: #000;
    font-family: 'InterTight SemiBold';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 58.333%;
}
.faculty-mem{
    display: flex;
    align-items: center;
    gap: 20px;
    img{
        border-radius: 50%;
        border: 2px solid #007468;
    }
}
.faculty-mem-dtls{
    h3{
        color: #333333;
        font-family: 'InterTight SemiBold';
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: 100%;
        margin-bottom: 5px;
    }
    p{
        margin-bottom: 0;
    }
}
.faculty{
    .get-form{
        width: 100%;
        margin: 0;
        left: unset;
    }
}
/* Service Page */
.service-banner{
    .banner-content {
        &::after {
            background: rgb(0 0 0 / 60%);
        }
    }
}
.reasons.sec-gap{
    padding: 70px 50px;
}
.reasons-img{
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}
.reasons-content{
    border-radius: 20px;
    background: #F6F6F6;
    padding: 80px 50px;
    height: 100%;
    ul{
        list-style-type: disc;
        padding-left: 25px;
        li{
            color: #4A4A4A;
            font-family: 'InterTight Medium';
            font-size: 20px;
            font-style: normal;
            font-weight: normal;
            line-height: 250%;
            &::marker{
                font-size: 30px;
                color: #007468;
            }
        }
    }
}
.discharge-details{
    padding-inline: 50px;
}
.discharge-box{
    border-radius: 59px;
    background: #007468;
    padding-block: 75px;
    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .section-title{
        color: #FFF;
    }
    .primary-btn{
        padding-inline: 30px;
        gap: 10px;
        &::before,
        &::after{
            background: #FFF;
        }
        &:hover{
            color: #198F83;
            img{
                filter: brightness(0) saturate(100%) invert(43%) sepia(80%) saturate(465%) hue-rotate(125deg) brightness(90%) contrast(83%);
            }
        }
    }
}
.replacement-content{
    h3{
        color: #202020;
        font-family: 'InterTight Medium';
        font-size: 48px;
        font-style: normal;
        font-weight: normal;
        line-height: 114.583%;
    }
}
.replacement-img{
    overflow: hidden;
    border-radius: 53px;
}
.jaipur{
    padding-inline: 50px;
}
.jaipur-box{
    background: url(../img/jaipur-bg.webp) no-repeat;
    background-size: cover;
    padding-block: 180px;
    border-radius: 20px;
    background-position: right;
    .col-lg-5{
        margin-left: auto;
        padding-right: 50px;
    }
}
.surgery-process{
    counter-reset: section;
}
.surgery-process-img{
    position: relative;
    padding: 20px;
    .img-cover{
        border-radius: 50px;
    }
    &::before{
        position: absolute;
        counter-increment: section;
        content: counter(section);
        width: 54px;
        height: 54px;
        background: #EF8E4B;
        border-radius: 50%;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
        font-family: 'InterTight Medium';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: 70%;
    }
}
.surgery-process-content{
    text-align: center;
    h3{
        color: #000;
        font-family: 'InterTight SemiBold';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 133.333%;
        margin-bottom: 5px;
    }
}
.computer-assist{
    padding-inline: 50px;
}
.computer-assist-box{
    background: #007468;
    padding-block: 50px;
    border-radius: 59px;
    p{
        color: #FFF;
    }
}
.computer-assist-card{
    text-align: center;
    span{
        display: block;
        width: 19px;
        height: 19px;
        background: #EF8E4B;
        border-radius: 50%;
        margin-inline: auto;
        margin-bottom: 5px;
    }
    h3{
        color: #FFF;
        font-family: 'InterTight Medium';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 155%;
    }
}
.computer-assist{
    .btn-group{
        margin-bottom: -90px;
    }
}
.recovery{
    margin-top: 40px;
}
.recovery-box{
    border-radius: 33px;
    background: #F5F5F5;
    padding: 40px 30px;
}
.recovery-img{
    border-radius: 53px;
    overflow: hidden;
}
.recovery-content{
    padding-inline: 30px;
    h3{
        color: #202020;
        font-family: 'InterTight Medium';
        font-size: 38px;
        font-style: normal;
        font-weight: normal;
        line-height: 114.583%;
    }
}
.recovery-text-box{
    text-align: center;
    padding: 30px 80px;
    background: #198F83;
    border-radius: 26px;
    p{
        color: #FFF;
    }
}
.recovery-text-box2{
    background: #EBEBEB;
    p{
        color: #141414;
    }
}
.rehabilitation{
    position: relative;
}
.rehabilitation-img{
    border-radius: 20px;
    height: 85%;
    overflow: hidden;
    position: absolute;
    left: 50px;
    width: 40%;
}
.rehabilitation{
    .col-lg-7{
        .section-title{
            font-size: 48px;
        }
    }
}
.rehabilitation-card{
    position: relative;
    padding-left: 120px;
    h3{
        color: #000;
        font-family: 'InterTight SemiBold';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 133.333%;
        margin-bottom: 2px;
    }
}
.rehabilitation-icon{
    width: 107px;
    height: 107px;
    border-radius: 50%;
    background: #EF8E4B;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 7px solid #ffd3b4;
    position: absolute;
    left: 0;
    top: 0;
}
.queries{
    .discharge-box-text{
        width: 50%;
        p{
            color: #FFF;
        }
    }
}
/******************************************
             Responsive 
********************************************/
@media (max-width: 1600px),
(max-width: 1560px) {
    .service-img {
        width: 70%;
    }
    .container-fluid {
        padding: 0 30px;
    }
    .counter-box {
        margin-inline: 30px;
    }
    .why-choose-outer-box {
        margin-inline: 30px;
    }
    .why-choose-content {
        width: 60%;
    }
    .surgery-box-content {
        transform: translateY(65%);
        padding-bottom: 15px;
        h3 {
            font-size: 22px;
            margin-bottom: 50px;
        }
    }
    .get-in-touch-box {
        margin-inline: 20px;
    }
    .get-form {
        width: 35%;
        left: 10%;
    }
    .best-team-img {
        width: 730px;
    }
    .blog-details {
        h1 {
            font-size: 62px;
        }
    }
    .reasons-content {
        padding: 40px 30px;
        height: 100%;
        ul {
            li {
                line-height: 200%;
            }
        }
    }
    .reasons.sec-gap {
        padding: 70px 30px;
    }
    .discharge-details {
        padding-inline: 30px;
    }
    .jaipur {
        padding-inline: 30px;
    }
    .jaipur-box {
        padding-block: 125px;
        .col-lg-5 {
            width: 45.666667%;
        }
    }
    .computer-assist {
        padding-inline: 30px;
    }
    .rehabilitation-img{
        left: 30px;
    }
}
@media (max-width: 1440px),
(max-width: 1366px){
    .right {
        & .title {
            font-size: 30px;
        }
    }
    p{
        font-size: 16px;
    }
    .topbar {
        padding-block: 10px;
        p, p a {
            font-size: 15px;
        }
    }
    header.sticky {
        padding-bottom: 10px;
    }
    .logo{
        width: 223px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 14px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 14px;
        width: 7px;
        height: 7px;
    }
    #menu ul ul li a {
        font-size: 14px;
    }
    #menu>.main-menu>ul>li.has-sub:hover>a::before, #menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
        top: 18px;
    }
    .primary-btn{
        font-size: 16px;
        padding: 18px 45px;
    }
    .banner-content{
        h5{
            font-size: 20px;
        }
        h1{
            font-size: 62px;
        }
        p{
            font-size: 20px;
        }
    }
    .header-btn {
        font-size: 14px;
        padding: 14px 44px;
    }
    .section-title {
        font-size: 52px;
    }
    .counter-item {
        h4 {
            font-size: 52px;
        }
        p {
            font-size: 20px;
        }
    }
    .counter-box {
        margin-inline: 20px;
        padding-block: 25px;
    }
    .dec {
        font-size: 19px;
    }
    .service-box {
        padding: 40px 30px;
        padding-bottom: 240px;
        h3 {
            font-size: 33px;
        }
        ul {
            li {
                font-size: 20px;
            }
        }
    }
    .view-btn {
        font-size: 16px;
    }
    .service-img {
        width: 60%;
    }
    .why-choose-outer-box {
        margin-inline: 20px;
    }
    .service-box {
        .primary-btn {
            padding-inline: 20px;
        }
    }
    .why-choose-content {
        & ul {
            li {
                font-size: 16px;
                margin-bottom: 15px;
                padding-left: 30px;
                &::before {
                    width: 21px;
                    height: 21px;
                    top: 3px;
                }
            }
        }
    }
    .surgery-box-content {
        transform: translateY(60%);
        h3{
            font-size: 20px;
            margin-bottom: 30px;
        }
        img {
            margin-bottom: 10px;
            width: 53px;
        }
    }
    .slick-slide {
        margin: 0 10px;
    }
    .slick-list {
        margin: 0 -10px;
    }
    .slick-dots {
        & li {
            width: 200px;
            height: 4px;
        }
    }
    .video-btn {
        img{
            width: 179px;
        }
    }
    .benefits {
        .accordion .accordion__item {
            padding-bottom: 5px;
            img {
                width: 55px;
            }
        }
        .accordion .accordion__item .accordion__title {
            font-size: 20px;
            padding: 25px 10px;
            padding-left: 70px;
        }
        .accordion__item .accordion__content {
            padding: 0;
            padding-left: 70px;
        }
    }
    .testi-card {
        & .video-btn {
            img {
                width: 88px;
            }
        }
    }
    .title {
        font-size: 24px;
    }
    .form-head {
        p {
            font-size: 14px;
        }
    }
    label {
        font-size: 14px;
    }
    .form-control{
        font-size: 14px;
        padding: 14px 10px;
    }
    .get-form {
        padding: 15px 20px;
        .primary-btn{
            padding: 18px 55px;
        }
    }
    .date {
        font-size: 14px;
    }
    .latest-title {
        font-size: 18px;
    }
    .arrow-btn {
        width: 36px;
        height: 36px;
    }
    .latest-news-content {
        .primary-btn {
            padding-inline: 40px;
        }
    }
    .accordion__item .accordion__title {
        font-size: 20px;
        padding: 21px 90px 21px 25px;
    }
    .accordion__title.accordion-active {
        padding: 21px 90px 6px 25px;
    }
    .accordion__title::after {
        top: 25px;
    }
    .accordion__title.accordion-active::after {
        top: 29px;
    }
    .best-team-img {
        width: 570px;
        /*bottom: -30px;*/
		bottom: -4px;
    }
    footer {
        p a {
            font-size: 18px;
        }
        ul {
            & li {
                a {
                    font-size: 14px;
                }
            }
        }
    }
    .footer-title {
        font-size: 18px;
        &::before {
            width: 25px;
        }
    }
    .location-card {
        h5 {
            font-size: 16px;
            margin-bottom: 10px;
        }
    }
    .sub-footer-title {
        font-size: 16px;
    }
    .wp {
        width: 62px;
        height: 62px;
    }
    .fixed-contact {
        right: 10px;
        bottom: 10%;
    }
    #menu li:hover>ul>li {
        height: 34px;
    }
    .contact-dtls-card {
        p.mb-30 {
            padding-left: 63px;
            img {
                width: 50px;
                height: 50px;
                top: 5px;
            }
        }
        h5 {
            font-size: 16px;
        }
        p a {
            font-size: 21px;
        }
    }
    .location-time {
        padding-left: 63px;
        p.mb-30 {
            margin-left: -63px;
            margin-bottom: 0;
        }
    }
    .map {
        iframe {
            height: 440px;
        }
    }
    .contact-us {
        & .get-form {
            .title {
                font-size: 30px;
            }
        }
    }
    .blog-title {
        font-size: 20px;
    }
    .blog-details {
        h1 {
            font-size: 52px;
        }
        h2{
            font-size: 30px;
        }
        h3{
            font-size: 26px;
        }
        h4{
            font-size: 22px;
        }
        ul, & ol {
            li {
                font-size: 16px;
                span {
                    font-size: 18px;
                }
            }
        }
    }
    .admin {
        font-size: 16px;
    }
    .recent-card {
        img {
            width: 120px;
            height: 77px;
        }
        .blog-title {
            font-size: 16px;
        }
    }
    .fellowship-about {
        & .about-content {
            & ul {
                li {
                    font-size: 16px;
                    padding-left: 30px;
                    &::before {
                        width: 21px;
                        height: 21px;
                    }
                }
            }
        }
    }
    .key-title {
        font-size: 20px;
    }
    .faculty-mem-dtls {
        h3 {
            font-size: 22px;
        }
    }
    .reasons.sec-gap {
        padding: 70px 20px;
    }
    .reasons-content {
        & ul {
            li {
                font-size: 16px;
                line-height: 180%;
                &::marker {
                    font-size: 22px;
                }
            }
        }
    }
    .discharge-details {
        padding-inline: 20px;
    }
    .replacement-content {
        h3 {
            font-size: 38px;
        }
    }
    .jaipur {
        padding-inline: 20px;
    }
    .jaipur-box {
        padding-block: 105px;
        .col-lg-5 {
            padding-right: 30px;
        }
    }
    .surgery-process-img {
        padding: 10px;
        &::before {
            width: 44px;
            height: 44px;
            font-size: 24px;
        }
    }
    .surgery-process-content {
        h3 {
            font-size: 18px;
        }
    }
    .discharge-box {
        padding-block: 55px;
    }
    .computer-assist {
        padding-inline: 20px;
        .btn-group {
            margin-bottom: -85px;
        }
    }
    .computer-assist-card {
        span {
            width: 13px;
            height: 13px;
        }
        h3 {
            font-size: 16px;
        }
    }
    .recovery {
        margin-top: 30px;
    }
    .recovery-content {
        padding-inline: 20px;
        h3 {
            font-size: 30px;
        }
    }
    .recovery-box {
        padding: 30px 20px;
    }
    .rehabilitation-icon {
        width: 87px;
        height: 87px;
        padding: 13px;
    }
    .rehabilitation-card {
        padding-left: 100px;
        h3 {
            font-size: 20px;
        }
    }
    .rehabilitation-img {
        left: 20px;
    }
}
@media (max-width: 1024px) {}
@media (max-width: 992px){
    .inner-header{
        background: #FFF;
        padding-bottom: 10px;
    }
    .sec-gap {
        padding: 50px 0;
    }
    .topbar {
        .container {
            flex-direction: column;
            gap: 5px;
        }
    }
    .logo{
        width: 200px;
    }
    .banner{
        .banner-item{
            height: 700px;
        }
    }
    .mobile-flex{
        display: none;
    }
    .topbar {
        padding-block: 15px;
    }
    .banner-bg{
        object-position: left;
    }
    .banner-content{
        width: 100%;
        text-align: center;
        .btn-group{
            justify-content: center;
        }
    }
    .banner-slider {
        .slick-dots {
            bottom: 20px;
        }
    }
    .about{
        .row{
            .col-lg-5{
                order: -1;
            }
        }
    }
    .about-img{
        img{
            width: 100%;
        }
        .dot-pattern{
            width: 107px;
            bottom: -20px;
            right: -28px;
        }
    }
    .why-choose-outer-box{
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        .img-cover{
            position: absolute;
        }
    }
    .why-choose-content{
        border-radius: 25px;
        padding: 20px 30px;
        width: 90%;
        position: relative;
        transform: unset;
        left: 0;
        top: 0;
        margin: 40px;
        margin-top: 70px;
    }
    .service-box {
        border-radius: 23px;
    }
    .surgery-slider{
        padding-inline: 20px;
    }
    .slick-dots {
        & li {
            width: 130px;
            height: 4px;
        }
    }
    .our-video {
        & .container {
            .img-cover {
                border-radius: 30px;
            }
            .dot-pattern {
                left: -21px;
                width: 80px;
            }
            .dot-pattern2 {
                right: -21px;
                left: unset;
                top: unset;
            }
        }
    }
    .video-btn {
        img {
            width: 139px;
        }
    }
    .get-in-touch-box {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        .img-cover {
            position: absolute;
            object-position: left;
        }
    }
    .get-form{
        width: 80%;
        left: unset;
    }
    .accordion__item {
        border-radius: 12px;
    }
    .best-team-img {
        width: 570px;
        bottom: unset;
        right: unset;
        position: relative;
        margin-inline: auto;
        display: block;
    }
    .best-team-content{
        text-align: center;
        .btn-group{
            justify-content: center;
        }
    }
    footer{
        padding-block: 60px;
        .row{
            .col-md-12:first-child{
                text-align: center;
                .logo{
                    margin-inline: auto;
                }
            }
        }
        .social-media-bar {
            justify-content: center;
        }
    }
    .copyright{
        text-align: center;
        margin-top: 30px;
    }
    .section-title {
        font-size: 44px;
    }
    .popup .popup__content{
        width: 80%;
    }
    .left {
        background: #FFF;
        align-items: center;
        justify-content: center;
        padding: 20px;
        padding-bottom: 0;
    }
    .right{
        padding: 20px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 16px;
        padding: 20px 20px;
    }
    #menu .main-menu ul ul li a{
        color: #FFF;
        font-size: 16px;
        border-bottom: none;
        padding: 12px 20px;
    }
    .contact-us {
        padding-bottom: 0;
    }
    .blog-details {
        & h1 {
            font-size: 42px;
        }
    }
    .faq-banner{
        .banner-item{
            height: 450px;
        }
    }
    .service-banner{
        .banner-item{
            height: 500px;
        }
        .banner-content {
            padding-top: 85px;
        }
    }
    .reasons.sec-gap {
        padding: 50px 40px;
    }
    .reasons-content {
        padding: 20px 20px;
    }
    .implant-planning{
        .row{
            .col:nth-child(2){
                order: -1;
            }
        }
    }
    .discharge-box {
        border-radius: 39px;
        .container {
            flex-direction: column;
            gap: 30px;
        }
    }
    .replacement{
        .row > .col:nth-child(1) { order: 2; }
        .row > .col:nth-child(2) { order: 1; }

        .row > .col:nth-child(3) { order: 3; }
        .row > .col:nth-child(4) { order: 4; }

        .row > .col:nth-child(5) { order: 6; }
        .row > .col:nth-child(6) { order: 5; }

        .row > .col:nth-child(7) { order: 7; }
        .row > .col:nth-child(8) { order: 8; }
    }
    .jaipur-box {
        padding-block: 40px;
        background: linear-gradient(to left, #ffffff, rgb(255 255 255 / 52%)), url(../img/jaipur-bg.webp);
        .col-lg-5 {
            width: 100%;
            padding: 30px;
            
        }
    }
    .computer-assist-box {
        border-radius: 39px;
        padding-block: 30px;
    }
    .computer-assist {
        .btn-group {
            margin-bottom: -65px;
        }
    }
    .mb-60 {
        margin-bottom: 30px;
    }
    .recovery{
        .container{
            .recovery-box:nth-child(2){
                .row{
                    .col:nth-child(2){
                        order: -1;
                    }
                }
            }
        }
    }
    .recovery-content {
        padding-inline: 5px;
    }
    .recovery-img {
        border-radius: 33px;
    }
    .recovery-text-box {
        padding: 30px 40px;
    }
    .rehabilitation-img {
        width: 100%;
        height: 100%;
        position: relative;
        left: unset;
    }
    .queries {
        .discharge-box-text {
            width: 90%;
            text-align: center;
        }
    }
    .discharge-box {
        padding-block: 40px;
    }
}
@media (max-width: 575px){
    p{
        font-size: 14px;
        line-height: 145%;
    }
    .container-fluid {
        padding: 0 10px;
    }
    .topbar {
        display: none;
    }
    header {
        padding-block: 10px;
    }
    .logo {
        width: 140px;
    }
    .banner {
        .banner-item {
            height: 700px;
            border-radius: 0 0 15px 15px;
        }
    }
    .banner-bg {
        object-position: 84%;
    }
    .banner-item {
    .container {
        background: linear-gradient(359deg, #000000ba, transparent);
    }
}
    .banner-content {
        padding-top: 170px;
        h5 {
            font-size: 16px;
        }
        h1{
            font-size: 32px;
        }
        p{
            font-size: 15px;
        }
    }
    .primary-btn {
        font-size: 14px;
        padding: 12px 30px;
        border-radius: 10px;
        img{
            width: 13px;
        }
    }
    .mb-20{
        margin-bottom: 10px;
    }
    .banner-slider {
        .slick-dots {
            bottom: 6px;
            li{
                width: 48px;
                height: 4px;
                margin-inline: 5px;
            }
        }
    }
    .header-btn {
        font-size: 13px;
        padding: 8px 20px;
    }
    .hamburger {
        top: -8px;
        right: 5px;
    }
    .flex-box {
        margin-right: 50px;
    }
    .sec-gap {
        padding: 20px 0;
    }
    .about-img {
        .dot-pattern {
            width: 54px;
            bottom: -10px;
        }
    }
    .favicon{
        width: 39px;
    }
    .section-title {
        font-size: 24px;
    }
    .counter-box {
        border-radius: 10px;
        margin-inline: 10px;
        padding-block: 20px;
    }
    .counter-item {
        h4 {
            font-size: 32px;
        }
        p {
            font-size: 14px;
        }
    }   
    .dec {
        font-size: 15px;
    }
    .service-box {
        border-radius: 13px;
        padding: 15px;
        h3 {
            font-size: 22px;
        }
        ul {
            li {
                font-size: 14px;
            }
        }
        .btn-group {
            gap: 10px;
        }
        .primary-btn {
            padding-inline: 12px;
        }
        .view-btn {
            margin-left: 7px;
        }
    }
    .service-img {
        width: 35%;
    }
    .view-btn {
        font-size: 14px;
        gap: 1px;
        img{
            width: 15px;
            height: 15px;
        }
    }
    .why-choose-outer-box {
        margin-inline: 10px;
        border-radius: 10px;
    }
    .why-choose-content {
        border-radius: 10px;
        padding: 15px 10px;
        width: 95%;
        margin: 10px;
        ul {
            li {
                font-size: 14px;
                margin-bottom: 8px;
                padding-left: 20px;
                &::before {
                    width: 14px;
                    height: 14px;
                    top: 3px;
                }
            }
        }
        .favicon{
            margin-top: 0;
            margin-bottom: 10px;
        }
    }
    .surgery.sec-gap{
        padding: 20px 15px;
    }
    .mb-50 {
        margin-bottom: 30px;
    }
    .surgery-box {
        border-radius: 10px;
        &::after{
            border-radius: 10px;
        }
    }
    .surgery-box-content {
        transform: translateY(60%);
        h3 {
            font-size: 16px;
        }
    }
    .surgery-slider {
        padding-inline: 0;
    }
    .slick-dots {
        bottom: -40px;
    }
    .slick-dots {
        & li {
            width: 50px;
            height: 3px;
        }
    }
    .our-video {
        padding-inline: 15px;
        .container {
            height: 220px;
            .img-cover {
                border-radius: 10px;
            }
            .dot-pattern {
                width: 50px;
            }
        }
    }
    .video-btn {
        border-radius: 10px;
        img {
            width: 100px;
        }
    }
    .mb-60 {
        margin-bottom: 30px;
    }
    .benefits {
        .accordion .accordion__item {
            img {
                width: 45px;
            }
        }
        .accordion .accordion__item .accordion__title {
            font-size: 16px;
            padding: 20px 10px;
            padding-left: 55px;
        }
        .accordion__item .accordion__content {
            padding: 0;
            padding-left: 55px;
        }
    }
    .testi-card {
        border-radius: 10px;
        &::after {
            border-radius: 10px;
        }
        .video-btn {
            img {
                width: 77px;
            }
        }  
    }
    .slick-dots {
        bottom: -35px;
    }
    .get-in-touch-box {
        margin-inline: 10px;
    }
    .get-form {
        width: 95%;
        margin: 10px;
        border-radius: 10px;
        padding: 10px 10px;
        .primary-btn {
            padding: 12px 40px;
        }
    }
    .title {
        font-size: 18px;
    }
    .form-control {
        font-size: 14px;
        padding: 13px 10px;
        border-radius: 6px;
    }
    .latest-box {
        border-radius: 10px;
    }
    .latest-title {
        font-size: 16px;
    }
    .arrow-btn {
        width: 30px;
        height: 30px;
    }
    .date{
        margin-bottom: 10px;
    }
    .accordion__item{
        margin-bottom: 10px;
        border-radius: 10px;
    }
    .accordion__item .accordion__title {
        font-size: 16px;
        line-height: normal;
        padding: 12px 30px 12px 10px;
    }
    .accordion__title.accordion-active {
        padding: 12px 30px 5px 10px;
    }
    .accordion__item .accordion__content {
        padding: 0px 20px 0px 10px;
    }
    .accordion__title::after {
        width: 10px;
        height: 20px;
        font-size: 24px;
        right: 10px;
        top: 10px;
    }
    .accordion__title.accordion-active::after {
        top: 14px;
    }
    .mb-30 {
        margin-bottom: 15px;
    }
    .best-team-img {
        width: auto;
    }
    footer{
        text-align: center;
        padding-block: 40px;
        p a {
            font-size: 15px;
        }
        .social-media-bar {
            a {
                width: 39.719px;
                height: 33px;
                border-radius: 7px;
                padding: 10px;
            }
        }
    }
    .footer-title {
        font-size: 16px;
        margin-bottom: 10px;
        &::before{
            left: 50%;
            transform: translateX(-50%);
        }
    }
    .fixed-contact {
        right: 0px;
        bottom: 5%;
    }
    .wp {
        width: 46px;
        height: 46px;
    }
    .copyright {
        margin-top: 10px;
    }
    #menu .main-menu {
        width: 80%;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 14px;
        padding: 15px 10px;
    }
    #menu .submenu-button {
        height: 40px;
        width: 50px;
    }
    #menu .submenu-button:after {
        top: 15px;
        right: 22px;
        width: 7px;
        height: 7px;
    }
    #menu .main-menu ul ul li a {
        color: #FFF;
        font-size: 14px;
        border-bottom: none;
        padding: 10px 10px;
    }
    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 18px;
    }
    .popup .popup__content {
        width: 95%;
        -webkit-border-radius: 10px;
    }
    .right {
        padding: 10px;
        & .title {
            font-size: 22px;
        }
        .primary-btn{
            padding: 12px 45px;
        }
    }
    .inner-banner{
        .banner-item{
            height: 200px;
            border-radius: 0 0 10px 10px;
            .banner-content{
                padding-top: 60px;
                &::after {
                    background: rgb(0 0 0);
                }
            }
        }
    }
    .contact-dtls-card {
        padding-top: 15px;
        & p.mb-30 {
            padding-left: 50px;
            img {
                width: 40px;
                height: 40px;
                padding: 12px;
                top: 5px;
            }
        }
        h5 {
            font-size: 14px;
            margin-bottom: 10px;
        }
        p a {
            font-size: 16px;
        }
    }
    .location-time {
        padding-left: 50px;
        p.mb-30 {
            margin-left: -50px;
        }
    }
    .contact-us {
        padding-bottom: 0;
        & .get-form {
            .title {
                font-size: 24px;
                margin-bottom: 15px;
            }
        }
    }
    .map {
        iframe {
            height: 340px;
            border-radius: 10px;
        }
    }
    .blog-card {
        border-radius: 10px;
    }
    .blog-content {
        padding: 10px;
    }
    .blog-title {
        font-size: 16px;
    }
    .blog-details {
        & h1 {
            font-size: 22px;
        }
        h2 {
            font-size: 20px;
        }
        h3 {
            font-size: 18px;
        }
        h4 {
            font-size: 16px;
        }
        ul, & ol {
            padding-left: 20px;
            li {
                font-size: 14px;
                span {
                    font-size: 15px;
                }
            }
        }
    }
    .admin {
        font-size: 14px;
    }
    .recent-card {
        gap: 13px;
        padding: 10px;
        img {
            width: 100px;
            height: 57px;
        }
        .blog-title {
            font-size: 14px;
        }
    }
    .recent-box {
        & .social-media-bar {
            a {
                width: 39.719px;
                height: 33px;
                padding: 11px;
            }
        }
    }
    .mb-40 {
        margin-bottom: 20px;
    }
    .faq-banner{
        .banner-item{
            height: 300px;
        }
    }
    .key-title {
        font-size: 16px;
    }
    .fellowship-about {
        & .about-content {
            & ul {
                margin-bottom: 20px;
                li {
                    font-size: 14px;
                    padding-left: 20px;
                    top: 5px;
                    line-height: 140%;
                    &::before {
                        width: 14px;
                        height: 14px;
                    }
                }
            }
        }
    }
    .faculty-mem-dtls {
        h3 {
            font-size: 18px;
        }
    }
    .service-banner {
        .banner-item{
            height: 350px;
        }
    }
    .reasons.sec-gap {
        padding: 20px 15px;
    }
    .reasons-img {
        border-radius: 10px;
    }
    .reasons-content {
        padding: 15px;
        border-radius: 10px;
        ul {
            padding-left: 20px;
            li {
                font-size: 14px;
                line-height: 160%;
                &::marker {
                    font-size: 18px;
                }
            }
        }
    }
    .discharge-details {
        padding-inline: 6px;
    }
    .discharge-box {
        border-radius: 13px;
        padding-block: 25px;
        .container {
            gap: 10px;
        }
        .primary-btn {
            padding-inline: 15px;
            gap: 5px;
        }
    }
    .replacement-img{
        border-radius: 13px;
    }
    .replacement-content {
        h3 {
            font-size: 20px;
        }
    }
    .jaipur {
        padding-inline: 10px;
    }
    .jaipur-box {
        padding-block: 20px;
        background: linear-gradient(to left, #ffffffb0, rgb(255 255 255 / 14%)), url(../img/jaipur-bg.webp);
        background-position: center;
        border-radius: 10px;
        .col-lg-5 {
            padding: 15px;
        }
    }
    .surgery-process-img {
        padding: 10px;
        &::before {
            width: 33px;
            height: 33px;
            font-size: 18px;
        }
        .img-cover {
            border-radius: 30px;
        }
    }
    .surgery-process-content {
        h3 {
            font-size: 16px;
        }
    }
    .computer-assist {
        padding-inline: 10px;
    }
    .computer-assist-box {
        border-radius: 10px;
        padding-block: 20px;
    }
    .computer-assist-card {
        span {
            width: 9px;
            height: 9px;
        }
    }
    .computer-assist {
        .btn-group {
            margin-bottom: -40px;
        }
    }
    .recovery-box {
        border-radius: 13px;
        padding: 15px 10px;
    }
    .recovery-img {
        border-radius: 16px;
    }
    .recovery-content {
        h3 {
            font-size: 20px;
        }
    }
    .recovery-text-box {
        padding: 15px 10px;
        border-radius: 10px;
    }
    .rehabilitation-img {
        border-radius: 10px;
    }
    .rehabilitation {
        text-align: center;
        & .col-lg-7 {
            .section-title {
                font-size: 22px;
            }
        }
    }
    .rehabilitation-icon {
        position: relative;
        width: 67px;
        height: 67px;
        padding: 9px;
        border-width: 5px;
        margin-inline: auto;
        margin-bottom: 10px;
    }
    .rehabilitation-card {
        padding-left: 0;
        text-align: center;
        background: #F5F5F5;
        padding: 10px;
        h3 {
            font-size: 16px;
        }
    }
}