:root {
    --reset-form-width: 485px;
}

.label-color {
    color: #333333;
}

.email-profile-color {
    color: var(--color-page-link);
}

.text-color-blue {
    color: var(--color-blue-bg) !important;
}

.text-color-green {
    color: var(--color-green-bg) !important;
}

.bred-color {
    color: #858c94;
}

.btn-medium {
    min-width: 210px;
}

.background-greens {
    background-color: var(--color-green-bg) !important;
}

.card-a-tag {
    text-decoration: none;
    color: var(--color-Black);
}

.background-blues {
    background-color: var(--color-blue-bg) !important;
}

.form-control::placeholder {
    color: var(--color-gray-placeholder);
    font-weight: 500;
    font-size: 14px;
}

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

.section-padding {
    padding: 96px 0;
}

.nav-profileimg img {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    width: 58px;
    height: 58px;
    border: 1px solid;
    padding: 0.2rem;
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #72984D;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
}

/* When checked */
input[type="radio"]:checked {
    background-color: #72984D;
    border: 2px solid #72984D;
}

input[type="radio"]:focus {
    outline: 1px solid #72984D;
    box-shadow: none !important;
}

input[type="radio"]:checked::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Header Styles - Fixed version */
/* =============== HEADER =============== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-neutral-200, #e5e7eb);
}

.site-header .header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-header .brand img {
    height: 72px;
}

/* Toggle */
.site-header .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-header .nav-toggle .bar {
    width: 26px;
    height: 2px;
    background: var(--color-neutral-900, #0f172a);
}

@media (min-width: 992px) {
    .site-header .nav-toggle {
        display: none;
    }
}

/* Nav shell */
.site-header .primary-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    background: #fff;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-bottom: 1px solid var(--color-neutral-200, #e5e7eb);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.site-header .primary-nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 992px) {
    .site-header .primary-nav {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border: 0;
        background: transparent;
    }
}

.site-header .lang-dropdown .dropdown-item.active,
.site-header .dropdown-item:active {
    color: var(--color-neutral-100);
    text-decoration: none;
    background-color: #72984D;
}

.site-header .lang-dropdown .dropdown-item {
    cursor: pointer !important;
}

.site-header .lang-dropdown .dropdown-item:hover {

    color: white !important;
    background: var(--color-blue-bg) !important;
    cursor: pointer;
}

.site-header .design-issue a:hover {
    background: var(--color-neutral-100) !important;
    color: #18181b !important;
}

/* Backdrop + scroll lock */
.site-header .nav-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

@media (max-width: 991.98px) {
    body.nav-open {
        overflow: hidden;
    }

    .primary-nav.open~.nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Nav list */
.nav-list {
    list-style: none;
    margin: 0;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Links */
.site-header .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-neutral-900, #0f172a);
    font-weight: 600;
    background: transparent;
}

.site-header .nav-link:hover {
    background: var(--color-white, #f3f4f6);
}

.site-header .nav-link.active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--color-primary, #e11d48);
}

/* Mega menu */
.has-mega {
    position: static;
}

.mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    background: #fff;
    border-top: 1px solid var(--color-neutral-200, #e5e7eb);
    padding: 24px 0;
    display: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Desktop: open on hover */
@media (min-width: 992px) {
    .has-mega:hover>.mega {
        display: block;
    }
}

/* Mobile: open when <li> has .open */
@media (max-width: 991.98px) {
    .mega {
        position: static;
        display: none;
        padding: 8px 8px 16px;
        border-top: 1px dashed var(--color-neutral-200, #e5e7eb);
        box-shadow: none;
        background: transparent;
    }

    .has-mega.open>.mega {
        display: block;
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mega-title {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-neutral-900, #0f172a);
}

.mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-list a {
    display: block;
    padding: 8px;
    border-radius: 8px;
    color: var(--color-neutral-700, #374151);
    text-decoration: none;
}

.mega-list a:hover {
    background: var(--color-neutral-100, #f3f4f6);
}

/* Buttons (fallbacks if your guide doesn't define them) */
/* .btn{ display:inline-flex; align-items:center; gap:8px; padding:.6rem 1rem; border-radius:10px; font-weight:700; text-decoration:none; border:1px solid transparent; }
.btn-primary{ background: var(--color-primary, #e11d48); color:#fff; border-color: var(--color-primary, #e11d48); }
.btn-primary:hover{ background: var(--color-primary-700, #be123c); border-color: var(--color-primary-700, #be123c); }
.btn-outline{ background:#fff; color: var(--color-neutral-900, #0f172a); border-color: var(--color-neutral-300, #d1d5db); }
.btn-outline:hover{ background: var(--color-neutral-100, #f3f4f6); } */

/* Mega menu */
.has-mega {
    position: static;
}

.mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    background: #fff;
    border-top: 1px solid var(--color-neutral-200, #e5e7eb);
    padding: 24px 0;
    display: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Desktop: open on hover */
@media (min-width: 992px) {
    .has-mega:hover>.mega {
        display: block;
    }
}

/* Mobile: open when <li> has .open */
@media (max-width: 991.98px) {
    .mega {
        position: static;
        display: none;
        padding: 8px 8px 16px;
        border-top: 1px dashed var(--color-neutral-200, #e5e7eb);
        box-shadow: none;
        background: transparent;
    }

    .has-mega.open>.mega {
        display: block;
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mega-title {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-neutral-900, #0f172a);
}

.mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-list a {
    display: block;
    padding: 8px;
    border-radius: 8px;
    color: var(--color-neutral-700, #374151);
    text-decoration: none;
}

.mega-list a:hover {
    background: var(--color-neutral-100, #f3f4f6);
}

/* Buttons (fallbacks if your guide doesn't define them)*/
/*.btn{ display:inline-flex; align-items:center; gap:8px; padding:.6rem 1rem; border-radius:10px; font-weight:700; text-decoration:none; border:1px solid transparent; }
.btn-primary{ background: var(--color-primary, #e11d48); color:#fff; border-color: var(--color-primary, #e11d48); }
.btn-primary:hover{ background: var(--color-primary-700, #be123c); border-color: var(--color-primary-700, #be123c); }
.btn-outline{ background:#fff; color: var(--color-neutral-900, #0f172a); border-color: var(--color-neutral-300, #d1d5db); }
.btn-outline:hover{ background: var(--color-neutral-100, #f3f4f6); } */

/* Base nav */
.site-header .nav-link {
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    color: var(--color-gray2);
}

.site-header .nav-link:hover {
    color: var(--color-green-bg) !important;
}

.site-header .bi-chevron-down {
    font-size: 13px;
    transform: translateY(-1px);
    color: var(--Neutral-5);
}

/* Mega dropdown shell */
.mega-wrap .dropdown-menu {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.12);
    margin-top: 0;
}

.mega-dd {
    min-width: 400px;
}

.mega-inner {
    padding-left: 20px;
    padding-right: 20px;
}

.mega-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
}

@media (min-width: 1028px) and (max-width: 1440px) {
    .mega-dd-12-sc {
        min-width: 400px;
    }
}

/* Items */
.mega-item {
    display: flex !important;
    align-items: flex-start;
    gap: 5px;
    padding: 6px 0 !important;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.mega-item span {
    display: inline-block;
    line-height: 1.3;
}

.mega-item span:hover {
    color: var(--color-green-bg) !important;
}

.mega-item-icon {
    width: 18px;
    height: 18px;
    margin-bottom: 2.9px;
}

.mega-item:hover {
    opacity: 0.85;
}

.mega-item i {
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
}

/* Icon colors (green for Buy, blue for Rent) – use your tokens if defined */
.icon-buy {
    color: var(--color-green-700, #0e9f6e);
}

.icon-rent {
    color: var(--color-blue-600, #2563eb);
}

.site-header .navbar-brand img {
    height: 84px;
    object-fit: cover;
}

/* ---------- Desktop hover open ---------- */
@media (min-width: 992px) {
    .mega-wrap:hover>.dropdown-menu {
        display: block;
    }

    .mega-wrap .dropdown-toggle:after {
        display: none;
    }

    /* hide Bootstrap carets */
}

/* ---------- Mobile offcanvas ---------- */
.m-header-menu {
    --bs-offcanvas-width: 360px;
}

.offcanvas.m-header-menu {
    left: 0;
}

@media (max-width: 575.98px) {
    .m-header-menu {
        --bs-offcanvas-width: 100vw;
        border-radius: 0;
    }

    .navbar-brand img {
        height: 64px;
    }
}

.m-header-menu .menu-logo {
    height: 64px;
}

.m-header-menu .m-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 15px;
    color: #0f172a;
    text-decoration: none;
}

.m-header-menu .m-item i {
    font-size: 18px;
    color: #1f2937;
}

/* Desktop header right */
.site-header .btn-link {
    font-size: 20px;
    font-weight: 400 !important;
    text-decoration: none;
    padding: 0;
    min-width: 0px !important;
}

.site-header .btn .bi {
    font-size: 16px;
}

.site-header .menu-open-btn .bi {
    font-size: 28px;
}

/* Avatar */
.user-avatar-sm {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.cdc-nav {
    background: var(--color-white);
}

.close-btn-mobile {
    min-width: 0 !important;
}

.cdc-nav .navbar-collapse {
    flex-grow: 0 !important;
    gap: 30px;
}

/* home-page */

.swiper-button-next,
.swiper-button-prev {
    background-color: var(--color-white) !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
    border: 1px solid #000;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    color: #000;
    font-weight: 900;
}

.swiper-button-next {
    right: 0px;
    top: 35%;
    bottom: 60px;
}

.swiper-button-prev {
    left: 0px;
    top: 35%;
    bottom: 60px;
}

.index-services-profile-img {
    height: 46px;
    width: 46px;
    background-color: transparent;
    color: var(--color-green-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-green-bg);
    font-size: 34px;
}

.index-services-profile-img:hover {
    background-color: var(--color-green-bg);
    color: var(--color-white);
}

.index-services .up-arrow-icon {
    font-size: 20px;
}

.reviews-slider .card span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-left: 4px solid var(--color-blue-bg);
}

.footer-tagline {
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0%;
    max-width: 350px;
    color: var(--color-white);
}

.footer-section a {
    color: var(--color-white);
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
    letter-spacing: 0%;
    transition: color 0.2s ease;
}

.footer-legal .fsocial-logo {
    height: 15px;
    color: var(--color-white);
}

.footer-copyright p {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 400;
}

.app-img {
    object-fit: contain;
    height: 52px;
}

.background-blues {
    background-color: var(--color-blue-bg) !important;
}

.background-greens {
    background-color: var(--color-green-bg) !important;
}

.text-color-blue {
    color: var(--color-blue-bg) !important;
}

.text-color-green {
    color: var(--color-green-bg) !important;
}

.text-color-black {
    color: var(--color-Black) !important;
}

.site-header .navbar-brand img {
    height: 84px;
    object-fit: cover;
}

.footer-logo img {
    height: 119px;
    object-fit: contain;
}

.hero-copy {
    z-index: 1;
}

/* Footer Styles */
.footer {
    /* background: linear-gradient(180deg, var(--color-neutral-950) 0%, var(--color-neutral-800) 100%); */
    background: var(--color-footer-bg);
    color: var(--color-Black);
    padding: 3rem 0 1.5rem;
    /* border-top: 1px solid var(--color-neutral-800); */
}

.footer-logo img {
    height: 65px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 2fr;
    gap: 3rem;
    padding: 0rem 0 2rem;
    align-items: start;
}

.footer-btn-width {
    width: 50%;
}

/* Left Column */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-tagline {
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0%;
    max-width: 350px;
    color: var(--color-white);
}

/* Middle Column */
.footer-middle {
    display: grid;
    grid-template-columns: 4fr 4fr;
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.4rem;
    color: var(--color-neutral-300);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 8px;
}

.footer-section li {
    margin-bottom: 1.3rem;
}

.footer-section a {
    color: var(--color-white);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
    letter-spacing: 0%;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--color-green-bg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-neutral-800);
}

.footer-copyright p {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 400;
}

.footer-copyright .gcc-text {
    font-weight: 700;
    text-decoration: none;
    color: var(--color-white);
    display: inline-block;
    /* allow transform */
}

.footer-copyright .gcc-text:hover {
    transform: translateY(-1px);
    color: var(--color-green-bg);
}

.footer-legal .fsocial-logo {
    height: 15px;
    color: var(--color-white);
}

.footer-legal .fsocial-logo:hover {
    color: var(--color-green-bg);
}

.footer-legal {
    display: flex;
    gap: 1.8rem;
}

@media (min-width: 993px) and (max-width: 1028px) {
    .footer-main {
        display: grid;
        grid-template-columns: 1.4fr 2fr;
        gap: 2rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-middle {
        grid-template-columns: 1.4fr 1fr;
        gap: 2rem;
    }

    .social-links {
        flex-direction: row;
        gap: 1.8rem;
        padding-left: 0rem;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .social-links {
        flex-direction: row;
        gap: 1.8rem;
        padding-left: 0rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: start;
    }
}

/* Hero Section INdex*/
.hero.hero-section.hero-section-indx {
    background: var(--color-banner);
    padding: 220px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.star-bg {
    color: var(--star-color-yellow);
}

.hero-copy {
    z-index: 1;
}

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .hero-inner {
    position: relative;
    z-index: 2;
}

.hero-inner {
    display: grid;
    grid-template-columns: 2.1fr 0.95fr;
    align-items: center;
    margin: 0 auto;
}

.for-capitilize {
    text-transform: uppercase;
}

.searchbar {
    border: 1px solid var(--color-page-link);
    border-radius: 6px;
    background: var(--color-white);
    height: 56px;
}

.search-icon {
    width: 24px;
    height: 24px;
}

.searchbar .vr {
    background: var(--color-page-link);
    opacity: 0.5;
    width: 3px;
    min-height: 2em;
    align-self: auto;
}

/* Default (desktop/tablet) → vertical line */
.vr {
    display: inline-block;
    align-self: stretch;
    width: var(--bs-border-width);
    min-height: 1em;
    background-color: currentcolor;
    opacity: 0.25;
}

/* Inside your searchbar, tweak height a bit */
.searchbar .vr {
    min-height: 2em;
}

@media (min-width: 601px) and (max-width: 991px) {
    .hero-inner {
        grid-template-columns: 4fr 1fr;
    }
}

@media (max-width: 767px) {
    .hero-inner {
        grid-template-columns: 2fr;
    }

    .searchbar {
        flex-direction: column;
        /* stack inputs vertically */
        height: auto !important;
    }

    .searchbar .vr {
        width: 100%;
        /* full width line */
        height: 1px;
        /* thin horizontal line */
        min-height: unset;
        /* reset min-height */
        margin: 8px 0;
        /* spacing around line */
    }
}

.form-control-index {
    padding-left: 0 !important;
}

.searchbar .form-control::placeholder {
    color: var(--color-gray-placeholderindex);
    font-weight: 400;
    font-size: 14px;
}

.searchbar .btn-primary {
    min-width: 0;
    padding: 0.625rem 1.9rem;
}

/* cards */
.card-grid-index {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.index-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.index-image {
    height: 234px;
    width: 100%;
}

.index-card-img {
    height: 100%;
    width: 100%;
}

.index-card-profile-img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.index-card-content {
    padding: 0.8rem 0rem 0rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.index-excerpt {
    margin-bottom: 0.552rem;
}

/*  */

#top-service {
    padding: 1.8rem 0rem 0rem;
}

.services-grid-index {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.index-services {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-gray-servicesindexborder);
}

.index-services-profile {
    height: 47px;
    width: 100%;
}

/*  */
#top-shop-products {
    padding: 1.8rem 0rem 1rem;
}

/*  */

.star-icon-clor {
    color: var(--color-page-link);
}

.reviews-section h3 {
    border-bottom: 2px solid #000000;
    display: inline-block;
    padding-bottom: 7px;
}

.reviews-slider .card {
    border-radius: 10px;
    border: 1px solid var(--color-gray-servicesindexborder);
}

.reviews-slider .card span {
    display: block;
    position: relative;
    padding-left: 20px;
}

.reviews-slider .card span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-left: 4px solid var(--color-blue-bg);
}

/* Common arrow styles */
.reviews-slider .swiper-button-next,
.reviews-slider .swiper-button-prev {
    background-color: #c4c4c4;
    /* background color */
    border-radius: 50%;
    /* circle */
    width: 30px;
    /* size */
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

.reviews-slider .swiper-button-prev {
    left: 0px;
    top: auto;
    bottom: 60px;
    /* spacing before next */
}

.reviews-slider .swiper-button-next {
    right: 0px;
    top: auto;
    bottom: 60px;
}

/* Change arrow icon color */
.reviews-slider .swiper-button-next::after,
.reviews-slider .swiper-button-prev::after {
    font-size: 14px;
    /* arrow size */
    color: #858c94;
    /* icon color */
}

.container2 {
    max-width: 1300px;
}

@media (min-width: 601px) and (max-width: 991px) {
    .card-grid-index {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .card-grid-index>.index-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        /* span full row */
        justify-self: center;
        /* center it */
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    .card-grid-index {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .services-grid-index {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.8rem;
        margin-top: 1rem;
    }
}

/* Reset Page Start */

#reset-section {
    background: var(--color-white);
    padding: 7.3rem 0;
}

.form-logo {
    width: 95px;
    height: 52px;
}

.resset-component-grid {
    display: grid;
    gap: 1rem;
    padding: 1rem 0 0;
}

.reset-form {
    max-width: var(--reset-form-width);
    background: var(--color-white);
    margin: 0rem auto;
    border-radius: 12px;
    padding: 1.5rem 1.5rem;
    border: 2px solid #dadada;
}

.padding-reset-heading {
    padding: 2rem 0 1rem;
    font-weight: 500;
}

.position-relative {
    position: relative;
}

.toggle-eye {
    position: absolute;
    right: 12px;
    top: 20%;
    /* transform: translateY(-50%); */
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.6;
}

.toggle-eye:hover {
    opacity: 1;
}

.restpasstoggle-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.6;
}

.restpasstoggle-eye:hover {
    opacity: 1;
}

.toggle-eye-profilepass {
    position: absolute;
    right: 12px;
    top: 58%;
    /* transform: translateY(-50%); */
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.6;
}

.toggle-eye-profilepass:hover {
    opacity: 1;
}

.form-check {
    display: flex;
    align-items: center;
}

@media (max-width: 600px) {
    .form-logo {
        display: none;
    }

    .resset-component-grid {
        gap: 0.8rem;
        padding: 1rem 0 0;
    }

    .role-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    #reset-section {
        background: var(--color-white);
        padding: 2.9rem 0;
    }

    #reset-section .padding-reset-heading {
        padding: 0.3rem 0 1rem;
    }

    #reset-section .reset-form {
        border-radius: 0px;
        padding: 0.9rem 0.5rem;
    }
}

.left-top-part .breadcrumb-item+.breadcrumb-item::before {
    color: #858c94 !important;
}

/* Reset Page End */

/* Profile */

.profile-page {
    display: grid;
    grid-template-columns: 0.7fr 2.3fr;
    /* col-4 : col-8 */
    gap: 1.5rem;
    margin-top: 1rem;
}

.profile-left-sidebar {
    background: #fff;
    padding: 1rem 0.6rem;
}

.top-part {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 1rem 0 1.8rem;
    border-bottom: 2px solid #c4c4c4;
}

.profile-page-profile {
    width: 102px;
    height: 102px;
    border-radius: 50%;
    object-fit: cover;
}

.bottom-part {
    padding: 1.5rem 0rem 0.7rem 0rem;
}

.profile-links-sidebar {
    text-decoration: none;
    color: #000;
}

.margin-botm {
    margin-bottom: 0.7rem;
}

/* Accordion Styles */
.accordion {
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 0rem;
    --bs-accordion-body-padding-x: 1.5rem;
    --bs-accordion-body-padding-y: 1.25rem;
    --bs-accordion-border-color: var(--color-transparent);
    --bs-accordion-border-radius: 0;
}

.accordion-button::after {
    width: 1.5rem;
    /* smaller width */
    height: 1.1rem;
    /* smaller height */
    background-size: 1.1rem;
    /* resize the SVG */
    margin-bottom: 8px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23858C94'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Expanded (open) state */
.accordion-button:not(.collapsed)::after {
    width: 1.5rem;
    height: 1.1rem;
    background-size: 1.1rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23858C94' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-transparent);
    box-shadow: none !important;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none !important;
}

.accordion-item {
    background: var(--color-transparent);
}

.accordion-button {
    background: var(--color-transparent);
}

.list-kids {
    padding-left: 2.1rem;
}

.left-top-part {
    padding: 1rem 0 0.5rem;
    border-bottom: 1px solid #dadada;
    margin-bottom: 1.4rem;
}

.breadcrumb .breadcrumb-item {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #858c94;
}

#notary-services .left-bottom-part,
#notary-profile .left-bottom-part {
    width: 100%;
    padding: 15px 20px 45px 20px;
    background-color: #ffffff;
    border-radius: 6px;
    border-radius: 12px 12px 0 0;
}

.for-width {
    width: 75%;
}

#notary-services #width-forms {
    width: 75%;
}

/* Tabs navlinks********************* */
/* form-container */
.form-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

@media (min-width: 301px) and(max-width:600px) {
    .nav-tabs .nav-link {
        font-size: 10px;
    }
}

.nav-tabs .nav-link {
    padding: 15px 7px;
    border-radius: 0;
    color: #858c94;

    background: var(--color-white);

    transition: all 0.3s ease;
    border: none;
    border-bottom: 1px solid #cdcdcd;
    font-weight: 600;
    font-size: 16px;

    line-height: 100%;
    letter-spacing: 0%;
}

.nav-tabs .nav-link:hover {
    border: none;
    border-bottom: 1px solid #cdcdcd;
}

.nav-tabs .nav-link.active {
    border: none;
    border-bottom: 2px solid #000000;
    background-color: #f3f3f3;
    color: var(--color-blue-bg);
}

.profile-photo img {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    object-fit: cover;
    height: 130px;
    width: 130px;
}

.drop_file img {
    height: 40px;
    object-fit: contain;
}

@media (min-width: 992px) and (max-width: 1028px) {
    .left-bottom-part {
        width: 98%;
    }

    .for-width {
        width: 100%;
    }

    .nav-tabs .nav-link {
        font-size: 13px;
        padding: 15px 6px;
    }
}

@media (min-width: 601px) and (max-width: 991px) {
    .profile-page {
        grid-template-columns: 1fr 2fr;
        /* col-4 : col-8 */
        gap: 1.2rem;
        margin-top: 1rem;
    }

    .profile-left-sidebar {
        background: #e9e8e8;
        padding: 1rem 0.5rem;
    }

    .bottom-part {
        padding: 1.5rem 0.2rem 0.7rem 0.2rem;
    }

    .left-bottom-part {
        width: 98%;
    }

    .for-width {
        width: 100%;
    }

    #notary-services #width-forms {
        width: 98%;
    }

    .nav-tabs .nav-link {
        font-size: 14px;
        padding: 15px 6px;
    }
}

@media (max-width: 600px) {
    .left-bottom-part {
        width: 100%;
    }

    .for-width {
        width: 100%;
    }

    #notary-services #width-forms {
        width: 100%;
    }

    .profile-page {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.2rem;
        margin-top: 1rem;
    }
}

.used-active {
    padding: 6px 6px 6px 6px;
}

.used-active.active {
    background-color: #18284c;
    color: #fff;
    border-radius: 6px;
    padding: 10px 0 10px 7px;
}

.used-active.active .profile-links-sidebar {
    color: #fff;
}

/* Notary pages */

#notary-profile .left-bottom-part {
    width: 100%;
}

/* @media (min-width: 1260px) and (max-width: 1790px) {
  #notary-profile .container {
    padding-right: 0px;
    padding-left: 0px;
  }
} */

.background-profile {
    background-color: #f7f7f7 !important;
}

.heading-font {
    font-family: var(--font-espisom) !important;
}

.profile-left-sidebar {
    background: #fff;
    padding: 1rem 0.6rem;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.left-bottom-part .bg-plus i {
    background-color: var(--color-green-bg);
    width: 24px;
    height: 24px;
    color: #fff;
    border-radius: 4px;
}

.heading-font {
    font-family: var(--font-espisom) !important;
}

.card-grid-index .card-back {
    background-color: var(--color-white);
    padding: 0 10px;
}

.card-grid-index .index-image img {
    height: 234px;
    object-fit: cover;
}

.left-bottom-part .star-bg {
    color: var(--star-color-yellow);
}

.web-link {
    position: absolute;
    /* top: 54%; */
    color: #5e718d;
    left: 17px;
}

.left-top-part .arrow img {
    height: 30px;
}

.heading-font {
    font-family: var(--font-espisom) !important;
}

/* after-notary */
.body-bg-notry {
    background: #f7f7f7;
}

.n-contract-card {
    padding: 1.6rem 1.6rem;
    border: 1px solid #dadada;
    border-radius: 12px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
}

.status-badge.signed {
    background-color: rgba(111, 66, 193, 0.2);
    color: #6F42C1;
}

.status-badge.completed {
    background-color: rgba(33, 150, 83, 0.2);
    color: #20C997;
}

.status-badge.validated {
    background-color: rgba(33, 150, 83, 0.2);
    color: #20C997;
}

.status-badge.finished {
    background-color: rgba(33, 150, 83, 0.2);
    color: #20C997;
}

.status-badge.modified {
    background-color: rgba(57, 73, 171, 0.2);
    color: #3949AB;
}

.status-badge.request {
    background-color: #f2c94c33;
    color: #f2c94c;
}

.status-badge.pending {
    background-color: #f2c94c33;
    color: #f2c94c;
}

.status-badge.send {
    background-color: #f2c94c33;
    color: #f2c94c;
}

.status-badge.accepted {
    background-color: #20c99733;
    color: #20c997;
}

.status-badge.rejected {
    background-color: #dc354533;
    color: #dc3545;
}

.status-badge.in-progress {
    background-color: #17a2b833;
    color: #17a2b8;
}

.status-badge.singed {
    background-color: #6f42c133;
    color: #6f42c1;
}

.status-badge.draft {
    background-color: #e1afe533;
    color: #8d4798;
}
.status-badge.drafts {
    background-color: #e1afe533 !important;
    color: #8d4798 !important;
}
.drafts {
    background-color: #e1afe533 !important;
    color: #8d4798 !important;
}
.status-badge.cancelled {
    background-color: #6c757d33;
    color: #6c757d;
}

.status-badge.on-hold {
    background-color: #fd7e1433;
    color: #fd7e14;
}

.status-badge2 {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #72984d;
    cursor: pointer;
}

.status-badge2.buyer-vendor {
    background-color: rgba(114, 152, 77, 0.3);
    color: #000000;
}

.notray-a-tag {
    text-decoration: none;
    color: #000000;
}

.n-detais-icon-color {
    color: rgba(114, 152, 77, 1);
}

@media (max-width: 991px) {
    .n-contract-card {
        padding: 1rem 1rem;
    }
}

@media (max-width: 600px) {
    .status-badge2 {
        text-align: center;
    }
}

/*  */

.g-contract-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.g-contract-parent .role-options2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.g-contract-parent .role-option-child {
    cursor: pointer;
}

.g-contract-parent .role-option-child input {
    display: none;
    /* hide native radio */
}

.g-contract-parent .option-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border: 1px solid #ddd;
    border-radius: 32px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 100%;
    /* min-width: 168px; */
    /* fixed width for neat layout */
}

.g-contract-parent .option-content img.role-contract-prof {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    /* circle image */
    object-fit: cover;
}

.g-contract-parent .option-content .text {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

@media (max-width: 991px) {
    .g-contract-parent {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 6px;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 600px) {
    .g-contract-parent .role-options2 {
        gap: 10px;
        width: 100%;
    }

    .g-contract-parent .role-option-child {
        cursor: pointer;
        width: 100%;
    }

    .g-contract-parent .option-content {
        gap: 8px;
        padding: 10px 15px;
        min-width: 168px !important;
    }
}

/* Services Details Page */

.slider-service .thumbs-next,
.slider-service .thumbs-prev {
    background-color: #fff;
    border: 1px solid #dadada;
    width: 22px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

.slider-service .thumbs-next::after,
.slider-service .thumbs-prev::after {
    font-size: 14px;
    color: #72984d;
}

.slider-service .mySwiper2 {
    width: 100%;
    height: 578px;
    margin-bottom: 15px;
}

.slider-service .mySwiper2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.slider-service .thumbs-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.slider-service .mySwiper {
    height: 68px;
    box-sizing: border-box;
    margin: 0 2rem;
}

.slider-service .mySwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
}

.slider-service .mySwiper .swiper-slide {
    width: 20%;
    opacity: 0.5;
}

.slider-service .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.services-details-page .profile-right-section {
    min-width: 0;
    overflow: hidden;
}

.slider-service .swiper-button-next {
    right: 0px;
    top: 50%;
    bottom: 60px;
}

.slider-service .swiper-button-prev {
    left: 0px;
    top: 50%;
    bottom: 60px;
}

.slider-service .thumbs-next,
.slider-service .thumbs-prev {
    color: #72984d;
    top: 30%;
    /* transform: translateY(-50%); */
}

@media (max-width: 991px) {
    .slider-service .mySwiper2 {
        width: 100%;
        height: 450px;
        margin-bottom: 10px;
    }
}

@media (max-width: 601px) {
    .slider-service .mySwiper2 {
        width: 100%;
        height: 350px;
        margin-bottom: 10px;
    }
}

/* services-details */
.content-services-details .specifications-card {
    border: 1px solid #dadada;
    padding: 15px;
    background: #fff;
}

.content-services-details .spec-row {
    display: flex;
    margin-bottom: 6px;
}

.content-services-details .spec-label {
    width: 180px;
}

.content-services-details .spec-value {
    flex: 1;
}

@media (max-width: 601px) {
    .content-services-details .spec-label {
        width: 140px;
    }
}

/*  */

.signature-gride-card {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 2rem;
}

.signature-canvas {
    border: 1px solid #dadada;
    width: 100%;
    height: 180px;
    background: #f9f9f9;
    border-radius: 4px;
    display: block;
    margin-top: 5px;
}

.signature-canvas-btn {
    margin-top: 15px;
    padding: 6px 15px;
    border: 1px solid #19284d;
    background: #fff;
    color: #19284d;
    cursor: pointer;
    font-size: 16px;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .signature-canvas {
        height: 165px;
    }
}

@media (max-width: 601px) {
    .signature-gride-card {
        grid-template-columns: 2fr;
        gap: 1.2rem;
    }
}

/*  */

.disputes-img-short {
    width: 90px;
    height: 89px;
}

.disputes-img-short img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.disput-imgcard-width {
    width: 50%;
}

@media (max-width: 991px) {
    .disput-imgcard-width {
        width: 100%;
    }
}

@media (max-width: 601px) {
    .disput-imgcard-width {
        width: 100%;
    }

    .disputes-img-short {
        width: 100%;
        height: 155px;
    }
}

/*  */
.request-receive-details-buttons-w {
    width: 70%;
}

.request-receive-details-buttons-w2 {
    width: 40%;
}

.icon-color-doc {
    color: #72984d !important;
}

.request-receive-details-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 2rem;
}

@media (max-width: 991px) {
    .request-receive-details-buttons-w {
        width: 100%;
    }

    .request-receive-details-buttons-w2 {
        width: 60%;
    }

    .request-receive-details-grid {
        grid-template-columns: 2fr;
        gap: 1rem;
    }
}

@media (max-width: 601px) {
    .request-receive-details-buttons-w {
        width: 100%;
    }

    .request-receive-details-buttons-w2 {
        width: 100%;
    }

    .request-receive-details-grid {
        grid-template-columns: 2fr;
        gap: 1rem;
    }
}

/* Services  Architect */
#services-architect-top-main .breadcrumb-item a {
    color: #858c94;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

#services-architect-top-main .breadcrumb-item.active {
    color: var(--color-blue-bg);
    font-weight: 600 !important;
}

#services-architect-top-main .breadcrumb-item a {
    color: var(--color-page-link);
    text-decoration: none;
}

#services-architect-top-main .breadcrumb-item+.breadcrumb-item::before {
    color: var(--color-page-link);
}

.line-hor-architect {
    border-top: 3px solid #dadada;
}

.services-architect-mainsub {
    display: grid;
    grid-template-columns: 0.6fr 2.4fr;
    gap: 1.5rem;
}

.services-architect-mainsub-left-top-category-link {
    text-decoration: none;
    color: var(--color-Black);
}

.services-architect-mainsub-left-top-category-li {
    margin-bottom: 0.4rem;
}

.services-architect-mainsub-left-top-category-link.active {
    color: #446693;
}

.services-architect-link-all {
    color: #446693;
    text-transform: capitalize;
}

@media (max-width: 601px) {
    .services-architect-mainsub {
        display: grid;
        grid-template-columns: 2fr;
        gap: 1rem;
    }
}

/*  */

.chart-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 1rem;
}

/*  */
.manage-project-a-tag {
    color: #72984d;
    text-decoration: underline;
}

.project-thumb {
    flex: 0 0 230px;
}

.bprojrctcard-imghero {
    height: 185px;
}

@media (max-width: 991px) {
    .project-thumb {
        flex: 0 0 0px;
    }

    .bprojrctcard-imghero {
        height: 200px;
    }
}

#chart,
#chart2,
#chart3 {
    background: #fff;
    border: 2px solid #dadada;
    border-radius: 12px;
}

.quots-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    border: 2px solid #dadada;
}

.quots-table th,
.quots-table td {
    text-align: left;
    padding: 8px 8px;
    border: 2px solid #dadada;
}

.quots-table th {
    background-color: #f3f3f3;
    /* light gray header background */
    font-weight: 600;
    color: #374151;
}

.quots-table tr {
    background-color: white;
}

.quots-table tr:hover {
    background-color: #fafafa;
}

.for-table-pages {
    overflow-x: auto;
    min-width: 0;
}

@media (max-width: 991px) {
    .quots-table {
        font-size: 13.5px;
    }
}

.loginbtnscolor {
    background-color: #18284c !important;
}

.for-login-hover:hover {
    color: #72984D;
    ;
}

.chart-box .chart-summary {
    font-size: 13px;
}

.chart-box {
    background: #fff;
    border: 1px solid #DADADA;
    border-radius: 12px;
    padding: 15px 10px;
    /* height: 100%; */
}

.locbtnnewsaddclass .circle-btn {
    height: unset !important;
    /* width: unset !important; */
    background-color: #fff !important;
    border-radius: var(--border-radius-md);
    border: 1px solid #18284C;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.locbtnnewsaddclass .circle-btn i {
    color: #18284C;
}

@media (max-width: 601px) {
    .service-price-filternewclass .input-box {
        width: 100% !important;
    }

    .locbtnnewsaddclass .circle-btn {
        width: unset !important;
    }
}


/* project */
.architect-item .inmodalimg {
    object-fit: cover !important;
    height: 28px !important;
    width: 28px !important;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* manage project ticket */

.disput-img-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: max-content;
    /* container shrinks/grows dynamically */
    max-width: 100%;
    /* prevents overflow */
}

.disputes-img-short {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
}

.disputes-img-short img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 601px) {
    .disput-imgcard-width {
        width: 100%;
    }

    .disputes-img-short {
        width: 100%;
        height: 155px;
    }
    .disput-img-container {
    width: auto;
}
}

.card-grid-index .bi-star-fill::before {
    vertical-align: baseline;
}


/* AboutUs-Page-css */

.inter-family {
    font-family: var(--font-family);
}

.espiosom-family {
    font-family: var(--font-espisom);
}


.text-35 {
    font-size: 35px;
    font-family: var(--font-espisom);
}

.text-44 {
    font-size: 44px;
}

.line-h-74-about {
    line-height: 78px;
}

.about-h-clr {
    color: var(--color-green-bg);
}

.verified-card {
    background: #FFFFFF;
    box-shadow: 0px 2px 8px 0px #00000040;
    border-radius: 14px;
    padding: 16px 16px;
    gap: 14px;
    height: 100%;
}

.icon-circle {
    width: 58px;
    height: 58px;
    background: #21346D;
    border-radius: 29px;
    padding: 13px 12px;
    flex-shrink: 0;
}

.icon-green {
    background: #6DA544;
}

.about-intro-two-cardimg {
    width: 33px;
    height: 33px;
    /* border-radius: 15px; */
}

.about-intro-threeimg {
    height: 307px;
}

.about-mission-imgdiv {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 410px;
}

.about-mission-img {
    max-width: 100%;
    height: 100%;

}

.hero-section-about-last {
    position: relative;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section-about-last::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.70);
    /* dark overlay */
}

.hero-section-about-last .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.hero-section-about-last-content {
    max-width: 85%
}

@media (max-width: 601px) {


    .about-intro-threeimg {
        height: 180px;
    }

    .about-mission-imgdiv {
        height: 330px;
    }

    .hero-section-about-last-content {
        max-width: 100%
    }

    .line-h-74-about {
        line-height: 45px;
    }
}

.two-column-layout {
    column-count: 2;
    column-gap: 40px;
}

/* Mobile: single column */
@media (max-width: 901px) {
    .two-column-layout {
        column-count: 1;
    }
}

.dropdown-item {
    font-size: 14px;

}

.psboxprice {
    height: 49px !important;
}

@media (max-width: 601px) {

    .psboxprice {
        width: 100% !important;
    }
}

/* Quotes Notification badge */
.Qrequest-text {
    position: relative;
    display: inline-block;
    padding-right: 4px;
}

.Qrequest-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #dc3545;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 6px 8px 6px;
    border-radius: 50%;
    min-width: 15px;
    text-align: center;
    line-height: 1;
}

@media (min-width: 768px) {

    .formcuswidth {
        width: 82.5% !important;
    }
}

.fsizemute{
    font-size: 12px !important;
}
.goog-te-gadget {
   display: none !important;
}