header {
    background: linear-gradient(to top, #fff, #ebfffee0);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05);
    position: relative;
    z-index: 9;
}

.header-top {
    border-bottom: 1px solid rgb(var(--primary-rgb), 0.1);
}

.header-logo {
    width: 250px;
    height: 83px;
}

.header-top__item {
    font-size: 14px;
}

.header-top__item .icon {
    font-size: 30px;
    color: var(--primary-color);

}

.header-top__item .text {
    color: var(--bs-gray-600);
}

.header-top__item:hover .text {
    color: var(--bs-gray-700);
}

.header-search .form-control {
    border-radius: 30px;
    height: 42px;
    padding: 5px 10px 5px 30px;
    font-size: 14px;
    width: 100%;
    border: 1px solid var(--primary-color);
    box-shadow: 4px 8px 24px 0 rgb(177 196 218 / 13%);
}

.header-search .frmSearch-button {
    height: 42px;
    width: 40px;
    font-size: 13px;
    color: var(--bs-gray-600);
}

.header-navigation ul {
    display: flex;
    align-items: center;
}

.header-bars {
    width: 38px;
    height: 35px;
}

.header-bars svg {
    width: 30px;
    height: 30px;
}

.header-bars:hover svg .one,
.header-bars:hover svg .four {
    width: 0;
}

.header-bars:hover svg .two {
    transform: translate3d(-5px, -15px, 0);
    width: 90px;
}

.header-bars:hover svg .three {
    transform: translate3d(-30px, 15px, 0);
    width: 90px;
}

.header-navigation > ul > li > a {
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 15px;
    color: var(--bs-gray-800);
    white-space: nowrap;
}

.header-navigation > ul > li:hover > a {
    background-color: rgb(var(--primary-rgb), 0.1);
}

.header-navigation > ul > li > ul,
.header-navigation > ul > li > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 3;
    width: 250px;
    border-top: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0px 32px 48px -8px rgba(0, 0, 0, 0.10), 0px 0px 14px -4px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 3px 3px 12px 12px;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-navigation > ul > li > ul > li,
.header-navigation > ul > li > ul > li > ul > li {
    width: 100%;
    position: relative;
}

.header-navigation > ul > li > ul > li + li,
.header-navigation > ul > li > ul > li > ul > li + li {
    border-top: 1px dashed #D7E5ED;
}

.header-navigation > ul > li > ul > li > a,
.header-navigation > ul > li > ul > li > ul > li > a {
    color: var(--bs-gray-700);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3px;
    padding: 12px 15px;
    font-weight: 500;
}

.header-navigation > ul > li > ul > li > a::before,
.header-navigation > ul > li > ul > li > ul > li > a::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    left: 5px;
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    display: block;
    transition: var(--transition-default);
    opacity: 0;
}

.header-navigation > ul > li > ul > li:hover > a::before,
.header-navigation > ul > li > ul > li > ul > li:hover > a::before {
    left: 10px;
    opacity: 1;
}

.header-navigation > ul > li > ul > li:hover > a,
.header-navigation > ul > li > ul > li > ul > li:hover > a {
    margin-left: 10px;
    color: var(--primary-color);
}

.header-navigation > ul > li > ul > li > ul {
    left: 100%;
    top: 0;
}

.header-navigation > ul > li:hover > ul,
.header-navigation > ul > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

header.is-scroll {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 10;
    animation: header-scroll 0.5s forwards;
}

@keyframes header-scroll {
    0% {
        top: -400px;
    }

    100% {
        top: 0;
    }
}

header.is-scroll .header-navigation > ul > li > a {
    padding: 15px;
}

.section-hero .slide-content {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 4;
}

.section-hero .slide-content__subtitle {
    border-radius: 30px;
    padding: 3px 18px;
    background-color: rgba(255, 255, 255, 0.68);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid white;
    transition: all 0.8s ease-in-out;
    font-size: 14px;
    transition-delay: 0.1s;
    transform: translateY(30px);
    opacity: 0;
}

.section-hero .slide-content__title {
    font-size: 2.4em;
    background: var(--primary-gradient);
    background-clip: text;
    color: transparent;
    transition: all 0.8s ease-in-out;
    transition-delay: 0.3s;
    transform: translateY(40px);
    opacity: 0;
}

.section-hero .slide-content__text {
    font-size: 1.05em;
    transition: all 0.8s ease-in-out;
    transition-delay: 0.5s;
    font-weight: 500;
    color: var(--bs-gray-200);
    transform: translateY(40px);
    opacity: 0;
}

.section-hero .button-theme {
    transition: all 0.8s ease-in-out;
    transition-delay: 0.8s;
    transform: translateY(50px);
    opacity: 0;
}

.section-hero .swiper-slide .bg-hero {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.section-hero .swiper-slide-active .slide-content__subtitle,
.section-hero .swiper-slide-active .slide-content__title,
.section-hero .swiper-slide-active .slide-content__text,
.section-hero .swiper-slide-active .button-theme {
    transform: translateY(0);
    opacity: 1;
}

footer {
    background: var(--primary-gradient);
    color: #e6ffff;
}

.footer-logo {
    width: 150px;
}

.footer-heading {
    font-size: 1.1em;
    line-height: 1.5;
}

.footer-title {
    color: var(--bs-white);
    text-transform: uppercase;
    position: relative;
    font-size: 1em;
    font-weight: 600;
    padding-bottom: 20px;

}

.footer-content li > a {
    color: #e6ffff;
    display: block;
}

.footer-content li > a::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    left: -5px;
    width: 5px;
    height: 5px;
    background-color: #e6ffff;
    display: block;
    transition: var(--transition-default);
    opacity: 0;
}

.footer-content li > a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-content li > a:hover {
    padding-left: 10px;
}

.footer-social > a {
    width: 35px;
    height: 35px;
    font-size: 14px;
    background-color: rgb(var(--secondary-rgb), 0.5);
}

.footer-social > a:hover {
    transform: translateY(-5px);
    color: var(--bs-white);
    background-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #ffffff2e;
}

.footer-contact__bg {
    background: linear-gradient(to top, #ffffff33, #c5d7d64f);;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05);
    border: 1px solid var(--primary-color);
}

.footer-contact .title {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: var(--bs-white);
    width: max-content;
    border-bottom: 1px solid #ffffff73;
}

.footer-contact a {
    color: #e6ffff;
}

.footer-contact a:hover {
    color: var(--bs-white);
}

.section-html__form {
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 2px 16px -2px rgb(24 74 115 / 20%);
}

.section-html__form .section-heading .heading-title-2 {
    color: var(--acction-color);
}

.section-html__logo {
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 10px 20px 0 rgba(0, 174, 239, 0.15);
    border: 1px solid var(--primary-color);
}

.section-html__logo img {
    transform: rotate(-45deg);
}

.section-html .card-html {
    padding: 30px 35px;
    box-shadow: 0 15px 10px -15px #b8d9ff;
    background-color: rgba(255, 255, 255, 0.89);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.section-html .col:nth-child(1) .card-html,
.section-html .col:nth-child(4) .card-html {
    border-radius: 0 40px 0 40px;
}

.section-html .col:nth-child(2) .card-html,
.section-html .col:nth-child(3) .card-html {
    border-radius: 40px 0 40px 0;
}

.section-html .col:nth-child(1) .card-html {
    background-color: #daf5fb;
    border: 1px solid #97d9e9;
}

.section-html .col:nth-child(2) .card-html {
    background-color: #eae7fb;
    border: 1px solid #cdc7f3;
}

.section-html .col:nth-child(3) .card-html {
    background-color: #f8fbda;
    border: 1px solid #e1e7a4;
}

.section-html .col:nth-child(4) .card-html {
    background-color: #e5fffb;
    border: 1px solid #b5e5de;
}

.section-html .card-html__image {
    width: 35px;
    height: 35px;
}

.section-html .card-html__content {
    border-top: 1px solid rgb(var(--primary-rgb), 0.2);
}

.section-html .card-html__content::after {
    position: absolute;
    content: '';
    right: 0;
    top: -6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    background-color: rgb(205 235 240);
    transition: var(--transition-default);
}

.section-html .card-html__content::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 0;
    height: 1px;
    display: block;
    background-color: var(--primary-color-50);
    transition: var(--transition-default);
}

.section-html .card-html__title {
    font-size: 1.25em;
    line-height: 1.5;
}

.section-html .card-html__text {
    color: var(--bs-gray-700);
}

.section-html .col:nth-child(1) .card-html .card-html__link-text {
    color: #1bbadd;
}

.section-html .col:nth-child(2) .card-html .card-html__link-text {
    color: #543dd3;
}

.section-html .col:nth-child(3) .card-html .card-html__link-text {
    color: #899511;
}

.section-html .col:nth-child(4) .card-html .card-html__link-text {
    color: #13b59c;
}

.section-html .card-html:hover .card-html__link-text {
    text-decoration-line: underline;
}

.section-html .card-html:hover .card-html__link-text i {
    transform: translateX(5px);
}

.section-html .card-html:hover .card-html__content::before {
    width: 100%;
}

.section-html .card-html:hover .card-html__content::after {
    background-color: var(--primary-color);
}

.section-html__animation {
    padding-top: 0;
    white-space: nowrap;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: -.3px;
    font-weight: 600;
    color: transparent;
    width: max-content;
    transition: transform 1s cubic-bezier(.22, .61, .36, 1);
    animation: marquee 10s linear infinite;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #099cb440;
    text-stroke: 1px #099cb440;

}

@keyframes marquee {
    0% {
        transform: translateX(-10%);
    }
    100% {
        transform: translateX(0);
    }
}

.section-html__animation i {
    opacity: 1;
}

.section-category {
    margin: 50px;
}

.section-category .category-decor {
    width: 500px;
    height: 227px;
}

.section-category .category-decor-2 {
    width: 180px;
    height: 138px;
    right: 15px;
    top: -23px;
    animation: tranform-y 7s linear infinite;
}

@keyframes tranform-y {
    0% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}

.section-category__wrap {
    border-radius: 20px;
    background-color: rgb(var(--primary-rgb), 0.2);
}

.card-category .card-title {
    font-size: 1.1em;
}

.card-category .card-text {
    font-size: 14px;
    color: var(--bs-gray-600);
    border-top: 1px solid rgb(var(--primary-rgb), 0.15);
}

.card-category::after {
    content: '';
    z-index: 1;
    position: absolute;
    width: 119px;
    height: 112px;
    top: auto;
    left: auto;
    bottom: -1px;
    right: -1px;
    background-color: rgb(203 235 240);
    -webkit-mask: url('../../../../public/upload/theme/shape-bottom.png') no-repeat;
    mask: url('../../../../public/upload/theme/shape-bottom.png') no-repeat;
}

.card-category .card-image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.card-category:hover .card-image::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.card-category:hover .card-image img {
    transform: scale(1.05);
}

.button-arrow {
    width: 48px;
    height: 48px;
    right: 2px;
    bottom: 3px;
    font-size: 17px;
    background: var(--bs-white);
}

.card-category .button-arrow i {
    transform: rotate(-45deg);
    transition: 0.2s ease-in;
}

.card-category .button-arrow i:last-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    transform: rotate(-45deg) translateX(-100%);
    opacity: 0;
}

.card-category:hover .button-arrow {
    background: var(--primary-color);
    color: var(--bs-white);
}

.card-category:hover .button-arrow i:first-child {
    transform: rotate(-45deg) translateX(100%);
    opacity: 0;
}

.card-category:hover .button-arrow i:last-child {
    transform: rotate(-45deg) translateX(0);
    opacity: 1;
}

.card-category:hover .card-title {
    color: var(--secondary-color);
}

.card-doctor {
    border-radius: 100px 100px 0 0;
}

.card-doctor .card-avatar {
    background: var(--bg-primary-1);
    transition: all 0.4s ease-in-out;
}

.card-doctor .card-avatar img {
    padding: 20px 20px 0 20px;
}

.card-doctor:hover .card-avatar img {
    transform: scale(1.05);
}

.card-doctor .card-avatar::after {
    display: block;
    content: "";
    padding-top: 125%;
}

.card-doctor .card-avatar::before {
    content: "";
    background: var(--bg-secondary-2);
    position: absolute;
    height: 0;
    width: 100%;
    border-radius: 100px 100px 0 0;
    left: 0;
    top: 0;
    z-index: 0;
    transition: all 0.6s;
}

.card-doctor:hover .card-avatar::before {
    opacity: 1;
    height: 100%;
}

.card-doctor .card-title {
    font-size: 1.1em;
}

.card-doctor .card-des {
    color: var(--bs-gray-700);
    border-top: 1px solid rgb(var(--primary-rgb), 0.15);
}

.card-doctor .icon {
    position: absolute;
    top: 53px;
    right: 30px;
    animation: topBottom 3s ease-in-out infinite;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    font-size: 1.7em;
    color: rgb(var(--primary-rgb), 0.5);
}

@keyframes topBottom {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.card-doctor:hover .icon {
    opacity: 0.8;
}

.section-equipment {
    background-color: rgb(var(--primary-rgb), 0.2);
}

.section-equipment .swiper-slide:nth-child(odd) .card-equipment {
    transform: translateY(20px);
}

.card-equipment,
.card-equipment img {
    border-radius: 10px;
}

.card-equipment::before {
    display: block;
    content: "";
    padding-top: 135%;
}

.card-equipment:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #042141db);
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    z-index: 2;
}

.card-equipment:hover:after {
    height: 100%;
}

.card-equipment .title {
    padding: 20px 20px 12px 20px;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

.card-equipment .title span:first-child {
    font-size: 1.125em;
    font-weight: 600;
}

.card-equipment .title span:last-child {
    color: var(--bs-gray-200);
    display: inline-flex;
}

.card-equipment:hover .title {
    transform: translateY(-3px);
}

.section-partner .card-partner {
    height: 90px;
}
