/* START :: HEADER */

.header-wrapper .site-logo img {
    height: 46px;
    width: auto
}

.header-wrapper ul {
    list-style: none;
    gap: 40px;
}

.dropdown-menu:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 25px;
    left: 14%;
    right: auto;
    z-index: -35;
    top: -10px;
    background-color: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.1) -6px -7px 16px -2px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    transform: rotate(45deg);
}

.header-wrapper .menu-wrapper {
    display: flex;
    align-items: center;
    padding: 0;
}

.header-wrapper ul a {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: var(--dark-color);
}

.header-wrapper ul a:hover,
.header-wrapper ul a.active {
    color: var(--secondary-color)
}

.dropdown .dropdown-menu {
    padding: 12px 24px;
    margin: 0;
    border: 0;
    border-radius: 12px;
    box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.17);
    width: 330px;
    transform: translate(0px, 45px) !important;
}

.nv__service-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.10;
}

.dropdown-toggle::after {
    border: 0;
    background-image: url(../images/icons/chevronDown.svg);
    background-size: 16px;
    width: 16px;
    height: 10px;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-left: 8px;
    position: relative;
    top: 0px;
    transition: all 0.3s ease-in-out;
}

.dropdown .dropdown-menu li .dropdown-item.active {
    color: var(--secondary-color);
    font-weight: 600
}

.dropdown-toggle.active::after {
    filter: brightness(0) saturate(100%) invert(78%) sepia(57%) saturate(709%) hue-rotate(341deg) brightness(98%) contrast(98%);
    top: 0;
    /* transition: all 0.5s ease-in-out; */
}

.dropdown-toggle.show::after {
    transform: rotate(180deg);
    transition: all 0.2s ease-in-out;
}

.dropdown-toggle:hover::after {
    filter: brightness(0) saturate(100%) invert(80%) sepia(70%) saturate(3257%) hue-rotate(348deg) brightness(115%) contrast(94%);
}

.dropdown .dropdown-menu li .dropdown-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--dark-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white-color);
    padding: 12px 0;
    transition: all 0.2s ease-in-out;
}

.dropdown .dropdown-menu li:last-child .dropdown-item {
    border-bottom: 0;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.dropdown .dropdown-menu li:last-child .dropdown-item {
    border-bottom: 0
}

.navbar-toggler {
    display: none;
}

.navbar-toggler .line {
    background-color: #222222;
    display: block;
    height: 2px;
    transition: .2s ease-in-out;
    width: 25px;
}

.navbar-toggler .line:nth-child(2) {
    margin: 6px 0;
}


.as__menu-open .navbar-toggler .line:first-child {
    -moz-transform: rotate(45deg) translate(2px, 7px);
    -ms-transform: rotate(45deg) translate(2px, 7px);
    -webkit-transform: rotate(45deg) translate(2px, 7px);
    transform: rotate(45deg) translate(2px, 7px);
}

.as__menu-open .navbar-toggler .line:nth-child(2) {
    opacity: 0;
}

.as__menu-open .navbar-toggler .line:last-child {
    -moz-transform: rotate(-45deg) translate(4px, -10px);
    -ms-transform: rotate(-45deg) translate(4px, -10px);
    -webkit-transform: rotate(-45deg) translate(4px, -10px);
    transform: rotate(-45deg) translate(4px, -10px);
}

.nv__header-wrap {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 1s ease;
}

.nv__header-wrap.slide-down {
    box-shadow: 0px 0px 12px 6px rgb(0 0 0 / 6%);
}

.slide-down {
    animation: slide-down .7s;
    will-change: transform;
    z-index: 10;
}

.slideOutUp {
    animation: slideOutUp .7s;
    will-change: transform
}

.nv__animated-header {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform, visibility;
}

.nv__mobile-dropdown {
    display: none;
}

.header-wrapper .btn:hover {
    background-color: var(--secondary-color);
}

.hm__wallte-icn a {
    width: 55px;
    height: 55px;
    padding: 0;
    line-height: 48px;
}

.header-wrapper {
    padding: 10px 0;
}

header {
    padding: 14px 0;
    background-color: #fff;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateZ(0);
    -webkit-transition: background .3scubic-bezier(.25, .46, .45, .94);
    -moz-transition: background .3s cubic-bezier(.25, .46, .45, .94);
    transition: background .3scubic-bezier(.25, .46, .45, .94);
    width: 100%;
    z-index: 10;
}

@-webkit-keyframes slide-down {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }
}

@keyframes slide-down {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: hidden;
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: hidden;
    }
}

.slide-down {
    animation: slide-down .7s;
    will-change: transform;
    z-index: 10;
}

.slideOutUp {
    animation: slideOutUp .7s;
    will-change: transform
}

.cs__animated-header {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform
}

header.cs__animated-header.slide-down {
    box-shadow: 0px 0px 12px 6px rgb(0 0 0 / 6%);
}

#navbarSupportedContent {
    display: none !important;
}

/* END :: HEADER */
/* STRAT :: FOOTER */
.footer .hm__footer-menu img,
.footer .site-logo img {
    max-width: 38%;
}

.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 0 30px;
}

.hm__input-block input[type="text"]::placeholder {
    color: #ffffff;
}

.hm__input-block input[type="text"] {
    width: calc(100% - 122px);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
}

.hm__input-block input[type="button"] {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    border-radius: 12px;
    white-space: nowrap;
    color: #ffffff;
    display: inline-block;
    background-color: var(--primary-color);
    text-transform: capitalize;
    border: 0;
    margin-left: 16px;
}

.hm__footer-menu ul {
    padding: 0;
}

.hm__footer-menu ul li {
    list-style: none;
    padding: 6px 0;
}

.hm__footer-menu ul li:hover img {
    transition: all 0.2s ease-in-out;
}

.hm__footer-menu ul li:hover img {
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
}

.hm__footer-menu ul li a {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 32px;
}

.hm__social-icn a:hover svg {
    transition: all 0.2s ease-in-out;
}

.hm__info-blobk:hover img,
.hm__social-icn a:hover svg {
    transform: scale(1.2);
}

.hm__information-sec h3 {
    margin-bottom: 14px;
}

.hm__information-sec span {
    display: flex;
    width: 38px;
    height: 38px;
    border-radius: 100px;
    background-color: #ffffff;
    text-align: center;
    line-height: 36px;
    justify-content: center;
}

.hm__information-sec span img {
    max-width: 22px;
}

.footer .hm__desc {
    margin: 22px 0;
}

.hm__info-blobk {
    gap: 14px;
    margin: 0 0 16px;
}

.hm__info-blobk p {
    line-height: 30px;
    font-size: 18px;
    color: #ffffff;
    width: calc(100% - 38px);
}

.hm__martwel-block {
    padding-right: 190px;
}

.hm__copywrite-sec {
    border-top: 1px solid #dddddd63;
    padding: 30px 0 0;
    margin: 45px 0 0;
    text-align: center;
}

.footer h3 {
    margin: 0 0 24px;
}

/* END :: FOOTER */



.mart_header .cart__btn {
    height: 46px;
    padding: 3px 9px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    width: 56px;
}

.mart_header .cart__btn img {
    width: 100%;
    height: 100%;
    max-width: 40px;
    max-height: 34px;
    min-width: 40px;
    min-height: 35px;
    object-fit: cover;
}

.desk_header_logo {
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-bar-container.desktop,
.search-bar-container.mobile {
    width: 19%;
    margin: 0 !important;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    max-width: 40%;
}

.search-bar-container.desktop .search-btn,
.search-bar-container.mobile .search-btn {
    background-color: transparent;
}

.search-bar-container.desktop .search-btn svg,
.search-bar-container.mobile .search-btn svg {
    filter: brightness(0) saturate(100%) invert(16%) sepia(6%) saturate(100%) hue-rotate(54deg) brightness(92%) contrast(93%);
}

.search-bar-container .search-bar::placeholder {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #B6B6B6;
}

.mart_header .hm__left-header {
    width: 87%;
}

.desk_header_logo .hm__mobile-icn svg,
.desk_header_logo .hm__right-header .btn img {
    width: 18px;
    height: 18px;
}

.desk_header_logo .hm__mobile-icn {
    display: block;
}

.desk_header_logo a.btn.hm__book-apoinment {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: row-reverse;
    font-size: 15px;
}

.mart_header .cart__btn {
    position: relative;
    display: inline-block;
}

.mart_header .cart__btn a {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transform: translate(-50%, -50%);
}

.mart_header .cart__btn .pstore {
    animation-name: showPlaystore;
}

.mart_header .cart__btn .appstore {
    animation-name: showAppstore;
}



@keyframes showPlaystore {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes showAppstore {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    55% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width:1440px) {
    .mart_header .hm__left-header {
        width: 85%;
    }
}

@media (max-width:1280px) {
    .mart_header .hm__left-header {
        width: 80%;
    }

    .desk_header_logo {
        gap: 15px;
    }
}

@media (max-width:1100px) {
    .desk_header_logo .hm__btn-txt {
        display: none;
    }

    .desk_header_logo a.btn.hm__book-apoinment {
        padding: 15px;
    }

    .mart_header>div {
        padding: 0 30px;
    }

    .desk_header_logo .hm__mobile-icn {
        display: flex !important;
    }
}



@media (max-width:991px) {
    ul#navbarSupportedContent {
    display: block !important;
}

    .search-bar-container.desktop,
    .search-bar-container.mobile {
        max-width: 240px !important;
    }

    .search-bar-container.desktop .search-bar,
    .search-bar-container.mobile .search-bar {
        width: 100%;
    }

    #navbarSupportedContent {
        display: block;
    }

    .desk_header_logo .hm__mobile-icn {
        display: block;
    }

    .header-wrapper .site-logo img {
        height: 46px;
        width: 100px;
        object-fit: contain;
    }

}


@media (max-width: 820px) {
.prise_plan{
    display: none !important;
}
}

@media (max-width:767px) {
    .mart_header>div {
        padding: 0 20px;
    }

    .desk_header_logo a.btn.hm__book-apoinment {
        padding: 9px 10px;
    }

    .hm__right-header .btn {
        width: 35px;
        height: 35px;
        line-height: 31px;
        padding: 0;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .search-bar-container.desktop,
    .search-bar-container.mobile {
        max-width: 100% !important;
    }

    .search-bar-container.desktop,
    .search-bar-container.mobile {
        display: block;
        margin: 0 20px 0 20px !important;
        width: auto !important;
    }

    .desk_header_logo .search-bar-container {
        width: 19%;
        margin: 0 !important;
        border: 1px solid #E6E6E6;
        border-radius: 10px;
        position: absolute;
        top: 100px;
        width: 90% !important;
        left: 50%;
        transform: translate(-50%, -50%);
        display: none;
    }

    .mart_header .cart__btn {
        height: 38px;
        padding: 8px 6px;
        border: 1px solid #E6E6E6;
        border-radius: 8px;
        width: 48px;
    }

    .mart_header .cart__btn img {
        width: 100%;
        height: 100%;
        max-width: 45px;
        max-height: 35px;
        min-width: 42px;
        min-height: 30px;
        object-fit: cover;
    }

    .desk_header_logo .hm__book-apoinment {
        padding: 3px 14px;
    }

    .search-bar-container.mobile {
        margin-top: 75px !important;
        margin-bottom: 15px !important;
    }

    /* .home_slide_sec {
    margin-top: 170px;
} */
}
.desk_header_logo .hm__book-apoinment {
    display: none !important;
}

.hmart-header-location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 37px;
    margin-left: 20px;
    padding: 0 15px;
    border: 1px solid #e0e4ea;
    border-radius: 4px;
    background: #ffffff;
    color: #344ff0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.hmart-header-location i {
    font-size: 14px;
}

.search-bar-container.desktop {
    position: relative;
}

.search-bar-container.desktop .search-bar {
    padding-right: 74px;
}

.hmart-search-mic {
    position: absolute;
    top: 50%;
    right: 42px;
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #344ff0;
    transform: translateY(-50%);
}

.hmart-search-mic i {
    font-size: 14px;
}
