@font-face {
    font-family: 'Geograph';
    src: url('../fonts/geograph-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geograph';
    src: url('../fonts/geograph-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geograph';
    src: url('../fonts/geograph-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geograph';
    src: url('../fonts/geograph-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Geograph', sans-serif;
    font-weight: 400;
    color: #4d4d4d;
}

h1{
  font-weight: 700;
  color: #000000;  
}
h2,
h3 {
    font-weight: 500;
    color: #000000;
}

h4,
h5,
h6 {
    font-weight: 500;
    color: #000000;
}
.hero-sec img {
    aspect-ratio: 1920 / 950;
}
.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

a {
    margin-bottom: 0;
    color: #f6b512;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    text-decoration-color: #f6b512;
}

a:hover {
    color: #333333;
    text-underline-offset: 2px;
    transition: .8s;
    text-decoration-color: #333333;

}


strong {
    /* font-weight: bolder; */
    font-weight: 500;
}
/*==== Header css=== */
header.bestday-head {
    width: 100%;
    position: fixed;
    z-index: 999;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.bestday-head.scrolled {
    background-color: #333333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.bestday-menu-hedaer {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.top-bestday-menu {
    width: 100%;
    position: relative;
    text-align: end;
    margin-bottom: 8px;
}
ul.to-hed-menu {
    width: 100%;
    position: relative;
    padding: 0px 20px 0px 0px;
    margin: 0px;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}
ul.to-hed-menu li a i {
    border-radius: 50%;
    padding: 8px;
    font-size: clamp(13px, 1.2vw, 18px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(28px, 2.5vw, 38px);
    height: clamp(28px, 2.5vw, 38px);
    transition: background 0.3s, color 0.3s;
}
ul.to-hed-menu li a i:hover {
    background: #000000;
    color: #f6b512;
}
a.search-bot-ico i {
    position: relative;
    color: #f6b512 !important;
}
a.search-bot-ico:hover i {
    background: none !important;
}
a.search-bot-ico {
    display: block;
    position: relative;
    margin-left: 10px;
    padding-left: 10px;
}
a.search-bot-ico:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-left: 1px solid #f3d9a8;
}
ul.to-hed-menu li a {
    text-decoration: none;
    font-weight: 400;
}
a.enq-head-btn {
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 500;
    color: #f6b512;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.enq-head-btn:hover {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 4px;
}

ul.navbar-nav.ms-auto li:hover a {
    color: #f6b512;
}
ul.navbar-nav.ms-auto li a {
    font-size: clamp(14px, 0.9vw, 15px);
    font-weight: 400;
    text-transform: capitalize;
}
a.dropdown-item {
    color: #000 !important;
}
a.dropdown-item:hover {
    color: #f6b512 !important;
}
header.bestday-head.scrolled ul.navbar-nav.ms-auto li a.nav-link.active {
    color: #fff0ca;
}
header.bestday-head.scrolled ul.navbar-nav.ms-auto li a{
    color:#fff;
}
ul.navbar-nav.ms-auto {
    display: flex;
    align-items: center;
    gap:13px;
}
a.best-day-bgl-btn {
    background: #f6b512;
    padding: 10px 25px;
    color: #fff !important;
    text-decoration: none;
    font-size: clamp(14px, 0.9vw, 15px);
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 30px;
}
a.best-day-bgl-btn:hover {
    background: #000000;
}
/*====header mobile menu code===*/
.navbar-toggler {
  background-color: #f6b512;
  border: none;
  width: 45px;   
  height: 45px;  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0px;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: none !important;
}
.menu-icon {
  width: 25px;
  height: 2px;
  background: #fff;
  display: block;
  position: relative;
  transition: all 0.3s ease;
}
.menu-icon::before,
.menu-icon::after {
  content: "";
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.menu-icon::before {
  top: -8px;
}
.menu-icon::after {
  top: 8px;
}
.navbar-toggler.active .menu-icon {
  background: transparent;
}
.navbar-toggler.active .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar-toggler.active .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ====common Hero Section ===*/
.hero-sec {
    position: relative;
}
.banner-tiitle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  
    align-items: flex-start;  
    color: #fff;
    padding-left: 70px;
    padding-right: 15px;
}
.banner-tiitle {
    max-width: 1200px;
    margin: 0 auto;
}
/* Responsive container widths */
@media (min-width: 576px) {
    .banner-tiitle {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .banner-tiitle {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .banner-tiitle {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .banner-tiitle {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .banner-tiitle {
        max-width: 1320px;
    }
}
.banner-tiitle h1 {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
}

.banner-tiitle p {
    font-size: clamp(14px, 2vw, 20px);
    margin-bottom: 10px;
    font-weight: 400;
    font-style: italic;
    color: #000000 !important;
}

/* Breadcrumb css */
.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    font-size: clamp(12px, 1vw, 14px);
    color: #666;
    display: flex;
    align-items: center;
}

.breadcrumb-list li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    color: #666;
}

.breadcrumb-list li a:hover {
    color: #f6b512;
}

.breadcrumb-list li::after {
    content: "•";
    margin-left: 8px;
    font-size: 18px;
    color: #aaa;
}

.breadcrumb-list li:last-child::after {
    content: "";
}

.breadcrumb-list li.active {
    color: #f6b512;
    font-weight: 500;
}

.breadcrumb-list li i {
    font-size: 14px;
}

@media (max-width: 576px) {
    .breadcrumb-list {
        gap: 5px;
    }

    .breadcrumb-list li {
        font-size: 12px;
    }
}
.coomon-heading-box {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
.coomon-heading-box h1 {
    margin-bottom: 20px;
}
.coomon-heading-box h2 {
    margin-bottom: 20px;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 500;
}
.coomon-heading-box h3 {
    font-size: 20px;
    font-weight: 400;
}
.coomon-center-btn-box {
    width: 100%;
    text-align: center;
}

.noram-line-btn {
    font-size: clamp(12px, 0.9vw, 15px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 0;
    color: #f6b512;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 9px;
    text-decoration-thickness: 1.5px;
    text-decoration-color: #f6b512;
}

.noram-line-btn:hover {
    color: #333333;
    text-underline-offset: 5px;
    transition: .8s;
    text-decoration-color: #333333;
}

.coomon-heading-box.white-hedding {
    color: #fff;
}

.coomon-heading-box.white-hedding h1 {
    color: #fff;
}
.coomon-heading-box.white-hedding h2 {
    color: #fff;
}
.coomon-heading-box.white-hedding h3 {
    color: #fff;
}
/* ====Testimonial Css=== */
section.testimonial-sec {
    width: 100%;
    position: relative;
    overflow:hidden;
}

.rating-head-bestday img {
    max-width: 77px;
}

.rating-head-bestday {
    width: 70%;
    margin: 20px auto 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.rating-head-bestday p {
    padding: 0px;
    margin: 0px;
}

.testimonial-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 1px 5px #9fa7b133;
    margin-bottom: 2px;
}

.testimonial-pic {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-pic:before {
    width: 100%;
    height: 30%;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(to bottom, transparent 0%, #000 100%);
}

.testimonial-pic h6 {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding:15px;
    color: #fff;
    font-size: clamp(14px, 2vw, 17px);
    z-index: 10;
    font-weight: 400;
}
.revie-details p {
    font-size: 14px;
}
.man-rev-name {
    width: 40px;
    height: 40px;
    background:#fcf5eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 500;
    border: 1px solid #d7d9dc;
}

.review-man {
    width: 100%;
    position: relative;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.man-details-des img {
    max-width: 80px;
}

.man-details-des h5 {
    padding: 0px;
    margin: 0px;
    font-size: 16px;
}

.testimonial-para {
    padding: 20px;
}

p.poblis-date {
    padding: 0px;
    margin: 0px;
    color: #333333;
}

button.carousel-control-prev {
    width: 40px;
    height: 40px;
    background: #333333;
    border-radius: 50%;
}

button.carousel-control-next {
    width: 40px;
    height: 40px;
    background: #333333;
    border-radius: 50%;
}

.slider-ontrol-box {
    width: 100%;
    position: absolute;
    top: 20%;
}

.best-day-review-slider {
    margin-bottom: 40px;
}

/* ===Faq section=== */
.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #efefef;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-item button {
    font-size: clamp(16px, 2vw, 18px);
}
.accordion-body p {
    font-weight: 300;
    line-height: 26px;
}
/* ====Footer css=== */
.bestday-footer {
    background-color: #111;
    color: #ccc;
    font-size: 14px;
}
/* ---- Brochure Bar ---- */
.bestday-footer .brochure-bar {
    padding: 40px 0px 28px 0px;
    border-bottom: 1px solid #2a2a2a;
}
.bestday-footer .brochure-bar h4 {
    color: #fff;
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 4px;
}
.bestday-footer .brochure-bar p {
    color: #aaa;
    font-size: 13px;
    margin: 0;
}
.bestday-footer .btn-order {
    border: 1.5px solid #f6b512;
    font-weight: 400;
    white-space: nowrap;
    transition: background 0.3s, color 0.3s;
    padding: 10px 25px;
    color: #fff !important;
    text-decoration: none;
    font-size: clamp(14px, 0.9vw, 15px);
    text-transform: capitalize;
    border-radius: 25px;
}
.bestday-footer .btn-order:hover {
    background: #f6b512;
    color: #111;
}
.bestday-footer .btn-order .arrow-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid #f6b512;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: border-color 0.3s;
}
.bestday-footer .btn-order:hover .arrow-icon {
    border-color: #111;
}
/* ---- Logo Bar ---- */
.bestday-footer .logo-bar {
    padding: 28px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.bestday-footer .logo-bar img {
    height: 48px;
    width: auto;
}
.bestday-footer .logo-bar .divider-v {
    width: 1px;
    height: 50px;
    background: #444;
}
.bestday-footer .winner-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bestday-footer .winner-badge .star {
    color: #f6b512;
    font-size: 18px;
}
/* ---- Links Section ---- */
.bestday-footer .links-section {
    padding: 36px 0 24px;
    border-bottom: 1px solid #2a2a2a;
}
.bestday-footer .footer-col h6 {
    color:#aaa;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}
.bestday-footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bestday-footer .footer-col ul li {
    margin-bottom: 3px;
}
.bestday-footer .footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    font-weight: 100;
}
.bestday-footer .footer-col ul li a:hover {
    color: #f6b512;
}
.bestday-footer .footer-col .phone {
    color: #fff;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    display: block;
    margin: 4px 0 10px;
    letter-spacing: 0.5px;
}
.bestday-footer .footer-col .call-label {
    color: #aaa;
    font-size: 12px;
    margin-bottom: 2px;
}
.bestday-footer .footer-col ul li span {
    font-size: 16px;
}
.bestday-footer .footer-col ul li span.phone-numer {
    font-size: 20px;
    font-weight: 700;
}
/* ---- Social Icons ---- */
.bestday-footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.bestday-footer .social-links a {
    width: 36px;
    height: 36px;
    border: 1.5px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 15px;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
}
.bestday-footer .social-links a:hover {
    border-color: #f6b512;
    color: #f6b512;
}
/* ---- Newsletter Form ---- */
.bestday-footer .newsletter-form label {
    color: #aaa;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    display: block;
}
.bestday-footer .newsletter-form .form-control {
    border: 1.5px solid #444;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    padding: 9px 12px;
    transition: border-color 0.2s;
}
.bestday-footer .newsletter-form .form-control:focus {
    background: transparent;
    border-color: #f6b512;
    box-shadow: none;
    color: #fff;
}
.bestday-footer .newsletter-form .form-control::placeholder {
    color: #555;
}
.bestday-footer .btn-subscribe {
    border: 1.5px solid #f6b512;
    font-weight: 400;
    white-space: nowrap;
    transition: background 0.3s, color 0.3s;
    padding: 10px 25px;
    color: #fff !important;
    text-decoration: none;
    font-size: clamp(14px, 0.9vw, 15px);
    text-transform: capitalize;
    border-radius: 25px;
    background: none;
    margin-top: 20px;
}
.bestday-footer .btn-subscribe:hover {
    background: #f6b512;
    color: #111;
}
.bestday-footer .btn-subscribe .arrow-icon {
    width: 26px;
    height: 26px;
    border: 1.5px solid #f6b512;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: border-color 0.3s;
}
.bestday-footer .btn-subscribe:hover .arrow-icon {
    border-color: #111;
}
.bestday-footer .gdpr-note {
    font-size: 11px;
    color: #666;
    margin-top: 14px;
    line-height: 1.6;
}
section.footer-partner {
    width: 100%;
    position: relative;
    padding: 10px 0px;
}
.footer-parnerr {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
ul.left-pay-option {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    gap: 10px;
}
ul.left-pay-option img{
    width: 40px;     
    height: auto;
    max-width: 100%;
}
ul.right-partner-option {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0px;
    margin: 0px;
}
ul.right-partner-option img {
    width: 40px;     
    height: auto;
    max-width: 100%;
}
.footer-parnerr p {
    width: 60%;
    text-align: center;
    margin: 0px;
    padding: 0px;
    font-size: 12px;
}
ul.footer-socila-media {
    width: 100%;
    display: flex;
    gap: 15px;
}
ul.footer-socila-media li i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    padding: 8px;
    font-size: clamp(13px, 1.2vw, 18px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(28px, 2.5vw, 38px);
    height: clamp(28px, 2.5vw, 38px);
    transition: background 0.3s, color 0.3s;
    color: #fff;
}
ul.footer-socila-media li i:hover {
    border: 1px solid #f6b512;
    color: #f6b512;
    transition: 0.5s;
}
/* ==== top footer main-Cta Section ===*/
.specialist-cta {
    border-top: 4px solid #f1d7a8;
    border-bottom: 4px solid #f1d7a8;
    padding:40px;
    margin: 40px 0;
}
.specialist-cta .cta-heading {
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 500;
    color: #111;
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.4;
}
.specialist-cta .experts-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}
.specialist-cta .expert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.specialist-cta .expert-item img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.specialist-cta .expert-item span {
    font-size: 16px;
    color: #444;
    text-align: center;
}
.specialist-cta .cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.specialist-cta .cta-right .avail-text {
    font-size: 22px;
    color: #555;
    margin-bottom: 4px;
}

.specialist-cta .cta-right .phone-number {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: #111;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.specialist-cta .cta-right .phone-number:hover {
    color: #f6b512;
}
h3.author-name {
    font-size: 22px !important;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .specialist-cta {
        padding: 24px 20px;
    }
    .specialist-cta .experts-row {
        justify-content: center;
    }
.specialist-cta .expert-item img {
    width: 90px;
    height: 90px;
}
    .specialist-cta .cta-right {
        border-left: none;
        border-top: 1px solid #e8e8e8;
        padding-left: 0;
        padding-top: 24px;
        align-items: center;
        text-align: center;
        width: 100%;
    }
}
.faq-best-day-box.mt-5 strong {
    font-weight: 400;
}
.man-rev-name img {
    border-radius: 50%;
}
 /*================arrow foe top================*/
/* Scroll To Top Button */
#footerscrol {
  position: fixed;
  bottom: 30px;
  right: 25px;

  width: 45px;
  height: 45px;
  border-radius: 50%;

  background: #f6b512; /* yellow */
  color: #fff; /* white arrow */

  border: none;
  font-size: 22px;
  cursor: pointer;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  /* Fade animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.3s ease;
}

/* Show state */
#footerscrol.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover effect */
#footerscrol:hover {
  transform: translateY(-3px);
}

a.enq-head-btn:hover {
    color: #fff !important;
}
    .search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.search-box {
  width: 90%;
  max-width: 1100px;
  height: 80%;
  background: #fff;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
}

/* SIDEBAR */
.search-sidebar {
  width: 250px;
  background: #111;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.keyword-btn {
  background: transparent;
  color: #fff;
  border: none;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 5px;
}

.keyword-btn:hover,
.keyword-btn.active {
  background: #f4a825;
  color: #000;
}

/* RIGHT SIDE */
.search-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.search-header {
    display: flex;
    margin: 11px;
    border: 2px solid #f6b512;
    border-radius: 4px;
}

.search-results {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  overflow-y: auto;
}

#searchInput {
    flex: 1;
    padding: 10px;
    border: none;
    font-size: 16px;
}

#closeSearch {
    background: #f6b512;
    border: none;
    font-size: 20px;
    font-weight: bold;
    padding: 0 20px;
    cursor: pointer;
}

/* RESULTS */
.search-results {
  padding: 20px;
  overflow-y: auto;
}

.result-item {
  margin-bottom: 10px;
}

.result-item a {
    color: #333;
    font-weight: 500;
    text-underline-offset: 10px !important;
    font-size: 14px;
}

.result-item a:hover {
  color: #f4a825;
}





/*====Responsive Code====*/
@media (max-width: 767px) {
.bestday-menu-hedaer {
    padding: 40px 20px;
    height: 100vh;
}
ul.to-hed-menu li:last-child {
  display: none;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none !important;
    outline: none !important;
}
a.navbar-brand img {
    width: 100%;
    height: 40px;
}   
.hero-sec img {
    aspect-ratio: 1920 / 2500 !important;
    object-fit: cover;
    height: auto !important;
    width: 100% !important;
}
.banner-tiitle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
            padding: 0px;
}
.carousel-item .col-md-6:nth-child(2) {
    display: none;
  }
  .carousel-item .col-md-6:nth-child(3) {
    display: none;
  }
.carousel-item .col-md-4:nth-child(2) {
    display: none;
  }
  .carousel-item .col-md-4:nth-child(3) {
    display: none;
  }
    .carousel-item .col-lg-4:nth-child(2) {
    display: none;
  }
 .carousel-item .col-lg-4:nth-child(3) {
    display: none;
  }
.thing-todo-para {
    width: 100%;
    position: relative;
    padding: 30px 20px 20px 20px;
}
.coomon-heading-box {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.specialist-cta .expert-item:nth-child(4) {
    display: none;
  }
.specialist-cta .expert-item:nth-child(5) {
    display: none;
  }
  .footer-parnerr {
    flex-wrap: wrap;
}
  .footer-parnerr p {
    width: 100%;
    margin: 20px 0px 10px 0px;
    order: 3;
}
.rating-head-bestday {
    flex-wrap: wrap;
}
.bestday-footer .btn-order {
    text-align: center;
}
.reviw-besday-awd .col-md-3 {
    width: 50%;
}
.reviw-besday-awd {
    margin: 0px !important;
    padding: 0px;
}
ul.right-partner-option img {
    width: 25px;
}

/*===toggle footer code===*/
.col-md-4.col-lg-4.footer-col {
    margin-top: 0px;
}
.bestday-footer .links-section {
    margin-top: 25px;
}
.row.mt-4.reomove-pad-foot {
    margin-top: 0px !important;
}
h6.toggle-besthead6 {
    margin-top: 15px;
}
.footer-menu-list1,
.footer-menu-list2,
.footer-menu-list3,
.footer-menu-list4,
.footer-menu-list5{
    display: none;
    margin: 20px 0px !important;
}
.toggle-besthead1,
.toggle-besthead2,
.toggle-besthead3,
.toggle-besthead4,
.toggle-besthead5 {
    cursor: pointer;
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}
.toggle-besthead1::after,
.toggle-besthead2::after,
.toggle-besthead3::after,
.toggle-besthead4::after,
.toggle-besthead5::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 20px;
}
.active-toggle::after {
    content: "-";
}


/*mobile menu code*/
.top-bestday-menu {
    order: 2;
}
ul.navbar-nav.ms-auto {
    align-items: flex-start;
    width: 100%;
}
ul.navbar-nav li {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #cbcbcb;
}
ul.navbar-nav li:last-child {
    border: none;
    margin-top: 25px;
}
ul.to-hed-menu {
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 5px;
    justify-content: flex-start;
    margin-top: 40px;
}
.mt-80 {
    margin-top: 50px;
}

}

@media (min-width: 768px) and (max-width: 1024px) {
.hero-sec img {
    aspect-ratio: 1920 / 1350 !important;
    height: auto !important;
    object-fit: cover;
}
.bestday-menu-hedaer {
    padding: 40px 20px;
    height: 100vh;
}
h4#scrollTopBtn {
    display: none;
}
ul.vistjump-list {
    margin: 0px !important;
}
  .best-day-review-slider .carousel-item .col-md-4:nth-child(3) {
    display: none;
  }
  .best-day-review-slider .carousel-item .col-md-4 {
      width:50%;
  }
  .experts-row .expert-item:nth-child(4) {
    display: none;
  }
  .experts-row .expert-item:nth-child(5) {
    display: none;
  }
  .specialist-cta .cta-right .avail-text {
    font-size: 18px;
    text-align: center;
}
.bestday-footer .links-section .col-md-8 {
    width: 100%;
}
.footer-col.tab-subscribe {
    width: 100%;
    margin-top: 40px;
}
.bestday-footer .footer-col ul li span.phone-numer {
    font-size: 15px;
}
ul.to-hed-menu {
    padding: 0px 0px 0px 0px;
    margin: 0px;
}
ul.navbar-nav.ms-auto {
    align-items: end;
}
a.navbar-brand img {
    width: 100%;
    height: 50px;
}
.coomon-heading-box {
    width: 100%;
}
.rating-head-bestday {
    width: 100%;
}
.best-day-review-slider .row .col-md-4 {
    width: 50%;
}
.navbar-expand-lg .navbar-collapse {
    padding: 10px 0px !important;
}
/*===toggle footer code===*/
.col-md-4.col-lg-4.footer-col {
    margin-top: 0px;
    width: 100%;
}
.bestday-footer .links-section {
    margin-top: 25px;
}
.row.mt-4.reomove-pad-foot {
    margin-top: 0px !important;
}
h6.toggle-besthead6 {
    margin-top: 15px;
}
.footer-menu-list1,
.footer-menu-list2,
.footer-menu-list3,
.footer-menu-list4,
.footer-menu-list5{
    display: none;
    margin: 20px 0px !important;
}
.toggle-besthead1,
.toggle-besthead2,
.toggle-besthead3,
.toggle-besthead4,
.toggle-besthead5 {
    cursor: pointer;
    padding: 12px 0;
    border-bottom: 1px solid #6a6a6a;
    position: relative;
}
.toggle-besthead1::after,
.toggle-besthead2::after,
.toggle-besthead3::after,
.toggle-besthead4::after,
.toggle-besthead5::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 20px;
}
.active-toggle::after {
    content: "-";
}




}


/* Mobile & Tablet */
@media (max-width: 990px) {
    .navbar-nav .nav-item {
        position: relative;
        border-bottom: 1px solid #555;
    }
    .navbar-nav .nav-link {
        position: relative;
        display: block;
        color: #fff;
    }
   ul.navbar-nav li:last-child { 
       border: none; 
       margin-top: 25px; 
   }
ul.submenu-list li:last-child {
    border-bottom: 1px solid #cbcbcb !important;
    margin-top: 0px !important;
}
    .submenu-toggle::after {
        content: "\F285";
        font-family: "bootstrap-icons";
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #fff;
    }
    .submenu-box {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background: #333333;
        transition: 0.4s ease;
        z-index: 99999;
        overflow-y: auto;
        padding-top: 10px;
    }
    .nav-item.active .submenu-box {
        left: 0;
    }
.back-btn {
    background: #f6b512;
    border: none;
    padding: 12px 18px;
    margin: 15px;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
}
.submenu-list {
    padding: 0px 20px;
    margin: 0;
}
    .submenu-list li {
        list-style: none;
        padding:0px;
        border-bottom: 1px solid #555;
    }
ul.submenu-list li:after {
    content: "\F285";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #fff;
}
    .submenu-list li a {
        display: block;
        padding: 15px 0px;
        color: #fff;
        font-size: 17px;
        text-decoration: none;
    }

    /*==tab Menu Code==*/
.top-bestday-menu {
    order: 2;
}
ul.navbar-nav.ms-auto {
    align-items: flex-start;
    width: 100%;
}
ul.navbar-nav li {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #cbcbcb;
}
ul.navbar-nav li:last-child {
    border: none;
    margin-top: 25px;
}
ul.to-hed-menu {
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 5px;
    justify-content: flex-start;
    margin-top: 40px;
}

}

/* Hide Mobile/Tablet Submenu on Desktop */
@media (min-width: 1024px) {

    .submenu-box {
        display: none !important;
    }
    .submenu-toggle::after {
        display: none;
    }
    
}

@media (min-width: 990px) and (max-width: 1050px) {
.bestday-menu-hedaer {
    height: auto;
}
.submenu-box {
    display: none;
}
.hero-sec img {
    aspect-ratio: auto !important;
    object-fit: cover;
    height: auto !important;
    width: 100% !important;
}
}

@media (min-width: 700px) and (max-width: 1050px) {
    .hero-sec img {
    aspect-ratio: auto !important;
    object-fit: cover;
    height: auto !important;
    width: 100% !important;
}
}


