@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

/* common css starts here */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


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

a:hover {
    text-decoration: none;
}

:root {
    --gold-color: #AE8D32;
    --black-color: #000;
    --white-color: #FFF;
    --light-Gray: #D9D9D9;
    --Light-Gray: #D9D9D9;
    --Blue-1: #203A71;
    --Blue-2: #1892AA;
    --Black: #000;
    --White: #FFF;
}

@font-face {
    font-family: "LTC Metropolitan Pro";
    src: url('../fonts/LTC-Metropolitan-Pro/LTC-metropolitan-pro.ttf');
}

.primaryWhiteBtn {
    color: var(--Blue-1);
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    border-radius: 30px;
    border: 1px solid var(--Blue-2);
    background: var(--White, #FFF);
    padding: 12px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s;
}

.primaryWhiteBtn:hover {
    background-color: var(--Blue-2);
    color: var(--White);
}

.secondaryWhiteBtn {
    color: var(--Blue-2);
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    border-radius: 30px;
    background: var(--White, #FFF);
    padding: 12px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s;
}

.secondaryWhiteBtn:hover {
    background-color: var(--Blue-2);
    color: var(--White);
}


.blueBtn {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    border-radius: 30px;
    background-color: var(--Blue-1);
    padding: 12px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s;
    outline: none;
    border: 1px solid var(--Blue-1);
}

.blueBtn:hover {
    background-color: var(--Blue-2);
    border: 1px solid var(--Blue-2);
    color: var(--White);
}

.secondaryBlueBtn {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    border-radius: 30px;
    background-color: var(--Blue-2);
    padding: 12px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s;
    outline: none;
    border: 1px solid var(--Blue-2);
}

.secondaryBlueBtn:hover {
    color: var(--White);
}

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

.regularBlackPara {
    color: #000;
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.mainHeading {
    color: var(--Blue-1);
    text-align: center;
    font-family: Lexend;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.regularWhitePara {
    color: #FFF;
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.para-brand {
    color: #FFF;
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.headingWrap {
    margin-bottom: 42px;
}

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

.boldPara {
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.regularWhitePara {
    color: #FFF;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.colorTagWhite {
    color: var(--White, #FFF);
    text-align: center;
    font-family: "LTC Metropolitan Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

/* 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: var(--Blue-2);
    border-color: var(--Blue-2);
}

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

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

/* toggle button css ends here */

/* common css ends here */

/* 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);
}

.sectionReArranged {
    display: flex;
    gap: 80px;
    align-items: center;
}

.centralNavLink {
    color: #203A71;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}

.centralNavLink:hover{
    color: #203A71;
}

.headerSearchWrap {
    border-radius: 30px;
    border: 1px solid var(--Light-Gray, #D9D9D9);
    padding: 12px 16px;
    border-radius: 30px;
}

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

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

.resourcesIcon{
    cursor: pointer;
}

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

.headerResourcesBox {
    display: flex;
    align-items: center;
    gap: 21px;
}

.headerResourcesBox img {
    flex: 0 0 20px;
    max-width: 20px;
}

.headerResourcesText {
    color: var(--Blue-2);
    text-align: right;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
}

.headerResourcesText:hover{
    color: var(--Blue-2);
}

.locationDropdown {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.locationDropdown .fa{
    color: var(--Blue-1);
}

.header-location-box .selectStoreNumber {
    color: var(--Blue-1);
    text-align: right;
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
}

.headerSearchBox {
    border: none;
    outline: none;
    width: 100%;
}

.desktopLogoWrap {
    max-width: 320px;
}

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

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

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

.headerSearchWrap {
    margin-left: 41px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.selectedStoreName {
    color: var(--Blue-1);
    text-align: right;
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    display: inline-block;
    vertical-align: middle;
}

.locationDropdown .selectedStoreName {
    color: var(--Blue-1);
    text-align: right;
    font-family: Lexend;
    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;
}

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

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

.selectStoreMenu .selectedStoreName {
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; 
}

.storeLocationName {
    color: var(--Black);
    text-align: right;
    font-family: Lexend;
    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;
    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;
    max-width: 960px;
}

.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(--Blue-1);
    font-family: Lexend;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.zipCodeSearchBarWrapper {
    border-radius: 30px;
    border: 1px solid var(--Light-Gray);
    background: #FAFAFA;
    margin-bottom: 16px;
    margin: 0 10px 16px 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 15px;
}

.zipCodeSearchInput {
    border: none;
    outline: none;
    color: var(--Black, #000);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    background-color: #FAFAFA;
}

.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-color: rgba(24, 146, 170, 0.1);
    padding: 40px 36px 40px 36px;
}

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

.selectedStoreInfoWrap {
    max-width: 352px;
}

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

.selectedStoreLocationPara {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

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

.selectedStoreCity {
    color: var(--Blue-1);
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    text-align: right;
}

.selectedStoreStarName {
    color: var(--Blue-2);
    text-align: right;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
}

.selectedStorePhoneWrap {
    margin-top: 32px;
}

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

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

.availabelStoreCard {
    border-bottom: 1px solid #EEE;
    padding: 40px 36px 40px 36px;
}

.availableStoreInfoWrap {
    max-width: 352px;
}

.availableStoreInfoWrap {
    max-width: 352px;
}

.availableStoreTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.availableStoreLocationPara {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.availableStorePhone {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

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

.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: Lexend;
    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: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--Black);
}

.use-current-location {
    color: var(--Blue-1);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.use-current-location:hover {
    color: var(--Blue-1);
}



/* desktop nav css ends here */

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

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

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

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

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

.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: 24px;
}

.mobileSearchBarWrapper {
    position: fixed;
    top: 130px;
    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;
    z-index: 1000;
}

.mobileSearchBarWrapper .tt-suggestion {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #fff;
    height: 70vh;
    overflow-y: auto;
    z-index: 1001;
    padding: 0 24px;
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.25);
}

.conetntSectionContainer{
    padding: 10px 15px;
}

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

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

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

.mobileLocationInfoWrap {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    width: calc(100% - 130);
}

.mobilePhoneLocationWrap {
    color: var(--White);
    text-align: left;
    font-family: Lexend;
    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;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.phoneWrapper {
    width: 130px;
}

.mobileTopBarPhone {
    color: var(--White);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap;
}

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

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

.toggleClassForMobieSelectStoreMenu {
    transform: translateX(0);
}

.mobileSelectedStoreTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

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

.mobileBackArrow {
    cursor: pointer;
}

.mobileSelectStoreAddressPara {
    color: var(--Black);
    font-family: Lexend;
    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);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

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

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

/* mobile nav css ends here */

/* mobile mega menu css starts here */
.mobileNavMegaMenu {
    position: sticky;
    left: 0;
    top: 120px;
    width: 100%;
    background-color: #fff;
    padding: 30px;
    z-index: 20;
    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(--Blue-2);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.subMenuContentWrap {
    margin-top: 46px;
}

.subMenuHeading {
    color: var(--Black);
    font-family: Lexend;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.subMenuLink {
    padding: 12px 0;
}

.subMenuLinkText {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.subMenuLinkText:hover {
    color: var(--Black);
}

.mobileBoatsMenuCard {
    border: 1px solid #D9D9D9;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    height: 100%;
    min-height: 72px;
}

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

/* brand logos */
.mobileLogoWrapper {
    border-radius: 2px;
    border: 1px solid #EEE;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    height: 80px;
}

.mobileLogoInnerWrap {
    max-width: 139px;
}

.mobileLogoInnerWrap img {
    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);
    font-family: Lexend;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.mobileMenuLargeLink:hover {
    color: var(--Black);
}

.secondMobileMenuList {
    margin-top: 64px;
}

.mobileMenuSmallLink {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

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


/* mobile mega menu css ends here */


/* mega menus css starts here */
.boatsSalesMegaMenu {
    background-color: #fff;
    padding: 38px 0 88px 0;
    position: fixed;
    left: 0;
    top: 105px;
    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);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

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

.boatSalesSecondList {
    margin-top: 80px;
}


.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: 120px;
}

.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(--Blue-2);
}

.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: 105px;
    width: 100%;
    z-index: 15;
    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);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

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

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

.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: var(--Blue-2);
}



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

.specialBanner {
    background-color: #222222;
    padding: 22px 23px;
    border-radius: 10px;
}
.specialTag {
    margin-bottom: 18px;
    cursor: pointer;
}

.specialBoatTitle {
    color: white;
    text-align: center;
    font-family: Lexend;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}
.specialTagText {
    color: var(--white-color);
    text-align: center;
    font-family: Lexend;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    padding-bottom: 18px;
}
.gray-line-separator {
    background: lightgray;
    margin: 0;
}
.specialShortDescpWrap {
    margin-top: 13px;
}
.specialShortDescpText {
    color: white;
    text-align: center;
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}
.selectedstoreName {
    color: var(--Blue-1);
    text-align: right;
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.selectedStoreAddress {
    color: var(--Black);
    font-family: Lexend;
    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: 250px;
}

.selectedStorePhoneNumber {
    color: var(--Black);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; 
}

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

.selectedStoreInfoPara {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.changeSelectedLocationBtnWrap {
    margin-top: 40px;
}

.resourcesMegaMenu {
    position: fixed;
    right: 0;
    top: 105px;
    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);
    text-align: right;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

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

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

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

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

/* mega menus css ends here */


/* footer css starts here */
.footerWrapper {
    border-top: 1px solid #EEE;
}

.newsLetterSection {
    padding: 80px 0;
}

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

.newsLetterTextInnerWrap {
    max-width: 600px;
}

.socailWrap {
    text-align: center;
}

.socailHeading {
    color: var(--Blue-1);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

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

.socialIconWrap {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--Blue-2);
}

.socialIconWrap i {
    color: var(--White);
    font-size: 20px;
}

.newsLetterFormWrapper {
    max-width: 600px;
    margin: 0 auto;
}

.formField {
    border: none;
    outline: none;
    width: 100%;
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    background-color: #FAFAFA;
}
.formField:focus{
    border: none;
    outline: none;
    box-shadow: none;
    background-color: #FAFAFA;
}
/* Remove autofill background color */
.formField:-webkit-autofill,
.formField:-webkit-autofill:hover,
.formField:-webkit-autofill:focus,
.formField:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #FAFAFA inset !important;
    box-shadow: 0 0 0 1000px #FAFAFA inset !important;
    -webkit-text-fill-color: var(--Black) !important;
    border: none !important;
    outline: none !important;
}
.financing-form-field{
    position: relative;
}
.financing-form-field .focused-text{
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}
.financing-form-field .focused-field:placeholder-shown + .focused-text {
    top: 50%;
    font-size: 16px;
    opacity: 1;
    transform: translateY(-50%);
}
.formFieldWrap {
    border-radius: 30px;
    border: 1px solid var(--Light-Gray);
    background: #FAFAFA;
    padding: 12px 24px;
    margin-bottom: 16px;
    margin: 0 10px 16px 10px;
}

.footerSiteMapSection {
    background-color: #FAFAFA;
    padding: 80px 0;
}

.footerLogoWrapper {
    max-width: 320px;
}

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

.siteMapHeadingWrap {
    margin-bottom: 24px;
}

.siteMapHeading {
    color: var(--Blue-1);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.siteMapLink {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.siteMapLink:hover {
    color: var(--Black);
}

.siteMapLinkList {
    list-style: none;
}

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

.discalimerSection {
    background-color: #FAFAFA;
    padding: 64px 0 80px 0;
    border-top: 1px solid #D9D9D9;
}

.disclaimerWrapper {
    max-width: 720px;
}

.disclaimerWrapper a {
    color: var(--Black);
    font-family: Lexend;
    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;
}

.disclaimerWrapper a:hover {
    color: var(--Black);
}


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

.footerListItem {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    opacity: 0.6;
}

.footerListItem:hover {
    color: var(--Black);
}

.footerBottomInnerWrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footerBrandLink {
    color: var(--Black);
    text-align: right;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    opacity: 0.6;
}

.footerBrandLink:hover {
    color: var(--Black);
}

.footerListItem {
    position: relative;
}

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

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

.footerBottomWrapper {
    padding: 7px 0;
}

.hs-dependent-field ul{
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.hs-dependent-field label, span{
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; 
}
.modal-header .close span{
    font-size: 30px;
}

.hs_submit input[type="submit"]{
    color: var(--White, #FFF);
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    border-radius: 30px;
    background-color: var(--Blue-1);
    padding: 12px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s;
    outline: none;
    border: 1px solid var(--Blue-1);
}

.hs_submit input[type="submit"]:hover{
    background-color: var(--Blue-2);
    border: 1px solid var(--Blue-2);
    color: var(--White);
}

.newsLetterFormWrapper input[type="email"]{
    width: 100%;
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    background-color: #FAFAFA;
    border-radius: 30px;
    border: 1px solid var(--Light-Gray);
    background: #FAFAFA;
    padding: 12px 24px;
    max-width: 600px;
}

.newsLetterFormWrapper input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    vertical-align: middle;
}

/* Checked State */
.newsLetterFormWrapper input[type="checkbox"]:checked {
    background-color: var(--Blue-1); 
    border-color: var(--Blue-1);
}

/* Tick mark */
.newsLetterFormWrapper input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}





/* footer css ends here */


/* home page css starts here */
.homeHeaderSection {
    position: relative;
    padding-top: 56%;
    min-height: 450px;
}

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

.headerContent {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.headerHeading {
    color: var(--White);
    text-align: center;
    font-family: Lexend;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
}

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

.exclusiveCard {
    padding: 0 20px;
}

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

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

.exclusiveContentWrap {
    border-right: 1px solid var(--Light-Gray, #EEE);
    border-bottom: 1px solid var(--Light-Gray, #EEE);
    border-left: 1px solid var(--Light-Gray, #EEE);
    background: #FAFAFA;
    padding: 40px 40px 48px 40px;
    min-height: 275px;
}

.exclusiveCardTitle {
    color: var(--Blue-1);
    text-align: center;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.exclusiveParaWrap {
    margin: 24px 0 32px 0;
}

.sectionTextHeaderSection {
    max-width: 720px;
    margin: 0 auto;
}

.homeBrandCarouselWrap {
    margin-left: 5%;
    margin-top: 40px;
}

.homeBrandCarouselCard {
    position: relative;
    padding-top: 137%;
    min-height: 400px;
}

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

.homeBrandContent {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.homeBrandLogoWrap {
    width: fit-content;
    max-width: 200px;
    margin: 0 auto;
}

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

.marineDifferenceSection {
    margin: 100px 0 80px 0;
    background-color: #FAFAFA;
    padding: 74px 0;
}

.marineDifferenceCard {
    padding: 0 20px;
    text-align: center;
}

.marineDifferenceTitle {
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 12px;
}

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

.newArrivalHeadingAndBtnWrap {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newArrivalCard {
    padding: 0 20px;
}

.newArrivalImageWrap {
    position: relative;
    padding-top: 67%;
}

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

.newArrivalLengthWrap {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #fff;
    padding: 15px 21px 7px 21px;
    text-align: center;
}

.newArrivalLengthWrap img{
    width: 100%;
    max-width: 16px;
    margin: 0 auto;
}

.newArrivalLength {
    color: var(--Blue-2);
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.newArrivalContentWrap {
    margin-top: 8px;
}

.newArrivalTitle {
    color: var(--Blue-1);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

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

.newArrivalOriginalPrice {
    color: var(--Blue-1);
    text-align: right;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.newArrivalMontlyPrice {
    color: var(--Blue-1);
    text-align: right;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.newArrivalInfoPara {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--Blue-2);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.newArrivalBeforeLine {
    position: relative;
}

.newArrivalBeforeLine::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background-color: var(--Blue-2);
}

.walkerLocationSection {
    margin: 120px 0;
}

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

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

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

.homeLocationContent {
    margin-top: 8px;
}

.homeLocationTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.otherLinkCard {
    max-width: 624px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.otherLinkContentWrap {
    max-width: 560px;
}

.otherLinkTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.factorySection {
    margin: 80px 0;
}

.factoryCard {
    padding: 0 20px;
}

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

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

.factoryContentWrap {
    margin-top: 16px;
    max-width: 720px;
}

.factoryContentTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.colorTag {
    color: var(--Blue-2);
    text-align: center;
    font-family: "LTC Metropolitan Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

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

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

.homeEventDatePara {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    color: var(--Blue-2);
    text-align: center;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    padding: 12px 24px;
    background-color: #fff;
}

.homeEventContentWrap {
    max-width: 600px;
    margin: 36px auto 0 auto;
}

.homeEventTitle {
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.btnWrap {
    margin-top: 40px;
}

.homeEventCarousel {
    position: relative;
}

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

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

.homeBrandCarousel .owl-prev {
    position: absolute;
    left: -2%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff !important;
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.24));
    border-radius: 50% !important;
}

.homeBrandCarousel .owl-next {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff !important;
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.24));
    border-radius: 50% !important;
}

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

.homeAwardsSection {
    margin: 80px 0;
}

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

.squareAwardItem {
    max-width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.circleAwardItem {
    max-width: 133px;
    height: 133px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.homeEventSection{
    margin-bottom: 60px;
}
.award-wrapper{
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    /* margin-top: 46px; */
}
.award-center{
    justify-content: center !important;
    gap: 80px;
}
.award-item{
    position: relative;
    width: calc(100% / 4);
    /* padding: 40px; */
    width: 160px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.award-item:nth-child(2n){
    width: calc(100% / 4);
    /* padding: 40px; */
    width: 133px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.award-item p{
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    color: rgba(0, 0, 0, 0.40);
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
}
.award-item img{
    display: flex;
	justify-content: center;
	align-items: center;
    width: 160px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.newArrivalCarousel {
    position: relative;
}

.newArrivalCarousel .owl-prev{
    position: absolute;
    left: 0;
    top:45%;
    transform: translateY(-50%);
    background-color: #fff !important;
    width: 54px;
    height: 54px;
    filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.24));
    border-radius: 50% !important;
}

.newArrivalCarousel .owl-next{
    position: absolute;
    right: 0;
    top:45%;
    transform: translateY(-50%);
    background-color: #fff !important;
    width: 54px;
    height: 54px;
    filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.24));
    border-radius: 50% !important;
}
/* home page css ends here */

/* pro shop page css starts here */
.commonImageWrap {
    position: relative;
    padding-top: 75%;
    min-height: 400px;
}

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

.commonTextWrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

.commonTextInnerWrap {
    max-width: 680px;
}

.expectAtProshopSection {
    margin: 80px 0 104px 0;
}

.expectAtProShopCard {
    padding: 0 20px;
}

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

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

.expectAtProShopContent {
    margin-top: 16px;
}

.expectAtProShopHeadingWrap {
    margin-bottom: 72px;
}

.proShopExpectTitle {
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.whereToFindHeaderWrap {
    margin-bottom: 56px;
}

.proShopLocationImageWrap {
    position: relative;
    padding-top: 50%;
    min-height: 350px;
}

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

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

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

.proShopLocationTextInnerWrap {
    max-width: 377px;
    margin: 0 auto;
}

.proShopLocationTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.proShopLocationAddress {
    color: var(--Black);
    font-family: Lexend;
    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;
}

.proShopLocationPhone {
    color: var(--Blue-2);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.proShopLocationPhone:hover {
    color: var(--Blue-2);
}

.whereToFindProShop {
    margin-bottom: 80px;
}

.commonHeaderSection {
    position: relative;
    padding-top: 34%;
}

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

.commonHeaderContent {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.commonHeroSection {
    margin: 40px auto 64px auto;
    padding: 0 15px;
}

.commonHeroWrapper {
    max-width: 960px;
    margin: 0 auto;
}

.typicalCoverageSection {
    margin-bottom: 80px;
}

.typicalHeading {
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.typicalCoveragesWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 66px;
    margin-top: 32px;
}

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

.tickWrap {
    flex: 0 0 32px;
    height: 32px;
}

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

.typicalCoverageTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.formSection {
    border-top: 1px solid #D9D9D9;
    padding: 64px 0 120px 0;
}

.formHeadingWrap {
    margin-bottom: 64px;
}

.mainFormWrapper {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 15px;
}

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

/* pro shop page css ends here */

/* parts page css starts here */
.poweredByContainer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.poweredBImageWrap {
    max-width: 150px;
}

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

.partsInfoBarWrapper {
    background-color: var(--Blue-1);
    padding: 28px 15px;
}

.partsInfoBarText {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.infoBarColorText {
    color: var(--Blue-2);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

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

.whatStoreCard {
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
}

.whatStoreTitleWrap {
    margin: 24px 0 12px 0;
}

.whatStoreBtnWrap {
    margin-top: 64px;
    text-align: center;
}

/* parts page css ends here */

/* reviews page css starts here */
.reviewCard {
    margin: 0 20px 40px 20px;
    background-color: #FAFAFA;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.starsWrapper {
    max-width: 120px;
    margin: 0 auto;
}

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

.quotesWrapper {
    max-width: 40px;
    margin: 24px auto;
}

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

.reviewrName {
    color: #000;
    text-align: center;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.reviewCardInnerWrap {
    text-align: center;
    padding: 40px 40px 27px 40px;
}


/* reviews page css ends here */

/* staff page css starts here */
.flexBtnWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.staffCardSection {
    margin-bottom: 120px;
}

.staffCard {
    padding: 0 20px;
}

.staffImageWrap {
    position: relative;
    padding-top: 105%;
}

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

.staffTextWrap {
    background-color: #FAFAFA;
    padding: 16px 15px 28px 15px;
    border-bottom: 1px solid #EEE;
    border-left: 1px solid #EEE;
    border-right: 1px solid #EEE;
}

.staffName {
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.staffInfo {
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.staffLocationBeforeLine {
    position: relative;
}

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

.staffPhone {
    color: var(--Blue-2);
    text-align: center;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.staffPhone:hover {
    color: var(--Blue-2);
}

/* staff page css ends here */

/* financing page css starts here */
.colorBoldText {
    color: var(--Blue-2);
    text-align: center;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.financingformSection {
    margin: 64px 0 80px 0;
    min-height: 680px;
    background-image: url("../images/financing/financing-bg-image.webp");
    background-repeat: no-repeat; 
    background-size: cover;
    padding: 90px 15px;
    position: relative;
}

.financingForm {
    margin: 0 auto;
    max-width: 680px;
    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;
}

#monthly_payment_text{
    color: var(--white-color);
    text-align: right;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
}

.monthlyText{
    color: var(--Black);
    text-align: right;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; 
}

.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);
}

.loanCalculatorHeading{
    color: #000;
    text-align: center;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

/* financing page css ends here */

/* about page css starts here */
.ourMissionTextWrap {
    max-width: 440px;
}

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

.ourMissionCardTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.ourMissionAndValueSection {
    margin: 80px 0;
}

.customMargin {
    margin-bottom: 80px;
}

/* about page css ends here */

/* sell trade page css starts here */
.secondaryCommonHeaderSection {
    position: relative;
    padding-top: 29%;
    min-height: 450px;
}

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

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

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

.weBuyInnerWrap {
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
}

.buyStep {
    color: var(--Blue-2);
    text-align: center;
    font-family: Lexend;
    font-size: 80px;
    font-style: normal;
    font-weight: 100;
    line-height: 100px;
}

.buyStepTitle {
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.whySellHeadingWrap {
    margin-bottom: 56px;
}

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

.whySellTextWrap {
    max-width: 200px;
}

.whySellText {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.promiseSection {
    margin-bottom: 80px;
}

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

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

.promiseTextWrap {
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.promiseCardTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.promiseTextInnerWrap {
    max-width: 420px;
}

.formInnerHeading {
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin: 28px 0 40px 0;
}

.customMarginForFormField {
    margin: 0 10px 16px 10px;
}

.secondaryMainFormWrapper {
    max-width: 600px;
    margin: 0 auto;
}

.fileUploadFieldWrap {
    display: flex;
    align-items: center;
    border-radius: 30px;
    border: 1px solid #EEE;
    background-color: #FAFAFA;
}

.uploadContainer {
    display: flex;
    align-items: center;
    gap: 26px;
}

.resumeFormInput {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    opacity: 0.6;
}

/* sell trade page css ends here */

/* contact page css starts here */
.serveLocationSection {
    margin: 64px 0 120px 0;
}

.contactLocationCard {
    padding: 0 20px;
}

.contactLocationImageWrap {
    position: relative;
    padding-top: 50%;
}
/* .contactLocationImageWrap iframe {
   height: 400px;
   width: 100%;
} */

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

.contactLocationContentWrap {
    margin-top: 45px;
}

.contactLocationTitle {
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.addressPara {
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    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;
}

.contactLocationPhone {
    color: var(--Blue-2);
    text-align: center;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

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

.contactLocationInnerHeading {
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.contactBtnWrap {
    margin-top: 32px;
}

/* contact page css ends here */

/* service page css starts here */
#pageForm{
    scroll-margin-top: 100px;
}


.serviceSpecialImageWrap {
    position: relative;
    padding-top: 38%;
    /* min-height: 400px; */
}

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

.serviceCarousel {
    position: relative;
}

.serviceCarousel .owl-prev {
    position: absolute;
    left: -5%;
    top: 40%;
    transform: translateY(-50%);
}

.serviceCarousel .owl-next {
    position: absolute;
    right: -5%;
    top: 40%;
    transform: translateY(-50%);
}

.topServiceCard {
    padding: 0 20px;
}

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

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

.serviceContentWrap {
    margin-top: 16px;
}

.topServiceCardTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.topServiceSection {
    margin: 80px 0 120px 0;
}

.serviceLocationCard {
    padding: 0 20px;
    position: relative;
    margin-bottom: 90px;
}

.serviceLocationCardContent {
    background-color: #fff;
    padding: 16px 15px 15px 0;
    position: absolute;
    left: 0px;
    bottom: -20%;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
}

.serviceLocationTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.serviceLocationPhone {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.serviceLocationPhone:hover {
    color: var(--Black);
}

.serviceLocationMapWrap {
    min-height: 350px;
    position: relative;
    padding-top: 50%;
}

.serviceLocationMapWrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}
.serviceLocationMapWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* min-height: 440px; */
    position: absolute;
    top: 0;
    left: 0;
}
.mt-top{
    margin-bottom: 100px;
}

.serviceFeatureSection {
    padding: 100px 0 80px 0;
    background-color: #FAFAFA;
    margin-top: 40px;
}

.partsImageWrap {
    position: relative;
    padding-top: 56%;
}

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

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

.partsTextInnerWrap {
    max-width: 600px;
}

.partsSection {
    margin: 80px 0;
}

.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;
    border-radius: 30px;
    border: 2px solid var(--Blue-2);
    background: var(--White, #FFF);
}

.infoTabName h4 {
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.tabsContent {
    padding: 40px 40px 79px 40px;
    border-radius: 16px;
    border: 1px solid #EEE;
    background-color: #FAFAFA;
}

.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: Lexend;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 25px;
}

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

.mobileTabSection {
    margin: 40px auto;
}

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

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

.smallHeading {
    color: var(--Blue-2);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.mobileTabSection {
    padding: 40px 60px 56px 20px;
    background-color: #FAFAFA;
}

.mobileAdditionalServiceHeadingWrap {
    margin-bottom: 50px;
}

.additionalHeadingMobile {
    color: var(--Blue-1);
    text-align: center;
    font-family: Lexend;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.mobileServicesCard {
    border-radius: 30px;
    border: 1px solid var(--Black);
    background: var(--White);
    padding: 15px 24px;
    margin-bottom: 16px;
}

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

.mobileServiceHeading {
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.mobileServiceAnswerWrap {
    margin-top: 22px;
    display: none;
    position: relative;
    transition: all 0.4s;
}

.mobileServicesCard.activeMobileService {
    border: 1px solid #1892AA;
}

.mobileServicesCard .mobileServiceDropIcon {
    position: relative;
    transition: all 0.4s;
}


.mobileServicesCard.activeMobileService .mobileServiceAnswerWrap {
    display: block;
}

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

.mobileServicesCard.activeMobileService .mobileServiceHeading {
    color: var(--Blue-2);
}

.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 page css ends here */

/* location page css starts here */
.locationPageHeaderMediaWrap {
    position: relative;
    padding-top: 42%;
    min-height: 960px;
}

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

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

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

.locationTemplateCarouselWrap {
    margin: 64px 0;
}

.serviceAtThisLocationCard {
    padding: 0 20px;
}

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

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

.serviceAtThisLocationTextWrap {
    margin-top: 16px;
}

.serviceAtThislocationTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.locationMapAndAddressSection {
    margin: 120px 0 80px 0;
}

.locationPageMapWrapper {
    min-height: 480px;
}

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

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

.locationTextInnerWrap {
    max-width: 600px;
}

.locationPageSeparator {
    margin: 0;
    background-color: #EEE;
}

.locationInventorySection {
    margin: 64px 0 80px 0;
}

.customMarginForLocationInventoryCard {
    margin-bottom: 40px;
}

/* location page css ends here */

/* brand page template css starts here */
.brandLogoWrap {
    max-width: 200px;
    margin: 0 auto 40px auto;
}

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

.brandCarouselContentWrap {
    margin: 9px auto 0 auto;
    max-width: 600px;
}

.brandCarouselSection {
    margin: 80px 0;
}

.brandCarousel {
    position: relative;
}

.brandCarousel .owl-prev {
    position: absolute;
    left: -5%;
    top: 40%;
    transform: translateY(-50%);
}

.brandCarousel .owl-next {
    position: absolute;
    right: -5%;
    top: 40%;
    transform: translateY(-50%);
}

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

.faqTextSectionInnerWrap {
    max-width: 620px;
}

.brandFaqsSection {
    margin: 80px 0;
}

.branFaqsContainer {
    max-width: 720px;
    margin: 0 auto;
}

.brandFaqCard {
    padding: 24px 0;
    border-bottom: 1px solid #D9D9D9;
}

.brandFaqHeaderWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
    cursor: pointer;
}

.brandFaqHeaderWrap img {
    position: relative;
    transition: all 0.3s;
}

.brandFaq {
    color: var(--Black, #000);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.brandAnswerWrapper {
    display: none;
}

.activeAnswer {
    display: block;
}

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

/* brand page template css ends here */

/* repower page css starts here */
.repowerHeaderMediaWrapper {
    position: relative;
    padding-top: 31%;
    min-height: 400px;
}

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

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

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

.repowerInfoSection {
    padding: 44px 15px;
    background-color: #FAFAFA;
}

.repowerInfoCard {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.repowrInfoIconWrap {
    flex: 0 0 64px;
    height: 64px;
}

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

.repowerInfoTextWrap {
    max-width: 900px;
}

.repowerServiceSpecialSection {
    margin: 80px 0;
}

.mercuryOutBoardModelSection {
    margin: 64px 0 80px 0;
}

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

.repowerModelImageWrap {
    position: relative;
    padding-top: 120%;
    border: 1px solid #D9D9D9;
}

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

.repowerTextWrap {
    margin-top: 16px;
}

.repowerCardTitle {
    color: var(--Black, #000);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.repowerHeadingWrap {
    margin-bottom: 64px;
}

/* repower page ends starts here */

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

.blogHeaderSection::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0.3);
}

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

.blogHeaderContent {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    z-index: 3;
}

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

.topicListSearchWrap {
    display: flex;
    align-items: end;
    gap: 16px;
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    background-color: #FAFAFA;
    padding: 13px 16px;
}

.blogListingSearch {
    border: none;
    outline: none;
    color: var(--black-color);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    background-color: #fafafa;
}

.topicListContainer {
    margin-top: 40px;
}

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

.checkboxItem {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 15px;
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.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;
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

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

.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%;
    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);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.blogDetailBtn {
    color: var(--Blue-2);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.blogDetailBtn:hover {
    color: var(--Blue-2);
}
.blogDetailBtn span{
    color: var(--Blue-2);
    font-weight: 500 !important;
}

.secondaryColorTag {
    color: var(--Blue-1);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.noOfBlogs {
    color: var(--Black);
    text-align: right;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

/* blog listing page css ends here */

/* event listing page css starts here */
.eventLocationFieldWrapper {
    max-width: 500px;
    margin: 0 auto;
}


.eventListingCardSection {
    margin-bottom: 80px;
}

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

.eventListingCardImageWrap {
    position: relative;
    padding-top: 52%;
}

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

.downloadPdfBtnWrap {
    position: absolute;
    right: 16px;
    bottom: 16px;
    max-width: 48px;
}

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

.eventContentWrap {
    margin-top: 16px;
}

.eventListingCardTitle {
    color: var(--Black);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.eventListingDate {
    color: var(--Blue-2);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

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

.eventLocationPara {
    color: var(--Blue-2);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.eventListingDescpPara {
    color: var(--Black);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.eventListingHashTagPara {
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

/* event listing page css ends here */

/* event detial page css starts here */
.eventBoldText {
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

.eventDateTimeInfoWrapper {
    margin-top: 64px;
}

.eventInfoCard {
    margin: 0 12px;
    background-color: #FAFAFA;
    border: 1px solid #EEE;
    padding: 28px 20px 16px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eventInfoInnerWrap {
    max-width: 280px;
    text-align: center;
}

.eventDetailDatePara {
    color: var(--Black);
    text-align: center;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.eventDetailImageWrap {
    position: relative;
    padding-top: 101%;
}

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

.boatAtThisEventSection {
    margin: 64px 0 80px 0;
}

.memoriesSection {
    margin-bottom: 80px;
}

.formTagBold {
    color: var(--Blue-2);
    text-align: center;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.eventDetailHashTag{
    color: var(--Blue-1);
    text-align: center;
    font-family: Lexend;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    word-wrap: break-word;
}

/* event detial page css 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(--Blue-1);
    text-align: center;
    font-family: Lexend;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    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;
}

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

.breadcrumb-container {
    margin: 0 auto;
}

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

/* 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%;
    border-radius: 8px;
    overflow: hidden;
}

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

.specialListingContentWrap {
    margin-top: 16px;
}

.specialListingTitle {
    color: var(--Blue-1);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 590;
    line-height: 32px; 
    letter-spacing: 0.48px;
    margin-bottom: 8px;
}

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

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

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

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

.specialDetailHeaderSection {
    margin: 80px 0;
}

.specialEventTitle {
    color: var(--Blue-1);
    font-family: Lexend;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; 
}

.specialDetalContentWrap h1{
    color: var(--Blue-1);
    font-family: Lexend;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.specialListingBtnWrap {
    margin-top: 40px;
}

/* special listing page css ends here */

/* special detail page css starts here */
.specialDetaisHeaderSection {
    margin: 90px 0 80px 0;
}

.specialDetailCard{
    margin-bottom: 40px;
}

.specialHeaderContentWrap {
    max-width: 1080px;
    padding: 0 15px;
    margin: 0 auto;
}

.specialDetailImageWrap {
    position: relative;
    padding-top: 51%;
    border-radius: 8px;
    overflow: hidden;
}

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

.specialDetailContentWrap {
    margin-top: 40px;
}

/* special detail page css ends here */



/* Boats 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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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;
}

.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;
}


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

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

.lastLoad_btn button:hover{
    background: var(--Blue-2);
    border: 1px solid var(--Blue-2);
}

.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;
}

.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: Lexend;
    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;
}

.sortWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D9D9D9;
    height: 40px;
    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: Lexend;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}

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

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

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

.sortWrapper select {
    font-size: 16px;
    width: 160px;
    height: 35px !important;
    padding: 0 8px;
    border-radius: 0;
    background: #fff;
    margin-left: 10px;
    font-family: Lexend;
    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;
}

.store-location-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
    width: 100%;
}

.sbFilterLocation span {
    font-size: 14px;
    font-weight: 400
}

.store-location-box-header a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--Blue-1);
    padding: 8px 10px;
    border-radius: 8px;
}

.store-location-box-header a:hover{
    color: #fff;
}

/* breadCrum starts here */

.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: Lexend;
    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;
    color: #222;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 156.25% */
}

.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;
}

.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: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    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: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.filterBox .youSearchList li strong {
    font-family: Lexend;
    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: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

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

.filterOptions input {
    width: 100%;
    text-align: center;
    color: var(--black-color);
    font-family: 'Lexend';
    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;
}

/* .filterOptions > .filterList {
    padding: 12px;
} */

.filterBox .youSearchList span.pull-right.closX {
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

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

.sidWidget_iner {
    float: right;
    max-width: 100%;
    /*	padding: 30px 0;*/
    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
}


/* chekbox style start */

.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: Lexend;
    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);
}

/* new boat listing page css start here */

.listing-dealer-btn {
    color: var(--white-color);
    text-align: center;
    font-family: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

.listing-blue-btn {
    color: #FFF;
    text-align: center;
    font-family: Lexend;
    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: Lexend;
    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: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    letter-spacing: 1.2px;
}

/* grid view start here */

.grid-boat-card {
    /* display: none; */
    width: calc(100% / 3);
    padding: 7px;
    /* border: 1px solid var(--light-Gray); */
}

.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%;
    display: none;
}

.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: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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;
}

/* sold boat page css start here */

.sold-boat-title {
    color: var(--black-color);
    font-family: Lexend;
    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: Lexend;
    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: Lexend;
    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;
}

/* new boat details page design start here */

.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: #328DB0;
    font-family: Lexend;
    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: 10px;
}

.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: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
    width: 100%;
    height: 55px;
    border-bottom: 1px solid #D9D9D9;
    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: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.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: 10px 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: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
/* .specs-item span:nth-child(1) {
    color: var(--black-color);
    font-family: Lexend;
    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: Lexend;
    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; */
}

.specs-item span:nth-child(1) img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
}

.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(--Blue-1);
    font-family: Lexend;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.4px;
}

.original-price {
    color: var(--black-color);
    font-family: Lexend;
    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: Lexend;
    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;
}

.accordion-content.specc-show {
    display: block !important;
    padding-top: 40px;
}
.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;
}
.desktop-sahre-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 14;
}
.copyLinkWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.copyLinkWrapper .popup_input {
    width: calc(100% - 100px);
    height: 43px;
    border: 1px solid var(--Blue-1);
    margin-bottom: 0;
    padding: 0 10px 0 10px;
    color: var(--black-color);
}
.copyShareLinkBtn {
    text-align: center;
    background: var(--Blue-1);
    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;
}
.shareModalHeading {
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #1a1a1a;
    font-weight: 300;
}
.shareIconsContainer {
    display: flex;
    align-items: center;
    gap: 30px;
}
.shareIcons {
    border: 1px solid var(--Blue-1);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shareIconsContainer .fa-brands {
    color: var(--Blue-1);
}
.desktop-sahre-btn img {
    object-fit: contain;
}
.right-sidebar-sec-btn {
    color: var(--black-color);
    text-align: center;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 12px;
}

.inq-form-head {
    padding-top: 20px;
    padding-bottom: 32px;
}

.form-dark-header {
    background: var(--black-color);
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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;
}

.boat-details-sm-btn:hover {
    color: #FFF;
}

.call-now-btn {
    color: var(--white-color);
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: block;
    padding: 15px;
    border-radius: 30px;
    background: var(--Blue-2);
}

.call-now-btn:hover {
    color: #FFF;
}

.draggable-content.lock-scroll {
    overflow: hidden !important;
}

/* 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;
}

.boat-details-title {
    color: var(--black-color);
    font-family: Lexend;
    font-size: 24px;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: #000000 !important;
    color: white !important;
}

.boat-detail-carosuel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #000000 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
}

.boat-detail-carosuel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #000000 !important;
    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: #000000 !important;
}

.price-box h4 {
    color: #000;
    font-family: Lexend;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.4px;
}

.price-box h3 {
    color: #328DB0;
    font-family: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 16px;
    padding: 14px 25px;
    border: 1px solid #328DB026;
}

.details-form-btn {
    color: var(--Blue-1);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 25px;
    display: inline-block;
    border-radius: 30px;
    border: 1px solid var(--Blue-2);
    background: transparent;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.details-form-btn:hover {
    border: 1px solid var(--Blue-2);
    background: var(--Blue-2);
    color: var(--white-color);
    transition: all 0.4s;
}

.contact-dealer-form-box {}

.radio-box {
    display: flex;
    margin: 20px 0;
}

.radio-box label {
    color: #000 !important;
    font-family: Lexend;
    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: 8px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 999;
    display: none;
    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);
    overflow: hidden;
}

.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(--Blue-1);
    color: var(--dark-color);
    text-align: center;
    font-family: Lexend;
    font-size: 12px;
    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: 50px; */
    width: 100%;
}

.dark-sticky-btn {
    background: var(--Blue-1);
    color: var(--white-color);
    border: 1px solid var(--Blue-1);
    text-align: center;
    font-family: Lexend;
    font-size: 12px;
    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: 50px; */
    width: 100%;
}
.dark-sticky-btn:hover{
    color: var(--white-color);
}

.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: Lexend;
    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%;
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.modal-white-sec .popup_input::placeholder {
    font-family: Lexend;
    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: Lexend;
    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: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.32px;
}

.result_box h2 {
    color: var(--White);
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; 
    margin: 15px 0 22px 0 !important;
}

.result_box h3 {
    color: var(--white-color);
    font-family: Lexend;
    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(--Blue-1);
    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: var(--White);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; 
    cursor: pointer;
}

.stock-img {
    width: 18px !important;
    height: 15px !important;
}

.close-btn-2 {
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    color: var(--White);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; 
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 20px;
    padding: 7px 20px;
    cursor: pointer;
}

.close-btn-2 span{
    color: #fff;
} 

.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: Lexend;
    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: Lexend;
    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;
}
.financing-modal .modal-body iframe {
    min-height: 800px;
}
.dealer-form-box {
    display: flex;
    margin-bottom: 22px;
}

.disclaimer-modal .modal-body {
    padding: 30px 30px;
    color: rgba(0, 0, 0, 0.60);
    font-family: Lexend;
    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: Lexend;
    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: Lexend;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 1px;
}

.impelStyle iframe{
    height: 113% !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: Lexend;
        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: Lexend;
        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;
    }

    .specialContentWrapper{
        display: none;
    }

/* new boat detail page design ends here */

/* 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: Lexend;
    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: Lexend;
    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;
}

.clear-filter-bar {
    display: none;
}

.top_new_filter .inner_wrap_bt a img {
    width: 40px;
    height: 14px;
    object-fit: contain;
}

.sortby-btn a {
    border-radius: 20px !important;
    border: 1px solid #C4C4C4 !important;
    background: white !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: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 0px;
    border: 1px solid var(--black-color);
    border-radius: 50px;
    margin-left: 10px;
}

.mobile-filter-box {
    position: fixed;
    top: -900px;
    left: 0;
    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: 174px;
    /* 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: Lexend;
    ;
    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: Lexend;
    ;
    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(--light-Gray);
    display: none;
    position: sticky;
    top: 111px;
    left: 0;
    z-index: 100;
    background: var(--white-color);
}

.inner_wrap_filter .right_bt {
    padding: 8px 12px;
    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);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; 
}

.clearAllText {
    color: var(--black-color);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
}

.clearAllBtnWrap {
    display: flex;
    align-items: center;
    gap: 15px;
    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(--Black00);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; 
}

.compareListingCardPrice {
    color: var(--black-color);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.compareListingCardRemoveBtnWrap {
    margin-top: 38px;
}

.compareListinCardRemoveBtnText {
    color: var(--black-color);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

.compareListingCardRemoveBtn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 5px;
    cursor: pointer;
    color: var(--Black);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; 
}

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

.startCompareBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Blue-1);
    color: var(--White);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    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: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.hideCommonFeatureLablel {
    color: var(--Black, #000);
    font-family: Lexend;
    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 #D9D9D9;
    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: var(--Blue-1);
}

.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: Lexend;
    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: Lexend;
    font-size: 24px;
    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: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.compareBoatPrice {
    color: var(--black-color);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.compareBoatPriceBold {
    color: var(--black-color);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.compareCardBtnWrap {
    margin-top: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    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: Lexend;
    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: var(--Black);
    text-align: right;
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.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);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; 
    text-transform: uppercase;
}

.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: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 16px;
}

.monthly-price {
    color: var(--black-color);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.bold-price {
    color: var(--Black, #000);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    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: Lexend;
    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;
}

.dealer-btn {
    padding: 12px 19px;
}

.changeCompareBtn {
    color: var(--Blue-1);
    ;
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    border-radius: 30px;
    background-color: transparent;
    padding: 12px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s;
    outline: none;
    border: 1px solid var(--Blue-1);
}




/* Boats css end here  */



/* 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: var(--Black);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; 
    margin: 0px 0 16px 0;
}

/* Blog content (rich text) */

.blog-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.blog-content {
    font-family: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    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: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.blog-content table th {
    background: #f1f3f5;
    font-weight: 600;
    font-family: Lexend;
    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: Lexend;
    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(--Blue-1);
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 40px;
}

.sidebar-post {
    margin-bottom: 20px;
}

.sidebar-thumbnail-image {
    position: relative;
    padding-top: 60%;
    margin-bottom: 8px;
}

.tt-suggestion {
    position: absolute;
    right: 20%;
    top: 89px;
    width: 100%;
    max-width: 560px;
    /* padding: 10px; */
    background-color: #fff;
    max-height: 400px;
    overflow-y: auto;
    z-index: 999;
}

.tt-suggestion.hidden {
    display: none;
}

.inventorySearchResult {
    margin-bottom: 20px;
    background: #f9f9f9;
    border: 1px solid #f9f9f9;
}

.inventorySearchResult:hover {
    border: 1px solid var(--Blue-1);
}

.inventorySearchResult .imgContainer img {
    height: 100%;
}

.inventorySearchResult .invTitle {
    color: var(--Blue-1);
    font-family: Lexend;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

.invMiles{
    color: var(--Blue-1);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
}

.invMonthly{
    color: var(--Blue-2);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}

.inventorySearchResult .invPrice {
    color: var(--black-color);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}


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

.inventorySearchResult .invStock {
    color: var(--black-color);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.tt-suggestion1 .inventorySearchResult .invTitle {
    font-size: 16px;
}

.sidebar-thumbnail-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sidebar-title {
    color: var(--Black);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.subtitle {
    color: var(--Blue-2);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.custom-form-control {
    width: 100%;
    border: 1px solid var(--black-color);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    padding: 10px;
    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: Lexend !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 11px 19px !important;
    height: unset !important;
    width: 100%;
}

.sold-title {
    color: var(--black-color);
    font-family: Lexend;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin: 10px 0;
}

.sold-boat-title {
    color: var(--black-color);
    font-family: Lexend;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.clamp-two-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 3em;
    /* 1.5em × 2 lines */
    white-space: normal;
}


/* blog css ends */
.boat-listing-carousel {
    display: block !important;
}
.view-count-text{
    color: var(--Blue-1);;
    text-align: center;
    font-family: Lexend;
}

.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: Lexend;
    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: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-top: 24px;
}

@media(max-width: 1700px) {
    .desktopHeader {
        padding: 20px 40px 21px 40px;
    }

    .desktopLogoWrap {
        max-width: 250px;
    }

    .desktopNavLinkList {
        gap: 24px;
    }

    .desktopNavRightSection {
        gap: 30px;
    }

    .centralNavLink {
        letter-spacing: 0.4px;
    }


    /* Boats page css */

    .details-right-container {
        padding: 0 110px;
    }

    .details-left-container {
        padding-left: 110px;
    }

    /* boats page css ends */
}


@media(max-width: 1500px) {
    .desktopLogoWrap {
        max-width: 200px;
    }

    /* Boats page css */

    .details-right-container {
        padding: 0 90px;
    }

    .details-left-container {
        padding-left: 90px;
    }

    .selectStoreAndResourcesOptionWrap {
        gap: 24px;
    }

    .headerResourcesBox {
        gap: 24px;
    }

    .headerSearchWrap{
        margin-left: 0;
    }

    /* boats page css ends */
}


@media(max-width: 1100px) {
    .desktopLogoWrap {
        max-width: 140px;
    }

    .centralNavLink {
        font-size: 11px;
        letter-spacing: 0px;
    }

    .desktopNavRightSection {
        gap: 18px;
    }

    .selectStoreAndResourcesOptionWrap {
        gap: 10px;
    }
}

@media (max-width: 1440px) {
    .grid-boat-card {
        width: calc(100% / 2) !important;
    }

    .sectionReArranged{
        gap: 40px;
    }

    .desktopHeader {
        padding: 20px 15px 21px 15px;
    }

    .newArrivalTitle {
        font-size: 16px;
        text-align: left;
    }

    .newArrivalOriginalPrice {
        text-align: left;
        font-size: 16px;
    }

    .newArrivalInfoPara {
        gap: 20px;
    }

    .newArrivalBeforeLine::before {
        left: -10px;
    }

    /* Boats page css */

    .details-right-container {
        padding: 0 60px;
    }

    .details-left-container {
        padding-left: 60px;
    }

    /* boats page css ends */
}


@media (max-width: 1370px) {
    .desktopNavLinkList {
        gap: 15px;
    }

    .desktopNavRightSection {
        gap: 24px;
    }

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

    .centralNavLink {
        font-size: 14px;
        letter-spacing: 0px;
    }
}


@media (max-width: 1200px) {
    .headerSearchWrap {
        margin-left: 0;
        max-width: 200px;
    }

    .sectionReArranged {
        gap: 15px;
    }

    .headerSearchWrap{
            padding: 12px 6px;
    }

    .header-location-box{
        max-width: 150px;
    }

    .headerResourcesBox {
        gap: 10px;
    }

    .desktopHeaderInnerWrap {
        gap: 15px;
    }

    .homeEventCarousel .owl-prev {
        left: 0;
    }

    .homeEventCarousel .owl-next {
        right: 0;
    }

    .serviceCarousel .owl-next {
        right: 0;
    }

    .serviceCarousel .owl-prev {
        left: 0;
    }

    /* boats css */
    .grid-boat-card {
        width: calc(100% / 2) !important;
    }

    .details-right-container {
        padding: 0 60px;
    }

    .details-left-container {
        padding-left: 60px;
    }

    .breadCrumContainerListing {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .offer-header{
        max-width: unset;
        width: 100%;
    }

    /* boats css ends */
}

@media (max-width: 1100px) {
    .desktopLogoWrap {
        max-width: 150px;
    }

    .desktopNavLinkList {
        gap: 10px;
    }

    .exclusiveContentWrap {
        padding: 30px 15px 28px 15px;
    }
}


@media (max-width: 991px) {
    .award-wrapper {
        flex-wrap: wrap;
        row-gap: 10px;
        column-gap: 15px;
        padding-bottom: 50px;
        padding-left: 15px;
        padding-right: 15px
    }
    .award-item {
        margin: 15px 0;
    }
    .impelStyle iframe{
        height: 100% !important;
    }
    .sticky-bar-col {
        width: 50%;
    }

    .homeBrandCarouselCard {
        min-height: 400px;
    }

    .breadCrumContainerListing {
        padding-left: 0;
        padding-right: 0;
    }

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

    .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: Lexend;
        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: Lexend;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

    .clear-filter-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .clearFilterBtn {
        padding: 7px 0 7px 30px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-family: Lexend;
        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;
    }

    /* store css start here*/

    .selectStoreModalHeading {
        font-size: 40px;
        line-height: 48px;
    }

    .selectStoreModalTopBar {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .availabelStoreCard {
        padding: 15px;
    }

    /* store css ends here*/

    .desktopHeader {
        display: none;
    }

    .mobileHeader {
        display: block;
    }

    .footerLogoWrapper {
        margin: 0 auto 40px auto;
    }

    .exclusiveSection {
        margin: 44px 0 60px 0;
    }

    .headerHeading {
        font-family: Lexend;
        font-size: 44px;
        line-height: 48px;
    }

    .headerBtnWrap {
        margin-top: 30px;
    }

    .marineDifferenceSection {
        margin: 60px 0 40px 0;
    }

    .marineDifferenceSection {
        padding: 44px 0;
    }

    .walkerLocationSection {
        margin: 60px 0;
    }

    .factorySection {
        margin: 40px 0;
    }

    .mainHeading {
        font-size: 36px;
        line-height: 40px;
    }

    .eventDetailHashTag{
        font-size: 36px;
        line-height: 40px;
    }

    .commonSectionHeading {
        font-size: 36px;
        line-height: 40px;
    }

    .footerSiteMapSection {
        padding: 40px 0;
    }

    .discalimerSection {
        padding: 44px 0 40px 0;
    }

    .footerBottomInnerWrap {
        gap: 20px;
    }

    .newArrivalHeadingAndBtnWrap {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .topServiceSection {
        margin: 40px 0 60px 0;
    }

    .tabsSec {
        margin: 40px auto;
    }

    .tabsContent {
        padding: 20px 20px 49px 20px;
    }

    .partsSection {
        margin: 40px 0;
    }

    .formSection {
        padding: 44px 0 60px 0;
    }

    .formHeadingWrap {
        margin-bottom: 44px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .serviceFeatureSection {
        padding: 60px 0 40px 0;
    }

    .mobileTabSection {
        padding: 40px 20px 56px 20px;
        background-color: #FAFAFA;
    }

    .promiseSection {
        margin-bottom: 40px;
    }

    .locationMapAndAddressSection {
        margin: 60px 0 40px 0;
    }

    .brandCarousel .owl-prev {
        left: 0;
    }

    .brandCarousel .owl-next {
        right: 0;
    }

    .brandCarouselSection {
        margin: 40px 0;
    }

    .locationTemplateCarousel {
        margin: 44px 0;
    }

    .blogListingSection {
        margin-top: 48px;
        margin-bottom: 44px;
    }

    .blogListingCardTextWrap {
        text-align: center;
    }

    .eventListingCardSection {
        margin-bottom: 60px;
    }

    .boatAtThisEventSection {
        margin: 44px 0 60px 0;
    }

    .mercuryOutBoardModelSection {
        margin: 44px 0 40px 0;
    }

    .repowerHeadingWrap {
        margin-bottom: 40px;
    }

    .staffCardSection {
        margin-bottom: 60px;
    }

    .reviewCardInnerWrap {
        text-align: center;
        padding: 40px 15px 27px 15px;
    }

    .partsInfoBarWrapper {
        margin-top: 40px;
    }

    .whatInStoreSection {
        margin: 44px 0 60px 0;
    }

    .commonHeaderSection {
        min-height: 400px;
    }

    .typicalCoverageSection {
        margin-bottom: 40px;
    }

    .expectAtProshopSection {
        margin: 40px 0 64px 0;
    }

    .whereToFindProShop {
        margin-bottom: 40px;
    }

    .expectAtProShopHeadingWrap {
        margin-bottom: 42px;
    }

    .newArrivalCarouselWrap {
        margin-left: 5%;
    }


    /* Boats page Css */


    .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);
    }

    .close-filter {
        position: absolute;
        top: 3px;
        right: 10px;
        padding: 15px;
        font-size: 20px;
        z-index: 50;
    }

    .range-line {
        padding-left: 20px;
        padding-right: 20px;
    }

    .range-slider-box.show-range-filter {
        top: 174px;
    }

    .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: Lexend;
        ;
        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;
    }

    .listing-header {
        align-items: flex-start;
        padding-left: 7px;
    }

    .boatsHeading {
        font-size: 22px;
        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;
    }

    .grid-boat-card {
        display: block;
    }

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

    .mob-sticky-bar {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .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;
    }

    .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 {
        border-top: 1px solid #D3D3D3;
        border-bottom: 1px solid #EEE;
        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;
    }

    .commonHeaderContent {
    
    }

    .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;
    }
    .headingWrap{
        padding-left: 15px;
        padding-right: 15px
    }

    .contactLocationCard {
        padding: 0 15px;
    }

    /* boat details page css start here */
    .mobile-gallery {
        display: block !important;
        padding-bottom: 30vh;
    }

    .draggable-wrapper-header {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 20px 20px 0 0;
        background: var(--Blue-1);
        padding: 8px 30px;
        padding: 10px 30px 28px 30px;
    }

    .mobile-boat-title {
        color: var(--white-color);
        font-family: Lexend;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        text-align: center;
    }

    .calc-icon {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        color: var(--white-color);
        font-family: Lexend;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    /* .draggable-wrapper-header h4 {
        color: var(--white-color);
        font-family: Lexend;
        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: Lexend;
        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: Lexend;
        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;
    }

    .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: Lexend;
        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: Lexend;
        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: Lexend;
        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: Lexend;
        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(--Blue-1);
        ;
        font-family: Lexend;
        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(--Blue-1);
        font-family: Lexend;
        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: Lexend;
        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: Lexend;
        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: Lexend;
        font-size: 16px;
        font-style: normal;
        font-weight: 900;
        line-height: 24px;
        letter-spacing: -0.32px;
    }


    /* Rich dynamic content styling */
    .rich-dynamic-content {
        font-family: Lexend;
        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: Lexend;
        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: Lexend;
        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: Lexend;
        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: 1.5em;
    }

    .rich-dynamic-content li {
        margin-bottom: 0.4em;
        color: var(--black-color);
        font-family: Lexend;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }

    /* 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: Lexend;
        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: Lexend;
        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: Lexend;
        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: Lexend;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }

    .blog-details-container {
    gap: 40px;
    }

    /* 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;
        }
        .blog-details-container {
        flex-direction: column;
        }
        .backToBlogBtnWrap{
            margin-top: 15px;
        }

    }


    /* dragabble wrapper css start here */

    .gallery-images {
        position: relative;
        padding-top: 57%;
        margin-bottom: 8px;
    }

    .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;
    }

    /* ----- 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%;
}

    .drag-handle-icon {
        border-radius: 20px 20px 0 0;
        margin: -19px auto 0px auto;
        cursor: grab;
        text-align: center;
        background: var(--white-color);
        padding-top: 10px;
    }

    .draggable-content {
        height: calc(100% - 30px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 150px;
    }

    .draggable-content-box-1 {
        padding: 10px 20px 20px 20px;
    }

    .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;
    } */

    body.lock-scroll {
        overflow: hidden;
    }

    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;
    }

    .details-right-container {
        width: 100%;
        margin: 40px auto 0 auto;
        padding: 0;
    }

    .details-left-container {
        width: 100%;
        padding-left: 0px;
    }

    .sold-content-wrapper {
        padding-left: 0px;
        margin-top: 15px;
    }

    .sortWrapper{
        display: none;
    }


    /* Boats page css ends */

    .homeEventSection {
        margin-bottom: 60px;
    }
    .locationPageHeaderMediaWrap{
        min-height: 450px;
    }
    .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;
    }

}

@media screen and (min-width: 768px) {
    .boat-card.list-view {
        display: unset !important;
    }

    .grid-boat-card.grid-view {
        display: block !important;
    }

    .product-image,
    .toggler-button-box {
        display: none;
    }
}

@media(max-width: 767px) {
    .backToBlogBtn{
        padding-left: 20px;
        padding-right: 20px;
    }
    .eventListingCard {
        padding: 0 10px;
    }
    .whySellSection{
        padding-left: 15px;
        padding-right: 15px;
    }
    .headerContent {
        padding-left: 15px;
        padding-right: 15px;
    }
    .secondaryMainFormWrapper{
        padding-left: 15px;
        padding-right: 15px;
    }
    .sectionTextHeaderSection {
        padding-left: 20px;
        padding-right: 20px;
    }
    .homeEventCarousel .owl-nav{
        display: none !important;
    }

    .blogHeaderContent {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .specs-col {
        display: flex;
        gap: 12px;
        width: calc(100% / 2 - 36px);
    }

    .listing-header-right-box {
        gap: 14px;
        margin-top: 25px;
        width: 100%;
    }

    .sortWrapper {
        width: 100%;
        justify-content: flex-start;
    }

    .sortWrapper select {
        width: 100%;
    }

    .compareCardTopBarTitle {
        color: var(--Black);
        font-family: Lexend;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px; 
        letter-spacing: -0.32px;
    }

    .compareListingCardTitle {
        color: var(--Black);
        font-family: Lexend;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px; 
        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;
    }

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

    .product-image img {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .mobile-visibility {
        display: none !important;
    }

    .grid-boat-card {
        width: 100% !important;
    }

    .homeLocationCard {
        padding: 0 8px;
    }

    .boat-card.list-view {
        display: unset !important;
    }

    .mobile-title-box h6 {
        color: var(--black-color);
        font-family: Lexend;
        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) {
        color: var(--black-color);
        font-family: Lexend;
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 20px;
        opacity: 0.6;
        list-style: none;
    }

    .mobile-price-box ul li:nth-child(2) {
        color: var(--black-color);
        font-family: Lexend;
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 20px;
        list-style: none;
    }

    .mobile-status-box ul li {
        color: var(--light-Gray);
        font-family: Lexend;
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 20px;
        list-style: none;
    }

    .mobile-status-box ul {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
    }

    .mobile-price-box ul {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
    }

    .mobile-boat-content {
        margin-top: 5px;
    }

    .selectedStoreCardInnerWrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .availableStoreSecondaryPart {
        max-width: 250px;
    }

        .clearAllText {
        color: var(--Black);
        text-align: center;
        font-family: Lexend;
        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;
    }

    .compareAccordionInfoWrapper tr {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .compareAccordionInfoWrapper tr td {
        width: 50%;
        border: 1px solid #eee;
    }

    .invetoryListingCompareCard {
        padding-bottom: 15px;
    }

    .compareCardTopBar {
        padding-bottom: 15px;
    }

    .comparingCard {
        margin: 0;
    }
}

@media(max-width: 576px) {
    .modal-title {
        font-size: 20px;
    }
    .availableStoreListingModal {
        padding: 36px 12px;
    }

    .selectStoreModalHeading {
        font-size: 32px;
        line-height: 36px;
    }

    .availableStoreInfoWrap {
        max-width: 100%;
    }

    .availabelStoreCard {
        padding: 25px 15px;
    }

    .headerHeading {
        font-size: 36px;
        line-height: 40px;
    }

    .mainHeading {
        font-size: 32px;
        line-height: 36px;
    }

    .eventDetailHashTag{
        font-size: 24px;
        line-height: 30px;
    }

    .commonSectionHeading {
        font-size: 32px;
        line-height: 36px;
    }

    .homeLocationTitle {
        font-size: 20px;
        line-height: 24px;
    }

    .zipCodeSearchBarWrapper {
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px 0;
    }
    .contactLocationContentWrap{
        margin-top: 20px;
    }
    .serviceCarousel .owl-prev{
        top: 15%;
    }
    .serviceCarousel .owl-next{
        top: 15%;
    }
}

@media(max-width: 400px) {
    .mobileLogoWrap {
        max-width: 140px;
    }

    .mob-sticky-bar {
        gap: 5px;
    }
    
    .white-sticky-btn {
        gap: 5px;
    }

    .eventDetailHashTag {
        font-size: 22px;
        line-height: 26px;
    }
}


@media(max-width: 350px) {
        .eventDetailHashTag {
        font-size: 20px;
        line-height: 24px;
    }
}

