          body > .skiptranslate,.goog-logo-link,.gskiptranslate,.goog-te-gadget span,.goog-te-banner-frame,#goog-gt-tt, .goog-te-balloon-frame,div#goog-gt-{
    display: none!important;
  }
  .goog-te-gadget {
    font-family: arial;
    font-size: 7px !important;
    color: #666;
    white-space: nowrap;
}
        .goog-te-gadget {
    color: transparent!important;
    font-size:0px;
  }
  .goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
  }
  /* #google_translate_element select{
    background:#192434;
    color:#fff4e4;
    border: none;
    font-weight:bold;
    border-radius:3px;
    padding:8px 12px
  } */
  .goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    padding: 5px 30px 5px 10px;
    line-height: 20px;
    color: rgb(0, 0, 0);
    font-size: 13px;
    border-radius: 4px;
    height: 35px;
}

  body.is-loaded.without-shop-sidebar {
    top: 0px !important;
}
html, body {
    overflow-x: hidden;
}
.header-bottom-area {
    /*background-color: #00002a;*/
    background-color: #73926c;
}
.error{
    color: red;
    font-weight: 600;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}
.mainmenu-content {
    margin: 0px 0px;
}
a.menu-link.active-link {
    background-color: #eda909;
    font-weight: 400 !important;
}
.header-track a {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-size: 17px;
    font-weight: 300;
  color: #145962;
    background-color: #8ce0eb;
    padding: 15px;
}
.header-track a svg {
    font-size: 18px;
}
a.d-block.btn.btn-outline {
    background-color: #fff;
    border: 1px solid #73926c;
    text-transform: uppercase;
    font-size: 14px;
    color: #73926c;
    border-radius: 4px;
    padding: 10px 15px;
    padding: 8px 15px;
    padding: 10px 10px;
    height: 40px;
    height: 42px;
}
a.d-block.btn.btn-fill {
    background-color: #73926c;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;
    padding: 8px 15px;
    padding: 10px 15px;
    height: 40px;
    height: 42px;
}
.name-fav {
    margin-top: -3px !important;
    display: block;
    font-weight: 400;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}
.grid-item {
    background-color: #F5F5F5;
    padding: 20px 10px;
    text-align: center;
    border-radius: 4px;
}
.grid-item .img-container img {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth easing */
    will-change: transform; /* Optimizes performance */
    height: auto;
}
.grid-item:hover .img-container img {
    transform: scale(1.1); /* Gently scales up by 10% */
}
.text-container p {
    font-size: 14px;
    color: #000;
    font-weight: 400;
}
.grid-item:hover {
    background-color: #fff;
    box-shadow: 0px 5px 3px 0px #0000000D;
}
.hideDiv {
    display: none; /* Instead of this */

    /* Use this instead */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.showDiv {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    height: auto;
}
.section-heading h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #73926c;
}
.top-business {
    background-color: #F2F2F2;
}
.section-pt {
    padding-top: 50px;
    padding-bottom: 50px;
}
.btn-view {
    background-color: #73926c;
    color: #fff;
    border-radius: 4px;
}
a.btn.btn-view:hover {
    background: #fff;
    border: 1px solid #73926c;
    color: #73926c;
}
.image-area {
    position: relative;
    width: 100%;
    height: 170px; /* Fixed height for all images */
    height: 150px;
    overflow: hidden;
}
.image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures all images cover the area uniformly */
    border-radius: 6px;
}
.rotated-icon {
    transform: rotate(60deg);
}
.business-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-columns: repeat(5, minmax(100px, 1fr));
    gap: 20px;
}
.business-grid-item {
    background-color: #fff;
    padding: 7px 7px 2px 7px;
    border-radius: 8px;
    box-shadow: 0px 5px 3px 0px #0000000D;
    position: relative;
}
/* Tooltip Styling */
.business-grid-item::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00000080;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    width: 90%;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    opacity: 0;
    visibility: hidden;
    /* transition: all 0.3s ease; */
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  /* Tooltip Arrow */
  /* .business-grid-item::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #000 transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  } */

  /* Show Tooltip on Hover */
  /* .business-grid-item:hover::before,
  .business-grid-item:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: 35%;
  } */
  .business-grid-item:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: 35%;
  }
.icon-hold {
    background-color: #73926c;
    color: #fff;
    padding: 3px 8px;
    font-size: 25px;
    width: 35px;
    height: 35px;
    border-radius: 100px;
}
.title-wrapper {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    height: 25px;
}
.business-grid-item .content p {
    font-size: 12px;
    font-weight: 500;
    color: #4D4D4D;
    line-height: 1.7;
}
.business-grid-item .content svg {
    color: #d00c27;
}
.business-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: hidden; /* Prevent content from spilling */
}

/* Ensure content section can shrink */
.business-grid-item .content {
    flex: 1;
    min-width: 0; /* Prevents flex from expanding beyond the container */
    overflow: hidden; /* Hides extra text */
}

/* Apply ellipsis properly */
.business-grid-item .content .business-title {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block; /* Needed to make text-overflow work */
    max-width: 100%; /* Ensures it doesn’t overflow */
}
.favorite-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.favorite-icon .product-icon i, .favorite-icon .product-icon svg {
    color: #d00c27;
    font-size: 20px;
}
.topbusiness-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, minmax(100px, 1fr));
    gap: 15px;
}
.topbusiness-grid-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background-color: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0px 5px 3px 0px #0000000D;
}
/* Image Wrapper to Control Image Size */
.image-section {
    width: 100px; /* Adjust this for uniform images */
    height: 100px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px; /* Optional: for rounded corners */
}
/* Ensures images are responsive and uniform */
.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops image to fit */
}
/* Content Area */
.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: space-between;
}
h5.topbusiness-title {
    color: #000;
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* Number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;

}
.content-section p {
    color: #555;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* Number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.content-section svg {
    color: #d00c27;
}
.btn-viewdetail {
    background-color: #00002a;
    color: #fff;
    border: 1px solid #00002a;
    font-size: 12px;
    border-radius: 4px;
}
.btn-viewdetail:hover {
    background-color: #fff;
    border: 1px solid #00002a;
    color: #00002a;
}
.btn-viewdetail:hover {
    background-color: #d00c27;
    border: 1px solid #d00c27;
    color: #ffffff;
}
.secondary-btn {
    color: #fff;
    background-color: #d00c27;
    border: 2px solid #d00c27;
}
.secondary-btn:hover {
    color: #fff;
    background-color: #00002a;
    border-color: #00002a;
}
.banner-section {
    background-image: url('../image/index/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 15px;
    padding-bottom: 0px;
}
.carousel-inner {
    border-radius: 6px;
}
#heroCarousel .carousel-item {
    height: 85vh; /* Adjust height as needed */
}
/* Background images */
/* #heroCarousel .carousel-item-1 {
    background-image: url('../image/index/main-banner-4.jpg');
}
#heroCarousel .carousel-item-2 {
    background-image: url('../image/index/main-banner-5.jpg');
}
#heroCarousel .carousel-item-3 {
    background-image: url('../image/index/main-banner-1.jpg');
}
#heroCarousel .carousel-item-4 {
    background-image: url('../image/index/main-banner-2.jpg');
}
#heroCarousel .carousel-item-5 {
    background-image: url('../image/index/main-banner-3.jpg');
}
#heroCarousel .carousel-item-6 {
    background-image: url('../image/index/main-banner-6.jpg');
} */
#heroCarousel .carousel-control-prev-icon {
    background-image: url(../image/index/arrow-left.png);
}
#heroCarousel .carousel-control-next-icon {
    background-image: url(../image/index/arrow-right.png);
}
#customCarousel .carousel-item {
    height: 38.5vh; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
}
/* #customCarousel .carousel-item-1{
    background-image: url('../image/index/action-banner-business.jpg');
}
#customCarousel .carousel-item-2{
    background-image: url('../image/index/action-banner-charity.jpg');
}
#customCarousel .carousel-item-3{
    background-image: url('../image/index/action-banner-worship.jpg');
} */
.carousel-caption-left {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: flex-start;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 80%;
}
.carousel-caption-left h2 {
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    text-shadow: 0px 0px 4px #000;
}
.carousel-caption-left p {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 15px;
    line-height: 20px;
    text-shadow: 0px 0px 4px #000;
}
.carousel-caption-left .btn-banner {
    background: #fff;
    color: #000;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #fff;
}
.carousel-fade .carousel-item {
    height: 45vh; /* Adjust height as needed */
    background-size: cover;
    background-size: 100% 100%;
    background-position: center;
}
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.carousel-fade .carousel-item.active {
    opacity: 1;
}
/* #fadeCarousel1 .carousel-item-1{
    background-image: url('../image/index/flash-1.jpg');
}
#fadeCarousel1 .carousel-item-2{
    background-image: url('../image/index/flash-2.jpg');
}
#fadeCarousel2 .carousel-item-1{
    background-image: url('../image/index/flash-2.jpg');
}
#fadeCarousel2 .carousel-item-2{
    background-image: url('../image/index/flash-1.jpg');
} */
#heroCarousel .carousel-item img, #customCarousel .carousel-item img,
#fadeCarousel1 .carousel-item img, #fadeCarousel2 .carousel-item img {
    height: 100%;
    width: auto; /* Maintain aspect ratio */
    max-width: 100%;
    object-fit: cover; /* Ensures the whole image is visible without cropping */
}
#heroCarousel, #customCarousel, #fadeCarousel1, #fadeCarousel2 {
	margin-bottom : 10px;
}
.hearticon-2 {
    display: none;
}
.ads-slider {
    padding-top: 50px;
    padding-bottom: 50px;
}
/* .owl-carousel .item {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.owl-carousel .owl-stage {
    margin-top: 80px;
    height: 50vh;
}
.owl-carousel .item {
    transform: scale(0.5);
    transition: transform 0.3sease-in-out;
}
.owl-carousel .center .item {
    transform: scale(0.9);
}
.owl-carousel .center {
    transform: scale(1.65);
} */

.adsimage-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}
.adsimage-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
.top-left-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    font-size: 15px;
    font-size: 18px;
    border: 1px solid #fff;
    color: #000;
    padding: 5px 10px;
    padding: 3px 10px;
    font-weight: 300;
    border-radius: 4px;
    box-shadow: 1px 3px 4px #000;
}
.top-left-btn:hover {
    background-color: #73926c !important;
    border-color:#73926c !important;
    color: #fff !important;
}
.top-left-btn i {
    font-size: 24px;
    font-weight: 200 !important;
}
.bottom-left-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 10px;
}
.bottom-left-caption h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 3px 3px 2px black;
}
.bottom-left-caption p{
    color: #fff;
    font-size: 12px;
    text-shadow: 2px 1px 1px black;
}
.mini-foot {
    background-color: #73926c;
    text-align: center;
}
.mini-foot h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 4px;
}
.footer-area {
    background: url(../image/index/footer-bg.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
}
.footer-contact h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.footer-list li {
    line-height: 2;
}
.footer-list li a {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
}
.footer-list li a:hover {
    font-weight: 400;
}
.footer-company-detail p {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 20px;
}
.footer-menu div p {
    color: #fff;
    font-size: 12px;
}
.justify-space-evenly {
    justify-content: space-evenly;
}
select.footer-select {
    height: 35px;
    padding-top: 5px;
    border-radius: 4px;
    margin-top: 15px;
    line-height: 20px;
    color: #000;
    font-size: 13px;
}
.footer-social img {
    height: auto;
}
.mobile-app {
    background-image: url('../image/index/app-bg-banner.jpg');
    background-size: 100% 100%;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 50px;
}
.app-content-wrapper {
    padding: 50px 0;
}
.app-content-wrapper h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 300;
}
.app-content-wrapper h2 span {
    font-weight: 500;
}
.app-content-wrapper p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}
.app-logo {
    width: 175px;
}
section.form-section {
    background-color: #f2f2f2;
    padding-top: 50px;
    padding-bottom: 50px;
}
.form-card {
    background-color: #fff;
    padding: 15px 15px 5px 15px;
    border-radius: 4px;
    box-shadow: 0px 5px 3px 0px #0000000D;
}
.btn-search {
    background-color: #73926c;
    padding: 12px 12px;
    color: #fff;
    margin-bottom: 10px;
}
.btn-search:hover {
    background-color: #fff;
    color: #73926c;
    border: 1px solid #73926c;
}
.btn-reset {
    background-color: #f5f5f5;
    padding: 12px;
    margin-bottom: 10px;
}
.btn-reset:hover {
    background-color: #fff;
    color: #00002a;
    border: 1px solid #00002a;
}
.input-group.business-type, .input-group.search-by, .input-group.search-input {
    border-radius: 4px;
    border: none;
    margin-bottom: 10px;
}
.business-type .input-group-text {
    background-color: #2E5077;
    color: #fff;
    border: none;
}
.business-type .form-select {
    background-color: #2E50771A;
    border: none;
}
.search-by .input-group-text {
    background-color: #441752;
    color: #fff;
    border: none;
}
.search-by .form-select {
    background-color: #4417521A;
    border: none;
}
.search-input .input-group-text {
    background-color: #eda909;
    color: #fff;
    border: none;
}
.input-group-text.group2 {
    background-color: #e9f1f2;
    color: #257180;
    margin-left: 0 !important;
}
.search-input input {
    background-color: #2571801A;
    border: none;
}
.form-select:focus {
    outline: 0;
    box-shadow: none;
}
.search-input .form-control:focus {
    background-color: #2571801A;
    outline: 0;
    box-shadow: none;
}
.search-by::before,
.search-by::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 60%;
    background-color: #ccc; /* Change the color as needed */
    top: 50%;
    transform: translateY(-50%);
}

.search-by::before {
    left: -15px; /* Adjust spacing */
}

.search-by::after {
    right: -15px; /* Adjust spacing */
}
a#top {
    border-radius: 100px;
}
.form-section h2 {
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 5px;
}
section.form-section p {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    letter-spacing: .25px;
    margin-top: 10px;
}
.main-header {
    top:-1px !important;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li:hover a.menu-link {
    color: #ffffff;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link span.menu-title::after {
    background-color: #ffffff;
}
.mobile-menu.active {
    left: 0px;
    background-color: #ffffff;
}
.mobilemenu-content .main-wrap .menu-ul .menu-li a {
    color: #00002a;
    font-size: 16px;
}
.mobilemenu-content .main-wrap .menu-ul .menu-li a.mob-menu.active-link {
    background-color: #00002a;
    font-weight: 500;
    color: #fff;
}
.mobilemenu-content .main-wrap .menu-ul .menu-li a:hover {
    background-color: #0f7e95;
    color: #fff;
}
.business-button {
    width: 100%;
    margin-top: 5%;
}
a.mob-business-link {
    padding: 15px;
    display: block;
    font-size: 18px;
    width: 100%;
    background-color: #d00c27;
    color: #fff;
    text-decoration: none;
}
section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section-visible {
    opacity: 1;
    transform: translateY(0);
}
.header-icon-wishlist i {
    color: #d00c27;
}
a.header-icon-wishlist {
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 4px;
}
.mobile-container {
    position: relative;
    width: 300px;
    height: 600px;
    background: url('../image/index/phone_frame.png') no-repeat center center;
    background-size: auto;
    margin: auto;
}
.mobile-container::after {
    display: none;
    content: "";
    position: absolute;
    top: 50px;
    right: -20px; /* Adjust the left value to move it slightly left */
    width: 100%;
    height: 100%;
    background: url('../image/index/back-phone.png') no-repeat center center;
    background-size: auto;
    opacity: 0.5; /* Adjust opacity if needed */
    z-index: -1; /* Ensure it is behind the original mobile frame */
}
.mobile-container .screen-slider {
    position: absolute;
    top: 7%;
    left: 7%;
    width: 95%;
    right: 0;
    height: 85%;
    overflow: hidden;
    border-radius: 15px;
}
.mobile-container .screen-slider img {
    width: 90%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    /* animation: screenTransition 22s infinite; */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.mobile-container .screen-slider img.active {
    opacity: 1;
}

/* .screen-slider img:nth-child(1) { animation-delay: 1s; }
.screen-slider img:nth-child(2) { animation-delay: 2s; }
.screen-slider img:nth-child(3) { animation-delay: 4s; }
.screen-slider img:nth-child(4) { animation-delay: 6s; }
.screen-slider img:nth-child(5) { animation-delay: 8s; }
.screen-slider img:nth-child(6) { animation-delay: 10s; }
.screen-slider img:nth-child(7) { animation-delay: 12s; }
.screen-slider img:nth-child(8) { animation-delay: 14s; }
.screen-slider img:nth-child(9) { animation-delay: 16s; }
.screen-slider img:nth-child(10) { animation-delay: 18s; }
.screen-slider img:nth-child(11) { animation-delay: 20s; }

@keyframes screenTransition {
    0% { opacity: 0; }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; }
    100% { opacity: 0; }
} */

.assist-hours {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* ----------------- */
.base-template__text {
	margin-bottom: 60px;
}
.swiper {
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.emotions-slider {
	--color-gray: #818181;
	--color-gray-dark: #1e1e1e;
	padding-inline: 98px;
	position: relative;
}
.emotions-slider__slide {
	display: flex;
	align-items: center;
	min-height: 550px;
}
@media screen and (max-width: 767.9px) {
	.emotions-slider {
		padding: 0;
		margin-inline: -20px;
	}
}
.slider-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	z-index: 1;
	pointer-events: none;
}
.slider-nav__item {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	width: 48px;
	pointer-events: auto;
	cursor: pointer;
	transition: all 0.3s ease-out;
}
.slider-nav__item.disabled {
	cursor: default;
	opacity: 0.5;
}
.slider-nav__item path {
	stroke: currentColor;
}
@media (hover: hover) and (pointer: fine) {
	.slider-nav__item:not(.disabled):hover {
		color: var(--color-blue);
	}
}
@media (hover: none) {
	.slider-nav__item:not(.disabled):active {
		color: var(--color-blue);
	}
}
@media screen and (max-width: 767.9px) {
	.slider-nav {
		display: none;
	}
}
.slider-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 40px;
}
.swiper-pagination-lock {
	display: none !important;
}
.slider-pagination__item {
	width: 8px;
	height: 8px;
	border-radius: 99px;
	background: #73926c;
	transition: all 0.3s ease-out;
	opacity: 0.2;
}
.slider-pagination__item.active {
	width: 30px;
	opacity: 1;
}
.swiper-slide {
	width: auto;
	height: auto;
}
@keyframes btn-arrow-move {
	0% {
		translate: 0;
	}

	100% {
		translate: 100% -100%;
	}
}
.emotions-slider-item {
	--border-radius: 10px;
	width: calc(100dvw - 60px);
	max-width: 750px;
	background: var(--color-gray-dark);
	border-radius: var(--border-radius);
	position: relative;
	overflow: hidden;
}
.emotions-slider-item__badge {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px 4px 5px;
	background: #00000066;
	border-bottom-right-radius: var(--border-radius);
	font-size: 14px;
	line-height: calc(24 / 14);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.emotions-slider-item__image {
	aspect-ratio: 800 / 500;
	overflow: hidden;
}
.emotions-slider-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
/* Style for the Button */
.slide-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 2;
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 1);
}

/* Style for Caption */
.slide-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    max-width: 80%;
}

.slide-caption h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.slide-caption p {
    margin: 5px 0 0;
    font-size: 14px;
}
.emotions-slider__slider {
    perspective: 1000px; /* Adds depth */
}

.swiper-slide {
    transition: transform 0.6s ease-in-out;
}

.swiper-slide-prev {
    transform: rotateY(20deg) scale(0.9);
    transform-origin: left center;
    opacity: 0.7;
}

.swiper-slide-next {
    transform: rotateY(-20deg) scale(0.9);
    transform-origin: right center;
    opacity: 0.7;
}

.swiper-slide-active {
    transform: rotateY(0) scale(1);
    opacity: 1;
}
/* ----------------- */

.modal#loginModal .modal-content {
	border-radius: 30px;
}
.login-user-icon {
    font-size: 100px;
    color: #00002a;
}
.text-login {
    color: #d00c27 !important;
    letter-spacing: 1px;
}
p.login-modal-text {
    color: #000;
    font-size: 15px;
}
.btn-login-fill {
    border: 1px solid #00002a;
    color: #00002a;
    background-color: #fff;
    border-radius: 4px;
}
.btn-login-fill:hover {
    background-color: #00002a;
    color: #fff;
}
button.btn-close:focus {
    border: none;
    outline: 0;
    box-shadow: none;
}
.card-grey {
    background: #f5f5f5;
    padding: 25px 20px;
    border-radius: 6px;
}
.detail-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #202838;
}
.description-detail {
    font-size: 14px;
    font-weight: 400;
    color: #4D4D4D;
}
.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    width: 70px;
    height: 70px;
    font-size: 25px;
    background-color: #EAECF0;
    border-radius: 4px;
}
.contact-title {
    color: #009688;
    font-size: 14px;
    font-weight: 500;
}
.contact-detail {
    font-size: 12px;
    color: #4D4D4D;
    font-weight: 400;
    line-height: 18px;
}
.social-share-icon {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
iframe.g-map {
    border-radius: 4px;
    box-shadow: 0px 4px 4px 0px #0000002e;
}
.tag-element {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    color: #4D4D4D;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #009688;
}
.card-color-head {
    background-color: #00002a;
    padding: 20px;
    border-radius: 6px 6px 0px 0px;
}
.business-card-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.business-service-open {
    background-color: #16656A;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    padding: 5px 10px;
}
.business-service-closed {
    background-color: #FF0000;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    padding: 5px 10px;
}
.business-service-time {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}
.br-custom {
    border-radius: 0px 0px 6px 6px;
}
.table.service-timetable td {
    background-color: transparent;
    padding: 0;
    height: 50px;
    vertical-align: middle;
    color: #000;
    font-size: 12px;
    font-weight: 400;
}
.table.service-timetable tr {
    border-bottom: 1px solid #ECEEF2;
}
.table.service-timetable tr:last-child {
    border-color: transparent;
}
tr.active-day td {
    color: #009688 !important;
    font-weight: 500 !important;
}
tr.active-day.closed-day td {
    color: #d00c27 !important;
}
.table.service-timetable tr td+td {
    text-align: right;
}
.product-reviewer-name {
    font-size: 20px;
    font-weight: 500;
    color: #202838;
	text-transform: capitalize;
}
.product-reviewer-date {
    font-size: 12px;
    color: #555555;
    font-weight: 400;
}
.product-reviewer-subject {
    font-size: 12px;
    font-weight: 500;
    color: #00002a;
	margin-right: 5px;
}
span.review-ratting span.review-star {
    color: #FF9800;
}
.product-reviewer-review {
    color: #595959;
    font-size: 13px;
    line-height: 22px;
    font-weight: 400;
}
.product-review-detail:not(:first-child)::before {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: #ECEEF2;
    margin: 0px 0 40px 100px;
}
.promotion-area {
    background-color: #F0F0F0;
    border-radius: 6px;
    padding: 30px 10px;
    text-align: center;
    position: relative;
}
.promo-text {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    color: #4D4D4D;
}
.amenities-div h6 {
    color: #202838;
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
}
.amenities-div {
    margin-top: 10px;
    margin-bottom: 20px;
}
.amenities-div p {
    font-size: 14px;
    font-weight: 400;
}
.rating-form label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #202838;
}
.rating-form .form-group {
    margin-bottom: 20px;
}
.rating-form .form-select, .rating-form .form-control {
    height: 50px;
    border-radius: 6px !important;
    border: 1px solid #fff;
}
.rating-form .form-textarea {
    width: 100%;
    border: 1px solid #fff;
    border-radius: 6px;
}
.btn-reviewsubmit {
    background-color: #00002a;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    height: 50px;
    border-radius: 6px;
}
.btn-reviewsubmit:hover {
    background-color: #00002a;
    color: #fff;
    border-radius: 0px;
}
h3.your-rating {
    font-size: 36px;
    font-weight: 500;
    color: #00002a;
}
span.review-text-span {
    color: #595959;
    font-size: 14px;
    font-weight: normal;
}
.review-star.rating-size {
    font-size: 20px;
}
.custom-file-input {
    display: none; /* Hide the default file input */
}
.custom-file-group {
    cursor: pointer;
    height: 50px;
}
.custom-file-group .form-control {
    border-radius: 0px 6px 6px 0px !important;
}
.input-group-text1 {
    height: 50px;
    border: 1px solid #00002a;
    background-color: #00002a;
    color: #fff !important;
    padding: 15px 10px;
    border-radius: 6px 0px 0px 6px;
}
.form-control:focus {
    border: 0;
    box-shadow: none;
}
.tr-50 {
    top: 50px;
    right: 50px;
}
.br-6 {
    border-radius: 6px;
}
.btn-call {
    background-color: #1C8587;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    line-height: 2;
}
.btn-share {
    background-color: #1E3E62;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    line-height: 2;
}
.btn-gallery {
    background-color: #FFFFFF;
    color: #000;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    line-height: 2;
}
.btn-call:hover {
    background-color: #1C8587;
    color: #fff;
}
.btn-share:hover {
    background-color: #1E3E62;
    color: #fff;
}
.btn-gallery:hover {
    background-color: #FFFFFF;
    color: #000;
}
/*.business-profile-div {
    position: absolute;
    z-index: 999999;
} */
.profile-head h1 {
   /* color: #fff; */
    font-size: 36px;
    font-weight: 600;
}
.profile-rating .product-reviewer-subject {
   /* color: #fff !important; */
    font-size: 14px;
}
.review-text-rating {
   /* color: #fff; */
    font-size: 14px;
    font-weight: 500;
}
.profile-address-text {
   /* color: #fff; */
    font-size: 14px;
    font-weight: 500;
}
.profile-address-text i {
    color: #ff3333;
}
.status-badge .business-service-open {
    font-size: 12px;
    font-weight: 400;
    padding: 4px 8px;
    background: #3A862C;
    color: #fff;
}
.status-badge .business-service-closed {
    font-size: 12px;
    font-weight: 400;
    padding: 4px 8px;
}
.business-time {
    font-size: 12px;
    font-weight: 400;
   /* color: #fff; */
}
.img-profile-holder {

    height: 150px;
}
.img-profile-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}
.img-profile-holder img:hover {
    opacity: 0.7
}
#image-fullviewer {
    display: none;
    position: fixed;
    z-index: 9;
    padding-top: 30px;
    padding-bottom: 30px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}
.modal-image {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    height: auto;
}
.modal-image {
    animation-name: zoom;
    animation-duration: 0.6s;
}
@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}
#image-fullviewer .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
#image-fullviewer .close:hover,
#image-fullviewer .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
.modal.modal-gallery {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
  }

  /* Modal Content */
  .modal-content.modal-gallery-content {
    position: relative;
    background-color: transparent;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
  }

  /* The Close Button */
  .modal-gallery .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }

  .modal-gallery .close:hover,.modal-gallery .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
.myGallerySlides {
    display: none;
    width: 70%;
    margin: auto;
    text-align: center;
  }
  .myGallerySlides img {
        width: 90%;
      opacity: 1;
      border-radius: 0;
  }
  .myGallerySlides img:hover {
      opacity: 1;
  }
  #myGalleryModal .cursor {
    cursor: pointer;
  }
  /* Next & previous buttons */
  #myGalleryModal .prev, #myGalleryModal .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    -webkit-user-select: none;
    user-select: none;
    text-decoration :none !important;
  }
  /* Position the "next button" to the right */
  #myGalleryModal .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  #myGalleryModal .prev:hover, #myGalleryModal .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
.toggler-btn {
    background-color: #fff;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #0c383b;
    color: #0c383b;
}
.review-detail {
    font-size: 14px;
    font-weight: 400;
    color: #4D4D4D;
}
.category-heading h3 {
    font-size: 36px;
    font-weight: 300;
    color: #000;
    text-align: center;
    letter-spacing: 3px;
}
.carousel-indicators {
    margin-bottom: .15rem;
}
.carousel-control-next, .carousel-control-prev {
    opacity: 1;
}
.contact-bdr:not(:first-child)::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ECEEF2;
    margin: 0px 0px 10px 0px;
}
.welcome {
	font-size: 20px;
    font-weight: 500;
    color: #37474F;
}
.welcome-name {
	font-size: 12px;
    color: #555555;
    font-weight: 400;
}
.br-50 {
    border-radius: 50%;
}
button.shop-filter-btn {
    background-color: #F5F5F5;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 300;
    height: 50px;
}
label.cust-checkbox-label span.cust-check {
    width: 30px !important;
    height: 40px !important;
    background-color: #F2F2F2;
    border: none;
    border-radius: 4px;
    color: #00002a;
    padding: 8px 6px !important;
    font-size: 20px !important;
    text-align: center;
}
.size label.cust-checkbox-label input.cust-checkbox:checked ~ span.cust-check {
    color: #fff;
    background-color: #00002a;
    border-color: transparent;
    box-shadow: none;
    height: 45px !important;
    padding: 7px 3px !important;
    font-size: 25px !important;
}
.radio-sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.radio-sort label {
    color: #555555;
    font-size: 16px;
    font-weight: 400;
}
.radio-sort input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #00002a; /* Changes the inside (fill) color in supported browsers */
    cursor: pointer;
    padding: 7px;
  }

  /* For browsers that don't support accent-color or if you want full control */
  .radio-sort input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #00002a;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    padding: 7px;
  }

  .radio-sort input[type="radio"]:checked::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #00002a;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  h6.shop-title {
    color: #202838;
    font-size: 16px;
    font-weight: normal;
}
#customCategoryCarousel .carousel-item {
    height: 60vh; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
}
#customCategoryCarousel .carousel-item-1{
    background-image: url('../image/index/category-banner.jpg');
}
#customCategoryCarousel .carousel-item-2{
    background-image: url('../image/index/category-banner.jpg');
}
#customCategoryCarousel .carousel-item-3{
    background-image: url('../image/index/category-banner.jpg');
}
#customCategoryCarousel .carousel-caption-left {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(5%, -50%);
    text-align: left;
    max-width: 40%;
}
#customCategoryCarousel .carousel-caption-left h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 10px;
}
#customCategoryCarousel .carousel-caption-left p {
    color: #fff;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 40px;
    line-height: 22px;
    font-weight: 200 !important;
}
#customCategoryCarousel .carousel-caption-left .btn-banner {
    background: #1E3E62;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 300 !important;
    padding: 17px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
#customCategoryCarousel .carousel-caption-left .btn-banner i{
	background-color: #fff;
    color: #1e3e62;
    font-size: 20px;
    margin-left: 10px;
    font-weight: 500 !important;
    padding: 2px 6px;
    border-radius: 8px;
}
.business-scroller .owl-nav {
    position: absolute;
    right: 0;
    top: -70px;
    margin-top: 0;
}
.business-scroller .owl-nav button.owl-prev, .business-scroller .owl-nav button.owl-next {
    background-color: #d00c27;
    color: #fff;
    padding: 5px 10px !important;
    font-size: 20px;
    line-height: 1;
}
.business-scroller .owl-nav button.owl-prev:hover, .business-scroller .owl-nav button.owl-next:hover {
    background-color: #d00c27;
    color: #fff;
}
.sharemodal.fade.show {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgb(0 0 0 / 50%);
}
.social-holder {
    text-align: center;
}
img.social-modal-icon {
    width: 100%;
}
.social-share-text {
    margin-top: 20px;
    color: #777777;
    font-size: 14px;
    font-weight: 400;
}
.sharemodal .modal-header .modal-title {
    font-size: 28px;
    font-weight: 300;
    color: #000;
}
.link_text {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-bottom: 25px;
}
.input-group.link-copy-text #linkInput {
    background-color: #f7f7f7;
    border: 0;
    color: #555555;
    font-size: 14px;
	border-radius: 4px 0px 0px 4px;
}
button#copyButton {
    border-radius: 0px 4px 4px 0px;
    background-color: #f7f7f7;
    border: 0;
    line-height: 1;
}
.bg-screen .bg-back, .bg-screen .bg-shop, .without-shop-sidebar .bg-screen .bg-back {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgb(0 0 0 / 50%) !important;
}
.blur-text {
    filter: blur(4px);
}
.opacity-98 {
    opacity: .98 !important;
}
.big-fa-icon {
    font-size: 14px !important;
    gap: 10px;
    font-weight: 100 !important;
}
.small-fa-icon {
    font-size: 12px !important;
    gap: 5px;
    font-weight: 100 !important;
}
.business-layer-div {
    display: flex;
    align-items: center;
    position: absolute;
    top:25%;
    left: 3%;
    z-index: 9;
    width: 95%;
}
.business-layer-div h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 10px;
}
.business-layer-div p {
    color: #fff;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 40px;
    line-height: 22px;
    font-weight: 300 !important;
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; */
    text-shadow: 1px 1px 3px #000;
}
.business-layer-div .btn-banner {
    background: #eda909;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400 !important;
    padding: 10px 15px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
}
.business-layer-div .btn-banner i {
    color: #fff;
    font-size: 25px;
    margin-left: 5px;
    font-weight: 500 !important;
}
ul#grid-pagination {
    justify-content: end !important;
    gap: 10px;
    padding-top: 20px;
    margin-bottom: 30px;
}
ul#grid-pagination button.page-link {
    border: 0;
    background-color: #F2F2F2;
    color: #555555;
    border-radius: 4px;
    font-size: 18px;
}
ul#grid-pagination .page-item:not(:first-child) .page-link {
    margin-left: 0;
}
ul#grid-pagination li.page-item.active .page-link {
    background-color: #00002a;
    border: 0;
    color: #fff;
}
ul#grid-pagination .page-item:last-child .page-link, ul#grid-pagination .page-item:first-child .page-link {
    color: #fff;
    border-radius: 4px !important;
    background-color: #00002a;
}
ul#grid-pagination .disabled>.page-link, .page-link.disabled {
    background-color: #f2f2f2 !important;
    color: #555555 !important;
	border-color: none !important;
}
h4.search-result-head {
    font-size: 28px;
    font-weight: 500;
    color: #73926c;
}
.search-header-text {
    font-size: 28px;
    font-weight: 300;
    color: #00002a;
    letter-spacing: 2px;
}
.category-select-group{
    display: flex;
    row-gap: 20px;
    flex-wrap: wrap;
}
.search-ip-group {
    align-items: center;
}
.search-ip-group span.input-group-text {
    background-color: #00002a;
    color: #fff;
    border: none;
    padding-right: 0px;
    padding-left: 8px;
    border-radius: 6px 0px 0px 6px;
    height: 50px;
}
.search-ip-group .dropdown.bootstrap-select.form-select {
    padding: 0px;
    background-color: #00002a;
    border: 0;
}
.search-ip-group .dropdown.bootstrap-select.form-select:focus-visible {
    border: 0;
    outline: 0 !important;
}
.search-ip-group .bootstrap-select .dropdown-menu.show {
    background-color: #f5f5f5;
}
.search-ip-group .bootstrap-select .inner.show {
    height: 250px;
}
.search-ip-group .bootstrap-select .dropdown-menu.show .dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #00002a;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    background-color: #00002a;
}
.search-ip-group button.btn.dropdown-toggle.btn-light {
    background-color: #00002a;
    border: 0;
    border-radius: 0px;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 50px;
}
.search-ip-group button.btn.dropdown-toggle.btn-light:focus {
    border: 0;
    outline: 0 !important;
}
.search-ip-group button.btn.dropdown-toggle.btn-light:focus-visible {
    border: 0;
    outline: 0 !important;
}
.search-ip-group .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 175px;
}
.search-ip-group .bootstrap-select .dropdown-toggle .filter-option {
    line-height: 1.8;
}
.field-search-bar .form-control {
    border-radius: 0px 6px 6px 0px;
    background-color: #f5f5f5;
    border: 0;
    background-image: url('../image/index/search-lens.svg');
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: 10px center;
    padding-left: 35px; /* to make space for the icon */
}
.btn-find-now {
    background-color: #73926c;
    border-radius: 6px;
    color: #fff;
    margin-left: 5px;
    font-size: 15px;
    padding: 14px;
    border: 0;
}
.btn-find-now:hover {
    background-color: #d00c27;
    color: #fff;
}
.btn-find-now:active, .btn-find-now:focus-visible {
    background-color: #d00c27 !important;
    color: #fff !important;
}
.btn-clearall {
    padding: 1px;
    font-size: 14px;
    color: #555555 !important;
    font-weight: 400;
    border: 0;
    background: transparent;
}
button.btn-clearall:active {
    border: 0;
    outline: 0;
}
button.btn-clearall:focus:not(:focus-visible) {
    outline: 0;
	border: 0;
}
button.btn-clearall:focus, button.btn-clearall:active:focus, button.btn-clearall:active:focus-visible {
    outline: none;
    box-shadow: none;
	border: 0;
}
button.btn-clearall:first-child:active {
    background-color: transparent;
    border-color: transparent;
}
.checkbox-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 5px 60px 5px;
    /* scrollbar-width: thin; */
    height: 80vh;
    overflow-y: auto;
}
/* Hide scrollbar */
.checkbox-container::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}
/* Customize scrollbar */
.checkbox-container::-webkit-scrollbar {
    width: 8px;
}
/* Track */
.checkbox-container::-webkit-scrollbar-track {
       background: #fcfcfc;
}
/* Handle */
.checkbox-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
/* Handle on hover */
.checkbox-container::-webkit-scrollbar-thumb:hover {
    background: #8b8b8b;
}
.checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}
.checkbox-wrapper input {
    display: none;
}
.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #6666664D;
    border-radius: 2px;
    background-color: #fff;
    margin-right: 10px;
    position: relative;
}
.checkbox-wrapper input:checked + .custom-checkbox::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background-color: #d00c27;
    border: 2px solid #d00c27;
    border-width: 6px;
    border-radius: 2px;
}
button.btn.bottom-button {
    position: fixed;
    bottom: 1%;
    width: 280px;
    display: block;
    background-color: #00002a;
    color: #fff;
    border-radius: 4px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
}
.shop-content .business-grid-container .business-grid-item {
    box-shadow: none;
    border: 1px solid #66666633;
}
.popular-item {
	background-color: #fff;
    padding: 7px 7px 2px 7px;
    border-radius: 6px;
}
.item-img-holder {
    position: relative;
    width: 100%;
    height: 175px;
    overflow: hidden;
    border-radius: 6px;
}
.item-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}
.item-img-holder:hover img {
    transform: scale(1.1); /* Scale up the image by 10% */
}
.overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgb(0 0 0 / 54%));
  border-radius: 6px;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.overlay-text-link {
    color: white;
    font-size: 20px;
    font-weight: 300;
}
.popular-categories .owl-nav, .latest-business .owl-nav {
    position: absolute;
    right: 0;
    top: -50px;
    margin-top: 0;
}
.popular-categories .owl-nav button.owl-prev, .popular-categories .owl-nav button.owl-next,
.latest-business .owl-nav button.owl-prev, .latest-business .owl-nav button.owl-next {
    background-color: #d00c27;
    color: #fff;
    padding: 5px 10px !important;
    font-size: 20px;
    line-height: 1;
}
.popular-categories .owl-nav button.owl-prev:hover, .popular-categories .owl-nav button.owl-next:hover,
.latest-business .owl-nav button.owl-prev:hover, .latest-business .owl-nav button.owl-next:hover {
    background-color: #d00c27;
    color: #fff;
}
h5.pop-title {
    color: #202838;
    font-size: 20px;
    font-weight: 400;
}
.paging-container .title-wrapper {
    height: unset;
}
h6.timing-status-bar {
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    margin-top: 3px;
    flex-wrap: wrap;
}
span.current-state.open-state {
    font-weight: 500;
    color: #3A862C;
    display: flex;
    align-items: end;
}
span.current-state.open-state svg{
    color: #3A862C !important;
	font-size: 14px !important;
}
span.current-state.closed-state {
    font-weight: 500;
    color: #d00c27;
    display: flex;
    align-items: end;
}
span.current-state.closed-state svg{
    color: #d00c27 !important;
	font-size: 14px !important;
}
span.next-state {
    color: #666666;
    font-weight: 400;
    margin-left: 5px;
}
.business-layer-div.charity-layer .btn-banner {
    background: #fff;
    color: #555555;
}
.business-layer-div.charity-layer .btn-banner i {
    color: #555555;
}
.bg-holder.category-bg .btn-banner {
    background: #eda909;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 300 !important;
    padding: 10px 15px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-holder.category-bg .btn-banner i {
    background-color: #fff;
    color: #eda909;
    font-size: 20px;
    margin-left: 10px;
    font-weight: 500 !important;
    padding: 2px 6px;
    border-radius: 8px;
}
.cust-checkbox-label.checkbox-agree .cust-check {
    width: 16px !important;
    height: 16px !important;
    background-color: transparent;
    border-radius: 4px;
    padding: 1px 1px !important;
    border: 1px solid #00002a;
}
label.cust-checkbox-label.checkbox-agree input.cust-checkbox:checked ~ span.cust-check {
    background-color: #d00c27;
    border-color: #d00c27;
}
.login-customer label.cust-checkbox-label {
    display: flex;
    align-items: start;
}
.login-customer label.cust-checkbox-label span.cust-check {
    top:1px;
}
span.login-read {
    color: #666666 !important;
    font-size: 14px;
    font-weight: 400;
    flex: 1;
}
.login-bg {
  background-image: url('../image/index/login-bg.svg');
  background-image: url('../image/index/login-2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* This creates the parallax effect */
  background-repeat: no-repeat;
  min-height: 100vh; /* Ensure it fills the height */
}
.register-bg {
    background-image: url('../image/index/register-bg.svg');
    background-image: url('../image/index/register-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This creates the parallax effect */
    background-repeat: no-repeat;
    min-height: 100vh; /* Ensure it fills the height */
}
.forgot-password-bg {
    background-image: url('../image/index/forgot-password-bg.svg');
    background-image: url('../image/index/forgot-password-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This creates the parallax effect */
    background-repeat: no-repeat;
    min-height: 100vh; /* Ensure it fills the height */
}
h2.authenticate-heading {
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 0px;
    text-align: left;
    color: #00002a;
}
.customer-account label.field-label {
    color: #73926c;
    font-size: 14px;
    font-weight: 400;
}
.field-row .field-col .field-pwd {
    height: 50px;
    padding: 0;
    background-color: transparent;
    border: 1px solid rgb(13 61 64);
    border-radius: 6px;
}
.login-ip {
    color: #00002a;
    font-size: 14px;
    font-weight: 400;
}
.button-login {
    height: 50px;
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 6px;
    background-color: #73926c;
    color: #fff;
    border: none;
    font-size: 16px;
    letter-spacing: 1px;
}
.button-login:hover {
    background-color: #eda909;
}
.forgot-link-text {
    color: #00002a !important;
    font-size: 14px;
    font-weight: 400;
}
a.extra-link {
    color: #d00c27;
    text-decoration: underline;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 10px !important;
    display: block;
}
span.err-text {
    color: red;
    display: block;
    margin-top: 5px;
}
a.imp-text {
    color: #d00c27;
}
.info-icon {
    cursor: pointer;
    display: inline-block;
}
.info-icon i {
    font-size: 16px;
    color: #666; /* Adjust as per your design */
}
.tooltip-text {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 8px 10px;
    border-radius: 6px;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-30%);
    z-index: 1;
    font-size: 12px;
    line-height: 1.5;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: normal;
}
.info-icon:hover .tooltip-text,
.info-icon:focus .tooltip-text {
    visibility: visible;
    opacity: 1;
}
a.login-back {
    color: #00002a;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 400;
}
.contact-service {
    background-color: #f5f5f5;
}
.contact-page .contact-detail {
    font-size: 14px;
}
.contact-us input, .contact-us textarea {
    border: 1px solid #666666;
    border-radius: 4px;
}
.contact-us label.field-label {
    color: #00002a;
    font-weight: 400;
}
h5.contact-head2 {
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #eda909;
}
h3.contact-head1 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #00002a;
}
.company-no {
    font-size: 30px;
     font-weight: 500;
     letter-spacing: 2px;
     color: #00002a;
}
.contact-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
/* Target the icon container directly */
.contact-box:hover .icn {
    animation: bounce 0.8s ease-in-out infinite;
}

/* Smooth bounce effect */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-5px);
    }
}
.icon-cnt {
    font-size: 50px;
    color: #00002a;
    background-color: #f5f5f5;
    border-radius: 50%;
    padding: 20px;
}
p.contact-div-text {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    margin-bottom: 20px;
}
.contact-div-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #202838;
    letter-spacing: 1px;
}
.contact-box .bottom-link-a {
    margin-top: auto;
}
.bottom-link-a a {
    font-size: 16px;
    font-weight: 400;
    color: #d00c27;
}
.product-tab .collapse-tab:last-child {
    border-bottom: 1px solid rgba(var(--border-color),var(--border-opacity));
}
.product-tab .collapse-tab button[aria-expanded="true"] {
    color: #d00c27;
}
.product-tab .collapse-tab button[aria-expanded="true"] span.tab-icon i::before {
    content: "\f1af";
    content: "\ea78";
}
.product-tab.faq-tab .collapse-tab button[aria-expanded="true"] span.tab-icon i::before {
    content: "\ea78";
}
.about-future .about-future-content img {
    -webkit-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}
.about-future .about-future-content:hover img {
    transform: translateY(-10px);
}
.br-10 {
    border-radius: 10px;
}
.vision-mision-sec {
    background-color: #f5f5f5;
}
.about-area p {
    color: #000;
    font-size: 14px;
}
.about-area h6 {
    color: #00002a;
    font-size: 30px;
    font-weight: 400;
}
.product-tab button {
    color: #00002a;
    font-size: 18px;
    font-weight: 500;
}
.about-future-content h6 {
    color: #00002a;
    font-size: 25px;
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 25px;
}
.about-future-content p {
    font-size: 14px;
    color: #000;
}
.about-us h2.section-heading {
    font-size: 35px;
    font-weight: 400;
}
.contact-div-head h2.section-heading {
    font-size: 35px;
    font-weight: 400;
}
.privacy-content h5 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #00002a;
}
.privacy-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}
.privacy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}
.privacy-content ul li {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}
.privacy-content h6 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #00002a;
}
.image-authernticate-section img {
    border-radius: 20px;
    box-shadow: 3px 1px 8px 3px #000000a6;
}
h3.faq-header-text, h3.faq-footer-text {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 3px;
	color: #000000;
}
h6.faq-sub-text, h6.faq-footer-sub-text {
    font-size: 20px;
    font-weight: 400;
	color: #00002a;
}
.register-div-faq {
    border-radius: 6px;
    background-color: #F7F7F7;
    padding: 15px;
}
.btn-register-red {
    color: #fff;
    background-color: #d00c27;
    height: 50px;
    padding: 12px 15px;
    border-radius: 6px;
}
.btn-register-red:hover {
    color: #fff;
    background-color: #00002a;
}
.faq-register-div p {
    font-size: 16px;
    font-weight: 400;
}
.faq-sec-tab .collapse-tab {
    background-color: #f7f7f7;
    margin-bottom: 10px;
    border-radius: 6px;
}
.faq-sec-tab .product-tab button {
    color: #00002a;
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
}
.faq-sec-tab .product-description-info p {
    font-size: 14px;
    font-weight: 300;
    color: #000;
}
.faq-sec-tab .product-tab-description {
    padding: 20px;
}
.faq-sec-tab .product-tab .collapse-tab button[aria-expanded="true"] {
    color: #fff;
    background-color: #00002a;
    border-radius: 6px 6px 0px 0px;
}
.faq-sec-tab .product-tab .collapse-tab:last-child {
    border-bottom: 0;
}
/* ======= General Styling ======= */
.advetise-div {
    background: #f5f5f5;
    border-radius: 6px;
    padding: 50px 10px;
    text-align: center;
    transition: all 0.3s;
    min-height: 300px;
}

/* ======= Image Bounce Effect (Always Bounce) ======= */
.advetise-div .advetise-img-holder img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    animation: slow-bounce 1.8s infinite;
}

/* ✅ ======= Smooth Stop Effect On Hover ======= */
.advetise-div:hover .advetise-img-holder img {
    animation: slow-stop-bounce 0.8s ease-out;
}

/* ✅ ======= Smooth Start Effect After Hover ======= */
.advetise-div:not(:hover) .advetise-img-holder img {
    animation: slow-start-bounce 1.5s infinite;
}

/* ✅ ======= Smooth Continuous Bounce Animation ======= */
@keyframes slow-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* ✅ ======= Smooth Stop Bounce Animation (on hover) ======= */
@keyframes slow-stop-bounce {
    0% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ✅ ======= Smooth Resume Bounce (after hover) ======= */
@keyframes slow-start-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
/* ======= General Styling ======= */
.advetise-div-area {
    background: #73926c !important;
    border-radius: 6px;
    padding: 50px 10px;
    text-align: center;
    transition: all 0.3s;
}

/* ======= Image Floating Effect (Always Floating) ======= */
.advetise-div-area .advetise-img-holder-area img {
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    animation: float-animation 2.5s infinite alternate;
}

/* ✅ ======= Smooth Stop Effect On Hover ======= */
.advetise-div-area:hover .advetise-img-holder-area img {
    animation: float-stop 0.8s ease-out;
}

/* ✅ ======= Smooth Resume Effect After Hover ======= */
.advetise-div-area:not(:hover) .advetise-img-holder-area img {
    animation: float-animation 2.5s infinite alternate;
}

/* ✅ ======= Floating Effect (Move Front & Back) ======= */
@keyframes float-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-20px);
    }
}

/* ✅ ======= Smooth Stop Animation (on hover) ======= */
@keyframes float-stop {
    0% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(0);
    }
}

.advetise-div .advertise-content h4 {
    color: #00002a;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 15px;
}
.advetise-div .advertise-content p {
    color: #555555;
    font-size: 14px;
    font-weight: 300;
}
.advetise-div-area {
    background: #00002a;
    border-radius: 6px;
    padding: 50px 10px;
    text-align: center;
    min-height: 270px;
}
.advetise-div-area .advertise-content p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.btn-banner-register {
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400 !important;
    padding: 13px 20px;
    height: 50px;
    border: 0;
    background-color: #73926c !important;
    color: #fff !important;
}
.btn-banner-login {
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400 !important;
    padding: 13px 20px;
    height: 50px;
    border: 0;
    background-color: #fff !important;
    color: #000 !important;
}
a.btn.btn-banner.fav-page {
    background-color: #3D5964;
    color: #fff !important;
}
a.btn.btn-banner.fav-page i {
    color: #fff !important;
}
.mob-social-media p, .menu-copy-right p, .mob-contact-info p {
    color: #555555;
    font-weight: 400;
    font-size: 14px;
}
.mob-sibebar-space {
    background-color: #f5f5f5;
    margin: .75rem;
    border-radius: 8px;
    padding: 10px;
}
ul.contact-ul {
    display: flex;
    flex-direction: column;
}
li.contact-li {
    display: flex;
    font-size: 15px;
    font-weight: 400;
    color: #00002a;
    margin: 10px 0px;
}
li.contact-li a {
    font-size: 15px;
    font-weight: 400;
    color: #00002a;
}
p.coming-soon-msg {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
}
.collapse-tab > button > span:first-child {
    text-align: left;
    white-space: nowrap;
}
.collapse-tab > button > span:nth-of-type(2) {
    text-align: left;
}
.about-area h5 {
    color: #00002a;
    font-size: 20px;
    font-weight: 500;
}
.about-area ul {
    list-style: disc;
    margin-left: 20px;
}
.about-area ul li {
    color: #000;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
}
div#copyToast {
    width: auto;
}
.mob-social-media img {
    max-width: 100%;
    height: auto;
}
span.field-mandatory {
    color: #d00c27;
}
.welcome-guest {
	position: absolute;
    top: -25px;
    margin-left: 35px;
    width: 100%;
    display: block;
    color: #d00c27;
}
.for-business {
	position: absolute;
    top: -25px;
    margin-left: 225px;
    width: 100%;
    display: block;
    color: #d00c27;
}

.product-img-small.slider-small-h .product-thumbnail img {
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 2px;
    cursor: pointer;
    transition: border 0.3s ease;
}
.product-detail-slider .product-img-small .product-swiper-slide .product-item-img, .product-detail-slider .product-tab-nav .product-swiper-slide .product-item-img {
    border: 1px solid #ddd;
    border-radius: 6px;
}
.product-img-big.slider-big-h .product-item-img img {
    max-height: 420px;
    object-fit: contain;
    margin: 0 auto;
}
.product-img-big.slider-big-h .swiper-slide.product-swiper-slide {
    border: 1px solid #ddd;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.favorite-icon1 {
    position: static;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0px 4px rgba(0, 0, 0);
}
.favorite-icon1 .product-icon i, .favorite-icon1 .product-icon svg {
    color: #CC0000;
    font-size: 25px;
}


.floating-btn {
    position: absolute;
    z-index: 9999;
    right: 0;
}
.btn-floating {
    position: absolute;
    right: 30px;
    width: 40px;
    height: 40px;
    z-index: 1;
    color: white;
    overflow: hidden;
    border-radius: 100px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    transition: 0.2s;
}
.btn-floating.phone {
    bottom: 175px;
    background-color: rgb(10, 68, 246);
}
.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    line-height: 0px;
    display: none;
    transition: 0.2s;
}
.btn-floating i {
    font-size: 16px;
}
.btn-floating.whatsapp {
    background-color: rgb(52, 175, 35);
    bottom: 120px;
}
.btn-floating:hover {
    width: auto;
    cursor: pointer;
    padding: 0px 20px;
}
.btn-floating.phone:hover {
    background-color: rgb(10, 68, 246);
	width: max-content;
}
.btn-floating:hover span {
    display: inline-block;
}
.btn-floating.whatsapp:hover {
    background-color: rgb(52, 175, 35);
	width: max-content;
}
/* Responsive for different screen sizes */
/*
  @media (max-width: 1920px) {
    .business-profile-div {
        width: 97%;
        top: 18%;
        left: auto;
        right: auto;
    }
  }
  @media (max-width: 1680px) {
    .business-profile-div {
        width: 97%;
        top: 16%;
        left: auto;
        right: auto;
    }
  }
  @media (max-width: 1440px) {
    .business-profile-div {
        width: 98%;
        top: 12%;
        left: auto;
        right: auto;
    }
    
  } */
  @media (max-width: 1200px) {
    .grid-container {
      grid-template-columns: repeat(6, 1fr);
    }
    .business-grid-container {
        grid-template-columns: repeat(4, 1fr);
        grid-template-columns: repeat(4, minmax(100px, 1fr));
        gap: 20px 10px;
    }
    .topbusiness-grid-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-columns: repeat(3, minmax(100px, 1fr));
        gap: 10px;
    }
    /* .owl-carousel .owl-stage {
        height: 25vh;
    } */
  /*  .business-profile-div {
        width: 97%;
        top: 10%;
        left: auto;
        right: auto;
    } */
  }
  @media (max-width: 1199px) {

    #heroCarousel .carousel-item {
        height: 35vh; /* Adjust height as needed */
    }
    #customCarousel .carousel-item {
        height: 35vh;
    }
    .carousel-fade .carousel-item {
        height: 35vh;
    }
  }

  @media (max-width: 1024px) {
  /*  .business-profile-div {
        width: 97%;
        top: 8%;
        left: auto;
        right: auto;
    } */
    #customCategoryCarousel .carousel-item {
        height: 50vh;
    }
    #customCategoryCarousel .carousel-caption-left {
        max-width: 45%;
    }
    .login-bg {
        min-height: unset;
    }
   }
  @media (max-width: 992px) {
    .grid-container {
      grid-template-columns: repeat(5, 1fr);
    }
    .business-grid-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-columns: repeat(3, minmax(100px, 1fr));
    }
    .topbusiness-grid-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-columns: repeat(3, minmax(100px, 1fr));
        gap: 10px;
    }
    /* .owl-carousel .item {
        transform: scale(1);
    }
    .owl-carousel .center .item {
        transform: scale(1);
    }
    .owl-carousel .center {
        transform: scale(1);
    }
    .owl-carousel .owl-stage {
        margin-top: 5px;
        height: 30vh;
    } */
    .search-by::after {
        display: none;
    }
    #heroCarousel .carousel-item {
        height: 35vh; /* Adjust height as needed */
    }
    #customCarousel .carousel-item {
        height: 35vh;
    }
    .carousel-fade .carousel-item {
        height: 35vh;
    }
    .emotions-slider-item {
        max-width: 500px;
    }
    .emotions-slider__slide {
        min-height: 250px;
    }
    #customCategoryCarousel .carousel-item {
        height: 40vh;
    }
    #customCategoryCarousel .carousel-caption-left {
        max-width: 50%;
    }
    .business-layer-div {
        top: 15%;
        left: 5%;
        width: 90%;
    }
    .business-layer-div h2 {
        font-size: 30px;
    }
    .business-layer-div p {
        font-size: 15px;
        margin-top: 5px;
        margin-bottom: 15px;
    }
  }

  @media (max-width: 991px) {

    .carousel-fade .carousel-item {
        height: 35vh;
    }
   /* .business-profile-div {
        width: 94%;
        top: 2.2%;
        left: 3%;
        right: auto;
    } */
    .btn-call, .btn-share, .btn-gallery{
        height: 35px;
        line-height: 1.5;
    }
    .profile-head h1 {
        font-size: 30px;
    }
    .myGallerySlides {
        width: 100%;
    }
    /* .login-customer {
        background-color: #def7e5;
    } */
    .advetise-div {
        min-height: unset;
    }
    a.d-block.btn.btn-fill {
        padding: 10px 7px;
        font-size: 13px;
    }
    a.d-block.btn.btn-outline {
        padding: 10px 5px;
        word-break: keep-all;
        font-size: 13px;
    }
  }

  @media (max-width: 768px) {
    .grid-container {
      grid-template-columns: repeat(3, 1fr);
    }
    .business-grid-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-columns: repeat(3, minmax(100px, 1fr));
    }
    .topbusiness-grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, minmax(100px, 1fr));
        gap: 5px;
    }

    #customCategoryCarousel .carousel-item {
        height: 35vh;
    }
    #customCategoryCarousel .carousel-caption-left {
        max-width: 60%;
    }
    .search-header-text {
        font-size: 25px;
        letter-spacing: 1px;
    }
    h4.search-result-head {
        font-size: 23px;
    }
  }

  @media (max-width: 767px) {
 .welcome-guest, .for-business {
    display: none;
}

    #customCarousel .carousel-item {
        height: 55vh;
    }
   /* .business-profile-div {
        position: relative;
        width: 100%;
        top: 0%;
        left: 0;
        right: 0;
        margin-top: 20px;
    } */
    .profile-head h1 {
        font-size: 25px;
        color: #00002a;
    }
    .profile-rating .product-reviewer-subject, .review-text-rating, .profile-address-text, .business-time {
        color: #00002a !important;
    }
    .btn-gallery {
        border-color: #000;
    }
    .business-layer-div {
        width: 90%;
        left: 5%;
        top: 18%;
    }
    .business-layer-div h2 {
        font-size: 25px;
    }
    .business-layer-div p {
        font-size: 14px;
        margin-top: 0px;
        margin-bottom: 15px;
    }
    .business-layer-div .btn-banner {
        font-size: 14px;
        font-weight: 300 !important;
        padding: 1px 10px;
    }
    .footer-area {
        padding-bottom: 4rem !important;
    }
  }
  @media only screen and (max-width: 700px){
    .modal-image {
        width: 100%;
    }
  }
  @media (max-width: 700px) {
    .business-grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }
    .topbusiness-grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, minmax(100px, 1fr));
        gap: 5px;
    }

    #customCategoryCarousel .carousel-item {
        height: 30vh;
    }
    #customCategoryCarousel .carousel-caption-left {
        max-width: 95%;
        padding: 5px;
    }
    #customCategoryCarousel .carousel-caption-left h2 {
        font-size: 25px;
    }
    #customCategoryCarousel .carousel-caption-left p {
        font-size: 14px;
        margin-top: 0px;
        margin-bottom: 10px;
        line-height: 18px;
    }
    #customCategoryCarousel .carousel-caption-left .btn-banner {
        padding: 10px;
    }
    #customCategoryCarousel .carousel-caption-left .btn-banner i {
        padding: 0px 5px;
    }
  }

  @media (max-width: 575px) {

    .search-by::before {
        display: none;
    }
    #heroCarousel .carousel-item {
        height: 35vh; /* Adjust height as needed */
    }
    #customCarousel .carousel-item {
        height: 35vh;
    }
    .carousel-fade .carousel-item {
        height: 35vh;
    }
    .business-profile-div .jccmob {
        justify-content: center !important;
    }
    .business-layer-div {
        width: 85%;
        left: 8%;
        top: 15%;
    }
    .business-layer-div h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .business-layer-div p {
        font-size: 13px;
        margin-top: 0px;
        margin-bottom: 15px;
        line-height: 20px;
        /* display: -webkit-box;
        -webkit-line-clamp: 1; */
    }
    .business-layer-div .btn-banner {
        font-size: 12px;
        padding: 0px 10px;
    }
    .search-ip-group button.btn.dropdown-toggle.btn-light {
        border-radius: 0px 6px 6px 0px;
    }
    .field-search-bar .form-control {
        border-radius: 6px;
    }
    .bg-holder.category-bg .btn-banner {
        font-size: 14px;
        padding: 5px 10px;
    }
    .bg-holder.category-bg .btn-banner i {
        font-size: 18px;
        padding: 1px 5px;
    }
    .category-heading h3 {
        font-size: 30px;
        letter-spacing: 1px;
    }
    .btn-banner-register, .btn-banner-login {
        padding: 10px 20px;
        height: auto;
    }
    .top-left-btn {
        font-size: 14px;
        display: flex;
        align-items: center;
        padding: 1px 5px;
    }
    .top-left-btn i {
        font-size: 20px;
    }
    .advetise-div-area {
        min-height: unset;
    }
  }

  @media (max-width: 480px) {
    .grid-container {
      grid-template-columns: repeat(2, 1fr);
    }
    .business-grid-container {
      grid-template-columns: repeat(1, 1fr);
      grid-template-columns: repeat(1, minmax(100px, 1fr));
      gap: 5px;
    }
    .topbusiness-grid-container {
        grid-template-columns: repeat(1, 1fr);
        grid-template-columns: repeat(1, minmax(100px, 1fr));
    }
    .app-logo {
        width: 165px;
    }
  }

  @media (max-width: 375px) {
    .business-scroller .owl-nav {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
    .social-share-text {
        font-size: 10px;
    }
  }

@media (min-width: 1920px) {
    #heroCarousel .carousel-item {
        height: 69.5vh; /* Adjust height as needed */
    }
    #customCarousel .carousel-item {
        height: 35.5vh;
    }
    .carousel-fade .carousel-item {
        height: 33vh;
    }
}

@media (min-width: 1200px) {
    .width-xl-200 {
        width: 200px;
    }
    .width-xl-250 {
        width: 250px;
    }
    .section-pt {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media (min-width: 768px) {
    .width-lg-200 {
        width: 200px;
    }
    .width-lg-250 {
        width: 250px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {

    /* #customCarousel .carousel-item-1{
        background-image: url('../image/index/action-banner-business.jpg');
    }
    #customCarousel .carousel-item-2{
        background-image: url('../image/index/action-banner-charity.jpg');
    }
    #customCarousel .carousel-item-3{
        background-image: url('../image/index/action-banner-worship.jpg');
    } */
    .carousel-fade .carousel-item {
        height: 45vh;
    }
  }
@media (min-width: 576px) {
    .width-lg-200 {
        width: 200px;
    }
    .width-lg-250 {
        width: 250px;
    }
}


.image-authernticate-section .scratch-card {
    margin-bottom: 20px; /* Or adjust as needed */
}

.register-image img {
    max-width: 100%;
    height: auto;
}

.swiper#blog-slider .swiper-slide-next {
    opacity: 1;
}
.swiper#blog-slider .banner-hover .banner-img img {
    height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 2px;
    cursor: pointer;
}
.swiper#blog-slider .banner-hover {
    padding: 5px;
    background-color: #fff;
    border-radius: 6px;
}
.swiper#blog-slider .banner-hover h6.slidekit-text a {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.swiper#small-slider .swiper-slide-next {
    opacity: 1;
}

.swiper#small-slider .banner-hover:hover {
    border-radius: 6px;
}
.swiper#small-slider .banner-hover:hover .blog-main-img {
    border-radius: 6px;
}
.swiper#small-slider .banner-hover .banner-img img {
    border-radius: 6px;
}
.swiper#small-slider .banner-hover .blog-main-img {
    border-radius: 6px;
}
.swiper#small-slider .banner-hover:hover .banner-img img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}
