﻿@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@font-face {
    font-family: 'Urbane-Bold';
    src: url('/assets/fonts/urbane/Urbane-Bold.ttf');
}

@font-face {
    font-family: 'Urbane-ExtraLight';
    src: url('/assets/fonts/urbane/Urbane-ExtraLight.ttf');
}

@font-face {
    font-family: 'Urbane-Light';
    src: url('/assets/fonts/urbane/Urbane-Light.ttf');
}

@font-face {
    font-family: 'Urbane-Medium';
    src: url('/assets/fonts/urbane/Urbane-Medium.ttf');
}

@font-face {
    font-family: 'Urbane-Thin';
    src: url('/assets/fonts/urbane/Urbane-Thin.ttf');
}

@font-face {
    font-family: 'Urbane-Semibold';
    src: url('/assets/fonts/urbane/Urbane-DemiBold.ttf');
}

@font-face {
    font-family: 'Urbane-ExtraBold';
    src: url('/assets/fonts/urbane/Urbane-Heavy.ttf');
}

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

/* body,
html {
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
} */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
ol,
ul,
dl,
fieldset,
pre {
    margin: 0;
}

:root {
    --gold-color: #AE8D32;
    --black-color: #000;
    --white-color: #FFF;
    --light-Gray: #D9D9D9;
    --lighter-gray: #EEE;
    --Black: #000;
}

/* Common css start here  */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

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

.mt-40 {
    margin-top: 40px;
}

.my-40 {
    margin-bottom: 40px !important;
    margin-top: 40px !important;
}

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

.mt-30 {
    margin-top: 30px;
}

.my-30 {
    margin-bottom: 24px;
    margin-top: 24px;
}

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

.mt-24 {
    margin-top: 24px;
}

.my-24 {
    margin-bottom: 24px !important;
    margin-top: 24px !important;
}

.my-30 {
    margin-bottom: 30px;
    margin-top: 30px;
}

.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

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

.mt-120 {
    margin-top: 120px;
}

p {
    margin-bottom: 0;
}

ul {
    margin-bottom: 0;
}

.custom-form-control {
    width: 100%;
    border: 1px solid var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    padding: 10px;
    border-radius: none;
    outline: none;
    box-shadow: none;
}

.custom-form-control:focus {
    border-radius: none;
    outline: none;
    box-shadow: none;
}

.custom-textarea {
    border-radius: 2px;
    border: 1px solid var(--black-color);
    background: transparent;
    color: var(--black-color);
    font-family: Inter !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 11px 19px !important;
    height: unset !important;
    width: 100%;
}

.white-to-gold-btn {
    color: var(--black-color);
    text-align: center;
    font-family: "Zilla Slab";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    background: var(--white-color);
    border: 1px solid var(--white-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 37px;
    text-decoration: none;
    transition: all 0.5s;
    text-transform: capitalize;
    min-width: 160px;
    min-height: 40px;
    flex-shrink: 0;
}

.white-to-gold-btn:hover {
    background: var(--gold-color);
    border: 1px solid var(--gold-color);
    color: var(--white-color);
}

.black-to-gold-btn {
    color: var(--white-color);
    text-align: center;
    font-family: "Zilla Slab";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    background: var(--black-color);
    border: 1px solid var(--black-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 37px;
    text-decoration: none;
    transition: all 0.5s;
    text-transform: capitalize;
    min-width: 160px;
    min-height: 40px;
    flex-shrink: 0;
}

.black-to-gold-btn:hover {
    background: var(--gold-color);
    color: var(--black-color);
    border: 1px solid var(--gold-color);
}

.transparent-btn {
    color: var(--gold-color);
    font-family: "Zilla Slab";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: underline;
    background: transparent;
    border: 1px solid transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 37px;
    text-decoration: none;
    transition: all 0.5s;
    text-transform: capitalize;
    min-width: 160px;
    min-height: 40px;
    flex-shrink: 0;
}

.transparent-btn:hover {
    background: transparent;
    color: var(--gold-color);
    border: 1px solid transparent;
}

.whiteBtn {
    color: var(--black-color);
    text-align: center;
    font-family: "Zilla Slab";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    background: var(--white-color);
    border: 1px solid var(--black-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 37px;
    text-decoration: none;
    transition: all 0.5s;
    text-transform: capitalize;
    min-width: 160px;
    min-height: 40px;
    flex-shrink: 0;
}

.whiteBtn:hover {
    background: var(--gold-color);
    color: var(--white-color);
    border: 1px solid var(--gold-color);
}

.rich-text {
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
}

.title-heading {
    font-family: "Zilla Slab";
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
}

.sm-title-heading {
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.gallery-carousel .item {
    position: relative;
    padding-top: 67%;
}

.gallery-carousel .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.Listings-title-cta {
    position: relative;
    max-width: calc(100% - 5%);
    margin: 0 auto;
}

.listing-cta {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.Listings-title-cta span.fa {
    padding-left: 5px;
}

.listing-cta {
    color: var(--black-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-family: "Zilla Slab";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.listing-cta:hover {
    color: var(--black-color);
}

.common-title-box {
    padding-top: 74px;
    padding-bottom: 36px;
}

.arrivals-title-box {
    padding-bottom: 36px;
}

.dark-line-separator {
    background: var(--black-color);
    margin: 0;
}

.gray-line-separator {
    background: var(--light-Gray);
    margin: 0;
}

.descripotion-box {
    max-width: calc(100% - 48%);
    margin: 0 auto;
    padding: 64px 20px 50px 20px;
    text-align: center;
}

/* toggle button css start here */

.toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.toggle-switch {
    position: relative;
    width: 58px;
    height: 32px;
    background: transparent;
    border-radius: 16px;
    transition: background 0.25s;
    border: 1px solid var(--black-color);
}

.toggle-switch::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: #AAA;
    border-radius: 50%;
    transition: left 0.25s, background 0.25s;
}

/* Active (ON) State */
.toggle-switch.active {
    background: transparent;
}

.toggle-switch.active::before {
    left: 30px;
    background: var(--gold-color);
}

.toggle-label {
    font-size: 16px;
}

/* toggle button css ends here */

/* inventory card css start here */

.inventory-container {
    width: calc(100% - 60px);
    margin: 0 auto;
    padding-bottom: 42px;
}

.inventory-card {
    width: calc(100% / 3);
    padding: 20px 28px;
}

.inventory-card a {
    color: inherit;
}

.inventory-card-img {
    position: relative;
    padding-top: 66.3%;
}

.inventory-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.inventory-card-title {
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.inventory-card-title-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.homeBrandSliderParaWrapper {
    margin: 24px 0 40px 0;
}

.inventory-card-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.inventory-card-body {
    padding: 16px 0;
}

.inventory-cond-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}

.inventory-cond-list .cond-list-item {
    color: var(--black-color);
    list-style: none;
    position: relative;
    padding-right: 30px;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.cond-list-item+.cond-list-item::after {
    position: absolute;
    content: "";
    background-color: var(--black-color);
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
}

.inventory-card-bottom-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.monthly-price-box {
    color: var(--black-color);
    list-style: none;
    position: relative;
    padding-right: 0;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.length-box {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 14px 0;
    background: var(--white-color);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.banner-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    padding-left: 200px;
}

.banner-title {
    font-family: "Zilla Slab";
    font-size: 64px;
    font-style: normal;
    font-weight: 300;
    line-height: 72px;
    color: var(--white-color);
    text-align: left;
}

.form-sec {
    position: relative;
}

.form-box {
    max-width: 600px;
    width: 100%;
    margin: 80px auto 100px auto;
    padding: 0px 20px;
}

.scroll-down {
    position: absolute;
    top: -130px;
    visibility: hidden;
}

.form-header {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
}

/* Common css end here  */


/* mega menus css starts here */
.boatsSalesMegaMenu {
    background-color: #fff;
    padding: 38px 0 88px 0;
    position: fixed;
    left: 0;
    top: 117px;
    width: 100%;
    z-index: 15;
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.25);
    display: none;
}

.boatSalesMenuList {
    list-style: none;
}

.boatSalesMenuList li {
    margin-bottom: 16px;
}

.megaMenuLink {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.megaMenuLink:hover {
    color: var(--black-color);
}

.boatSalesSecondList {
    margin-top: 80px;
}

.boatSalesSecondList {
    position: relative;
}

.boatSalesSecondList::before {
    content: '';
    position: absolute;
    left: 0;
    top: -40px;
    width: 140px;
    height: 1px;
    background-color: #D9D9D9;
}

.boatSalesMenuCard {
    position: relative;
    margin: 0 8px;
    padding-top: 50%;
    margin-bottom: 16px;
}

.boatSalesMenuCard .boatSalesMenuMedia {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boatSalesMenuLogoWrap {
    position: absolute;
    left: 16px;
    bottom: 16px;
    max-width: 100px;
}

.boatSalesMenuLogoWrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.activeNavTab {
    position: relative;
}

.activeNavTab::after {
    content: '';
    position: absolute;
    bottom: -28px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold-color);
}

.desktopNavLinkList {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.boatSalesMenuCrossIcon {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

.servicesMegaMenu {
    background-color: #fff;
    padding: 38px 0 80px 0;
    position: fixed;
    left: 0;
    top: 117px;
    width: 100%;
    z-index: 50;
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.25);
    display: none;
}

.serviceMenuCard {
    padding: 0 16px;
}

.serviceMenuCardImageWrap {
    position: relative;
    padding-top: 50%;
}

.servicePageSeparator {
    background-color: #000;
    margin-bottom: 64px;
}

.serviceMenuCardImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serviceMenuCardContentWrap {
    margin-top: 8px;
}

.serviceMenuCardTitle {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.serviceMenuCrossIcon {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

/* =======================++++++++++++++++======================= */
/* common code:: select store menu css starts here */

.selectStoreMenu {
    background-color: #fff;
    padding: 40px 60px 56px 60px;
    position: fixed;
    top: 116px;
    right: 0;
    max-width: 480px;
    z-index: 15;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
    display: none;
}

.selectStoreMenu .selectedStoreName {
    color: var(--black-color);
    text-align: right;
    font-family: 'Urbane-Medium';
    font-size: 14px;
    font-style: normal;
    text-align: left;
    font-weight: 600;
    line-height: 22px;
    display: inline-block;
    vertical-align: middle;
}

.storeCityandPhone {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.storeLocationName {
    color: var(--Black, #000);
    text-align: right;
    font-family: "Urbane-Light";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.availableStoreListingModal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
    max-width: 960px;
    background-color: #fff;
    height: 80vh;
    padding: 36px 45px;
    z-index: 15;
    display: none;
    scroll-behavior: smooth;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.availableStoreListingModal::-webkit-scrollbar {
    width: 6px;
}

.selectStoreModalTopBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 12px 0 36px 0;
}

.selectStoreModalHeading {
    color: var(--black-color);
    font-family: "Zilla Slab";
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
}

.zipCodeSearchBarWrapper {
    padding: 0 0 0 15px;
    border: 1px solid var(--black-color);
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.zipCodeSearchInput {
    border: none;
    outline: none;
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    opacity: 0.6;
}

.closeSelectStoreModal {
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
}

.closeSelectStoreModalMobile {
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
}

.selectedStoreCard {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background: rgba(212, 184, 106, 0.1);
    padding: 40px 35px 31px 35px;
}

.selectedStoreCardInnerWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.selectedStoreInfoWrap {
    max-width: 352px;
}

.selectedStoreTitle {
    color: var(--black-color);
    font-family: "Urbane-Medium";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.selectedStoreLocationPara {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.selectedStoreStarPara {
    display: flex;
    align-items: center;
    gap: 16px;
}

.selectedStoreStarName {
    color: #AE8D32;
    text-align: right;
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
}

.selectedStorePhoneWrap {
    margin-top: 32px;
}

.selectedStorePhone {
    color: var(--black-color);
    font-family: "Urbane-Light";
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.selectedStorePhone:hover {
    color: var(--black-color);
}

.availabelStoreCard {
    border-bottom: 1px solid #000;
    padding: 40px 35px 31px 35px;
}

.availableStoreInfoWrap {
    max-width: 352px;
}

.availableStoreInfoWrap {
    max-width: 352px;
}



.availableStoreTitle {
    color: var(--black-color);
    font-family: "Urbane-Medium";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.availableStoreLocationPara {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.availableStorePhone {
    color: var(--black-color);
    font-family: "Urbane-Medium";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.availableStorePhone:hover {
    color: var(--black-color);
}

.availableStoreSecondaryPart {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.availableAndSelectedStoreCardsContainer {
    height: 80%;
    overflow-y: auto;
    box-sizing: content-box;
    scrollbar-width: thin;
}


.availableAndSelectedStoreCardsContainer::-webkit-scrollbar {
    width: 6px;
}

.availableAndSelectedStoreCardsContainer::-webkit-scrollbar-track {
    background: #D9D9D9;
}

.availableAndSelectedStoreCardsContainer::-webkit-scrollbar-thumb {
    background-color: #D9D9D9;
    border-radius: 4px;
}

.availableAndSelectedStoreCardsContainer::-webkit-scrollbar-button {
    display: none;
}

.store-item {
    border-bottom: 1px solid #AE8D32;
    padding: 10px;
}

.store-details strong {
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gold-color);
}

.storeLocationPhone {
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--black-color);
}

/* common code:: select store menu css ends here */
/* =======================++++++++++++++++======================= */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    pointer-events: none;
}

.modal-backdrop.show {
    opacity: 0;
}

.modal {
    z-index: 1050;
}



.selectedStoreStarPara img {
    width: 18px;
    height: 18px;
}

.selectedStoreStarName {
    font-weight: 600;
    color: #cfa548;
}



.modal-content {
    pointer-events: auto;
}

.specialBanner {
    background-color: #222222;
    padding: 22px 23px 12px 23px;
    border-radius: 10px;
}

.specialTagText {
    color: var(--white-color);
    text-align: center;
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    padding-bottom: 5px;
}

.specialTagIcon {
    color: var(--white-color);
    text-align: center;
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    padding-bottom: 5px;
    position: relative;
    transition: all 0.4s;
}

.rotateSpecialIcon {
    transform: rotate(-180deg);
}

.specialContentWrapper {
    display: none;
}

.specialTag {
    cursor: pointer;
}

.specialShortDescpText {
    color: var(--white-color);
    text-align: center;
    font-family: 'Urbane-Light';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.specialBoatTitle {
    color: var(--white-color);
    text-align: center;
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.specialShortDescpWrap {
    margin-top: 13px;
}

.selectedstoreName {
    color: var(--Black, #000);
    font-family: 'Urbane-Light';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.selectedStoreAddress {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.selectedStorePhoneNumber {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.selectedStorePhoneNumber:hover {
    color: var(--black-color);
}

.selectedStoreInfoPara {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.changeSelectedLocationBtnWrap {
    margin-top: 40px;
}

.resourcesMegaMenu {
    position: fixed;
    right: 0;
    top: 116px;
    height: 100vh;
    background-color: #fff;
    padding: 56px 80px 20px 40px;
    z-index: 15;
    width: 320px;
    transition: all 0.4s;
    transform: translateX(100%);
}

.togglerClassForResourcesMenu {
    transform: translateX(0);
}

.resourcesBoldLinkList {
    list-style: none;
}

.resourcesBoldLink {
    color: var(--black-color);
    text-align: right;
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.resourcesBoldLink:hover {
    color: var(--black-color);
}

.resourcesBoldLinkList li {
    margin-bottom: 24px;
    text-align: right;
}

.resourcesLink {
    color: var(--black-color);
    text-align: right;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.resourcesLink:hover {
    color: var(--black-color);
}




/* mega menus css ends here */

/* desktop header css strat here */

/* header-start here */

.header-container {
    padding-right: 80px;
    padding-left: 80px;
}

.header-box {
    display: flex;
}

.logo-box {
    width: 30%;
}

.right-nav-box {
    width: 20%;
}

.centaral-nav-box {
    width: 50%;
}

.centralNavLink {
    font-family: 'Urbane-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--black-color);
}

.centralNavLink:hover {
    color: var(--black-color);
}

.selectStoreAndResourcesOptionWrap {
    display: flex;
    gap: 40px;
}

.desktop-header li {
    list-style: none;
}

.grecaptcha-badge {
    display: none;
}

.desktop-header {
    background: var(--white-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.centaral-nav {
    height: 100%;
}

.centaral-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    height: 100%;
}

.dropdown-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 320px;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.right-nav {
    height: 100%;
}

.right-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    margin-bottom: 0;
}

.header-brand-logos {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
}

.header-search {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid var(--black-color);
    max-width: 220px;
    gap: 16px;
    padding: 0px 16px;
}

.header-search img {
    flex: 0 0 16px;
    height: 16px;
}

.header-search input {
    border: none;
    outline: none;
    box-shadow: none;
    font-family: 'Urbane-Light';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.header-search input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.location-dropdown {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.header-location-box {
    cursor: pointer;
}


.location-dropdown h6 {
    margin-bottom: 0;
}

.location-dropdown span.fa {
    font-size: 23px;
}

.header-resources-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.header-resources-box a {
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: var(--black-color);
}

.header-resources-box .resourcesBurgerIconWrap {
    flex: 0 0 24px;
}

.resourcesBurgerIconWrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: fit-content;
}

.header-resources-box svg {
    cursor: pointer;
}

/* desktop nav css starts here */
.desktopHeader {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px 80px 21px 80px;
    z-index: 15;
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.25);
}

.desktopLogoWrap {
    max-width: 320px;
}

.desktopLogoWrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.desktopHeaderInnerWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.desktopNavRightSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.location-dropdown .selectedStoreName {
    color: var(--black-color);
    text-align: right;
    font-family: 'Urbane-Medium';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    max-width: 150px;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    overflow-wrap: break-word;
}
/* desktop nav css ends here */

/* mobile nav css starts here */
.mobileLogoWrap {
    max-width: 280px;
}

.mobileLogoWrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobileHeaderInnerWrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 17px 25px;
}

.mobileHeader {
    background-color: #fff;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.25);
    display: none;
}

.burgerLine {
    background-color: #000;
    width: 40px;
    height: 2px;
    margin-bottom: 10px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* the cross effect  */
.cross .lineOne {
    transform: rotate(45deg) translateY(15px);
}

.cross .lineThree {
    transform: rotate(-45deg) translateY(-17px);
}

.cross .lineTwo {
    opacity: 0;
}

/* .mobileSearchIconWrapper {
    cursor: pointer;
    max-width: 24px;
}

.mobileSearchIconWrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

.mobileBurgerIconAndSearchIconWrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobileSearchBarWrapper {
    position: sticky;
    top: 108px;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 0 24px 16px 24px;
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.25);
    display: none;
}

.mobileSearchBar {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    width: 100%;
    outline: none;
    border-top: 1px solid var(--black-color);
    border-left: 1px solid var(--black-color);
    border-bottom: 1px solid var(--black-color);
    border-right: 1px solid var(--black-color);
    padding: 8px 24px;
}

/* mobile nav css ends here */

/* mobile mega menu css starts here */
.mobileNavMegaMenu {
    position: sticky;
    left: 0;
    top: 110px;
    width: 100%;
    background-color: #fff;
    padding: 30px;
    z-index: 1000;
    box-shadow: 0 0px 5px -10px rgba(0, 0, 0, 0.2);
    height: 90vh;
    overflow-y: auto;
    display: none;
}

/* close icon */
.mobileMenuCrossIcon {
    max-width: 14px;
    cursor: pointer;
}

/* wrapper */
.menuWrap {
    margin-top: 30px;
}

/* main menu links */

/* bottom links */
.menuBottomContainer {
    margin-top: 80px;
}






/* submenu top bar */
.mobileMenuTopBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mainMenuIconWrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mainMenuIconText {
    color: var(--gold-color);
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.subMenuContentWrap {
    margin-top: 46px;
}

.subMenuHeading {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
}

.subMenuLink {
    padding: 12px 0;
}

.brandMenuSpacing {
    padding: 16px 0;
}

.subMenuLinkText {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.subMenuLinkText:hover {
    color: var(--black-color);
    text-decoration: none;
}

.mobileBoatsMenuCard {
    border: 1px solid var(--black-color);
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    height: 100%;
}

.color-invert {
    filter: invert(1);
}

.mobileBoatsMenuCard img {
    max-width: 140px;
    max-height: 41px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* submenus hidden by default */
.submenu-boats,
.submenu-rentals,
.submenu-service,
.submenu-storage,
.submenu-resources {
    display: none;
}

.mobileMenuLinkList {
    list-style: none
}

.mobileMenuLinkList li {
    margin-bottom: 24px;
}

.mobileMenuLargeLink {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
}

.mobileMenuLargeLink:hover {
    color: var(--black-color);
    text-decoration: none;
}

/* .secondMobileMenuList {
    margin-top: 64px;
} */

/* Default: no margin on mobile */
.secondMobileMenuList {
    margin-top: 0;
}

/* Apply margin only on desktop (e.g., above 768px or 1024px) */
@media (min-width: 1024px) {
    .secondMobileMenuList {
        margin-top: 64px;
    }
}


.mobileMenuSmallLink {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.mobileMenuSmallLink:hover {
    color: var(--black-color);
}

.mobileTopBar {
    background-color: #000;
    padding: 8px 24px;
}

.detail-header {
    display: none;
}

.mobileTopBarInnerWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mobileLocationInfoWrap {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.mobilePhoneLocationName {
    color: var(--white-color);
    font-family: "Urbane-ExtraLight";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
}

.mobileTopBarPhone {
    color: var(--white-color);
    text-align: right;
    font-family: "Urbane-Medium";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.mobileTopBarPhone:hover {
    color: var(--white-color);
}


/* =======================++++++++++++++++======================= */
/* common code:: mobile select store menu css starts here */
.mobileSelectStoreMenu {
    border: 1px solid #EEE;
    background: #FFF;
    max-width: 380px;
    padding: 15px 15px 30px 15px;
    position: absolute;
    transform: translateX(-110%);
    left: 0;
    top: 41px;
    transition: all 0.4s;
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.detailsMobileSelectStoreMenu {
    border: 1px solid #EEE;
    background: #FFF;
    max-width: 380px;
    padding: 15px 15px 30px 15px;
    position: absolute;
    transform: translateX(-100%);
    left: 0;
    top: 41px;
    transition: all 0.4s;
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

.toggleClassForMobieSelectStoreMenu {
    transform: translateX(0);
}

.detailsClassForMobieSelectStoreMenu {
    transform: translateX(0);
}

.mobileSelectedStoreTitle {
    color: var(--black-color);
    font-family: "Urbane-Medium";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.mobileSelectStoreHeaderWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mobileBackArrow {
    cursor: pointer;
}

.mobileSelectStoreAddressPara {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    max-width: 300px;
}

.mobileSelectStorePhone {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.mobileSelectStorePhone:hover {
    color: var(--black-color);
}

.mobileSelectStoreHoursHeading {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
/* common code:: mobile select store menu css ends here */
/* =======================++++++++++++++++======================= */

/* mobile mega menu css ends here */


/* mega menus start here */

.mega-menu-box {
    background: var(--black-color);
    padding: 80px 15px;
    max-width: calc(100% - 35%);
    margin: 0 auto;
    display: none;
}

.mega-menu-col-1 h6 {
    color: rgba(255, 255, 255, 0.40);
    font-family: Oswald-Bold;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mega-menu-col-1 ul li>a {
    color: #FFF;
    font-family: "Acumin-light";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin-bottom: 20px;
}

.mega-boats-box {
    display: flex;
    /* justify-content: space-between; */
}

.mega-menu-container {
    display: flex;
}

.mega-menu-col-1 {
    width: 23%;
}

.mega-menu-col-2 {
    width: 77%;
}

.mega-menu-col-2 h5 {
    color: rgba(255, 255, 255, 0.40);
    font-family: 'Oswald-Bold';
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-left: 7.5px;
}

.mega-boats-col {
    width: calc(100% / 3);
    padding: 0 7.5px;
}

.menu-card-img {
    position: relative;
    padding-top: 50%;
}

.menu-card-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 120px;
    margin: 0 auto;
}

.menu-card-logo>.menu-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-card-img>.menu-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-title h6 {
    color: #FFF;
    font-family: Oswald-Regular;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 10px 0 10px 0;
}

/* dropdown start here */
.toggle-dropdown {
    position: relative;
}

.sm-dropdown {
    position: absolute;
    top: 100px;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    min-width: 300px;
    background: #000;
    height: auto !important;
    padding: 10px 55px 38px 40px;
    display: none !important;
    z-index: 100;
}

.sm-dropdown li a {
    color: #FFF;
    font-family: Oswald-semibold;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.doss-dropdown.show-dropdown {
    display: block !important;
}


/* mobile header start here */

.mobile-header {
    display: none;
}

.mobile-header-list {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    z-index: 200;
    width: 100%;
    background: white;
}

.mobile-header-list.mobile-menu-show {
    display: none !important;
}

.mobile-header-list ul {
    padding: 0;
}

.mobile-header-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 25px;
    width: 100%;
    height: 90px;
    background: var(--black-color);
    z-index: 500;
}

.mobile-header-img {
    max-height: 90px;
    height: 100%;
}

.mobile-header-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.custom-toggle-icon span.fa {
    font-size: 30px;
    background-color: #241C1C;
    color: white;
}

.custom-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    color: black;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'Oswald-SemiBold';
    text-transform: uppercase;
}

.custom-nav-link:hover {
    text-decoration: none;
    color: black;
}

.mobile-header-list ul li {
    list-style: none;
    border-bottom: 2px solid lightgray;
}

.submenu-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 45px;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oswald-SemiBold';
}

.content-menu.mobile-menu-show {
    display: block;
}

.content-menu {
    display: none;
}

.nav-search {
    border: none !important;
}

.nav-search:focus {
    box-shadow: none;
    outline: none;
}

.mobile-header-number {
    text-decoration: none;
    color: #fff;
}

.mobile-header-number:hover {
    text-decoration: none;
    color: #fff;
}

/* mobile header end here */


/* footer css start here */

/* footer start here */

.dark-footer-wrapper {
    background: var(--black-color);
    padding-top: 80px;
}

.footerSiteMapSection {
    padding-bottom: 89px;
}

.footer-container {
    width: calc(100% - 20%);
    margin: 0 auto;
    padding: 80px 0;
}

.footer-main-box {
    display: flex;
}

.footer-main-col-1 {
    width: 30%;
    padding: 0 10px;
}

.footer-main-col-2 {
    width: 70%;
    padding: 0 10px;
}

.footer-logo-box {
    text-align: center;
    max-width: 320px;
}

.footer-logo-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-address-box p {
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: var(--white-color);
    text-align: left;
}

.footer-address-box p a {
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: var(--white-color);
    text-align: left;
}

.mutlti-column-box {
    display: flex;
}

.mutlti-column-box li {
    list-style: none;
    line-height: 35px;
}

.mutlti-column-1 {
    width: calc(100% / 3);
    padding: 0 10px 0 0;
}

.footerItemWrap h6 {
    color: var(--white-color);
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footerItemWrap ul {
    list-style: none;
}

.footerItemWrap ul li {
    margin-bottom: 16px;
}

.footerItemWrap ul li a {
    color: var(--white-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    opacity: 0.7;
}

.footerItemWrap {
    max-width: 280px;
    margin: 0 auto;
}

.footerItemWrap ul li a:hover {
    color: var(--white-color);
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-bottom ul li {
    list-style: none;
    color: #1E1E1E;
    text-align: center;
    font-family: 'acumin-light';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0.42px;
    padding: 10px 0;
}

.footer-bottom ul li a {
    color: var(--white-color);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0.42px;
    text-decoration: underline;
    opacity: 0.6;
}

.footer-bottom {
    background: #F3F3F3;
}

.social-icons-box {
    text-align: left;
}

.social-icons-box ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.social-icons-box ul li {
    list-style: none;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border: 1px solid var(--white-color);
}

.social-icons-box ul li span.fa {
    color: var(--white-color);
}

.footer-content-box {
    display: flex;
    gap: 120px;
}

.footer-content-card {
    width: 50%;
}

.footer-content-card h6 {
    color: var(--white-color);
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    opacity: 0.7;
}

.findUsOnSocialText {
    color: var(--white-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.footerSecondSection {
    padding: 64px 0 88px 0;
}

.footer-content-card p {
    color: var(--white-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.footer-content-card p a {
    color: var(--white-color);
    text-decoration: underline;
}

.footer-separator {
    background: var(--white-color);
    opacity: 0.2;
    margin: 0;
}

.footerBottomList {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 30px;
    row-gap: 4px;
    flex-wrap: wrap;
}

.discalimersInnerWrap {
    max-width: 720px;
}

.discalimersInnerWrap h6 {
    color: var(--white-color);
    font-family: "Urbane-Light";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.discalimersInnerWrap p {
    color: var(--white-color);
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.discalimersInnerWrap a {
    color: var(--white-color);
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.footer-bottom {
    width: calc(100% - 20%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.footer-bottom ul {
    padding-left: 0;
}

.footer-bottom ul li {
    list-style: none;
}

.footer-bottom ul li a {
    color: var(--white-color);
    opacity: 0.6;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-decoration: none;
}

.footer-list-item {
    position: relative;
}

.footer-list-item a {
    color: var(--white-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    opacity: 0.6;
}

.footer-list-item::after {
    position: absolute;
    content: '';
    top: 50%;
    right: -15px;
    background: var(--white-color);
    opacity: 0.6;
    width: 1px;
    height: 15px;
    transform: translateY(-50%)
}

.footerBottomList li:last-child::after {
    display: none;
}

.footer-brand-link a {
    color: var(--white-color);
    opacity: 0.6;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.footerBottomWrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    padding: 8px 15px;
    max-width: 1560px;
    margin: 0 auto;
}

.footerBottomList {
    column-gap: 20px;
    padding: 8px 0 10px 0;
}

.footer-list-item::after {
    right: -10px;

}

/* hom page css start here */

.home-banner {
    position: relative;
    padding-top: 43%;
    min-height: 450px;
}

.home-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.home-banner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.home-banner-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.home-banner-content {
    position: absolute;
    bottom: 120px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 15px;
    padding-left: 5%;
}

.home-banner-title {
    font-family: "Zilla Slab";
    font-size: 64px;
    font-style: normal;
    font-weight: 300;
    line-height: 72px;
    color: var(--white-color);
    text-align: left;
}

.location-description h2 {
    font-family: 'Urbane-SemiBold';
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--black-color);
    margin-bottom: 16px;
    text-transform: capitalize;
    opacity: 0.9;
}

.location-description h3 {
    font-family: 'Urbane-SemiBold';
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--black-color);
    margin: 24px 0 16px 0;
    text-transform: capitalize;
    opacity: 0.9;
}

.location-description p {
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: var(--black-color);
}

.location-description a {
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: var(--gold-color);
}

.location-description a:hover {
    color: var(--gold-color);
    text-decoration: none;
}

.specialEventCarousel {
    position: relative;
}

.specialEventCarousel .owl-next {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
}

.specialEventCarousel .owl-prev {
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
}

.specialEventCarousel .owl-nav img {
    filter: invert(1);
}

.featured-rounded-box {
    display: flex;
    gap: 32px;
    display: flex;
    gap: 32px;
    padding: 64px 0 0 64px;
    margin-right: -50px;
}

.featured-sec {
    overflow: hidden;
    margin: 64px 0 0 3%;
    display: none;
}

.featured-rounded-card {
    position: relative;
}

.featured-rounded-card-img {
    position: relative;
    padding-top: 57%;
}

.featured-rounded-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    filter: brightness(0.5);
}

.img-cutt-off {
    object-position: 50% 50%;
}

.card-badge {
    position: absolute;
    top: 40px;
    left: 48px;
    color: var(--white-color);
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.featured-rounded-card-content {
    position: absolute;
    bottom: 48px;
    left: 0;
    width: 100%;
    text-align: left;
    padding-left: 48px;
}

.rounded-card-title {
    font-family: "Zilla Slab";
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
    color: var(--white-color);
}


/* brand sldier start here*/
.slider-container {
    width: calc(100% - 10%);
    margin: 0 auto;
    padding: 120px 20px 0 20px;
    display: none;
}

.slider-box {
    display: flex;
}

.sldier-col {
    width: 50%;
}

.slider-img-box {
    height: 100%;
    display: flex;
    align-items: center;
}

.slider-img {
    position: relative;
    padding-top: 45%;
    min-height: 250px;
    width: 100%;
}

.slider-img .main-brand-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.slider-img .main-brand-logo {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 200px;
    width: 100%;
    max-height: 60px;
    height: 100%;
}

.slider-img .main-brand-logo .brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px 0 15px;
}

.featured-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 68px 15px 0 15px;
}

.homeAboutSectionContentWrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 68px 15px 0 15px;
}

.subtitle {
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gold-color);

}

.slider-navigator-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

.slide-arrow-box {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.slide-arrow {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

/* arrival sldier css start here */
.featured-slider-sec {
    padding-top: 120px;
    padding-left: 2%;
    padding-right: 2%;
    display: none;
}

.featured-slider .item .featured-slider-img {
    position: relative;
    padding-top: 65%;
}

.featured-slider .item a {
    color: inherit;
}

.featured-slider .item a:hover {
    color: inherit;
}

.featured-slider .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.featured-slider-content {
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.featured-slider-content-col-1 {
    max-width: 380px;
}

.featured-slider-content-col-2 {
    max-width: 180px;
}

.featured-boat-title {
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.featured-boat-price {
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.specList li {
    font-family: 'Urbane-Light';
    font-size: 16px;
    position: relative;
    list-style: none;
}

.mobile-slider-prices {
    display: none;
}

.specList {
    display: flex;
    gap: 30px;
}

.beforeLineForNewArrivalCard {
    position: relative;
}

.beforeLineForNewArrivalCard::before {
    position: absolute;
    content: "";
    left: -15px;
    transform: translateY(-50%);
    top: 50%;
    height: 15px;
    background: #575757;
    width: 1px;
}

.central-banner {
    padding: 120px 0;
}

.central-banner-img {
    position: relative;
    padding-top: 43%;
    min-height: 700px;
}

.central-banner-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.central-banner-parent {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    width: 100%;
    margin: 0 auto;
}

.central-banner-content {
    width: 60%;
    text-align: center;
    border-radius: 16px;
    opacity: 0.8;
    margin: 0 auto;
    padding: 50px 60px;
    background: var(--black-color);
}

.home-container-fluid {
    width: calc(100% - 7%);
    margin: 0 auto;
}

.home-container {
    width: calc(100% - 19%);
    margin: 0 auto;
}

.article-fetured-box {
    display: flex;
    gap: 40px;
}

.article-fetured-col {
    width: 50%;
}

.article-fetured-card-img {
    position: relative;
    padding-top: 53%;
}

.article-fetured-card-img .articleFeaturedCardImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.article-overlay-content {
    position: absolute;
    bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-overlay-content h6 {
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    color: var(--white-color);
}

.article-overlay-content .arrow-link {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    cursor: pointer;
}

.arrow-link img {
    max-width: 40px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.article-overlay-content .arrow-link span.fa {
    font-size: 22px;
}

.article-fetured-content {
    padding: 12px 0;
}

.flip-horizontal {
    transform: scaleX(-1);
}

.financing-fetured-box {
    display: flex;
    gap: 56px;
    margin-bottom: 120px;
}

.financing-fetured-col {
    width: calc(100% / 3);
}

.financing-fetured-card-img {
    position: relative;
    padding-top: 53%;
}

.financing-fetured-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.financing-overlay-content {
    position: absolute;
    bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.financing-overlay-content h6 {
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    color: var(--white-color);
}

.financing-overlay-content .arrow-link {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    cursor: pointer;
}

.financing-overlay-content .arrow-link span.fa {
    font-size: 22px;
}

.financing-fetured-content {
    padding: 12px 0;
}

.financing-card-title {
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 16px;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 15px;
    text-align: center;
}

.custom-newsletter-hubspot-form div {
    text-align: start;
}

.custom-newsletter-hubspot-form input,
.custom-newsletter-hubspot-form select,
.custom-newsletter-hubspot-form textarea {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
}

.custom-newsletter-hubspot-form input[type="checkbox"] {
    width: auto !important;
    /* or unset */
    height: auto !important;
}

.custom-newsletter-hubspot-form ul li {
    list-style: none;
}

.custom-newsletter-hubspot-form ul li label {
    display: flex;
    align-items: baseline;
}

.custom-newsletter-hubspot-form ul li label span {
    margin-left: 0px !important;
}

.custom-newsletter-hubspot-form input[type="submit"] {
    background-color: #AE8D32;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    max-width: 200px;
}

.custom-newsletter-hubspot-form .actions {
    text-align: center;
    margin-top: 20px;
}

.newsletter-input {
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    max-width: 400px;
    width: 100%;
    padding: 12px;
    text-align: center;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--black-color);
}

.newsletter-input:focus {
    outline: none;
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: none;
    border-bottom: 1px solid var(--black-color);
}

.reviewsCarouselWrap {
    max-width: 1280px;
    margin: 0 auto;
}

.reviews-slider {
    position: relative;
}

.reviews-slider .owl-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.reviews-slider .owl-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: #FFF;
    text-decoration: none;
}

.reviews-sec {
    padding: 0px 15px 120px 15px;
}

.reviews-slider-box {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-content {
    text-align: center;
}

.dark-bar {
    width: 80px;
    height: 1px;
    background: #000;
    margin: 24px auto;
}

.auther-name {
    margin-bottom: 80px;
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.qoutation-icon {
    margin: 40px auto;
    width: 40px;
    height: 40px;
}

.qoutation-icon img {
    width: 100%;
    height: 100%;
}

.reviews-nav-link {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid var(--black-color);
}

.singleton-diffrence-box {
    max-width: calc(100% - 30%);
    margin: 0 auto;
    padding-top: 120px;
}

.singleton-content h6 {
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 12px;
}

.singleton-diffrence-content-box {
    display: flex;
    margin-top: 65px;
    flex-wrap: wrap;
}

.singleton-diffrence-col {
    width: calc(100% / 2);
    padding: 40px 70px;
}

.singleton-inner-box {
    display: flex;
}

.singleton-inner-box {
    display: flex;
}

.singleton-inner-col-1 {
    width: 65px;
}

.singleton-inner-col-2 {
    width: calc(100% - 65px);
}

.singleton-icon {
    width: 40px;
    height: 37px;
    flex-shrink: 0;
}

.singleton-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* service page css starts here */
.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.arrow-right {
    display: none;
}

.commonHeaderSection {
    position: relative;
    padding-top: 31%;
    min-height: 300px;
}

.commonHeaderSection .commonHeaderMedia {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commonHeaderContent {
    position: absolute;
    left: 10%;
    bottom: 10%;
}

.mainHeading {
    color: var(--white-color);
    font-family: "Zilla Slab";
    font-size: 64px;
    font-style: normal;
    font-weight: 300;
    line-height: 72px;
}

.commonHeaderBtnWrap {
    margin-top: 40px;
}

.serviceHeroSection {
    margin: 72px 0;
}

.serviceHeroImageWrap {
    position: relative;
    padding-top: 57%;
    max-width: 840px;
    border-radius: 16px;
    overflow: hidden;
}

.serviceHeroImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awardWinningTextWrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awardWinningTextInnerWrap {
    max-width: 620px;
}

.colorTag {
    color: var(--gold-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.primaryBlackHeading {
    color: var(--black-color);
    font-family: "Zilla Slab";
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
}

.awardWiningHeadingWrap {
    margin: 24px 0 40px 0;
}

.boldBlackPara {
    color: var(--black-color);
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.regularBlackPara {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.underlineParaText {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.btnWrap {
    margin-top: 40px;
}

.popularHeadingWrap {
    margin: 24px 0 56px 0;
}

.topServicesCardWrap {
    padding: 0 28px;
}

.topServicesCardImageWrap {
    position: relative;
    padding-top: 75%;
    border-radius: 16px;
    overflow: hidden;
}

.topServicesCardImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topServicesTitleWrap {
    position: absolute;
    left: 5%;
    bottom: 5%;
}

.partsDeptImageWrap {
    margin: 0 auto;
}

.topServicesTitle {
    color: var(--white-color);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.topServiceTextWrap {
    margin-top: 16px;
}

.topServicesBoldText {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.topServicesParaWrap {
    margin-top: 12px;
}

.regularBlackPara {
    color: var(--Black, #000);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.tabsWrapper {
    margin: 40px 0px;
}

.infoTab {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    border-radius: 2px;
    border: 1px solid #D9D9D9;
    margin-bottom: 20px;
    background: #FFF;
    cursor: pointer;
}

.infoTabName h4 {
    color: var(--black-color);
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.tabsContent {
    padding: 40px 40px 79px 40px;
    border-radius: 16px;
    border: 1px solid var(--black-color);
    background: var(--white-color);
}

.tabsDetailsHeader {
    margin-bottom: 30px;
    margin-top: 40px;
}

.tabsDetails {
    max-width: 900px;
    margin: 0 auto;
}

.tabsDetailsImg {
    margin-top: 40px;
}

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

.tabsContentLogoContainer {
    max-width: 200px;
}

.tabsContentLogoContainer img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.tabsDetails {
    display: none;
}

.tabsDetailsContent ul {
    padding-left: 30px;
}

.tabsNote {
    margin-top: 40px;
}

.tabsNote p {
    color: #231F20;
    font-family: "Myriad Pro Regular";
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 25px;
}

.tabsSec {
    margin: 120px auto 100px auto;
    max-width: 1500px;
}

.tabsDetailImageWrap {
    position: relative;
    padding-top: 44%;
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.tabsDetailImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smallHeading {
    color: var(--black-color0);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.secondaryHeading {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.partsDeptImageWrap {
    border-radius: 16px;
    max-width: 480px;
    overflow: hidden;
}

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

.paraWrapper {
    margin: 40px 0;
}

.partsDeptTextWrap {
    height: auto;
    display: flex;
    align-items: center;
    min-height: 400px;
    padding-right: 30px;
}

.partsDeptTextInnerWrap {
    max-width: 900px;
}

.partsDeptSection {
    margin-bottom: 100px;
    width: calc(100% - 23%);
    margin: 0 auto;
}

.parts-dep-box {
    display: flex;
}

.parts-dep-col-1 {
    width: 65%;
}

.parts-dep-col-2 {
    width: 35%;
}

.serviceFormSection input,
.serviceFormSection select,
.serviceFormSection textarea {
    width: 100%;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    border-image: initial;
    border-radius: 6px;
    padding: 10px;
}

.serviceFormSection .hs-form-field {
    margin-bottom: 16px;
}

.serviceFormSection input {
    width: 100% !important;
}

.serviceFormSection textarea {
    width: 100% !important;
}

.serviceFormSection select {
    width: 100% !important;
}

.serviceFormSection .form-columns-3 {
    width: 100% !important;
}


.serviceFormSection .inputs-list {
    list-style: none !important;
}

.serviceFormSection .inputs-list label {
    display: flex !important;
}

.serviceFormSection input[type="checkbox"] {
    width: fit-content !important;
    align-items: flex-start !important;
}

.serviceFormSection input[type="submit"] {
    color: var(--white-color);
    text-align: center;
    font-family: "Zilla Slab";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    background-color: #AE8D32;
    border-radius: 6px !important;
    border: none !important;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 37px;
    text-decoration: none;
    transition: all 0.5s;
    text-transform: capitalize;
    max-width: 200px;
}

.serviceFormSection input[type="file"] {
    color: var(--black-color);
    text-align: center;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.5s ease;
}

.serviceFormSection .actions {
    text-align: center;
}

.serviceFormSection span {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-transform: capitalize;
}

.serviceFormSection h5 {
    color: var(--black-color);
    font-family: 'Urbane-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 30px 0;
}

.serviceFormSection legend {
    color: var(--black-color);
    font-family: 'Urbane-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 30px 0;
}

.serviceFormSection fieldset {
    max-width: unset !important;
    width: 100% !important;
}

.serviceFormSection a {
    color: var(--black-color);
    text-decoration: underline;
}

.serviceFormSection a:hover {
    color: var(--black-color);
    text-decoration: underline;
}

/* service page css ends here */

/* brand page css start here */

.common-header {
    position: relative;
    padding-top: 31%;
    min-height: 300px;
}

.common-header .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-descripotion {
    max-width: calc(100% - 48%);
    margin: 0 auto;
    padding: 64px 20px 72px 20px;
    text-align: center;
}

.brand-logo {
    max-width: 200px;
    height: 100%;
    margin: 0 auto 64px auto;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-container {
    width: calc(100% - 10%);
    margin: 0 auto;
}

.faq-box {
    display: flex;
    padding-top: 96px !important;
}

.faq-col {
    width: 50%;
}

.faq-content {
    max-width: 65%;
    width: 100%;
    margin: 0 auto;
}

.faq-accordion {
    width: 70%;
    margin: auto 0 0 0;
}

.custom-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #3a3d47;
    cursor: pointer;
}

.accordion-title {
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    /* text-transform: uppercase; */
    margin-bottom: 0;
}

.custom-accordion-header span {
    font-size: 18px;
    color: var(--black-color);
}

.custom-accordion-body {
    padding: 20px 0 40px 0;
    display: none;
}

.custom-accordion-body.content-show {
    display: block !important;
}

/* sell trade page css starts here */
.sellTradeHeaderSection {
    position: relative;
    background-image: url("/assets/images/sell-trade/sell-trade-header.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}

.sellTradeHeroSection {
    margin: 64px 0;
}

.sellTradeStepCard {
    border-radius: 16px;
    border: 1px solid var(--black-color);
    padding: 34px 48px 50px 34px;
    margin: 0 28px;
    height: 100%;
}

.sellTradeStepNumber {
    color: #D4B86A;
    font-family: 'Urbane-Thin';
    font-size: 120px;
    font-style: normal;
    font-weight: 100;
    line-height: 100px;
}

.sellTradeCardTitle {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin: 40px 0 24px 0;
}

.whySellWithUsSection {
    margin: 120px 0 40px 0;
}

.whySellSectionHeaderWrap {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.whySellSectionHeaderInnerWrap {
    max-width: 353px;
}

.whySellWithUsItem {
    margin-bottom: 68px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.whySellTextWrap {
    max-width: 200px;
}

.whySellText {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.promiseSection {
    margin-bottom: 60px;
}

.promiseHeadingWrap {
    margin-bottom: 64px;
}

.promiseImageWrap {
    position: relative;
    padding-top: 63%;
    overflow: hidden;
    border-radius: 16px;
    margin: 0 20px;
}

.promiseImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promiseTextWrap {
    margin: 0 20px;
}

.promiseTextWrap {
    height: 100%;
    display: flex;
    align-items: center;
}

.promiseCardTitle {
    color: var(--black-color);
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.promiseTextInnerWrap {
    max-width: 400px;
}

/* sell trade page css ends here */


/* reviews page css start here */

.reviews-container {
    width: calc(100% - 80px);
    margin: 0 auto 60px auto;
}

.reviews-box {
    display: flex;
    flex-wrap: wrap;
}

.reviews-card-box {
    padding: 20px;
    width: calc(100% / 3);
}

.reviews-card {
    border-radius: 16px;
    background: #FAFAFA;
    padding: 48px 40px;
    display: flex;
}

.reviews-card-content {
    width: calc(100% - 40px);
    padding-left: 20px;
}

.user-name {
    font-family: 'Urbane-Semibold';
}

/* contact page css starts here */
.contactHeaderSection {
    position: relative;
    padding-top: 41%;
    min-height: 800px;
}

.contactHeaderSection img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contactHeaderContent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 5% 0;
}

.contactHeaderTag {
    color: var(--white-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.contactHeaderHeading {
    color: var(--white-color);
    font-family: "Zilla Slab";
    font-size: 64px;
    font-style: normal;
    font-weight: 300;
    line-height: 72px;
}

.whiteBoldPara {
    color: var(--white-color);
    font-family: 'Urbane-Light';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.regularWhitePara {
    color: var(--white-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.contactHeaderTextSection {
    max-width: 680px;
    margin-top: 80px;
}

.contactHeaderFormSection {
    background-color: #fff;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    padding: 60px 80px;
    max-width: 680px;
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 10px rgba(0, 0, 0, 0.05);
}

.contactAddressSection {
    margin: 64px 0 120px 0;
}

.contactLocationHeading {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.contactLocationsHeadingWrap {
    margin-bottom: 80px;
}

.contactLocationCard {
    padding: 0 28px;
    margin-bottom: 40px;
}

.contactLocationImageWrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.contactLocationImageWrap .contactLocationMedia {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.contactLocationImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contactLocationsHeadingWrap {
    padding-left: 40px;
}

.contactLocationTextWrap {
    margin-top: 24px;
}

.contactLocationTitle {
    color: var(--black-color);
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
}

.contactLocationPara {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.contactLocationPhonePara {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contactLocationPhone {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.contactLocationPhone:hover {
    color: var(--black-color);
}

.serviceHoursHeading {
    color: var(--Black, #000);
    font-family: 'Urbane-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.contactLocationCard .regularBlackPara {
    margin-left: 20px;
}




.contactLocationCard h5 {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* contact page css ends here */

/* parts page css start here */

.glimpse-content h6 {
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 12px
}

.glimpse-content {
    margin-top: 24px
}

.glimpse-card {
    width: calc(100% / 4);
}

.glimpse-sec {
    display: flex;
    padding: 90px 76px 80px 76px;
    gap: 56px;
}

.black-promotional-banner p span {
    color: var(--gold-color);
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.black-promotional-banner p {
    color: var(--white-color);
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}

.black-promotional-banner {
    max-width: 960px;
    margin: 0 auto;
    background: var(--black-color);
    padding: 28px 50px;
}

.parts-container-fluid {
    width: calc(100% - 9%);
    margin: 0 auto;
    padding-top: 64px;
    padding-bottom: 64px;
}

.parts-featured-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    margin-right: 120px;
    padding-top: 68px
}

.parts-featured-logo {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 13px;
    margin-top: 24px;
}

/* strorage page css starts here */
.storageHeroSection {
    margin: 80px 0;
}

.storageHerTextWrap {
    max-width: 1120px;
    text-align: center;
    margin: 0 auto;
}

.dockageFacilityCard {
    padding: 0 20px;
}

.dockingFacilityImageWrap {
    position: relative;
    padding-top: 57%;
    border-radius: 16px;
    overflow: hidden;
}

.dockingFacilityImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dockingFacilityTextWrap {
    margin-top: 16px;
}

.ourMissionTextWrap {
    max-width: 440px;
}

.ourMissionCard {
    display: flex;
    gap: 24px;
}

.ourMissionCardTitle {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.headingWrap {
    margin-bottom: 40px;
    padding: 0 15px;
}

.financingFormSection {
    background-image: url("/assets/images/financing/financing-form.webp");
    padding: 80px 0;
    min-height: 600px;
}

.financingForm {
    margin: 0 auto;
    max-width: 680px;
    border-radius: 16px;
    background-color: #fff;
    padding: 48px 80px;
}

.financingHeaderSection {
    margin: 45px 0 72px 0;
}

.financingFormSepartor {
    background-color: #000;
    margin: 40px 28px 16px 28px;
}

.financingHeaderImageWrap {
    position: relative;
    padding-top: 118%;
    max-width: 830px;
}

.financingHeaderImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.financingFormSectionWrap {
    max-width: 780px;
    margin: 0 auto;
}

.financingFrameWrapper iframe {
    width: 100%;
    min-height: 720px;
    border: none;
    overflow: hidden;
}

/* strorage page css ends here */

/* location template page css starts here */
.locationHeaderSection {
    position: relative;
    padding-top: 41%;
    min-height: 400px;
}

.locationHeaderSection .locationHeaderMedia {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.locationHeaderContent {
    position: absolute;
    left: 10%;
    bottom: 10%;
}

.locationHeaderBtnWrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.locationGalleryImageWrap {
    position: relative;
    padding-top: 66%;
}

.locationGalleryImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servicesLocation {
    margin: 64px 0;
}

.serviceLocationCard {
    padding: 0 20px;
    margin-bottom: 40px;
}

.serviceLocationImageWrap {
    position: relative;
    padding-top: 57%;
    border-radius: 16px;
    overflow: hidden;
}

.serviceLocationImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serviceLocationTitle {
    color: var(--white-color);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.serviceLocationContent {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 40px;
    width: 100%;
    justify-content: space-between;
    padding: 0 5%;
    gap: 15px;
}

.serviceLocationTextWrap {
    margin-top: 12px;
}

.standOutSection {
    margin: 120px 0;
}

.standOutImageWrap {
    max-width: 80px;
}

.standOutImageWrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.standOutTitle {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.locationMapWrapper {
    min-height: 600px;
    border-radius: 16px;
    overflow: hidden;
}

.locationMapWrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.locationMapTextWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.locationMapInnerWrap {
    max-width: 620px;
}

.formSection {
    padding: 80px 0;
}

.locationMapInnerWrap .regularBlackPara {
    margin-left: 20px;
}

.locationMapInnerWrap .contactLocationPara {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.locationMapInnerWrap h5 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.headeingWrapper {
    margin-bottom: 40px;
}

#location-page .storageHeroSection a{
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: var(--gold-color);
}

#location-page .storageHeroSection a:hover{
    color: var(--gold-color);
    text-decoration: underline;
}

#location-page .storageHeroSection div{
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: var(--black-color);
}


/* location template page css ends here */

/* blog listing page css starts here */
.blogHeaderSection {
    position: relative;
    padding-top: 23%;
    min-height: 400px;
}

.blogHeaderSection img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogHeaderContent {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 800px;
}

.blogListingSection {
    margin-top: 88px;
    margin-bottom: 64px;
}

.topicListSearchWrap {
    display: flex;
    align-items: end;
    gap: 16px;
    border: 1px solid #000;
    padding: 13px 16px;
    background-color: #fff;
}

.blogListingSearch {
    border: none;
    outline: none;
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.blogTopicHeading {
    color: var(--black-color);
    font-family: 'Urbane-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.topicListContainer {
    margin-top: 40px;
}

.checkboxGroup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 16px;
    font-family: 'Urbane-Light';
}

.checkboxItem {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 15px;
}

.checkboxItem input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid black;
    background-color: var(--white);
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}

.checkboxItem input:checked {
    background-color: var(--gold-color);
}

.checkboxItem input:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.blogListingImageWrap {
    position: relative;
    padding-top: 50%;
    border-radius: 16px;
    overflow: hidden;
}

.blogListingImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogListingCard {
    padding: 0 20px;
    margin-bottom: 40px;
}

.blogListingCardTextWrap {
    margin-top: 16px;
}

.blogListingCardTitle {
    color: var(--Black, #000);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.blogListingCardPara {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.blogDetailBtn {
    color: var(--gold-color);
    font-family: "Zilla Slab";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}


/* blog listing page css ends here */

/* blog detail page css starts here */
.backToBlogBtnWrap {
    margin: 40px 0 0 20px;
}

.backToBlogBtn {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000;
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

/* blog detail page css ends here */



/* proshop page css start here */

.proshop-header {
    padding-top: 16px;
    padding-bottom: 64px;
    padding-left: 15px;
    padding-right: 15px;
}

.proshop-fetured-box {
    display: flex;
    gap: 56px;
    margin-bottom: 80px;
}

.proshop-location-container {
    width: calc(100% - 9%);
    margin: 0 auto 80px auto;
}

.proshop-location-box {
    display: flex;
    gap: 50px;
}

.proshop-location-box-col {
    width: calc(100% / 2);
}

.location-rich-text {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.location-rich-text img {
    width: 100%;
    max-width: 15px;
    height: 100%;
    max-height: 16px;
    object-fit: contain;
    margin-right: 10px;
}

.proshop-location-card {
    display: flex;
    gap: 40px;
}

.location-card-col-1 {
    width: 40%;
}

.location-card-col-2 {
    width: 60%;
}

.location-card-img {
    position: relative;
    padding-top: 70%;
}

.location-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.location-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: center;
}

.location-card-content h6 {
    font-family: 'Urbane-Medium';
}

.outBoardsMotorsLogoWrap {
    position: absolute;
    right: 5%;
    bottom: 5%;
    max-width: 280px;
    z-index: 3;
}

.outBoardsMotorsLogoWrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.factoryCertifiedSection {
    max-width: 1120px;
    margin: 0 auto;
    border-top: 1px solid var(--black-color);
    border-left: 1px solid var(--black-color);
    border-right: 1px solid var(--black-color);
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 64px;
}

.factoryCertifiedImageWrap {
    flex: 0 0 80px;
}

.factoryCertifiedParaWrap {
    max-width: 900px;
}

.outboardMotorsSection {
    padding: 64px 0;
}

.motorsImageWrap {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    padding-top: 120%;
    border: 1px solid #000;
}

.motorsImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.motorTextWrap {
    margin-top: 16px;
}

.motorsCardTitle {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.location-card-content p {
    font-family: 'Urbane-Light';
}

.motorCardPrice {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-decoration-line: underline;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.location-card-content p a {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.motorsCard {
    padding: 0 28px;
    margin-bottom: 40px;
}

.ourExpertTeam {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.repower-checkbox {
    display: flex;
    margin-top: 62px;
    padding: 40px;
    gap: 40px;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid var(--black-color);
    border-left: 1px solid var(--black-color);
    border-right: 1px solid var(--black-color);
}

.repower-logo {
    max-width: 300px;
    height: 100%;
    margin: 0 auto 40px auto;
}

.repower-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.repower-description {
    width: calc(100% - 120px);
}

.repower-description p {
    color: var(--black-color);
    text-align: left;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.repower-icon {
    width: 80px;
    height: 80.005px;
    flex-shrink: 0;
}

.repower-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.repower-sec {
    margin: 56px 0 0 0;
}

/* repower page css ends here */

/* staff page css starts here */
.staffSection {
    margin: 64px 0;
}

.staffCard {
    padding: 0 20px;
}

.staffImageWrap {
    position: relative;
    padding-top: 130%;
    border-radius: 16px;
    overflow: hidden;
}

.staffImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staffTextWrap {
    margin-top: 24px;
}

.staffName {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.staffPosition {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.staffCardSeparator {
    margin: 24px 0 17px 0;
    background-color: #000;
    height: 1px;
}

.staffPhoneNumber {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.staffPhoneNumber:hover {
    color: var(--black-color);
}

.staffPara {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* staff page css ends here */

/* special listing page css starts here */
.specialListingHeadingWrap {
    margin-bottom: 32px;
    padding-top: 65px;
}

.specialListingCard {
    padding: 0 20px;
    margin-bottom: 32px;
}

.specialListingImageWrap {
    position: relative;
    padding-top: 50%;
}

.specialListingImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialListingContentWrap {
    margin-top: 16px;
}

.specialListingTitle {
    color: #222;
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 8px;
}

.specailDetailHeaderWrapper {
    max-width: 1080px;
    margin: 0 auto;
}

.specailDetailHeaderImage {
    position: relative;
    padding-top: 50%;
}

.specailDetailHeaderImage img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialDetailHeaderSection {
    margin: 80px 0;
}

.specialEventTitle {
    color: #222;
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.specialDetalContentWrap {
    margin-top: 40px;
}

.inventorySpecialsSection {
    margin: 64px 0;
}

.inventorySpecialCard {
    padding: 0 20px;
    margin-bottom: 40px;
}

.inventorySpecialImageWrap {
    position: relative;
    padding-top: 62%;
}

.inventorySpecialImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inventorySpecialTextWrap {
    border-bottom: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
    padding: 7px 20px 12px 20px;
}

.inventorySpecialCardTitle {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.inventorySpecialPricePara {
    display: flex;
    align-items: center;
    gap: 30px;

}

.specialPrice {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.specialMonthlyPrice {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    position: relative;
}

.specialMonthlyPrice::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #D9D9D9;
    width: 1px;
    height: 15px;
}

.inventoryLocationPara {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.specialListingBtnWrap {
    margin-top: 40px;
}

/* special listing page css ends here */


/* event listing page css start here */

.formSelectField {
    background-image: url('../images/events/drop-down-arrow.webp');
    background-repeat: no-repeat;
    background-position: right 12px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.select-location-box {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.event-listing-container {
    width: calc(100% - 17%);
    margin: 0 auto 80px auto;
}

.event-listing-date {
    color: var(--gold-color);
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.event-listing-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.event-listing-card {
    position: relative;
    width: calc(100% / 3);
    padding: 20px;
}

.event-listing-img {
    position: relative;
    padding-top: 52%;
}

.event-listing-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.event-listing-body {
    padding: 16px 0;
}

.event-title a {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-title a {
    color: var(--black-color);
    text-decoration: none;
}

.event-excerpt {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* event details page css start here */

.event-location-card h4 {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Urbane-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.event-location-card li,
p {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    margin-bottom: 8px;
}

.btn-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.event-location-wrapper {
    max-width: calc(100% - 20%);
    margin: 0 auto;
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

.event-location-col {
    border: 1px solid var(--black-color);
    border-radius: 16px;
    width: 50%;
}

.event-location-card {
    padding: 40px;
    display: flex;
}

.event-time {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 8px;
}

.event-date {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 16px;
}

.event-day-list {
    padding-left: 0;
}

.event-day-list li {
    list-style: none;
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.event-location-card-col-1 img {
    width: 49.141px;
    height: auto;
    flex-shrink: 0;
    margin-right: 23px;
    margin-top: 33px;
}

.event-inventory-header {
    margin: 64px 0 36px 0;
}

.dockageFacilitySection {
    margin-bottom: 80px;
}

.dockingFacilityTitle {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 16px;
}

/* marine insurance page css start here */

.coverage-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.coverage-list li {
    list-style: none;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coverage-list li img {
    padding-right: 10px;
}

.marine-subtitle {
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.coverage-box {
    margin-bottom: 80px;
    padding-left: 50px;
    padding-right: 50px;
}

.positioned-banner {
    object-position: 50% 38%;
}

.larger-ric-text {
    color: var(--black-color);
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

/* ===================++++++++++++++++++++++++============================= */
/* boat page css starts here */

.lastLoad_btn button {
    margin-top: 30px;
    margin-bottom: 50px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: #000;
    display: inline-block;
    max-width: 250px;
    width: 100%;
    padding: 11px 25px;
    border: 1px solid #000;
    cursor: pointer;
}

.listing-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 9px;
}

.listing-header-right-box {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.sortWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D9D9D9;
    height: 42px;
    padding: 0 15px;
}

.lisitng-search-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #D9D9D9;
    height: 40px;
    padding: 7px 20px;
}

.lisitng-search-box span {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    padding-right: 10px;
}

.lisitng-search-box input {
    width: 100%;
    height: 100%;
    border: none;
}

.lisitng-search-box input:focus {
    outline: none;
    box-shadow: none !important;
    border: none !important;
}

.boatsHeading {
    color: var(--black-color);
    font-family: 'Urbane-Bold';
    font-size: 20px;
    font-style: normal;
    line-height: 40px;
    text-transform: uppercase;
}

.listings-count {
    margin-bottom: 40px;
}

.boatsHeading .sortWrapper {
    /* float: right; */
    display: flex;
    align-items: center;
}

.sortWrapper label {
    color: #222;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: 25px;
    white-space: nowrap;
    margin-bottom: 0 !important;
    height: 100%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    border-right: 1px solid #D9D9D9;
    padding-right: 15px;
}

.sortWrapper select {
    font-size: 12px;
    width: 160px;
    height: 35px !important;
    padding: 0 8px;
    border-radius: 0;
    background: #fff;
    margin-left: 10px;
    font-family: 'Inter';
    border: none;
    border-right: none;
    height: 100%;
    margin-bottom: 0 !important;
}

.sortWrapper select:focus {
    border: none !important;
    outline: none;
    box-shadow: none !important;
}

.boatsHeading .sortWrapper label {
    font-size: 14px;
    font-weight: 100;
    color: #000;
    padding-right: 10px;
}

.boatsHeading .sortWrapper select {
    font-size: 12px;
    width: 160px;
    height: 35px;
    padding: 0 8px;
    border-radius: 0;
    background: #fff;
}

.breadcrum a {
    color: #c2c2c2;
    font-size: 12px;
    font-weight: 100;
}

.breadcrum a+a,
.breadcrum a+span {
    padding-left: 15px;
    position: relative;
}

.breadcrum a+a::before,
.breadcrum a+span::before {
    content: "/";
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}

.breadcrum span {
    font-weight: 600;
}

.filterBtn {
    display: block;
    padding: 30px;
    padding-left: 100px;
    background-color: #231f20;
    margin: 0 -15px;
    color: #fff;
    font-size: 30px;
    transition: 0.4s ease all;
}

.filterBtn:hover {
    background: #ca2123;
    color: #fff;
}

.filterInner h1 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
}

.filterInner h4,
.filterInner h3 {
    font-weight: 500;
    font-size: 16px;
    margin: 20px 0 20px 0;
    color: #a3a2a2;
    float: left;
}

.filterInner h3 {
    margin: 0;
}

.filterInner label {
    font-weight: 300;
    margin-bottom: 5px;
    color: #000;
}

.filterform {
    float: left;
    margin-top: 10px;
    margin-bottom: 30px;
    width: 100%;
}

.filterform input {
    height: 44px;
    border-radius: 00;
    border-color: #e7e8e9;
}

.sqr-checkBox {
    /* border-bottom: 1px solid #8080806b; */
    padding: 7px 20px;
    float: left;
    width: 100%;
    position: relative;
}

.breadcrumb {
    background-color: transparent !important;
    margin-bottom: 24px;
    padding-left: 0;
}

.breadcrumb-item a {
    color: rgba(0, 0, 0, 0.60);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.sqr-checkBox label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    text-transform: capitalize;
}

.sqr-checkBox input {
    margin-right: 10px;
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background-color: white;
    border: 1px solid #e9e9e9;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    outline: none;
}

.sqr-checkBox label input:checked::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 11px;
    border: 1px solid rgba(39, 73, 109, 0.98);
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    top: 43%;
    left: 50%;
}

.filterList .sqr-checkBox input {
    left: unset;
    height: 20px;
    width: 20px;
}

.filterList {
    padding: 10px 0;
}

.sqr-checkBox .filter-checkbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    color: #dcdcdc;
    z-index: 1;
    font-size: 16px;
}

.sqr-checkBox input+span i.fa.fa-square-o {
    display: block;
}

.sqr-checkBox input:checked+span i.fa.fa-square-o {
    display: none;
}

.sqr-checkBox input+span .fa-square {
    display: none;
}

.sqr-checkBox input:checked+span .fa-square {
    display: none;
    color: #ca2123;
    font-size: 14px;
    margin-top: 3px;
}

.ui-widget.ui-widget-content {
    border: 1px solid #a8a8a8;
    background: #dbdbdb;
    height: 5px;
    border-radius: 0;
    margin-bottom: 20px;
}

.ui-slider-horizontal .ui-slider-range {
    background: #4d4d4d;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    outline: 0 !important;
    border: 1px solid #4d4d4d;
    border-radius: 0;
    width: 15px !important;
    height: 15px !important;
    top: 50%;
    transform: translateY(-45%) !important;
    border-radius: 50px;
    cursor: pointer;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
    border-color: #cb2127 !important;
    background: #cb2127 !important;
}

div#year-range {
    width: 74%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 10px;
}

div#price-range {
    width: 74%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 10px;
}

.filterBox>h2 {
    margin: 0;
    padding: 8px 20px;
    color: var(--black-color);
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border-top: 1px solid var(--light-Gray);
    border-right: 1px solid var(--light-Gray);
    border-left: 1px solid var(--light-Gray);
}

.af-disp-mob {
    display: none;
}

.filterBox .sidWidget {
    border: 1px solid var(--light-Gray);
}

.filterBox .youSearchList {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.filterBox .youSearchList li {
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.filterBox .youSearchList li strong {
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.filterOptions h4,
.filterOptions .sqr-checkBox {
    float: none;
}

.filterOptions h4 {
    color: var(--black-color);
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.filterOptions {
    border: 1px solid var(--light-Gray);
    margin-top: 16px;
}

.filterOptions input {
    width: 100%;
    text-align: center;
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.desktop-accordion-header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    background-color: transparent;
    border-bottom: 1px solid var(--light-Gray);
    cursor: pointer;
}

.filter-location-box {
    height: 150px !important;
}

.filterBox .youSearchList span.pull-right.closX {
    color: #000;
    font-weight: 800;
    cursor: pointer;
}

.filterBox .sidWidget,
.filterBox .sidWidget_iner {
    float: none;
}

.sidWidget_iner {
    float: right;
    max-width: 100%;
    width: 100%
}

.similar-slider {
    display: none !important;
}

.filtered_head_3 {
    font-weight: 600;
    font-size: 18px;
    margin: 20px 0;
    text-transform: uppercase;
    font-family: trade-gothic-next;
    text-align: center
}

.styled-checkbox {
    position: absolute !important;
    opacity: 0 !important;
}

.styled-checkbox+.filter_count {
    position: relative;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.styled-checkbox+.filter_count::before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid rgb(0, 0, 0);
}

.styled-checkbox:hover+.filter_count::before {
    background: #fff;
}

.styled-checkbox:focus+.filter_count::before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.styled-checkbox:checked+.filter_count::before {
    background: #000;
}

.styled-checkbox:disabled+.filter_count {
    color: #b8b8b8;
    cursor: auto;
}

.styled-checkbox:disabled+.filter_count::before {
    box-shadow: none;
    background: #ddd;
}

.styled-checkbox:checked+.filter_count::after {
    content: '';
    position: absolute;
    left: 5px;
    /* top: 11px; */
    background: #fff;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 #fff, 4px -6px 0 #fff, 4px -8px 0 #fff;
    transform: rotate(45deg);
}

/* ===================++++++++++++++++++++++=================== */
/* common code:: new boat listing page css start here */

.listing-dealer-btn {
    color: var(--white-color);
    text-align: center;
    font-family: "Zilla Slab";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    background: var(--black-color);
    border: 1px solid var(--black-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 7px 10px;
    text-decoration: none;
    transition: all 0.5s;
    text-transform: capitalize;
    min-width: 160px;
    min-height: 40px;
}

.breadcrumb-container {
    margin: 0 auto;
}

.listing-container {
    display: flex;
    max-width: calc(100% - 7%);
    margin: 0 auto;
}

.breadCrumContainerListing {
    max-width: calc(100% - 7%);
    margin: 0 auto;
}

.fitler-col {
    width: 20%;
}

.boat-listing-carousel {
    display: block !important;
}

.boat-listing-carousel .owl-nav {
    display: none !important;
}

.listing-content-col {
    width: 80%;
    padding-left: 40px;
}

.boat-card {
    display: flex;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid lightgray;
    width: 100%;
}

.boat-img-box {
    width: 40%;
    position: relative;
    max-height: 400px;
    height: 100%;
}

.boat-img-box .boat-listing-carousel .owl-nav {
    display: none !important;
}

.boat-img-box .boat-listing-carousel .item {
    position: relative;
    padding-top: 70%;
}

.boat-img-box .boat-listing-carousel .owl-item {
    height: 100% !important;
}

.boat-img-box .boat-listing-carousel {
    height: 100% !important;
}

.boat-img-box .boat-listing-carousel .owl-stage-outer {
    height: 100% !important;
}

.boat-img-box .boat-listing-carousel .owl-stage {
    height: 100% !important;
}

.boat-img-box .boat-listing-carousel .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.boat-content-box {
    width: 60%;
    padding: 10px 0px 10px 40px;
}

.boat-card-image {
    max-height: 375px;
    width: 100%;
    height: 100%;
}

.boat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-content-box,
.upper-content-box {
    display: flex;
    gap: 40px;
}

.sm-box-1 {
    width: 60%;
}

.sm-box-2 {
    width: 40%;
}

.desc-box {
    color: #000;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}

.desc-box h3 {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.upper-content-box .sm-box-1 .boat-title a {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
}

.upper-content-box .sm-box-1 .boat-title a:hover {
    text-decoration: none;
    color: #000;
}

.boat-condition-box {
    padding: 0 0 0 0;
}

.boat-condition-box .boat-condition-list li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 3px 0;
}

.boat-condition-box .boat-condition-list li span:nth-child(1) {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.boat-condition-box .boat-condition-list li span:nth-child(2) {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
    padding-left: 5px;
}

.boat-condition-box .boat-condition-list li img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.lisitng-note {
    background: #F7F7F7;
    padding: 5px 10px;
    margin: 20px 0;
}

.lisitng-note span {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.pricing-box h3 {
    color: #0F6DBF;
    text-align: right;
    font-family: 'Rubik_Bold';
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 1.1px;
}

.price-per-month {
    /* margin-top: 30px; */
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}

.pricing-box {
    height: 100%;
}

.price-per-month h3 {
    color: #328DB0;
    text-align: right;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
}

.price-per-month p {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

.listing-blue-btn {
    color: #FFF;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: #328DB0;
    display: inline-block;
    max-width: 250px;
    width: 100%;
    padding: 11px 25px;
    margin-bottom: 15px;
}

.listing-blue-btn:hover {
    color: #FFF;
}

.listing-skyblue-btn {
    display: inline-block;
    color: #328DB0;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    max-width: 250px;
    width: 100%;
    padding: 11px 25px;
    background: rgba(50, 141, 176, 0.15);
}

.listing-skyblue-btn:hover {
    color: #328DB0;
}

.boat-condition-list {
    padding-left: 0;
}

.card-text {
    color: #328DB0;
    text-align: right;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    letter-spacing: 1.2px;
}

/* grid view start here */

.grid-boat-card {
    width: calc(100% / 3);
    padding: 7px;
}

.grid-price-box ul {
    display: flex;
    padding-left: 0;
}

.toggler-button-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 86px;
    max-height: fit-content;
    width: 100%;
}

.grid-view-btn {
    background: white;
    border: 1px solid lightgray;
    padding: 8px 8px 8px 8px;
    cursor: pointer;
    line-height: normal;
}

.toggleViewBtn.active {
    background: #328DB0;
    border: 1px solid #328DB0;
}

.list-view-btn {
    background: white;
    border: 1px solid lightgray;
    padding: 8px 8px 8px 8px;
    cursor: pointer;
    line-height: normal;
}

.btn-icon-2 {
    display: none;
}

.grid-boat-title {
    line-height: 7px;
}

.grid-boat-title a {
    color: var(--black-color);
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.details-location-box {
    margin-top: 8px;
}

.details-location-box p {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.grid-boat-title a:hover {
    color: var(--black-color);
}

.ui-slider-horizontal .ui-slider-range {
    background: var(--black-color);
    height: 10px;
    border-radius: 5px;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    outline: 0 !important;
    border: 1px solid #4d4d4d;
    border-radius: 0;
    width: 15px;
    height: 15px;
    top: 50%;
    transform: translateY(-45%);
    border-radius: 50px;
    cursor: pointer;
}

.ui-widget.ui-widget-content {
    border: 1px solid #a8a8a8;
    border-radius: 5px;
    background: #e6e6e6;
    height: 10px;
    border-radius: 50px;
}

.range-value-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin: 10px 0;
}

.range-value-box .range-box-item {
    max-width: 130px;
    width: 100%;
    height: 41px;
    flex-shrink: 0;
    border: 1px solid var(--light-Gray);
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    padding: 5px;
    color: var(--black-color);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    opacity: 0.6;
    border-radius: 5px;
}

div#length-range {
    width: 74%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 10px;
}

.grid-price-item {
    position: relative;
    list-style: none;
    padding-right: 30px;
}

.grid-price-item+.grid-price-item::after {
    position: absolute;
    content: '';
    top: 50%;
    left: -15px;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 15px;
    background: gray;
}

.grid-price-item:nth-child(1) {
    color: #328DB0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.grid-price-item:nth-child(2) {
    color: rgba(0, 0, 0, 0.60);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.boat-listing-carousel .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 20px;
    display: block !important;
}

.boat-listing-carousel .owl-dots span {
    background: #FFFFFF !important;
}

.boat-listing-carousel .owl-dots button:hover span {
    background: #FFFFFF !important;
}

.boat-listing-carousel .item {
    position: relative;
    display: block;
    padding-top: 70%;
}

.boat-listing-carousel .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-upper-content-box {
    padding: 20px;
    border-right: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
}

.grid-boat-condition-list {
    border-top: 1px solid #D9D9D9;
}

.grid-boat-condition-list {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    padding-top: 15px;

}

.trade-box {
    display: none;
}

.grid-boat-condition-list li {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.specs-list-item {
    position: relative;
    color: #1E1E1E;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding-right: 20px;
}

.specs-list-item+.specs-list-item::after {
    position: absolute;
    content: '';
    top: 50%;
    left: -10px;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 15px;
    background: gray;
}

.specs-list-item img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
}

/* mobile filter start here */

.top_new_filter .inner_wrap_bt a {
    padding: 7px 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* min-width: 190px;
    width: 100%; */
    text-align: center;
    font-family: "Inter", sans-serif;
    border: 1px solid var(--lighter-gray);
    border-radius: 30px;
    background-color: var(--lighter-gray);
    color: var(--black-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    text-transform: capitalize;
    white-space: nowrap;
}

.top_new_filter .inner_wrap_bt a.resetBtn {
    padding: 7px 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Inter", sans-serif;
    border: 1px solid transparent;
    border-radius: 30px;
    background-color: transparent;
    color: var(--black-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    text-transform: capitalize;
    white-space: nowrap;
}

.clearFilterBtn {
    padding: 7px 0 7px 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Inter", sans-serif;
    border: 1px solid transparent;
    border-radius: 30px;
    background-color: transparent;
    color: var(--black-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    text-transform: capitalize;
    white-space: nowrap;
    opacity: 0.6;
}

.clear-filter-bar {
    display: none;
}

.top_new_filter .inner_wrap_bt a img {
    width: 40px;
    height: 14px;
    object-fit: contain;
}

.top_new_filter .inner_wrap_bt a span {
    margin-left: 13px;
}

.sortby-btn a {
    border-radius: 20px !important;
    border: 1px solid var(--black-color) !important;
    background: var(--white-color) !important;
}

.selected-count {
    width: 20px;
    height: 20px;
    background: var(--black-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    text-align: center;
    font-family: "DM Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 0px;
    border: 1px solid var(--black-color);
    border-radius: 50px;
    margin-left: 10px;
}

.sortby-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 21px;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    color: var(--black-color);
    border-radius: 20px;
    border: 1px solid var(--black-color);
    background: var(--white-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    text-transform: capitalize;
    white-space: nowrap;
}

.sortby-dropdown .sortby-icon {
    width: 16px;
    height: 16px;
}

.sortby-dropdown .sortby-arrow {
    margin-left: auto;
}

.sortby-dropdown .sortby-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    appearance: none;
    border: none;
    background: transparent;
}


.mobile-filter-box {
    position: fixed;
    top: -900px;
    left: 0;
    /* hidden off-screen */
    width: 100%;
    z-index: 10;
    background: white;
    overflow-y: auto;
    height: calc(100vh - 304px);
    transition: top 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75);
}

.mobile-filter-box.show-filter {
    top: 173px;
    /* slide in from left */
    /* display: block; */
}


/* .mobile-filter-box {
    display: none;
} */

.filter-accordion-header {
    border: 0px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    color: #000;
    font-family: "Inter", sans-serif;
    ;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.filter-accordion-header i.fa {
    font-size: 25px;
    color: rgba(196, 196, 196, 1);
}

.filter-accordion-content {
    background-color: transparent;
    padding: 10px 50px;
    /* display: none; */
    overflow: hidden;
}

.filter-accordion-header {
    border: 0px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    color: #000;
    font-family: "Inter", sans-serif;
    ;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: white;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    outline: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boat-img-box .boat-listing-carousel .item {
    width: 100% !important;
    height: 100% !important;
    position: unset;
    padding-top: unset;
}

.boat-img-box .boat-listing-carousel .item img {
    position: unset;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* MODAL FILTER CSS START */
.right_bt::-webkit-scrollbar {
    width: 20px !important;
    height: 4px !important;
}

.right_bt::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 5px;
}

.bottom_btn {
    display: none;
}

.inner_wrap_filter {
    display: flex;
    align-items: center;
}

.inner_wrap_filter a {
    color: #000;
}

.inner_wrap_filter .left_btn {
    border-right: 1px solid #D3D3D3;
    padding: 11px 8px;
}

.inner_wrap_filter .left_btn a {
    font-family: hankBold;
}

.top_new_filter {
    border-top: 1px solid var(--light-Gray);
    border-bottom: 1px solid var(--black-color);
    display: none;
    position: sticky;
    top: 110px;
    left: 0;
    z-index: 100;
    background: var(--white-color);
}

.nationwide-location-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.store-location-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
    width: 100%;
}

.store-location-box-header a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    background-color: #000;
    padding: 8px 10px;
    border-radius: 8px;
}

.store-location-box-header a:hover {
    text-decoration: none;
    color: #fff;
}

.store-location-box h4 {
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    line-height: normal;
}

.inner_wrap_filter .right_bt {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    overflow-x: auto;
}

/* .top_new_filter .inner_wrap_bt{
   
} */

.top_des_fil .close_btn {
    display: none;
}

.main_pannerl_wrap {
    padding: 0px 20px;
}

.mob_veiw_Sort {
    display: none;
}

.desk_veiw_sort {
    display: block;
}

.red_cell {
    background: rgba(0, 0, 0, 0.2);
    transition: 0.4s ease-in-out;
    overflow: hidden;
}

.len_def .panel-heading {
    margin-bottom: 10px;
}


/* compare detail page css starts here */
.invetoryListingCompareCard {
    position: fixed;
    left: 0;
    background-color: #fff;
    bottom: 0;
    width: 100%;
    z-index: 30;
    border-top: 1px solid #D9D9D9;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.10);
    padding-top: 20px;
}

.compareCardTopBar {
    padding-bottom: 30px;
    border-bottom: 1px solid #D9D9D9;
}

.compareCardTopBarInnerWrap {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.compareCardTopBarTitle {
    color: var(--black-color);
    font-family: "Urbane-Light";
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.clearAllText {
    color: var(--black-color);
    font-family: "Zilla Slab";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.clearAllBtnWrap {
    display: flex;
    align-items: center;
    gap: 40px;
    cursor: pointer;
}

.comparingCard {
    margin: 30px 0;
}

.compareListingCardImageWrap {
    margin: 0 auto;
    position: relative;
    padding-top: 65%;
}

.compareListingCardImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compareListingCardTextWrap {
    height: 100%;
    display: flex;
    align-items: center;
}

.compareListingCardTitle {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.compareListingCardPrice {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.compareListingCardRemoveBtnWrap {
    margin-top: 38px;
}

.compareListinCardRemoveBtnText {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

.compareListingCardRemoveBtn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: none;
    border: none;
    outline: none;
    padding: 5px;
    cursor: pointer;
}

.startCompareBtnWrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.startCompareBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: var(--white-color);
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    gap: 27px;
    padding: 18px 31px;
    border: none;
    outline: none;
}

.borderRight {
    border-right: 1px solid #D9D9D9
}

.comparePageTopBar {
    border-bottom: 1px solid #D9D9D9;
    padding: 16px 0 24px 0;
}

.compareVesselTopBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.compareVesselBackArrowTextWrapper {
    display: flex;
    align-items: center;
    gap: 98px;
}

.compareVesselTitle {
    color: var(--black-color);
    font-family: Urbane;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.hideCommonFeatureLablel {
    color: var(--Black, #000);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
}

.toggleSwitch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 24px;
}

.toggleSwitch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    border: 2px solid #d6be6c;
    border-radius: 34px;
    transition: 0.3s;
}

.slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 1px;
    background-color: gray;
    border-radius: 50%;
    transition: 0.3s;
}

.toggleSwitch input:checked+.slider::before {
    transform: translateX(20px);
    background-color: #d6be6c;
}

.compareBoatCardContentWrap {
    margin-top: 10px;
}

.compareboatCard {
    max-width: 400px;
    margin: 0 auto;
}

.specsTable {
    background-color: #fff;
    border-collapse: collapse;
    width: 100%;
    border-bottom: 1px solid #AAAAAA;
}

.specsTable tbody tr:nth-child(odd) th,
.specsTable tbody tr:nth-child(odd) td {
    background-color: #D4B86A;
}

.specsTable tbody tr:nth-child(even) th,
.specsTable tbody tr:nth-child(even) td {
    background-color: #ffffff;
}

.specsTable th {
    font-weight: 600;
    text-align: left;
    border: none;
}

.specsTable th,
.specsTable td {
    padding: 12px 15px;
    vertical-align: middle;
    border: none;
    color: var(--Black, #000);
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}


.featureList li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 14px;
    color: #444;
}

.sectionTitle {
    color: var(--black-color);
    font-family: 'Urbane-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.compareDetailCardImageWrap {
    position: relative;
    padding-top: 64%;
}

.compareDetailCardImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compareBoatTitle {
    color: var(--black-color);
    text-align: center;
    font-family: "Urbane-Medium";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.compareBoatPrice {
    color: var(--black-color);
    text-align: center;
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.compareBoatPriceBold {
    color: var(--black-color);
    font-family: "Urbane-Semibold";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.compareCardBtnWrap {
    margin-top: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.compareBoatCardCrossIconWrap {
    max-width: 18px;
    cursor: pointer;
    margin-bottom: 10px;
}

.compareBoatCardCrossIconWrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.compareAccordianHeaderContentWrpper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.compareDetailSeparator {
    background-color: #AAA;
    margin: 15px 0;
}

.compareAccordianHeaderWrap {
    margin-bottom: 20px;
    cursor: pointer;
}

.featureSpecsPara {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.featureSpecsList li {
    margin-bottom: 8px;
}

.compareFeaturesHeader {
    border-bottom: 1px solid #D9D9D9;
}


/* compare detail page css ends here */

.boats-card-body-box-1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.boats-title-box {
    width: calc(100% - 150px);
}

.compare-btn-box {
    width: 70px;
    text-align: right;
}

.compare-btn-box p {
    color: rgba(0, 0, 0, 0.40);
    text-align: right;
    font-family: 'Urbane-Light';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.boats-title-box {
    width: calc(100% - 70px);
    gap: 15px;
}

.boats-title-box {
    display: block;
    color: inherit;
}

.boats-card-body {
    padding: 12px 20px 20px 20px;
    border-right: 1px solid var(--light-Gray);
    border-bottom: 1px solid var(--light-Gray);
    border-left: 1px solid var(--light-Gray);
}

.main-title-body .boats-title {
    color: var(--black-color);
    font-family: 'Urbane-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-title-body .boats-price-list {
    padding-left: 0;
    display: flex;
    margin-top: 5px;
    margin-bottom: 5px;
}

.boats-price-list .price-list-item {
    position: relative;
    padding-right: 30px;
}

.boat-card-location-box .boats-location {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.monthly-price {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.bold-price {
    color: var(--black-color);
    font-family: 'Urbane-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.price-list-item {
    list-style: none;
    position: relative;
}

.price-list-item+.price-list-item::after {
    position: absolute;
    content: '';
    top: 50%;
    left: -15px;
    width: 1px;
    height: 15px;
    background: var(--light-Gray);
    transform: translateY(-50%);
}

.boats-pricing-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* flex-wrap: wrap; */
    gap: 10px;
}

.boats-pricing-box .pricing-col-1 ul {
    display: flex;
}

.pricing-col-2 {
    text-align: right;
}

.boats-pricing-box .pricing-col-1 ul li {
    list-style: none;
}

.boats-pricing-box .pricing-col-2 ul {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.boats-pricing-box .pricing-col-2 ul li {
    color: var(--black-color);
    list-style: none;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.dealer-specs-item {
    list-style: none;
    position: relative;
    padding-left: 30px;
}

.dealer-specs-item+.dealer-specs-item::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 15px;
    width: 1px;
    height: 15px;
    background: var(--light-Gray);
    transform: translateY(-50%);
}

.pricing-col-box {
    display: flex;
    flex-direction: column;
    max-width: 80px;
    width: 100%;
    height: 64px;
    flex-shrink: 0;
    border: 1px solid #EEE;
    background: #FAFAFA;
}

.pricing-col-box {
    display: flex;
    flex-direction: column;
    width: 80px;
    height: 64px;
    flex-shrink: 0;
    border: 1px solid #EEE;
    background: #FAFAFA;
    justify-content: center;
    align-items: center;
    padding: 6px;
}

/* common code:: new boat listing page css ends here */
/* ===================++++++++++++++++++++++=================== */

/* sold boat page css start here */

.sold-boat-title {
    color: var(--black-color);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.sold-title {
    color: var(--black-color);
    font-family: 'Urbane-Bold';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin: 10px 0;
}

.sold-description {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 10px;
}

.sold-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding-left: 70px;
}

.inventory-container {
    width: calc(100% - 15%);
    margin: 0 auto;
}

.sold-boat-card-title a {
    color: var(--black-color);
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.sold-boat-card-title a:hover {
    color: var(--black-color);
    text-decoration: none;
}

.sold-product-img {
    width: 100%;
    height: 100%;
}

.sold-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================++++++++++++++++++++++=================== */
/* common code:: new boat detail page design starts here */
.shareModalHeading {
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #1a1a1a;
    font-weight: 300;
}

#panel {
    transition: all 0.4s;
}

.copyLinkWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyLinkWrapper .popup_input {
    width: calc(100% - 100px);
    height: 43px;
    border: 1px solid var(--gold-color);
    margin-bottom: 0;
    padding: 0 10px 0 10px;
    color: var(--black-color);
}

.copyLinkWrapper .popup_input::placeholder {
    color: var(--black-color);
}

.copyShareLinkBtn {
    text-align: center;
    background: var(--gold-color);
    border: 1px solid transparent;
    display: inline-block;
    text-transform: uppercase;
    padding: 10px 30px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.8px;
    font-weight: 200;
    transition: 0.4s ease all;
    border: none;
    outline: none;
}

.shareIconsWrapper {
    margin-top: 40px;
}

.shareIconsContainer {
    display: flex;
    align-items: center;
    gap: 30px;
}

.shareIcons {
    border: 1px solid var(--gold-color);
    border-radius: 50%;
    background-color: var(--white-color);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shareIconsContainer .fa-brands {
    color: var(--gold-color);
}

.financing-modal .modal-body iframe {
    min-height: 800px;
}

.mobile-gallery {
    display: none !important;
}

.boat-inventory-cond-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}

.boatDetailCarouselImageContainerImpel {
    position: relative;
    padding-top: 56%;
}

.boatDetailCarouselImageContainerImpel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.boatDetailCarouselImageContainer {
    position: relative;
    max-height: 800px;
}

.boatDetailCarouselImageContainer img {
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.boat-inventory-cond-list .cond-list-item {
    list-style: none;
    position: relative;
    padding-right: 30px;
    color: rgba(0, 0, 0, 0.60);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.cond-list-item+.cond-list-item::after {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.60);
    top: 50%;
    left: -15px;
    transform: translateY(-47%);
    width: 1px;
    height: 14px;
}

.details-main-row {
    margin-top: 14px;
    display: flex;
}

.details-left-container {
    width: 65%;
    padding-left: 120px;
}

.mobileBoatInfo {
    max-width: 500px;
    margin: 0 auto;
}

.details-right-container {
    width: 35%;
    padding: 0 120px;
    margin-top: 62px;
}

.side-bar {
    /* position: sticky;
    top: 90px; */
    width: 100%;
}

.pymentBlock h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boat-card-img {
    position: relative;
    padding-top: 68%;
}

.boat-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-boats-box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 108px;
}

.callForprice {
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.4px;
    text-align: center;
}

.pdf-btn {
    color: #328DB0;
    text-align: center;
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 16px;
    /* 100% */
    border-radius: 3px;
    background: rgba(7, 151, 218, 0.15);
    display: inline-block;
    padding: 14px 30px;
    border: 1px solid rgba(7, 151, 218, 0.15);
}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-cols {
    flex-basis: calc(33.33% - 10px);

}

.gallery-box-img {
    position: relative;
    padding-top: 67%;
}

.gallery-box-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-box-img video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.more-img-btn button {
    color: var(--black-color);
    text-align: center;
    font-family: "Zilla Slab";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    width: 100%;
    height: 55px;
    border-bottom: 1px solid var(--black-color);
    border-top: none;
    border-left: none;
    border-right: none;
    background: transparent;
    cursor: pointer;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 40px 0;
}

.specs-header {
    padding: 33px 0 23px 0 !important;
}

.accordion-header h3 {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.specs-row-box {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 117px;
    padding: 0 0 0 0;
}

.specs-cols {
    width: 50%;
}

.specs-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #D9D9D9;
    padding: 8px 0;
}

.desktop-specs-icon-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.desktop-specs-icon-wrapper p {
    width: 30px;
    height: 30px;
    padding: 7px;
    background: var(--lighter-gray);
    display: inline-block;
    border-radius: 50px;
    margin-right: 10px;
}

.desktop-specs-icon-wrapper p img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: -12px;
}

.specs-item p span.specs-name {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.specs-name {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.blackParaText h1,
.blackParaText h2 {
    color: var(--black-color);
    font-family: 'Urbane-Bold';
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-align: left !important;
}

.blackParaText h3,
.blackParaText h4,
.blackParaText h5,
.blackParaText h6,
.blackParaText strong,
.blackParaText b {
    color: var(--black-color);
    font-family: 'Urbane-Bold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-align: left !important;
}

.blackParaText p,
.blackParaText span,
.blackParaText li {
    color: var(--black-color) !important;
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-align: left !important;
}

.blackParaText * {
    position: static !important;
    padding-left: 0 !important;
    border: 0 !important;
    background-color: transparent !important;
    height: auto !important;
    /* overflow: hidden !important; */
}

.listing-desc {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    max-height: 100px !important;
}

.listing-desc * {
    color: #000 !important;
    font-family: Inter !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 25px !important;
    padding-left: 0 !important;
    border: none !important;
    margin: 0 !important;
}

.read-more {
    color: #328DB0 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 25px !important;
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    background: white !important;
    padding-left: 11px !important;
}

.read-more:hover {
    color: #328DB0;
}

.sale-price {
    color: var(--black-color);
    font-family: 'Urbane-Bold';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.4px;
}

.original-price {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: -0.4px;
    margin-bottom: 12px;
}

.listing-desc p {
    margin-bottom: 0;
}

.specs-item span.specs-value {
    color: var(--black-color);
    text-align: right;
    font-family: 'Urbane-Bold';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.specs-border-top {
    border-top: 1px solid var(--black-color);
}

.specs-border-bottom {
    border-bottom: 1px solid var(--black-color);
}

.accordion-header span.fa {
    font-size: 20px;
    color: #222222;
}

.accordion-content {
    padding-bottom: 45px;
    /* padding-left: 40px;
    padding-right: 40px; */
}

.accordion-content.specc-show {
    display: block !important;
}

.description-content {
    padding-top: 40px;
}

.list-cntnt {
    position: relative;
    margin-bottom: 60px;
}

.specsListContainer {
    max-width: 445px;
    margin-bottom: 50px;
}

.specsList {
    margin-top: 20px;
    list-style: none;
    padding: 0 15px
}

.specsList hr {
    margin: 8px 0;
}

.specsList li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.specsList li p {
    width: 50%;
}

.specsName {
    color: #222222;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.specsDetail {
    color: #222222;
    text-align: right;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
}

.boatDetailSpecsHeading {
    color: #222222;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
}


.contact-details {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.boat-details-location {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.boat-details-contact {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.boat-details-contact a:hover {
    text-decoration: none;
}

.boat-details-location a:hover {
    text-decoration: none;
}

.boat-details-location h1,
.boat-details-contact h1 {
    font-size: 20px;
}

.boat-details-location p {
    margin-bottom: 15px;
}

.boat-details-contact {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.boat-details-contact h1 {
    margin-bottom: 15px;
}

.boat-details-contact p {
    margin-bottom: 15px;
}


.right-sidebar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.right-sidebar-top-btn {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}

.sidebar-bottom-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.item-price {
    color: #222222;
    font-weight: 600;
}

.right-sidebar-red-btn {
    background: #D8231C;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px 0;
}

.right-sidebar-sec-btn {
    color: var(--black-color);
    text-align: center;
    font-family: 'Urbane-Light';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.inq-form-head {
    padding-top: 20px;
    padding-bottom: 32px;
}

.form-dark-header {
    background: var(--black-color);
    padding: 12px 0 8px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.form-dark-header img {
    width: 22.297px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.form-dark-header p {
    color: var(--white-color);
    font-family: "Zilla Slab";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.inq-form-head h6 {
    color: var(--black-color);
    text-align: center;
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.inq-form-head p {
    color: var(--black-color);
    text-align: center;
    font-family: 'Urbane-Light';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.details-lg-btn-box {
    margin-top: 60px;
}

.similar-box-row {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    padding: 0 70px;
}

.boatPricingList {
    list-style: none;
}

.boatPricingList li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 5px;
}

.boatPricingList li .pricingTitle {
    width: 30%;
    color: #222222;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.6px;
}

.boatPricingList li .pricingDetail {
    width: 70%;
    text-align: right;
    color: #222222;
    text-align: right;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.6px;
}

.pricingTitleSharp {
    color: rgba(27, 29, 54, 0.80);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.pricingDetailSharp {
    color: rgba(27, 29, 54, 0.80);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.pricingTitleRed {
    color: #C8192A;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0.6px;
}

.border_bottom {
    border-bottom: 2px solid lightgray !important;
    border-radius: 0px !important;
    outline: none !important;
    border-top: none;
    border-left: none;
    border-right: none;
    margin-top: 25px;
    padding-top: 0 !important;
    padding-bottom: 10px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.pricingTitlePayment {
    color: #222222;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.pricingDetailPayment {
    color: #222222;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.downPayment {
    color: #222222;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: 0.42px;
    text-align: right;
}


.boatDetailBtn {
    color: #FFF;
    text-align: center;
    font-family: Forza;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    background: #22222299;
    padding: 10px 0 11px 0;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    transition: all 0.4s;
}

.boatDetailBtn:hover {
    color: #FFF;
}

.preOwnedDealerContactWrapper {
    border: 1px solid #EEE;
    background: #FAFAFA;
    padding: 20px 57px 25px 59px;
}

.preOwnedDealerContactHeading {
    color: #112342;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.6px;
}

.dealerMainContent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.dealerImageContainer {
    width: 60px;
    height: 60px;
}

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

.dealerContactHeading {
    color: #222222;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.custom-textareat {
    border-bottom: 2px solid lightgray !important;
    border-radius: 0px !important;
    outline: none !important;
    border-top: none;
    border-left: none;
    border-right: none;
    margin-top: 25px;
    padding-top: 0 !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.custom-textarea::placeholder {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 10px;
}

.custom-textarea:focus {
    box-shadow: none;
    outline: none;
    border-radius: 2px;
    border: 1px solid var(--black-color);
}

.end-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.boatDetailPageSeparator {
    margin-top: 60px;
}

.end-content a {
    padding: 0px 25px;
    text-transform: uppercase;
    font-weight: 600;
    color: black;
}

.end-content a:hover {
    color: black;
    text-decoration: none;
}

.right-border {
    border-right: 1px solid black;
}

.boat-details-call-sec {
    background-color: var(--red-color);
    padding: 5px 0px;
    font-family: Roboto;
}

.boat-details-call-sec p {
    text-align: center;
    color: white;
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: Roboto;
    line-height: 30px;
}

.boat-details-call-sec p a {
    color: white;
    text-decoration: none;
}

.boat-details-form {
    width: 100%;
    height: 40px;
    color: rgba(0, 0, 0, 0.60);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 1px solid #D9D9D9 !important;
    background: #FFF;
    padding-left: 15px;
    padding-right: 15px;
}

.boat-details-form::placeholder {
    color: rgba(0, 0, 0, 0.60);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.boat-details-form:focus {
    outline: none;
    box-shadow: none;
}

.boat-details-textarea {
    color: rgba(0, 0, 0, 0.60);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    border: 1px solid #D9D9D9;
    background: #FFF;
}

.boat-details-textarea::placeholder {
    color: rgba(0, 0, 0, 0.60);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-lable {
    color: #112342;
    font-family: "Urbane-Light";
    font-size: 16px;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 1px;
}

.modal-title {
    color: #222222;
    text-align: center;
    font-family: "Urbane-Light";
    font-size: 30px;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.financingTitle {
    font-size: 20px;
    font-weight: 700;
    font-family: "Urbane-SemiBold";
}

.boatDetailFinancingCloseBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #000;
    cursor: pointer;
}

.financing-modal iframe {
    border: 0;
}

.boat-details-sm-btn:hover {
    color: #FFF;
}

.view-count-text {
    color: var(--gold-color);
    text-align: center;
}

.call-now-btn {
    color: var(--white-color);
    text-align: center;
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: block;
    padding: 15px;
    margin-bottom: 20px;
    background: var(--gold-color);
}

.call-now-btn:hover {
    color: #FFF;
}

/* boat detail carousel */

.boat-detail-carosuel .item {
    width: 100%;
    height: auto;
}

.boat-detail-carosuel .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* boat gallery pop up */

.owl-carousel-parent {
    position: relative;
}

.desktop-sahre-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--black-color);
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 14;
}

.desktop-sahre-btn img {
    object-fit: contain;
}

.boat-details-title {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 15px;
    text-align: center;
}


.similar-bts {
    padding-top: 60px;
    padding-bottom: 120px;

}

.similar-heading {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.boat-card {
    background-color: transparent;
    width: 100%;
}

.similar-boat-img {
    position: relative;
    padding-top: 65.5%;
}

.similar-boat-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spec-mn-head {
    color: #222;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.spec-cntnt {
    color: #222;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    /* 100% */
}

.boat-title-mn {
    color: #000;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
    letter-spacing: 2px;
}

.callForBoatWrapper {
    margin: 10px 0 20px 0;
    text-align: center;
}

.callForBoat {
    color: #A81D1D;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    text-align: center;
}

.callForBoat:hover {
    color: #A81D1D;
}

.mn-similar-sec {
    padding-top: 60px;
}

.hr-line {
    margin-top: 100px;
}

.formBtnWrapper {
    margin-top: 30px;
}


/* +++++++++++++++++++++++++++ */
.similarInventorySection {
    margin-top: 100px;
    margin-bottom: 180px;
}


.inputWrapper {
    margin-bottom: 20px;
}

.formInput {
    width: 100%;
    outline: none;
    border: 1px solid #EEE;
    background: #FFF;
    color: #222222;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.48px;
    padding: 10px 10px 10px 20px;
}

.similarListingHeadingWrap {
    margin: 50px 0 30px 0;
}

.boat-detail-carosuel .owl-dots {
    position: absolute;
    bottom: 5%;
    width: 100%;
}

.boat-detail-carosuel .owl-dots {
    display: none;
}

.boat-detail-carosuel .owl-nav span {
    font-size: 41px;
    margin-top: -9px;
    color: white;
    line-height: 15px;
}

.boat-detail-carosuel .owl-nav button:hover {
    background: transparent !important;
    color: white !important;
}

.boat-detail-carosuel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
}

.boat-detail-carosuel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
}

.boat-detail-carosuel .owl-nav button.owl-next:hover,
.boat-detail-carosuel .owl-nav button.owl-prev:hover {
    background: transparent !important;
}

.price-box h4 {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.4px;
}

.price-box h3 {
    color: #328DB0;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 20px;
    letter-spacing: -0.4px;
}

.apply-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 30px;
}

.apply-box p {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.boat-details-form-sec {
    position: relative;
    border: 1px solid #D9D9D9;
    background: #FBFBFB;

}

.details-form-box {
    padding: 0px 23px 50px 23px;
}

.scroll-down {
    position: absolute;
    top: -100px;
    visibility: hidden;
}

.opeen-calc {
    cursor: pointer;
    position: relative;
}

.apply-box strong {
    color: #000;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.36px;
    text-decoration-line: underline;

}

.apply-box strong img {
    position: absolute;
    top: 0;
    width: 10px;
    height: 10px;
    object-fit: contain;
    left: -15px;
}

.apply-box .financing-btn {
    border-radius: 3px;
    background: #328DB026;
    color: #328DB0;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 16px;
    padding: 14px 25px;
    border: 1px solid #328DB026;
}

.details-form-btn {
    color: var(--black-color);
    font-family: "Zilla Slab";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 25px;
    display: inline-block;
    border: 1px solid var(--black-color);
    background: var(--white-color);
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.details-form-btn:hover {
    border: 1px solid var(--gold-color);
    background: var(--gold-color);
    color: var(--white-color);
}

.details-form-btn:focus {
    border: 1px solid var(--gold-color);
    background: var(--gold-color);
    color: var(--white-color);
    outline: none;
    box-shadow: none;
}

.dealer-mobile-form {
    position: relative;
}

.details-form-btn:focus {
    border: 1px solid #328DB0;
    color: #FFF;
    outline: none;
    box-shadow: none;
}

.radio-box {
    display: flex;
    margin: 20px 0;
}

.radio-box label {
    color: #000 !important;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.radio-box input[type=radio] {
    margin-right: 6px !important;
    margin-left: 15px;
}

.custom-modal-box {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 999;
    display: none;
    /* Start hidden */
    transition: transform 0.5s ease;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.mob-sticky-bar {
    position: fixed;
    bottom: 0;
    z-index: 999;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 17px 30px;
    border-top: 1px solid var(--light-Gray);
    background: var(--white-color);
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.10);
    gap: 10px;
}

.white-sticky-btn {
    background: var(--white-color);
    border: 1px solid var(--black-color);
    color: var(--dark-color);
    text-align: center;
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    /* border-radius: 3px; */
    width: 100%;
}

.dark-sticky-btn {
    background: var(--black-color);
    color: var(--white-color);
    border: 1px solid var(--black-color);
    text-align: center;
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    /* border-radius: 3px; */
    width: 100%;
}

.mob-sticky-bar .original-price {
    display: none;
}

.mob-sticky-bar .sale-price:nth-child(1) {
    display: none;
}

.mob-sticky-bar .sale-price:nth-child(2) {
    float: left !important;
    color: #FFF;
    font-family: Inter;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 22px;
}


.calc-error-box p {
    color: #FFF;
    font-family: "Public Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: transparent;
    border: none;
    border-radius: 20px;
    padding: 7px 20px;
    text-align: center;
}

.custom-modal-box.show {
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal-white-sec {
    background: #FFF;
    padding: 50px;
}

.modal-white-sec .popup_input {
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20) !important;
    border-radius: none;
    width: 100%;
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.modal-white-sec .popup_input::placeholder {
    font-family: 'Urbane-Semibold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.modal-white-sec .popup_label {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.saving-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.saving-box span {
    color: rgba(34, 34, 34, 0.60);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.32px;
}

.result_box h2 {
    color: #FFF;
    text-align: center;
    font-family: "Public Sans";
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 22px !important;
}

.result_box h3 {
    color: var(--white-color);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 60px !important;
}

.modal-content-box {
    display: flex;
    flex-wrap: wrap;
}

.modal-content-col {
    width: 50%;
}

.calculate-box {
    background: var(--black-color);
    color: white;
    padding: 40px 30px;
}

.calculate-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.calculate-btn {
    color: #FFF;
    text-align: center;
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.20);
    margin-left: 0;
    width: 100%;
    padding: 12px 36px;
}

.calculate-btn:hover {
    color: #FFF;
    background: rgba(255, 255, 255, 0.20);
}

.calculate-btn:focus {
    color: #FFF;
    background: rgba(255, 255, 255, 0.20);
}

.close-btn-1 {
    position: absolute;
    right: 20px;
    top: 20px;
    background: transparent;
    border: none;
    color: #FFF;
    font-family: "Public Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}

.stock-img {
    width: 18px !important;
    height: 15px !important;
}

.close-btn-2 {
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    color: #FFF;
    font-family: "Public Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 20px;
    padding: 7px 20px;
    cursor: pointer;
}

.disclaimer-dropdown {
    position: relative;
    display: inline-block;
}

.disclaimer-btn {
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    width: 100%;
    color: var(--white-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.disclaimer-content {
    display: none;
    width: 100%;
    padding: 12px 0;
    border-radius: 4px;
}

.disclaimer-content p {
    background: transparent;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

.disclaimer-content p a {
    color: white;
    text-decoration: underline;
}

.checkbox-label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 15px;
    line-height: normal;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: black;
}

.dealer-form-box {
    display: flex;
    margin-bottom: 22px;
}

.disclaimer-modal .modal-body {
    padding: 30px 30px;
    color: rgba(0, 0, 0, 0.60);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.disclaimer-modal h5 {
    color: #222222;
    text-align: center;
    font-family: "Inter", sans-serif !important;
    font-size: 22px !important;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.toggle-content {
    margin: 0 0 !important;
}

.pending_sale_banner {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 22px;
    background: #328DB0;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 1px;
}

.boatTag,
.grid-pending_sale_banner {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 22px;
    background: #328DB0;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 1px;
}

.boatDetailOptionsList {
    list-style: none;
    margin-top: 20px;
}

.boatDetailOptionsList li {
    padding: 10px 15px !important;
}

.boatDetailOptionsList li:nth-child(odd) {
    background-color: #f2efef !important;
}

.offer-header {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
}

.offer-line {
    background: var(--white-color);
    width: 100%;
    height: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 40px;
}

.offer-box {
    background: var(--black-color);
    padding: 10px 10px 20px 10px;
    border-radius: 4px;
    margin-top: 25px;

}

.offer-header h6 {
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.6px;
    background: var(--black-color);
    color: var(--white-color);
    padding: 5px 10px;
    text-wrap-mode: nowrap;
}

.offer-box h5 {
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    color: white;
}

.offer-box h5 span.fa {
    padding-left: 5px !important;
}

/* common code:: new boat detail page design ends here */
/* ===================++++++++++++++++++++++=================== */


/* 404 page css start here */

.commonSection {
    margin-bottom: 80px;
}

.commonSectionInnerWrap {
    display: flex;
    gap: 120px;
    max-width: calc(100% - 15%);
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.thank-you-content-box {
    width: 50%;
}

.thank-you-inner-box {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.commonSectionHeading {
    color: var(--black-color);
    font-family: "Zilla Slab";
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
    text-transform: uppercase;
    text-align: center;
}

.commonSectionLinkWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.commonSectionImageWrapper {
    width: 50%;
}

.commonParaWrap {
    margin-bottom: 40px;
    margin-top: 40px;
}

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

/* blog details page css start here */

.blog-details-container {
    display: flex;
    margin: 20px auto;
    padding: 20px;
    gap: 80px;
}

.blog-main {
    flex: 3;
}

.blog-details-image {
    position: relative;
    padding-top: 50%;
}

.blog-details-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.blog-meta .meta-item {
    position: relative;
    margin-right: 30px;
}

.meta-item+.meta-item::after {
    position: absolute;
    content: '';
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 2px;
    height: 13px;
    background-color: #22222299;
}

.blog-details-title {
    color: #000;
    font-family: "Urbane-Light";
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin: 0px 0 16px 0;
}

/* Blog content (rich text) */

.blog-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.blog-content {
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    color: #222;
    font-size: 16px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #1C2B4A;
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.blog-content h1 {
    font-size: 2rem;
}

.blog-content h2 {
    font-size: 1.75rem;
}

.blog-content h3 {
    font-size: 1.5rem;
}

.blog-content h4 {
    font-size: 1.25rem;
}

.blog-content h5 {
    font-size: 1.1rem;
}

.blog-content h6 {
    font-size: 1rem;
    color: #444;
}

.blog-content p {
    margin-bottom: 1.2em;
}

.blog-content strong,
.blog-content b {
    font-weight: 600;
    color: #000;
    font-family: 'Urbane-Semibold';
    font-size: 14px;
    font-style: normal;
    line-height: 24px;
}

.blog-content a {
    color: #0056b3;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 86, 179, 0.2);
    transition: all 0.2s ease;
    font-family: 'Urbane-Light';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.blog-content a:hover {
    color: #003d80;
    border-color: #003d80;
}

.blog-content ul,
.blog-content ol {
    margin: 1em 0 1.5em 2em;
}

.blog-content li {
    margin-bottom: 0.5em;
    font-family: 'Urbane-Light';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.blog-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2em auto;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.blog-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #1C2B4A;
    margin: 1.5em 0;
    padding: 1em 1.5em;
    font-style: italic;
    color: #444;
    font-family: 'Urbane-Light';
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.blog-content table th,
.blog-content table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    text-align: left;
    font-family: 'Urbane-Light';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.blog-content table th {
    background: #f1f3f5;
    font-weight: 600;
    font-family: 'Urbane-Semibold';
    font-size: 14px;
    font-style: normal;
    line-height: 24px;
}

.blog-content hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 2em 0;
}

.blog-content iframe,
.blog-content video {
    max-width: 100%;
    border-radius: 6px;
    margin: 1.5em 0;
}

.blog-content pre,
.blog-content code {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 6px;
    font-family: 'Urbane-Light';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    overflow-x: auto;
}


/* Sidebar */

.blog-sidebar {
    flex: 1;
}

.blog-detail-sidebar-heading {
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 40px;
}

.sidebar-post {
    margin-bottom: 20px;
}

.sidebar-thumbnail-image {
    position: relative;
    padding-top: 60%;
    margin-bottom: 8px;
}

.sidebar-thumbnail-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.sidebar-title {
    color: var(--black-color);
    font-family: 'Urbane-Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 40px;
}

/* financing page css start here*/

.financing-payment-box {
    color: var(--black-color);
    padding-top: 15px;
}

.financing-payment-box .result_box h2 {
    color: var(--black-color);
    margin-bottom: 9px !important;
}

.financing-payment-box .result_box h3 {
    color: var(--black-color);
    margin-bottom: 30px !important;
    font-family: 'Urbane-Semibold';
}

.financing-payment-box .calc-error-box p {
    color: var(--black-color);
}

/* scripted page css start here */

.scripted-container {
    max-width: calc(100% - 30%);
    margin: 0 auto;
}

.container-unique {
    width: 1080px;
    border: 1px solid #888;
    margin: 20px auto;
    padding: 60px 0;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}

.main-message-unique {
    font-family: "Zilla Slab";
    color: var(--Black, #000);
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
    opacity: 0.4;
}

.sub-message-unique {
    color: var(--Black, #000);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-top: 24px;
}

.italic {
    font-style: italic;
    font-family: 'Urbane-Light';
}

.small {
    font-size: 11px;
    font-family: 'Urbane-Light';
}

.light-brown {
    color: #b38d43;
    font-weight: bold;
    font-family: 'Urbane-Light';
}

.line-break {
    margin-top: 10px;
}

.mn-content {
    font-family: 'Urbane-Light';
}

.video_img_box {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(/assets/OwlCarousel/dist/assets/owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 10;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.impel_icon {
    position: absolute;
    height: 80px;
    width: 85px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(/assets/images/icons/360_img.png) no-repeat;
    cursor: pointer;
    z-index: 1000;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

/* extended service page css start here */
.ext-title {
    font-family: 'Urbane-Light';
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

.extend-gray-card {
    background: var(--light-Gray);
    padding: 40px 50px;
    border-radius: 16px;
}
.extend-gray-card p{
    font-size: 12px;
}
.extend-form-conatainer {
    max-width: calc(100% - 25%);
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 120px;
}

.extend-form-logo {
    max-width: 250px;
    margin: 0px auto 64px auto;
}

.extend-form-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ext-featured-content {
    padding-left: 120px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.ext-sec-2 {
    padding-top: 80px;
}

.ext-list ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 23px;
}

.ext-list ul li .ext-list-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.ext-list ul li .ext-list-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ext-list ul li .ext-list-content {
    padding-left: 24px;
}

.ext-list ul li .ext-list-content {
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.mobileTabSection {
    padding: 40px 20px 56px 20px;
    background-color: #FAFAFA;
}

.mobileAdditionalServiceHeadingWrap {
    margin-bottom: 50px;
}

.additionalHeadingMobile {
    color: var(--Blue-1);
    text-align: center;
    font-family: 'Urbane-SemiBold';
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.mobileServicesCard {
    border-radius: 3px;
    border: 1px solid var(--Light-Gray, #D9D9D9);
    background: var(--White);
    padding: 15px 24px;
    margin-bottom: 16px;
}

.mobileServiceCardHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.mobileServiceHeading {
    font-family: 'Urbane-SemiBold';
    color: var(--Black, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.mobileServiceAnswerWrap {
    margin-top: 22px;
    display: none;
    position: relative;
    transition: all 0.4s;
}

.mobileServicesCard.activeMobileService {
    border: 1px solid var(--Black);
}

.mobileServicesCard .mobileServiceDropIcon {
    position: relative;
    transition: all 0.4s;
}


.mobileServicesCard.activeMobileService .mobileServiceAnswerWrap {
    display: block;
}

.rotateMobileServiceIcon {
    transform: rotate(-180deg);
}

.mobileServicesCard.activeMobileService .mobileServiceHeading {
    color: var(--Black);
}

.mobileServiceImageWrap {
    margin-top: 40px;
    position: relative;
    padding-top: 50%;
}

.mobileServiceImageWrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-coverage-sec {
    display: flex;
    padding: 120px 0;
    gap: 56px;
}

.compare-bt-card-mn {
    display: none;
}

.sectionReArranged {
    display: flex;
    gap: 100px;
    align-items: center;
}

.mobile-category-dropdown {
    position: relative;
    width: 100%;
    display: none;
}

.dropdown-toggle {
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 5px;
    z-index: 1000;
    border-radius: 5px;
    padding: 10px;
}

.dropdown-menu.show {
    display: block;
}

.accessiblity-list-box {
    margin-bottom: 20px;
}
.accessiblity-list-box ul{
    padding-left: 20px;
}
.accessiblity-list-box ul li {
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.list-title {
    font-family: 'Urbane-Bold';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
.accessiblity-main-heading{
    font-family: 'Urbane-Bold';
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px;
}
.accessiblity-mail a{
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
.accessiblity-mail a:hover{
    color: var(--black-color);
}

.accessiblity-title{
    color: var(--black-color);
    font-family: "Zilla Slab";
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
    text-align: center;
}
.append-social-links li a{
    color: #ffff;
}

.downloadPdfBtnWrap {
    position: absolute;
    right: 38px;
    top: 38px;
    max-width: 48px;
}

.pdfIconmn{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.store-icons-sl{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
}
.store-icons-sl{
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
.staffLocation{
    padding-left: 22px;
    color: var(--black-color);
    font-family: 'Urbane-Light';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
.social-icons-box-menu {
    text-align: left;
}

.social-icons-box-menu ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.social-icons-box-menu ul li {
    list-style: none;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background-color: none;
    border: 1px solid var(--gold-color);
}

.social-icons-box ul li span.fa {
    color: var(--white-color);
}
.social-icons-box-menu ul li span.fa {
    color: var(--gold-color);
}
.append-social-links-menu li a {
    color: var(--gold-color);
}

@media screen and (min-width: 768px) {
    .boat-card.list-view {
        display: none !important;
    }

    .grid-boat-card.grid-view {
        display: block !important;
    }

    .product-image,
    .toggler-button-box {
        display: none;
    }
}

/* @media screen and (min-width: 2100px) {
    .location-dropdown .selectedStoreName {
        color: var(--black-color);
        text-align: right;
        font-family: 'Urbane-Medium';
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
        white-space: nowrap;
        width: 100%;
        display: inline-block;
        vertical-align: middle;
    }
} */

/* @media (max-width: 2099px) {
     .location-dropdown .selectedStoreName {
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 300px;
    }
} */

@media (max-width: 1950px) {
    .location-dropdown .selectedStoreName {
        max-width: 150px;
    }

    .sectionReArranged {
        gap: 60px;
    }
}

@media (max-width: 1730px) {

    /* home page css start here */
    .location-dropdown .selectedStoreName {
        max-width: 150px;
    }

    .desktopLogoWrap {
        max-width: 250px;
    }


    /* home page css ends here */

    .details-right-container {
        padding: 0 110px;
    }

    .details-left-container {
        padding-left: 110px;
    }

    .sectionReArranged {
        gap: 30px;
    }
}

@media (max-width: 1600px) {
    .service-coverage-sec {
        gap: 30px;
        padding: 80px 0;
    }

    .ext-featured-content {
        padding-left: 80px;
    }

    .dealer-specs-item {
        padding-left: 20px;
    }

    .dealer-specs-item+.dealer-specs-item::after {
        left: 10px;
    }

    .boats-pricing-box .pricing-col-1 {
        min-width: 130px;
    }

    .boats-pricing-box .pricing-col-2 {
        width: calc(100% - 140px);
    }

    .listing-dealer-btn {
        min-width: 140px;
    }

    .partsDeptSection {
        width: calc(100% - 16%);
    }

    .blog-details-container {
        gap: 60px;
    }

    .dealer-form-col-1 {
        width: 100%;
    }

    .dealer-form-col-2 {
        width: 100%;
    }

    .hms_title {
        font-size: 40px;
        line-height: 50px;
    }

    .details-right-container {
        padding: 0 90px;
    }

    .details-left-container {
        padding-left: 90px;
    }

    .desktopHeader {
        padding: 20px 40px 21px 40px;
    }

    .desktopLogoWrap {
        max-width: 250px;
    }

    .desktopNavLinkList {
        gap: 20px;
    }

    .desktopNavRightSection {
        gap: 30px;
    }

    .centralNavLink {
        letter-spacing: 0.4px;
    }

    .footer-container {
        width: calc(100% - 10%);
    }

    .footer-bottom {
        width: 100%;
        padding: 0 15px;
    }
}


@media (max-width: 1500px) {
    .scripted-container {
        max-width: calc(100% - 20%);
    }
    .extend-form-conatainer {
        max-width: calc(100% - 15%);
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .ext-title {
        font-size: 25px;
        line-height: 35px;
    }

    .commonParaWrap {
        margin-bottom: 30px;
        margin-top: 30px;
    }

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

    .desktopLogoWrap {
        max-width: 200px;
    }

    .doss-featured-col .content-box {
        padding: 0 50px;
        max-width: 100%;
    }

    .py-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .reviews-slider-box {
        width: calc(100% - 15%);
    }

    .doss-featured-box {
        margin-top: 80px !important;
        margin-bottom: 80px !important;
    }

    .specs-row-box {
        gap: 60px;
    }

    .sold-content-wrapper {
        padding-left: 40px;
    }

    .inventory-container {
        width: calc(100% - 8%);
    }

    /* repower page css start here */

    .motorsCard {
        padding: 0 15px;
    }

    /* blog details page css start here */

    .blog-detail-sidebar-heading {
        font-size: 21px;
        line-height: 32px;
        letter-spacing: 3px;
        margin-bottom: 25px;
    }

    .blog-details-title {
        font-size: 25px;
    }

    .blog-details-container {
        gap: 45px;
    }

    .blog-content h2 {
        font-size: 21px;
    }

    /* event page css start here */

    .event-listing-container {
        width: calc(100% - 12%);
        margin: 0 auto 80px auto;
    }

    .event-title a {
        font-size: 27px;
    }

    .event-listing-card {
        padding: 15px;
    }

    /* proshop page css start here */

    .proshop-fetured-box {
        display: flex;
        gap: 35px;
        margin-bottom: 80px;
    }

    /* reviews page css start here */

    .reviews-card {
        padding: 35px 35px;
    }

    /* marine insuarnce page css start here */

    .banner-content {
        bottom: 50px;
        padding-left: 100px;
    }

    .banner-title {
        font-size: 51px;
        line-height: 59px;
    }

    .descripotion-box {
        max-width: calc(100% - 25%);
    }

    /* brand page css start here */
    .faq-content {
        max-width: 75%;
    }

    .faq-accordion {
        width: 85%;
        margin: auto 0 0 0;
    }

    .inventory-card {
        padding: 20px 15px;
    }

    .brand-descripotion {
        max-width: calc(100% - 29%);
    }

    /* home page css start here */

    .home-container {
        width: calc(100% - 13%);
    }

    .financing-fetured-box {
        gap: 35px;
        margin-bottom: 80px;
    }

    .reviews-sec {
        padding: 0px 15px 80px 15px;
    }

    .singleton-diffrence-box {
        padding-top: 64px;
        max-width: calc(100% - 23%);
    }

    .central-banner {
        padding: 80px 0;
    }

    .featured-sec {
        overflow: hidden;
        margin: 64 0 0 3%;
    }

    .slider-container {
        padding: 64px 20px 0 20px;
    }

    .singleton-diffrence-content-box {
        margin-top: 40px;
    }

    .home-banner-title {
        font-size: 56px;
        line-height: 65px;
    }

    .rounded-card-title {
        font-size: 42px;
        line-height: 56px;
    }
}

@media (max-width: 1440px) {
    .mob-sticky-bar {
        padding: 17px 15px;
        gap: 7px;
    }

    .dark-sticky-btn,
    .white-sticky-btn {
        gap: 7px;
        font-size: 16px;
        padding: 10px 10px;
    }

    .grid-boat-card {
        width: calc(100% / 2) !important;
    }

    .ext-featured-content {
        padding-left: 40px;
    }

    /* event details page css stsrt here */

    .event-location-wrapper {
        max-width: calc(100% - 15%);
        gap: 30px;
    }

    .event-date {
        font-size: 25px;
        line-height: 35px;
    }

    /* proshop page css start here */

    .proshop-location-card {
        gap: 20px;
    }


    /* parts page css start here */
    .parts-featured-content {
        margin-right: 40px;
    }

    .glimpse-sec {
        gap: 30px;
        padding: 90px 76px 60px 76px;
    }

    /* home page css start here */
    .featured-rounded-card-content {
        bottom: 30px;
        padding-left: 30px;
    }

    .article-fetured-box {
        gap: 25px;
    }

    .article-overlay-content {
        bottom: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }

    /* home page css ends here */

    .specs-row-box {
        gap: 60px;
    }

    .contactLocationCard {
        padding: 0 8px;
    }

    .details-right-container {
        padding: 0 60px;
    }

    .details-left-container {
        padding-left: 60px;
    }

    .desktopHeader {
        padding: 20px 15px 21px 15px;
    }

    .footer-container {
        width: 100%;
        padding: 80px 15px;
    }

    .footer-bottom {
        width: 100%;
    }

    .slider-container {
        width: 100%;
    }

    .specList li {
        font-size: 14px;
    }

    .specList {
        gap: 20px;
    }

    .beforeLineForNewArrivalCard::before {
        left: -10px;
    }

    .featured-boat-price {
        font-size: 14px;
        line-height: 18px;
    }

    .featured-boat-title {
        font-size: 16px;
        line-height: 20px;
    }

    .centralNavLink {
        font-size: 14px;
    }
}

@media (max-width: 1350px) {
    .listing-content-col {
        padding-left: 20px;
    }
}


@media (max-width: 1300px) {
    .extend-gray-card {
        padding: 40px 30px;
    }

    .extend-form-conatainer {
        max-width: calc(100% - 7%);
    }

    .specs-header {
        padding: 33px 0 23px 0 !important;
    }

    .accordion-header {
        padding: 30px 0;
    }

    /* .accordion-content {
        padding-left: 20px;
        padding-right: 20px;
    } */

    .partsDeptSection {
        width: calc(100% - 10%);
    }

    /* repower page css start here */

    .storageHerTextWrap {
        max-width: 900px;
        text-align: center;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* blog details page css start here */

    .blog-details-container {
        gap: 45px;
    }

    /* proshop page css start here */

    .proshop-location-card {
        gap: 20px;
        flex-wrap: wrap;
    }

    .location-card-col-1 {
        width: 100%;
    }

    .location-card-col-2 {
        width: 100%;
    }

    /* reviews page css start here */

    .reviews-container {
        width: calc(100% - 40px);
    }

    .reviews-card-box {
        padding: 13px;
        width: calc(100% / 2);
    }

    /* home page css start here */
    .home-container {
        width: calc(100% - 10%);
    }

    .financing-fetured-box {
        gap: 25px;
    }

    .article-overlay-content h6 {
        font-size: 24px;
        line-height: 35px;
    }

    .reviews-slider-box {
        width: 100%;
    }

    .singleton-diffrence-box {
        max-width: calc(100% - 23%);
    }

    /* home page css ends here */

    .listing-content-col {
        padding-left: 30px;
        width: 77%;
    }

    .fitler-col {
        width: 23%;
    }

    .desktopLogoWrap {
        max-width: 200px;
    }

    .desktopNavLinkList {
        gap: 15px;
    }

    .desktopNavRightSection {
        gap: 24px;
    }

    .selectStoreAndResourcesOptionWrap {
        display: flex;
        gap: 20px;
    }

    .centralNavLink {
        font-size: 12px;
        letter-spacing: 0px;
    }
}

@media screen and (max-width: 1200px) {
    .scripted-container {
        max-width: calc(100% - 10%);
    }
    .service-coverage-sec {
        gap: 10px;
    }

    .offer-header {
        max-width: 100%;
    }

    .offer-header h6 {
        font-size: 16px;
    }

    .header-search {
        max-width: 180px;
        overflow: hidden;
        gap: 20px;
        padding: 0 10px 0 10px;
    }

    .header-location-box {
        max-width: 150px;
    }

    /* event page css start here */

    .event-location-wrapper {
        max-width: calc(100% - 10%);
    }

    .event-location-card {
        padding: 30px;
    }

    .event-date {
        font-size: 20px;
        line-height: 32px;
    }

    .event-location-card-col-1 img {
        width: 33px;
    }

    .event-listing-container {
        width: calc(100% - 5%);
    }

    .event-listing-card {
        padding: 10px;
    }

    .event-title a {
        font-size: 25px;
        line-height: 34px;
    }

    .sold-content-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* blog details page css start here */

    .blog-details-container {
        gap: 25px;
    }

    .sidebar-title {
        margin-bottom: 25px;
    }

    /* parts page css start here */
    .glimpse-sec {
        flex-wrap: wrap;
        padding: 90px 35px 60px 35px;
        gap: unset;
    }

    .glimpse-card {
        width: calc(100% / 2);
        padding: 0 15px;
    }

    /* marine insurance page css start here */
    .coverage-list {
        gap: 37px;
        flex-wrap: wrap;
    }

    .banner-content {
        padding-left: 70px;
    }

    /* brand page css start here */
    .faq-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .faq-container {
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    .faq-accordion {
        width: 100%;
        padding: 0 20px;
    }

    .inventory-container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .brand-descripotion {
        max-width: calc(100% - 15%);
    }

    /* home page css start here */
    .home-container {
        width: calc(100% - 6%);
    }

    .article-overlay-content {
        bottom: 24px;
    }

    .singleton-diffrence-col {
        padding: 40px 35px;
    }

    .financingHeaderImageWrap {
        margin: 0 auto;
    }

    /* home page css ends here */


    /* 404 page css start here */

    .commonSectionInnerWrap {
        gap: 40px;
    }

    .commonSectionHeading {
        font-size: 29px;
        letter-spacing: 3px;
    }

    .commonSectionInnerWrap {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }

    /* 404 page css ends here */

    .listing-header {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
    }

    .boat-card {
        flex-wrap: wrap;
    }

    .boat-content-box {
        width: 100%;
        padding: 18px 0px 10px 0;
    }

    .boat-img-box {
        width: 100%;
    }

    .listing-container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .breadCrumContainerListing {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .specs-row-box {
        gap: 20px;
    }

    .details-right-container {
        padding: 0 25px;
    }

    .details-left-container {
        padding-left: 25px;
    }

    .desktopLogoWrap {
        max-width: 160px;
    }

    .desktopHeaderInnerWrap {
        gap: 20px;
    }

    .selectedStoreName {
        font-size: 12px;
        line-height: 16px;
    }

    .header-resources-box {
        gap: 8px;
    }

    .header-resources-box a {
        font-size: 14px;
        line-height: 18px;
        color: var(--black-color);
    }
}

@media(max-width: 1100px) {
    .desktopLogoWrap {
        max-width: 140px;
    }

    .centralNavLink {
        font-size: 12px;
        letter-spacing: 0px;
    }

    .desktopNavRightSection {
        gap: 18px;
    }

    .selectStoreAndResourcesOptionWrap {
        gap: 10px;
    }
}

@media (max-width: 991px) {
    .gg-app.gg-custom-position {
        position: fixed !important;
        inset: auto !important;
        right: 20px !important;
        bottom: 15% !important;
        top: auto !important;
        left: auto !important;
        z-index: 999999 !important;
    }
    
    
    .gg-app.gg-custom-position>.guba-global-styles-wrapper,
    .gg-app.gg-custom-position>.sc-gtsrHT,
    .gg-app.gg-custom-position .gg-chat-wrapper {
        position: static !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        left: auto !important;
    }

    .accessiblity-title {
        font-size: 40px;
        line-height: 45px;
    }
    .sellTradeHeaderSection {
        min-height: 220px;
        background-position: top;
    }

    .dockingFacilityTitle {
        font-size: 28px;
        line-height: 36px;
    }

    .descripotion-box {
        padding: 44px 20px 50px 20px;
    }

    .clear-filter-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .detail-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        display: block;
    }

    /* ===================++++++++++++++++++++++=================== */
    /* common code:: new boat detail page design starts here */
    .offer-header {
        position: relative;
        padding-left: 40px;
        padding-right: 40px;
    }

    .offer-line {
        background: var(--white-color);
        width: 100%;
        height: 1px;
        margin-top: 20px;
        margin-bottom: 20px;
        padding-left: 40px;
    }

    .offer-box {
        background: var(--black-color);
        padding: 10px 10px 20px 10px;
        border-radius: 4px;
        margin-top: 25px;

    }

    .offer-header h6 {
        position: absolute;
        top: -21px;
        left: 50%;
        transform: translateX(-50%);
        font-family: "DM Sans";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: -0.6px;
        background: var(--black-color);
        color: var(--white-color);
        padding: 5px 10px;
        text-wrap-mode: nowrap;
    }

    .offer-box h5 {
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        text-transform: uppercase;
        text-align: center;
        color: white;
    }

    .offer-box h5 span.fa {
        padding-left: 5px !important;
    }

    .mobile-gallery {
        display: block !important;
        padding-bottom: 30vh;
        padding-top: 110px;
    }

    .draggable-wrapper-header {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 20px 20px 0 0;
        background: var(--black-color);
        padding: 8px 30px;
        padding: 10px 30px 28px 30px;
    }

    .calc-icon {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        color: var(--white-color);
        font-family: 'Urbane-Semibold';
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .mobile-boat-title {
        color: var(--white-color);
        font-family: 'Urbane-Semibold';
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        text-align: center;
    }

    /* .draggable-wrapper-header h4 {
        color: var(--white-color);
        font-family: "Zilla Slab";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        text-decoration-line: underline;
    }

    .draggable-wrapper-header h4 a {
        color: var(--white-color);
    } */

    .drag-handle-icon img {
        width: 38px;
        flex-shrink: 0;
        margin: 0 auto;
    }

    .boat-details-title {
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        text-transform: uppercase;
    }

    .similar-heading {
        color: var(--black-color);
        text-align: center;
        font-family: "DM Sans";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: -0.72px;
    }

    .price-drop-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 12px 0;
    }

    .boats-viewer-wrapper {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 5px;
        margin-bottom: 8px;
    }

    .boats-viewer-wrapper .view-icon {
        width: 15px;
        height: 10px;
        object-fit: contain;
    }

    .boats-viewer-wrapper .viewers {
        color: var(--gold-color);
        text-align: right;
        font-family: Inter;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

    .boats-location-wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
        margin-bottom: 8px;
    }

    .boats-location-wrapper p {
        color: var(--black-color);
        font-family: Inter;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

    .location-details ul {
        display: flex;
        padding-left: 0;
    }

    .location-details-items {
        position: relative;
        padding-right: 30px;
        list-style: none;
    }

    .location-details-items+.location-details-items::after {
        position: absolute;
        content: '';
        top: 50%;
        left: -15px;
        transform: translateY(-50%);
        background: var(--light-Gray);
        width: 1px;
        height: 15px;
    }

    .price-drop-badge {
        background: var(--gold-color);
        color: var(--white-color);
        text-align: center;
        font-family: "DM Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 900;
        line-height: 24px;
        text-transform: uppercase;
        padding: 1px 10px;
    }

    .mob-sale-price {
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 24px;
        font-style: normal;
        font-weight: 900;
        line-height: 24px;
        letter-spacing: -0.72px;
        text-transform: uppercase;
    }

    .dealer-box {
        display: flex;
        gap: 16px;
        padding: 24px;
        border-radius: 10px;
        background: var(--white-color);
        box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
        margin: 16px 0;
    }

    .dealer-box-1 {
        width: 104px;
    }

    .dealer-box-2 {
        width: calc(100% - 104px);
    }

    .dealer-box-img {
        width: 104px;
        height: 104px;
        flex-shrink: 0;
        aspect-ratio: 1/1;
    }

    .dealer-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

    .dealer-box-2 h6 {
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: -0.16px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .dealer-box-2 p {
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: -0.48px;
    }

    .specs-box {
        display: flex;
        gap: 36px;
        flex-wrap: wrap;
    }

    .specs-col {
        display: flex;
        gap: 12px;
        width: calc(100% / 3 - 36px);
    }

    .specs-icon-box {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        aspect-ratio: 1 / 1;
        border-radius: 50px;
        padding: 5px;
        background: var(--light-Gray);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .specs-icon-box img {
        object-fit: contain;
    }

    .specs-text-box {
        width: calc(100% - 48px);
    }

    .shadow-box {
        border-radius: 10px;
        background: var(--white-color);
        box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
        margin: 16px 0;
        padding: 24px;
    }

    .show-box-title {
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 20px;
        font-style: normal;
        font-weight: 900;
        line-height: 24px;
        letter-spacing: -0.6px;
        margin-bottom: 24px;
    }

    .steps-header {
        margin: 40px 0;
    }

    .steps-card {}

    .steps-header .step-header-title {
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: -0.72px;
    }

    .steps-header p {
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }

    .step-icon {
        width: 32px;
        height: 31.896px;
        flex-shrink: 0;
        margin-bottom: 8px;
    }

    .step-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .step-title {
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 20px;
        font-style: normal;
        font-weight: 900;
        line-height: 30px;
        letter-spacing: -0.6px;
        margin-bottom: 8px;
    }

    .steps-box {
        padding: 24px 0 10px
    }

    .steps-card {
        padding: 24px;
    }

    .step-link {
        margin-top: 18px;
    }

    .step-link a {
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 900;
        line-height: 24px;
        letter-spacing: -0.32px;
    }
    /* common code:: new boat detail page design ends here */
    /* ===================++++++++++++++++++++++=================== */

    .service-coverage-sec {
        gap: 0;
        flex-wrap: wrap;
        padding: 40px 0 0 0;
    }

    .ext-featured-content {
        padding-left: 0;
        margin-right: 0;
    }

    .ext-sec-2 {
        padding-top: 15px;
    }

    .serviceHeroSection {
        margin: 42px 0px;
    }

    .article-overlay-content h6 {
        font-size: 18px;
        line-height: 24px;
    }

    .reviews-slider .owl-prev {
        position: static;
    }

    .auther-name {
        margin-bottom: 40px;
    }

    .reviews-slider .owl-next {
        position: static;

    }

    .selectStoreModalHeading {
        font-size: 40px;
        line-height: 48px;
    }

    .selectStoreModalTopBar {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .availabelStoreCard {
        padding: 15px;
    }

    .parts-dep-col-1,
    .parts-dep-col-2 {
        width: 100%;
    }

    .parts-dep-box {
        flex-wrap: wrap;
        gap: 40px;
    }

    .partsDeptSection {
        width: 100%;
        padding-bottom: 70px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .sold-content-wrapper {
        padding-left: unset;
        padding-right: unset;
        padding: 40px;
        text-align: center;
        align-items: center;
    }

    /* blog details page css start here */

    .blog-content ul,
    .blog-content ol {
        margin: 1em 0 1.5em 0;
    }

    .blog-main {
        flex: 2;
    }

    .infoTab {
        position: relative;
        overflow: visible;
    }

    .tabsDetails {
        width: 100%;
        margin-top: 15px;
        padding: 0;
        background: transparent;
    }

    .tabsDetailsContent {
        padding: 15px;
        background: #f9f9f9;
        border-radius: 8px;
        margin-top: 10px;
    }

    /* service page css start here */
    .tabsSec {
        margin: 0px auto 0px auto;
    }

    .infoTab {
        display: flex;
        height: auto;
        flex-direction: column;
        padding: 15px 24px;
    }

    .tabsDetailsHeader {
        margin-top: 0px;
    }

    .tabsDetailsContent {
        padding-bottom: 20px;
    }

    .tabsDetailsHeader .secondaryHeading {
        display: none;
    }

    .tabsContent {
        padding: 0px 0px 10px 0px;
        border: none;
    }  

    /* Rich dynamic content styling */
    .rich-dynamic-content {
        font-family: "DM Sans";
        line-height: 1.7;
        font-size: 1rem;
        color: #222;
        background-color: #fff;
    }

    .rich-dynamic-content>*:first-child {
        margin-top: 0;
    }

    .rich-dynamic-content>*:last-child {
        margin-bottom: 0;
    }

    /* Headings */
    .rich-dynamic-content h1,
    .rich-dynamic-content h2,
    .rich-dynamic-content h3,
    .rich-dynamic-content h4,
    .rich-dynamic-content h5,
    .rich-dynamic-content h6 {
        font-family: "DM Sans";
        font-weight: 600;
        line-height: 1.3;
        margin: 1.2em 0 0.6em;
        color: #111;
    }

    .rich-dynamic-content h1 {
        font-size: 1.6rem;
    }

    .rich-dynamic-content h2 {
        font-size: 1.6rem;
    }

    .rich-dynamic-content h3 {
        font-size: 1.6rem;
    }

    .rich-dynamic-content h4 {
        font-size: 1rem;
    }

    .rich-dynamic-content h5 {
        font-size: 1rem;
    }

    .rich-dynamic-content h6 {
        font-size: 1rem;
    }

    /* Paragraphs */
    .rich-dynamic-content p {
        margin: 0 0 1em;
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }

    /* Links */
    .rich-dynamic-content a {
        color: #0077cc;
        text-decoration: none;
        transition: color 0.2s ease;
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }

    .rich-dynamic-content a:hover {
        color: #005fa3;
        text-decoration: underline;
    }

    /* Lists */
    .rich-dynamic-content ul,
    .rich-dynamic-content ol {
        margin: 1em 0;
        padding-left: 0;
    }

    .rich-dynamic-content li {
        margin-bottom: 0.4em;
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        list-style: none !important;
    }

    /* Blockquotes */
    .rich-dynamic-content blockquote {
        border-left: 4px solid #0077cc;
        background: #f7f9fc;
        padding: 0.75em 1em;
        margin: 1em 0;
        font-style: italic;
        color: var(--black-color);
    }

    /* Tables */
    .rich-dynamic-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.2em 0;
        font-size: 0.95rem;
    }

    .rich-dynamic-content th,
    .rich-dynamic-content td {
        border: 1px solid #ddd;
        padding: 0.6em 0.8em;
        text-align: left;
    }

    .rich-dynamic-content th {
        background: #f2f2f2;
        font-weight: 600;
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }

    /* Images */
    .rich-dynamic-content img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 1em auto;
        border-radius: 8px;
    }

    /* Videos / Iframes */
    .rich-dynamic-content iframe,
    .rich-dynamic-content video {
        max-width: 100%;
        border-radius: 10px;
        margin: 1em 0;
    }

    /* Code blocks */
    .rich-dynamic-content pre,
    .rich-dynamic-content code {
        font-family: "Fira Code", monospace;
        background: #f4f4f4;
        border-radius: 6px;
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }

    .rich-dynamic-content pre {
        padding: 1em;
        overflow-x: auto;
        margin: 1em 0;
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }

    .rich-dynamic-content code {
        padding: 0.2em 0.4em;
        font-size: 0.9rem;
        color: var(--black-color);
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }

    /* Horizontal rule */
    .rich-dynamic-content hr {
        border: none;
        border-top: 1px solid #ddd;
        margin: 2em 0;
    }

    /* Responsive images and videos */
    @media (max-width: 768px) {
        .rich-dynamic-content {
            font-size: 0.95rem;
        }

        .rich-dynamic-content h1 {
            font-size: 1.6rem;
        }

        .rich-dynamic-content h2 {
            font-size: 1.4rem;
        }
    }


    /* dragabble wrapper css start here */

    .gallery-images {
        position: relative;
        padding-top: 50%;
        margin-bottom: 8px;
    }

    .gallery-images {
        padding-top: 57% !important;
    }

    .gallery-images img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ----- Gallery Section ----- */
    .gallery {
        padding: 0 0 20px 0;
    }

    .gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* border-radius: 10px; */
        margin-bottom: 15px;
    }

    .internal-nav-box {
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        top: 165px;
        left: 0;
        width: 100%;
        z-index: 100;
        padding: 0 16px;
    }

    .internal-nav-box img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    /* ----- Draggable Wrapper ----- */
    .draggable-wrapper {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: calc(var(--vvh, 1px) * 0.93);
        background: #fff;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        z-index: 999;
        transform-origin: bottom center;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        contain: layout paint;
        touch-action: none;
        transition: none;
    }

    #panel {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    body.no-page-scroll {
        overflow: hidden;
        height: 100%;
    }





    /* Handle bar */
    .drag-handle-icon {
        border-radius: 20px 20px 0 0;
        margin: -19px auto 0;
        cursor: grab;
        text-align: center;
        background: var(--white-color);
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* Scrollable content */
    .draggable-content {
        height: calc(100% - 30px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 150px;
    }

    /* Inner padding */
    .draggable-content-box-1 {
        padding: 10px 20px 20px 20px;
    }

    /* Text styles */
    .dealer-box-2 p {
        margin-bottom: 15px;
        line-height: 1.6;
        word-break: break-all;
    }

    .specs-content p {
        margin-bottom: 10px;
        line-height: 1;
    }

    /* .draggable-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  word-break: break-all;
}

/* Prevent background scroll when drawer is open */
    body.lock-scroll,
    body.no-page-scroll {
        overflow: hidden;
    }


    /* dragable wrapper css ends here */

    /* boat details page css start here */

    .blogListingSection {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .financingForm {
        padding: 30px 20px;
    }

    .financingHeaderSection {
        margin: 45px 0 40px 0;
    }

    .mb-40 {
        margin-bottom: 25px;
    }

    /* event page css start here */

    .event-listing-card {
        width: calc(100% / 2);
    }

    /* proshop page css start here*/

    .proshop-fetured-box {
        gap: 20px;
        margin-bottom: 80px;
    }

    .proshop-location-box {
        gap: 23px;
    }

    .proshop-fetured-box {
        flex-wrap: wrap;
    }

    /* reviews page css start here */
    .reviews-card {
        padding: 25px 25px;
    }

    /* parts page css start here */

    .glimpse-sec {
        flex-wrap: wrap;
        padding: 50px 35px 50px 35px;
        gap: unset;
    }


    /* marine insurance page css start here */
    .descripotion-box {
        max-width: calc(100% - 10%);
    }

    .banner-content {
        position: absolute;
        bottom: unset;
        left: 50%;
        padding-left: unset;
        text-align: center;
        transform: translate(-50%, -50%);
        top: 50%;
        width: 100%;
        padding: 0 20px;
    }

    .banner-title {
        font-size: 40px;
        line-height: 47px;
        text-align: center;
    }

    /* brand page css start here */
    .faq-box {
        flex-direction: column;
        gap: 27px;
        padding-top: 50px !important;
        padding-bottom: 20px !important;
    }

    .gallery-carousel .owl-dots {
        margin-top: 15px;
    }

    .faq-col {
        width: 100%;
    }

    .gallery-carousel .owl-nav {
        display: none;
    }

    .inventory-card {
        width: calc(100% / 2);
    }

    .brand-descripotion {
        max-width: 100%;
    }

    .faq-box {
        flex-direction: column;
    }

    .faq-col {
        width: 100%;
    }

    .faq-accordion {
        width: 100%;
    }

    .faq-content {
        max-width: 100%;
        text-align: center;
    }

    /* home page css start here */
    .home-banner {
        min-height: 600px;
    }

    .home-container {
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }

    .financing-fetured-box {
        flex-direction: column;
    }

    .financing-fetured-col {
        width: 100%;
    }

    .article-fetured-box {
        flex-direction: column;
    }

    .article-fetured-col {
        width: 100%;
    }

    .singleton-diffrence-box {
        max-width: 100%;
    }

    .singleton-diffrence-box {
        padding-top: 40px;
    }

    .py-120 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .slider-container {
        padding: 64px 20px 0px 20px;
    }

    .slider-content {
        max-width: 100%;
        padding-top: 44px;
    }

    .featured-slider-sec {
        padding-top: 60px;
    }

    .central-banner {
        padding: 64px 0;
    }

    .featured-content {
        padding: 25px 15px 0 15px;
    }

    .homeAboutSectionContentWrap {
        padding: 25px 15px 0 15px;
    }

    .slider-container .item {
        padding-bottom: 40px;
    }

    .rounded-card-title {
        font-size: 37px;
        line-height: 46px;
    }

    .featured-sec {
        margin: 48px 0 0 30px;
    }

    .slide-arrow-box {
        margin-top: 0;
    }

    /* home page css ends here */

    .sellTradeStepCard {
        padding: 34px 15px 40px 15px;
        margin: 0 15px;
        text-align: center;
    }

    .serviceLocationTitle {
        font-size: 24px;
        line-height: 32px;
    }

    .serviceLocationCard {
        padding: 0;
    }

    .standOutSection {
        margin: 60px 0;
    }

    .storageHeroSection {
        margin: 40px 0;
    }

    .servicesLocation {
        margin: 40px 0;
    }

    .headeingWrapper {
        margin-bottom: 24px;
    }

    .contactHeaderFormSection {
        bottom: -15%;
    }

    .contactAddressSection {
        margin: 480px 0 120px 0;
    }

    .contactHeaderTextSection {
        margin: 80px auto 0 auto;
    }

    .contactHeaderFormSection {
        margin: 0 auto;
    }

    .sellTradeStepNumber {
        font-size: 100px;
    }

    .sellTradeCardTitle {
        font-size: 24px;
        line-height: 32px;
        margin: 20px 0 16px 0;
    }

    .form-box {
        margin: 40px auto 60px auto;
    }

    .footer-logo-box {
        max-width: 300px;
        margin: 0 auto;
    }

    .sellTradeHeroSection {
        margin: 44px 0;
    }

    .btnWrap {
        margin-top: 30px;
    }

    .whySellWithUsSection {
        margin: 60px 0 20px 0;
    }

    .promiseHeadingWrap {
        margin-bottom: 40px;
    }

    .paraWrapper {
        margin: 24px 0 34px 0;
    }

    .serviceHeroImageWrap {
        margin: 0 auto;
    }

    .primaryBlackHeading {
        font-size: 40px;
        line-height: 48px;
    }

    .form-header {
        margin: 44px 0 42px 0;
    }

    .servicePageSeparator {
        background-color: #000;
        margin-bottom: 44px;
    }

    .topServicesCardWrap {
        margin-bottom: 48px;
    }

    .commonParaWrap {
        text-align: center;
        margin-top: 12px;
    }

    .commonSectionInnerWrap {
        gap: 40px;
        flex-flow: column-reverse;
    }

    .thank-you-content-box {
        width: 100%;
    }

    .commonSectionImageWrapper {
        width: 100%;
    }

    .range-slider-box {
        position: fixed;
        top: -100px;
        left: 0;
        width: 100%;
        z-index: 10;
        background: var(--white-color);
        height: 150px;
        transition: top 0.4s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75);
    }

    .range-slider-box.show-range-filter {
        top: 173px;
    }

    .range-slider-box .filter-accordion-content {
        padding: 0px 20px;
    }

    .range-slider-box input {
        width: 100%;
        text-align: center;
        border: none !important;
        margin-bottom: 10px;
    }

    .filter-accordion-content input {
        margin-right: 15px;
        font-family: 'Inter' !important;
        color: black !important;
    }

    .sqr-checkBox .filter-checkbox {
        top: 12px;
        display: none;
    }

    .mobile-sort-by label {
        width: 70px;
        float: left;
        color: rgba(0, 0, 0, 0.40);
        font-family: "Inter", sans-serif;
        ;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px;
        text-transform: capitalize;
    }

    .mobile-sort-by select {
        width: calc(100% - 70px);
        height: calc(2.3rem + 2px) !important;
        border-top: none;
        border-right: none;
        border-left: 1px solid #D9D9D9;
        border-bottom: none;
    }

    .filter-accordion-content {
        background-color: transparent;
        position: relative;
    }

    .close-filter {
        position: absolute;
        top: 3px;
        right: 10px;
        padding: 15px;
        font-size: 20px;
        z-index: 50;
    }

    .range-line {
        padding-left: 20px;
        padding-right: 20px;
    }

    .listing-header {
        align-items: flex-start;
        padding-left: 7px;
    }

    .boatsHeading {
        font-size: 20px;
        margin-bottom: 0;
        line-height: 26px;
    }

    .lisitng-search-box {
        display: none;
    }

    .listing-content-col {
        padding-left: 0;
        width: 100%;
    }

    .listing-container {
        padding-left: 0;
        padding-right: 0;
    }

    .breadCrumContainerListing {
        padding-left: 0;
        padding-right: 0;
    }



    .grid-boat-card {
        display: block;
    }

    .similar-slider {
        display: block !important;
    }

    .mob-sticky-bar {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .sticky-bar-col {
        width: 50%;
    }

    .sqr-checkBox {
        padding: 12px 0;
        float: left;
        width: 100%;
        position: relative;
    }

    .sqr-checkBox span .fa-square:nth-child(1) {
        display: none;
    }

    /*  new boat details page design start here */
    .desktop_dis {
        display: none;
    }

    .af-disp-mob {
        display: block;
        padding: 15px 20px 0;
    }

    .fitler-col {
        width: 100%;
    }

    .filterBox {
        display: none;
    }

    .listing-content-col {
        width: 100%;
    }

    .listing-container {
        display: flex;
        max-width: calc(100% - 7%);
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .breadCrumContainerListing {
        max-width: calc(100% - 7%);
        margin: 0 auto;
    }

    .breadcrumb-container {
        padding-top: 5px;
    }

    .filterInner,
    .boatsListingWrapper {
        padding: 0 0 0 0;
    }

    .breadcrumb {
        margin-bottom: 0;
        padding-left: 7px;
    }

    .slider-nav {
        margin: 0 -10px;
        padding: 0 10px;
    }

    .right-sidebar {
        padding-top: 120px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .slider-img {
        position: relative;
        padding-top: 65%;
    }

    .slider-img>img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slider-nav-img {
        width: 100%;
        height: 160px;
        padding: 0 5px;
    }

    .slider-nav-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slick-slider-box .slick-arrow {
        display: none !important;
    }

    .boat-detail-carosuel,
    .mobHide {
        display: none !important;
    }

    .boats-container {
        padding-top: 0px;
    }


    .top_new_filter {
        display: block;
        margin-top: -2px;
    }

    .left_sidebar {
        padding: 15px 25px;
    }

    .custom-card-header span.fa {
        display: none;
    }

    .custom-card-header i.fa {
        display: block;
    }

    .custom-card-header p.fa {
        display: none;
    }

    .right-sidebar {
        padding-top: 0;
    }

    .boat-seprator {
        padding-top: 20px;
    }

    .similar-box-col {
        flex-basis: calc(50% - 10px);
    }

    .details-main-row {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    .details-right-container {
        width: 100%;
        margin: 40px auto 0 auto;
        padding: 0;
    }

    .details-left-container {
        width: 100%;
        padding-left: 0px;
    }

    .boatDetailPageSeparator {
        margin-top: 50px;
    }

    .similarInventorySection {
        margin-top: 60px;
        margin-bottom: 120px;
    }

    .left_tabs {
        padding-top: 20px;
    }


    .boat-detail-carosuel,
    .mobHide {
        display: none !important;
    }

    .details-main-row {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    .details-left-container {
        width: 100%;
        padding-left: 0px;
    }

    .details-right-container {
        width: 100%;
        margin: 40px auto 0 auto;
        padding: 0;
    }

    /*  new boat details page design start here */

    .desktopHeader {
        display: none;
    }

    .mobileHeader {
        display: block;
    }

    .central-banner-content {
        width: 90%;
        padding: 50px 5%;
    }

    .featured-slider-sec {
        margin-left: 3%;
    }

    .rounded-card-title {
        font-size: 40px;
        line-height: 48px;
    }

    .slider-box {
        flex-direction: column-reverse;
    }

    .normalFlexDirection {
        flex-direction: column !important;
    }

    .sldier-col {
        width: 100%;
    }

    .footerBottomWrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .mainHeading {
        font-size: 56px;
        line-height: 64px;
    }

    .commonHeaderContent {
        left: 5%;
    }

    .topServicesTitle {
        font-size: 24px;
        line-height: 32px;
    }

    .popularHeadingWrap {
        margin: 8px 0 40px 0;
    }

    .title-heading {
        font-size: 40px;
        line-height: 48px;
    }

    .contactLocationsHeadingWrap {
        padding-left: 20px;
    }

    .contactLocationsHeadingWrap {
        margin-bottom: 56px;
    }

    .contactLocationCard {
        padding: 0 15px;
    }

    .blogListingCardTitle {
        font-size: 24px;
        line-height: 28px;
    }

    /* .blogListingCardTextWrap {
        text-align: center;
    } */

    .blogHeaderContent {
        left: 5%;
    }

    .mobileSearchIconWrapper .fa-magnifying-glass,
    .fa-search {
        font-size: 25px;
    }

    .reversedRow {
        flex-flow: column-reverse;
        gap: 15px;
    }

    .mobile-category-dropdown {
        display: block;
    }

    .m-check-group {
        display: none;
    }

    .desktop-sort {
        display: none;
    }

    .dockageFacilitySection {
        margin-bottom: 40px;
    }

}

@media screen and (max-width: 767px) {
    .compareListingCardRemoveBtn {
        font-size: 20px;
    }

    .mob-space {
        padding: 0 !important;
    }

    .invetoryListingCompareCard {
        padding-bottom: 20px;
    }

    .startCompareBtn {
        padding: 14px 25px;
        border-radius: 50px;
        font-size: 16px;
    }

    .comparingCard {
        margin: 0;
    }

    .compare-cards-container {
        border-bottom: 1px solid var(--light-Gray);
    }

    .startCompareBtnWrap {
        justify-content: space-between;
        /* flex-direction: column; */
        gap: 10px;
        margin-top: 12px;
    }

    .clearAllText {
        color: var(--black-color);
        text-align: center;
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 900;
        line-height: 16px;
        text-transform: uppercase;
        background: transparent;
        border: none;
        outline: none;
        box-shadow: none;
        padding: 20px 40px;
    }

    .clearAllText:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .compareCardTopBarTitle {
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -0.32px;
    }

    .compareListingCardTitle {
        color: var(--black-color);
        text-align: center;
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -0.32px;
        margin: 10px 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }

    .boat-listing-carousel .item img {
        border-radius: 5px 5px 0 0;
    }

    .boats-card-body {
        border-radius: 0 0 5px 5px;
    }

    .pricing-col-box {
        width: 80px;
        height: 64px;
    }

    .mobileTableHead {
        display: flex;
        width: 100%;
        justify-content: center;
        background-color: #EEE;
    }

    .featured-slider-sec {
        padding-top: 40px;
    }

    .compareAccordionInfoWrapper tr {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .compareAccordionInfoWrapper tr td {
        width: 50%;
        border: 1px solid #eee;
    }

    .specsTable tbody tr:nth-child(odd) th,
    .specsTable tbody tr:nth-child(odd) td {
        background-color: #EEE;
    }

    .grid-boat-card {
        width: 100% !important;
    }

    .specs-col {
        display: flex;
        gap: 12px;
        width: calc(100% / 2 - 36px);
    }

    .listing-header-right-box {
        width: 100%;
    }

    .sortWrapper {
        width: 100%;
    }

    .selectStoreModalTopBar {
        flex-direction: column;
        align-items: flex-start;
    }

    .selectedStoreCardInnerWrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .availableStoreSecondaryPart {
        max-width: 200px;
    }

    .commonHeaderSection {
        min-height: 400px;
    }

    /* event page css start here */
    .event-location-wrapper {
        max-width: 100%;
        flex-wrap: wrap;
        padding-left: 20px;
        padding-right: 20px;
    }

    .event-location-col {
        width: 100%;
    }

    /* repower page css start here */

    .repower-checkbox {
        gap: 40px;
        justify-content: center;
        flex-direction: column;
    }

    .repower-description p {
        text-align: center;
    }

    .repower-description {
        width: 100%;
    }

    /* blog page css start here */

    .sidebar-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .event-gallery-carousel .owl-nav {
        display: none;
    }

    .backToBlogBtnWrap {
        margin: 40px 0 0 0;
    }

    .blog-details-container {
        padding: 0;
        flex-direction: column;
    }

    .blog-details-content-box {
        padding: 20px;
    }

    .blog-main {
        flex: 1;
    }

    .blog-container {
        flex-direction: column;
    }

    .blog-sidebar {
        padding: 40px 20px 0 20px;
        border-top: 1px solid #D9D9D9;
    }

    /* boat listing page css start here */
    .listing-header-right-box {
        gap: 14px;
        margin-top: 25px;
    }

    .boat-card.list-view {
        display: unset;
    }

    .items-counter-box {}

    .items-counter-box p {
        color: var(--black-color);
        font-family: 'Urbane-Light';
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 24px;
    }

    /* .boatsHeading {
        color: var(--black-color);
        font-family: "Zilla Slab";
        font-size: 40px;
        font-style: normal;
        font-weight: 300;
        line-height: 48px;
    } */

    .sortWrapper select {
        width: 100%;
    }


    /* boat listing page css ends here */

    .contactHeaderFormSection {
        padding: 60px 30px;
    }

    .financingForm {
        width: 95%;
    }


    .white-to-gold-btn {
        padding: 8px 25px;
    }

    .black-to-gold-btn {
        padding: 8px 25px;
    }

    /* event page css start here */

    .event-listing-card {
        width: 100%;
    }


    /* parts page css start here */
    .parts-featured-content {
        margin-right: 0;
    }

    .reviews-card-box {
        width: 100%;
        padding: 13px 0;
    }

    .glimpse-card {
        width: 100%;
        padding: 20px 15px;
    }

    /* parts page css start here */
    .glimpse-sec {
        flex-wrap: wrap;
        padding: 50px 20px 50px 20px;
        gap: unset;
    }

    /* marine insurance page css start here */
    .coverage-list {
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    .descripotion-box {
        max-width: 100%;
    }

    /* brand page css start here */
    .inventory-container {
        padding-bottom: 15px;
    }

    .newsletter-box {
        padding: 55px 15px;
    }

    .inventory-card {
        width: 100%;
    }

    .inventory-card {
        padding: 20px 15px 0 15px;
    }

    .Listings-title-cta {
        text-align: center;
    }

    .listing-cta {
        position: static;
        margin-top: 32px;
    }

    .common-title-box {
        padding-top: 50px;
    }


    .brand-logo {
        max-width: 200px;
        margin: 0 auto 50px auto;
    }

    /* home page css start here */
    .specList li {
        font-size: 16px;
    }

    .featured-slider .featured-slider-content-col-2 {
        display: none;
    }

    .mobile-slider-prices {
        display: block;
    }

    .featured-boat-title {
        font-size: 18px;
    }

    .mobile-slider-prices ul {
        display: flex;
        justify-content: flex-start;
        gap: 15px;
        margin: 8px 0;
    }

    .mobile-slider-prices ul li {
        list-style: none;
    }

    .mobile-slider-prices ul li.price {
        color: var(--black-color);
        font-family: 'Urbane-Medium';
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
    }

    .mobile-slider-prices ul li.month-price {
        color: var(--black-color);
        font-family: 'Urbane-Light';
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 24px;
    }

    .home-container-fluid {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .reviews-slider-box {
        padding-left: 5px;
        padding-right: 5px;
    }

    .mobile-arrows {
        display: flex;
    }

    .reviews-slider-box {
        width: 100%;
        flex-direction: column;
    }

    .mobile-arrows {
        max-width: 90px;
        margin: 0 auto;
        gap: 10px;
    }

    .auther-name {
        margin-bottom: 40px;
    }

    .singleton-diffrence-col {
        width: 100%;
        padding: 20px 28px;
    }

    .featured-rounded-card-img {
        min-height: 400px;
    }

    /* home page css ends here */


    /* .grid-boat-card {
        width: 100% !important;
    }

    .grid-boat-card {
        width: 100% !important;
    } */
    .mobile-status-box ul {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
    }

    .mobile-title-box h6 {
        color: var(--black-color);
        font-family: 'Urbane-Semibold';
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .mobile-price-box ul li:nth-child(1) {
        list-style: none;
        color: var(--black-color);
        font-family: 'Urbane-Light';
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 20px;
        opacity: 0.6;
    }

    .mobile-price-box ul li:nth-child(2) {
        list-style: none;
        color: var(--black-color);
        font-family: 'Urbane-Light';
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 20px;
    }

    .mobile-status-box ul li {
        list-style: none;
        color: var(--light-Gray);
        font-family: 'Urbane-Light';
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 20px;
    }

    .mobile-price-box ul {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
    }

    .mobile-boat-content {
        margin-top: 5px;
    }

    .product-image {
        position: relative;
        padding-top: 66%;
    }

    .product-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .mobile-visibility {
        display: none !important;
    }

    .specs-cols {
        width: 100%;
    }

    p .specs-item p img {
        width: 15px;
        height: 15px;
    }

    .similar-boats-box {
        display: none;
    }

    .specs-row-box {
        gap: 0;
        flex-direction: column;
        padding: 0 0 0 0;
    }

    .whySellWithUsItem {
        margin-bottom: 30px;
    }

    .standOutSection {
        margin: 40px 0;
    }

    .whySellWithUsSection {
        margin: 40px 0;
    }

    .footerItemWrap {
        margin: 0 0 0 5%;
    }

    .footer-logo-box {
        margin: 0 0 0 5%;
    }

    .contactLocationHeading {
        font-size: 24px;
        line-height: 32px;
    }

    .main-message-unique {
        font-size: 25px;
        line-height: normal;
    }

    .sub-message-unique {
        font-size: 14px;
        line-height: normal;
    }

}

@media screen and (max-width: 576px) {
    .scripted-container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .accessiblity-title {
        font-size: 35px;
        line-height: 38px;
    }
    .mobileTopBar {
        padding: 8px 10px;
    }

    .mobileTopBarPhone {
        letter-spacing: 0px;
    }

    .mobileLocationInfoWrap {
        max-width: 150px;
    }

    .ext-list ul li .ext-list-icon {
        width: 30px;
        height: 30px;
        margin-top: 10px;
    }

    .ext-list ul li {
        align-items: flex-start;
    }

    .ext-list ul li .ext-list-content {
        padding-left: 15px;
    }

    .filter-accordion-content {
        padding: 10px 30px;
    }

    .selectStoreModalHeading {
        font-size: 32px;
        line-height: 36px;
    }

    .proshop-location-box-col {
        width: 100%;
    }

    .proshop-location-box {
        flex-wrap: wrap;
    }

    .specialListingHeadingWrap {
        padding-top: 45px;
    }

    .specialListingTitle {
        font-size: 28px;
        line-height: 35px;
        margin-bottom: 7px;
    }

    .sold-title {
        font-size: 33px;
    }

    .sold-content-wrapper {
        padding: 40px 25px;
    }

    .reviews-qoutation-icon {
        width: 25px;
        height: 25px;
    }

    .reviews-qoutation-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .reviews-card-content {
        width: calc(100% - 20px);
        padding-left: 15px;
    }

    /* repower page css start here */

    .repower-logo {
        max-width: 200px;
    }

    /* blog page css start here */

    .blog-content h2 {
        font-size: 20px;
    }

    /* event page css start here */

    .event-title a {
        font-size: 23px;
        line-height: 34px;
    }

    .event-listing-card {
        padding: 5px 10px;
    }

    /* home page css start here */

    .featured-content {
        padding: 25px 0 0 0;
    }

    .homeAboutSectionContentWrap {
        padding: 25px 0 0 0;
    }

    .central-banner-content .rich-text {
        font-size: 15px;
    }

    .central-banner-parent {
        top: 50%;
    }

    /* home page css ends here */

    .primaryBlackHeading {
        font-size: 32px;
        line-height: 36px;
    }

    .title-heading {
        font-size: 36px;
        line-height: 40px;
    }

    .mainHeading {
        font-size: 40px;
        line-height: 44px;
    }

    .similar-heading {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .mob-sticky-bar {
        padding: 17px 20px;
    }

    .modal-white-sec .popup_label {
        margin-bottom: 0;
    }

    .custom-modal-box {
        overflow-y: auto;
        max-width: 80%;
        width: 100%;
        border-radius: 10px;
    }

    .custom-modal-box .form-group {
        margin-bottom: 5px !important;
    }

    .modal-content-col {
        width: 100%;
        padding: 30px 25px;
    }

    .calculate-box {
        background: #1B75BC;
        padding: 20px 25px 80px 25px;
        position: unset;
    }

    .modal-content-col {
        width: 100%;
        padding: 30px 25px;
    }

    .availableStoreListingModal {
        padding: 36px 15px;
    }

    .rounded-card-title {
        font-size: 28px;
        line-height: 32px;
    }
}

@media screen and (max-width: 520px) {
    .btn-box {
        flex-wrap: wrap;
    }

    .contactAddressSection {
        margin: 580px 0 120px 0;
    }

    .faq-accordion {
        padding: 0 5px;
    }
}

@media screen and (max-width: 440px) {
    .offer-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .offer-header h6 {
        font-size: 15px;
    }

    .offer-box h5 {
        font-size: 14px;
    }

    .mobileLogoWrap {
        max-width: 220px;
    }

    .py-120 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .reviews-sec {
        padding: 0px 15px 50px 15px;
    }

    .financing-fetured-box {
        margin-bottom: 50px;
    }

    .singleton-diffrence-box {
        padding-top: 40px;
    }

    .central-banner {
        padding: 50px 0;
    }

    .home-banner-title {
        font-size: 45px;
        line-height: 50px;
    }

    .home-banner {
        min-height: 400px;
    }

    .featured-slider-sec {
        padding-top: 50px;
    }

    .slider-container .item {
        padding-bottom: 40px;
    }

    .slider-container {
        padding: 40px 20px 0px 20px;
    }

    .specs-box {
        gap: 20px;
    }

    .specs-icon-box {
        width: 35px;
        height: 35px;
    }

    .specs-icon-box img {
        width: 17px;
        height: 17px;
    }

    .specs-text-box {
        width: calc(100% - 35px);
    }

    .specs-col {
        gap: 12px;
        width: calc(100% / 2 - 11px);
    }
    
    .reviews-card {
        padding: 25px 15px;
    }

    .repower-checkbox {
        padding: 40px 20px;
    }

    .blog-details-content-box {
        padding: 20px 10px;
    }

    /* ===================++++++++++++++++++++++=================== */
    /* common code:: new boat detail page design starts here */

    .steps-header {
        margin: 25px 0;
    }

    .location-details-items {
        padding-right: 15px;
    }

    .location-details-items+.location-details-items::after {
        left: -7.5px;
    }

    .dealer-box {
        padding: 24px 15px;
    }

    .shadow-box {
        padding: 24px 15px;
    }

    .draggable-content-box-1 {
        padding: 10px 15px 20px 15px;
    }

    .steps-card {
        padding: 24px 15px;
    }
    /* ===================++++++++++++++++++++++=================== */
    /* common code:: new boat detail page design ends here */

    .home-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .contactAddressSection {
        margin: 680px 0 120px 0;
    }

    .contactHeaderHeading {
        font-size: 45px;
        line-height: normal;
    }

    .mobileTopBarPhone {
        font-weight: 400;
        font-size: 12px;
    }
}

@media screen and (max-width: 366px) {
    .zipCodeSearchBarWrapper {
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px 0;
        width: 100%;
        align-items: center;
    }

    .mobileLogoWrap {
        max-width: 160px;
    }

    .mob-sticky-bar {
        gap: 5px;
    }

    .white-sticky-btn {
        gap: 5px;
        flex-wrap: wrap;
    }

    .contactAddressSection {
        margin: 740px 0 120px 0;
    }

    .mobileLocationInfoWrap {
        max-width: 120px;
    }
}
