﻿@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,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;
}

html {
    scroll-behavior: smooth;
}

.alert{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

#notify_message{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    z-index: 999;
}

.alert-success{
    background-color: #28a745;
    padding: 10px 0;
}

.alert-danger{
    background-color: #dc3545;
    padding: 10px 0;
}

.whiteYellowBtn {
    color: #FFF;
    font-family: Kanit;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: all 0.4s;
    border: none;
    outline: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.whiteYellowBtn:hover {
    color: #FFD203;
    margin-left: 5px;
}

.blueYellowBtn {
    color: #003560;
    font-family: Kanit;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: all 0.4s;
    border: none;
    outline: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.blueYellowBtn:hover {
    color: #003560;
    margin-left: 5px;
}

.btnArrow {
    margin-left: 10px;
}

.whiteYellowBtnBlueBg {
    color: #FFF;
    font-family: Kanit;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background-color: #003560;
    padding: 7px 38px 8px 38px;
    transition: all 0.3s;
    border: none;
    outline: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.whiteYellowBtnBlueBg:hover {
    color: #FFD203;
    padding-left: 43px;
    padding-right: 33px;
}

.whiteYellowBtnDarkBlueBg {
    color: #FFF;
    font-family: Kanit;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background-color: #1B1D36;
    padding: 7px 38px 8px 38px;
    transition: all 0.3s;
    border: none;
    outline: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.whiteYellowBtnDarkBlueBg:hover {
    color: #FFD203;
    padding-left: 43px;
    padding-right: 33px;
}

.whiteYellowBtnBlueBgClip {
    color: #FFF;
    font-family: Kanit;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background-color: #003560;
    padding: 7px 38px 8px 38px;
    transition: all 0.3s;
    border: none;
    outline: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 100% 100%, 0% 100%);
    text-align: center;
}

.whiteYellowBtnBlueBgClip:hover {
    color: #FFD203;
    padding-left: 43px;
    padding-right: 33px;
}

.redBtn {
    border: none;
    outline: none;
    color: #FFF;
    text-align: center;
    font-family: Kanit;
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    background-color: #C8192A;
    padding: 12px 30px;
    transition: all 0.4s;
    cursor: pointer;
}

.redBtn:hover {
    background-color: #dd091e;
}

.blueRedBtn {
    color: #003560;
    font-family: Kanit;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: none;
    outline: none;
    transition: all 0.4s;
}

.blueRedBtn:hover {
    color: #C8192A;
    margin-left: 5px;
}

.blueMainHeading {
    color: #003560;
    font-family: Kanit;
    font-size: 50px;
    font-style: italic;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 1.5px;
}

.whiteMainHeading {
    color: #FFF;
    font-family: Kanit;
    font-size: 50px;
    font-style: italic;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 1.5px;
}

.smallBlueHeading {
    color: #003560;
    font-family: Kanit;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.whiteParaText {
    color: #FFF;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.redPhoneNumber {
    color: #C8192A;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.redPhoneNumber:hover {
    color: #C8192A;
}

/* common css ends here */


/* desktop nav css starts here */
.desktopHeader {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 10;
}

.navWrapper {
    border-bottom: 1px solid #EEE;
    background: #FFF;
}

.burgerBarWrapper {
    cursor: pointer;
    width: 39px;
    height: 32px;
}

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

.navBarContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 100px 17px 100px;
}

.navMenuSectionWrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.navContactAndSearchWrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.menuListItem {
    color: #003560;
    font-family: Kanit;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    transition: all 0.4s;
}

.menuListItem:hover {
    color: #C8192A;
}

.searchIcon {
    cursor: pointer;
}

.navLogoContainer {
    max-width: 300px;
}

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

.navSearchBar {
    padding: 3px 10px;
    outline: none;
    font-family: Kanit;
    border: 1px solid #003560;
    border-radius: 4px;
    background-color: transparent;
    font-size: 16px;
    display: none;
}

/* side menu bar css starts here */
.sideMenuBar {
    position: fixed;
    width: 370px;
    height: 100vh;
    background-color: #fff;
    z-index: 15;
    top: 0;
    left: 0;
    padding: 20px;
    transition: all 0.3s;
}

.translateSideBar {
    transform: translateX(-100%);
}

.sideMenuCrossIcon {
    cursor: pointer;
}

.sideMenuContentWrapper {
    padding: 0 40px;
}

.sideBarHeadingWrapper {
    margin-top: 6vh;
    margin-bottom: 6vh;
}

.sideBarHeading {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.sideBarMenuUnitWrapper {
    margin-bottom: 7vh;
}

.megeMenuOptionsHeadingWrapper {
    margin-bottom: 20px;
}

.megeMenuOptionsHeading {
    color: #003560;
    font-family: Kanit;
    font-size: 25px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.25px;
}

.megaMenuList {
    list-style: none;
}

.megaMenuLink {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.megaMenuLink:hover {
    color: #1B1D36;
}

.megaMenuList li {
    margin-bottom: 10px;
}

.sideBarSocialIconWrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
}

/* side menu bar css ends here */

/* mega menus css starts here */
.salesMegaMenu {
    background-color: #fff;
    padding: 20px;
    display: none;
}

.changeMenuColor {
    color: #C8192A;
}

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

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

.megaMenuCardTitleWrapper {
    margin-top: 4.56px;
}

.megaMenuCardTitle {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.megaMenuCard {
    padding: 10px;
}

.categoriesCutomMargin {
    margin-left: -5px;
}

.salesCloseIcon {
    cursor: pointer;
}


.serviceMenu {
    position: relative;
}

.serviceMegaMenu {
    position: absolute;
    background-color: #fff;
    top: 44px;
    width: 300px;
    padding: 40px 0px;
    padding-left: 70px;
    display: none;
}

.serviceMegaMenu ul {
    list-style: none;
}

.serviceMegaMenu::before {
    content: '';
    position: absolute;
    background-color: #fff;
    height: 100%;
    width: 150vw;
    left: -100%;
    top: 0;
    z-index: -1;
}


.serviceMegaMenu ul li {
    margin-bottom: 10px;
}

.serviceCloseIconWrapper {
    position: absolute;
    right: 20px;
    z-index: 5;
    padding: 20px 0;
    cursor: pointer;
    display: none;
}

/* mega menus css ends here */


/* desktop nav css ends here */


/* mobile nav css starts here */
.mobileHeader {
    position: fixed;
    width: 100vw;
    left: 0;
    top: 0;
    background-color: #FFFFFF;
    padding: 15px 20px;
    display: none;
    z-index: 10;
}

.mobileHeaderWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobileLogoContainer {
    max-width: 400px;
}

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

.mobileBurger {
    transition: all 0.4s;
}

.mobileBurgerWrapper {
    cursor: pointer;
    width: 36.563px;
    height: 30px;
}

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

.blueMobileBarWrapper {
    display: none;
}
.mobileHeaderPhoneWrapper .menuListItem{
    color: #fff;
}

.blueMobileBar {
    margin-top: 100px;
    background-color: #003560;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whiteSerachIcon {
    cursor: pointer;
}

.mobileHeaderPhone {
    color: #FFF;
    font-family: Kanit;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.mobileHeaderPhone:hover {
    color: #FFF;
}

.mobileNavSearchBar {
    outline: none;
    padding: 3px 10px;
    outline: none;
    font-family: Kanit;
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    display: none;
}

/* mobile mega menu css starts here */
.mobileMegaMenuContainer {
    background-color: #003560;
    position: absolute;
    left: 0;
    top: 99%;
    z-index: 300;
    width: 100%;
    padding: 20px 0px;
    display: none;
}

.mobMegaMenu {
    color: #fff;
    font-family: Kanit;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.5px;
    text-align: left;
    text-decoration-skip-ink: none;

}

.mobMegaMenu:hover {
    color: #fff;
}

.mobMegaMenuLink {
    color: #fff;
    font-family: Kanit;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-align: left;
    text-decoration-skip-ink: none;
    padding: 10px 12px;
}

.mobMegaMenuLink:hover {
    color: #fff;
}


.mobileMegaMenuContainer ul {
    list-style: none;
}

.mobileMegaMenuContainer ul li {
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobMenuBreakLine {
    background-color: #fff;
}

.innerDropDown {
    margin: 5px 0;
}

.innerMenuList {
    padding: 0 15px;
    margin: 10px 0;
    display: none;
}

/* mobile mega menu css ends here */

/* mobile nav css ends here */

/* home page css starts here */
.homeHeaderSection {
    position: relative;
    padding-top: 36%;
    margin-top: 80px;
}

.homeHeaderSection .homeHeaderVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.homeHeaderSectionSpecial {
    position: relative;
    padding-top: 56%;
    margin-top: 80px;
    max-height: 600px;
}

.homeHeaderSectionSpecial .homeHeaderVideoSpecial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.homeHeaderBtnMobileWrapper {
    display: none;
}

.homeHeaderSectionSpecial .coloredBanner {
    height: calc(100% / 7);
}

.homeHeaderText {
    position: absolute;
    bottom: 10%;
    left: 10%;
    z-index: 2;
}

.headerMainheading {
    color: #FFF;
    font-family: Kanit;
    font-size: 50px;
    font-style: italic;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 1.5px;
}

.heaerMainPara {
    color: #FFF;
    font-family: Kanit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.homeHeaderBtnWrapper {
    margin-top: 80px;
}

.headerBannerContainer {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    height: 100%;
}

.coloredBanner {
    height: calc(100% / 5);
}

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

.homeFiltersection {
    padding: 28px 0 27px 0;
}

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

.filterSelectField {
    width: 300px;
    border: 2px solid #EEE;
    background-color: #FFF;
    padding: 10px 30px;
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.48px;
    outline: none;
    appearance: none;
    background-image: url("../images/home/dropDownIcon.png");
    background-repeat: no-repeat;
    background-position: right 30px center;
}

.promotionSection {
    background-color: #003560;
    padding: 61px 0 129px 5%;
}

.promotionHeading {
    color: #FFF;
    text-align: right;
    font-family: Kanit;
    font-size: 50px;
    font-style: italic;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 1.5px;
    padding-right: 10%;
}

.promoCarouselWrqapper {
    margin-top: 40px
}

.promotionImageContainer {
    position: relative;
    padding-top: 55%;
}

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

.promotionHeadingWrapper {
    position: absolute;
    bottom: 40px;
    right: 60px;
}

.promotionItemHeading {
    color: #FFF;
    text-align: right;
    font-family: Kanit;
    font-size: 30px;
    font-style: italic;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.9px;
}

.promotionCarousel .owl-nav {
    position: absolute;
    bottom: -20%;
    right: 8%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}

.owl-theme .owl-nav [class*=owl-]:hover{
    background-color: transparent;
}

.promotionCarousel .owl-nav .owl-prev span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.promotionCarousel .owl-nav .owl-prev span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.promotionCarousel .owl-nav .owl-next span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.promotionCarousel .owl-nav .owl-next span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.featuredInventorySection {
    margin-top: 100px;
    margin-bottom: 65px;
}

.featuredInventoryCarouselWrapper {
    margin-top: 40px;
    padding-left: 9%;
}

.fearuredInventoryCarousel {
    margin-top: 40px;
}

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

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

.featuredCardTextWrapper {
    border: 1px solid #EEE;
    background-color: #FAFAFA;
    padding: 12px 10px 16px 30px;
}

.featuredCardHeading {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.6px;
}

.featuredCardPrice {
    color: #C8192A;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.48px;
}

.textSeparator {
    color: rgba(0, 0, 0, 0.60);
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0.48px;
    margin: 0 6px;
}

.fearuredCardLocation {
    color: rgba(0, 0, 0, 0.60);
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0.48px;
}

.fearuredInventoryCarousel {
    position: relative;
}

.fearuredInventoryCarousel .owl-nav {
    position: absolute;
    bottom: -25%;
    right: 8%;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    display: flex !important;
}

.fearuredInventoryCarousel .owl-nav .owl-prev span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.fearuredInventoryCarousel .owl-nav .owl-prev span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.fearuredInventoryCarousel .owl-nav .owl-next span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.fearuredInventoryCarousel .owl-nav .owl-next span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.brandsSection {
    margin-top: 125px;
}

.brandHeadingWrapper {
    padding-left: 9%;
    margin-bottom: 40px;
}

.brandCarousel {
    position: relative;
}

.brandImageContainer {
    position: relative;
    padding-top: 41%;
}

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

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

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

.brandCarousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 75px;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.brandCarousel .owl-dots span {
    display: inline-flex;
    width: 10px;
    height: 5px !important;
    border-radius: 3px;
    background-color: #FFFFFF66 !important;
}

.brandCarousel .owl-dot.active span {
    display: inline-flex;
    width: 30px;
    height: 5px;
    border-radius: 3px;
    background-color: #FFF !important;
}

.brandLogoContainer {
    position: absolute;
    bottom: 75px;
    right: 10%;
}

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

.brandLinkwrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    position: absolute;
    bottom: 75px;
    left: 10%;
}

.homeIntroSection {
    background-color: #1B1D36;
    padding: 150px 0;
}

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

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

.introTextContainer {
    max-width: 700px;
}

.introMainText {
    margin: 40px 0;
}

.introRedHeading {
    color: #C8192A;
    font-family: Kanit;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
}

.introPara {
    color: #FFF;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.facilitySectionWapper {
    margin: 150px 0;
}

.facilityImageContainer {
    position: relative;
    padding-top: 31%;
}

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

.facilityLinksContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 138px;
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
}


.facilityLink {
    background-color: #003560;
    text-align: right;
    padding: 45px 94px 55px 0;
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.facilityLink:hover {
    background-color: #C8192A;
}

.facilityFirst {
    width: 50%;
}

.facilityFirst:hover {
    width: 55%;
}

.facilitySecond {
    width: 45%;
}

.facilitySecond:hover {
    width: 50%;
}

.facilityThird {
    width: 40%;
}

.facilityThird:hover {
    width: 45%;
}

.facilityLinkText {
    color: #FFF;
    text-align: right;
    font-family: Kanit;
    font-size: 50px;
    font-style: italic;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 1.5px;
}

.linksSectionWrapper {
    margin-bottom: 100px;
}

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

.linksBtn {
    width: 350px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0
}

.recentlySoldInventorySection {
    margin-bottom: 180px;
}

.recentlySoldInventory {
    margin-top: 40px;
}

.fearuredInventoryCarousel {
    position: relative;
}

.recentlySoldInventory .owl-nav {
    position: absolute;
    bottom: -25%;
    right: 8%;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    display: flex !important;
}

.recentlySoldInventory .owl-nav .owl-prev span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.recentlySoldInventory .owl-nav .owl-prev span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.recentlySoldInventory .owl-nav .owl-next span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.recentlySoldInventory .owl-nav .owl-next span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.recentlySoldInventoryTextWrapper {
    padding: 12px 10px 16px 30px;
}

.filterSearchMobileBtn {
    display: none;
}

.quickSearchHeading {
    color: #003560;
    font-family: Kanit;
    font-size: 30px;
    font-style: italic;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.9px;
    display: none;
}

/* home page css ends here */

/* footer css starts here */
.fot-logo{
    max-width: 100px;
    width: 100%;
    margin-top: 30px;
}
.fot-logo img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.footerFormWrapper {
    background-color: #003560;
    padding: 56px 0;
}

.footerFormWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 169px;
}

.footerParaText {
    color: #FFF;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

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

.inputFieldWrapper {
    width: 300px;
}

.inputFieldWrapper .footerInputField {
    width: 100%;
    border: 1px solid #EEE;
    background-color: #FFF;
    outline: none;
    padding: 10px 10px 10px 30px;
    color: rgba(27, 29, 54, 0.60);
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.48px;
}

.footerLinksSectionWrapper {
    padding-top: 100px;
}

.footerLinkHeading {
    color: #003560;
    font-family: Kanit;
    font-size: 25px;
    font-style: italic;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.75px;
}

.footerLinks {
    list-style: none;
    margin-top: 20px;
}

.footerLinks li {
    margin-bottom: 5px;
}

.footerLinksItem {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.footerLinksItem:hover {
    color: #1B1D36;
}

.footerLogoContainer {
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: end;
}

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

.footerLoactionLinksWrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
}

.socilIconsContainer {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.socialIcons {
    background-color: #1C4D78;
    color: #fff;
    font-size: 18px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.socialIcons:hover {
    color: #fff;
}

.footerBottom {
    margin-top: 71px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}


.footerBottomLink {
    color: #1B1D36;
    text-align: right;
    font-family: Kanit;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.42px;
}

.footerBottomLink:hover {
    color: #1B1D36;
}

.footeBottomAfter {
    position: relative;
}

.footeBottomAfter::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 14px;
    background-color: #1B1D36;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.colorBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.colorBarRed {
    background-color: #C8192A;
    height: 16px;
    width: calc(100% / 3);
    clip-path: polygon(0% 0%, 100% 0%, 99% 100%, 100% 100%, 0% 100%);
}

.colorBarYellow {
    background-color: #FFD203;
    height: 16px;
    width: calc(100% / 3);
    clip-path: polygon(1% 0%, 100% 0%, 99% 100%, 100% 100%, 0% 100%);
    margin: 0 -30px;
    flex-grow: 1;
}

.colorBarBlue {
    background-color: #1C4D78;
    height: 16px;
    width: calc(100% / 3);
    clip-path: polygon(1% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%);
}

/* footer css ends here */

/* boats page css start hree */

/* .boats-container {
  padding-top: 100px;
} */

.inventory-heading {
    color: #777;
    font-family: "AnekOdia-Bold";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 3px;

}

.boat-card-image {
    position: relative;
    padding-top: 66.3%;
}

.vacation-rentals-image {
    position: relative;
    padding-top: 57%;
}

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

.vacation-card-title {
    color: #000;
    text-align: center;
    font-family: Kanit;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 35px;
    letter-spacing: 1px;
}

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

.boat-title h5 a {
    color: #000;
    font-family: Kanit;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 150% */
    letter-spacing: 1px;
}

.boat-title h5 a {
    text-decoration: none;
    color: #000;
}

.payment-sec p {
    color: #001067;
    font-family: Kanit;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.9px;
    margin-bottom: 0;
}

.custom-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
    border-bottom: 1px solid #000;
    margin: 20px 0px 0px 0px;
    cursor: pointer;
}

.custom-card-header i.fa {
    display: none;
}

.custom-card-header span.fa {
    display: block;
    color: #1C4D78;
    font-weight: bold;
    font-size: 20px;
}

.card-content {
    display: none;
    padding: 15px 0;
}

.custom-card-header h2 {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;

}

.filter-search-box {
    border: none !important;
}

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

.custom-search-view ul {
    padding-left: 0;
}

.custom-search-view ul li {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
}

.custom-card-header .fa {
    color: #1C4D78;
    font-size: 20px;
}

.custom-search-view ul .closX {
    cursor: pointer;
}

.rotate180deg {
    transform: rotate(180deg);
}

.no-border {
    border: none;
}

.custom-body {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

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

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

.boat-inventory-cond-list .cond-list-item {
    list-style: none;
    position: relative;
    padding-right: 30px;
    color: #696969;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.8px;
    text-transform: capitalize;
}

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


.boat-seprator {
    padding-top: 140px;
    border-left: 1px solid #F0F0F0;
}

/* filter  */
.youSearchList li span strong {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.8px;
}

.youSearchList li span {

    font-family: Kanit;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    letter-spacing: 0.05em;
    text-align: left;
}

.left_tabs {
    padding-top: 140px;
    padding-left: 40px;
    padding-right: 41px;
}

.inner_wrap_filter {
    display: flex;
    align-items: center;
}

.inner_wrap_filter a {
    text-transform: uppercase;
    color: #fff;
    font-family: Kanit;
    font-size: 18px;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 0.9px;
    display: flex;
}

.filter_btn .fa {
    color: #fff;
}


.inner_wrap_filter a:focus {
    outline: none;
    box-shadow: none;
}

.inner_wrap_filter a span {
    padding-left: 10px;
}

.inner_wrap_filter .left_btn {
    border-right: 1px solid #D3D3D3;
    padding: 11px 8px;
    background-color: #003560;
    color: #fff;
}

.top_new_filter {
    border-top: 1px solid #D3D3D3;
    border-bottom: 1px solid #D3D3D3;
    display: none;
}

.inner_wrap_filter .right_bt {
    padding: 8px 3px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    overflow-x: auto;
}

.top_new_filter .inner_wrap_bt {
    border: 1px solid #003560;
    border-radius: 30px;
}

.top_new_filter .inner_wrap_bt a {
    padding: 7px 10px;
    display: inline-block;
    min-width: 150px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-family: Kanit;
    font-size: 18px;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 0.9px;
    background: #003560;
    border-radius: 30px;
}

.top_des_fil .close_btn {
    display: none;

}

.new_768 .close_btn {
    display: block;
    width: 100%;
    text-align: right;
    border-bottom: 1px solid #dfdfdf;
    padding-right: 20px;
    padding-bottom: 10px;
}

.sqr-checkBox label input {
    margin-right: 10px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.sqr-checkBox label span {
    font-family: Kanit;
    cursor: pointer;
    color: #000;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.8px;
}

.new_768 .close_btn a {
    color: #003560;
    font-size: 20px;
}

.new_768 {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    background-color: #fff;
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
    padding: 10px 0px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    display: none !important;
}


.card-header span {
    display: none !important;
}

.card-header .fa-angle-down {
    display: none !important;
}

.card-header .fa-angle-up {
    display: none !important;
}

.new_one {
    display: block !important;
}

.filterHeading {
    color: #171717;
    font-family: Kanit;
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.boatOption {
    color: #171717;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    line-height: 20px;
    width: 100%;
    padding: 5px 10px;
    outline: none;
}

.brandInventoryImageContainer {
    position: relative;
    padding-top: 65%;
}

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

.brandInventoryCard {
    margin-bottom: 40px;
}

.brandCardContent {
    margin-top: 12px;
}

.branContactLine {
    color: #1B1D36;
    text-align: center;
    font-family: Kanit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.54px;
}

.colorText {
    color: #C8192A;
    font-family: Kanit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.54px;
}

.brandContactLineWrapper {
    margin: 50px 0 100px 0;
}

/* boat listing page css end here */

/* service department page css starts here */
.serviceDetailSectionWrapper {
    margin: 100px 0;
}

.serviceDetailImageContainer {
    width: 100%;
    height: 100%;
    max-width: 900px;
}

.alignServiceImageEnd {
    display: flex;
    justify-content: flex-end;
}

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

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

.serviceDetailTextWrapper {
    max-width: 700px;
}

.serviceDetailTag {
    color: #C8192A;
    font-family: Kanit;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
}

.blackParaText {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.16px;
}

.blackParaTextNoSpace {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

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

.serviceSpecsList {
    list-style: inside;
}

.serviceSpecsList li {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.16px;
}

.workImageContainer img {
    width: 100%;
    height:260px;
    object-fit: cover;
}

.workHeadingWrapper {
    margin: 20px 0;
}

.workCardWrapper {
    padding: 0 30px;
}

.serviceGallerySection {
    margin-bottom: 200px;
}

.serviceGalleryHeadingWrapper {
    margin-bottom: 55px;
}

.serviceGalleryCarousel .owl-nav {
    position: absolute;
    bottom: -25%;
    right: 8%;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    display: flex !important;
}

.serviceGalleryCarousel .owl-nav .owl-prev span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.serviceGalleryCarousel .owl-nav .owl-prev span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.serviceGalleryCarousel .owl-nav .owl-next span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.serviceGalleryCarousel .owl-nav .owl-next span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

/* service department page css ends here */


/* factory authorized page css starts here */
.factoryAuthorizedSection {
    margin: 140px 0 100px 0;
}

.seviceBrandsLogoContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 120px;
    margin-bottom: 100px;
}

.serviceBrandLogoWrapper {
    max-width: 250px;
}

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

/* factory authorized page css ends here */


/* location page css starts here */
.locationSection {
    margin: 140px 0 50px 0;
}

.locationheadingWrapper {
    margin-bottom: 60px;
}

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

.locationTextWrapper {
    margin-top: 20px;
}

.locationCardHeading {
    color: #112342;
    font-family: Kanit;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.locationCardPara {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}

.locationTextSparator {
    margin: 0 8px;
}

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

/* location page css ends here */

/* status pages css starsts here */
.statusSectionWrapper {
    margin: 160px 0 100px 0;
}

.statusPageBtnWrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* status pages css ends here */


/* location place page css starts here */
.stroageCardImagContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.storageCardWrapper {
    padding: 0 60px;
}

.storageHeadingWrapper {
    margin-bottom: 60px;
}

.storageHeadingWrapper {
    padding-left: 40px;
}

/* location place page css ends here */


/* appraisals page css starts here */
.formSection {
    background-color: #1B1D36;
    padding: 80px 0 95px 0;
}

#serviceFormWrapper {
    scroll-margin-top: 100px;
}

.mainFormWrapper {
    max-width: 641px;
    margin: 0 auto;
}

.formHeadingWrapper {
    margin-bottom: 60px;
}

.inputWrapper {
    margin-bottom: 20px;
}

.formInput {
    width: 100%;
    outline: none;
    border: 1px solid #EEE;
    background: #FFF;
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.48px;
    padding: 10px 10px 10px 20px;
}

.customFormPaddingRight {
    padding-right: 20px !important;
}

.customBorderRight {
    border-right: 1px solid rgba(255, 255, 255, 0.40);
}

.customFormPaddingLeft {
    padding-left: 20px !important;
}

.textAreaWrapper {
    margin-top: 20px;
    margin-bottom: 40px;
}


/* appraisals page css ends here */

/* brand pages css starts here */
.homeHeaderBtnWrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brandAvailableInventorySection {
    margin: 100px auto 90px auto;
    max-width: 1650px;
    padding: 0 15px;
}

.availableInvenoryHeadingContainer {
    margin-bottom: 40px;
}

/* brand pages css ends here */


/* service form page css starts here */
.serviceContactSection {
    max-width: 1520px;
    margin: 160px auto 100px auto;
}

.serviceContactCardHeading {
    color: #FFF;
    text-align: center;
    font-family: Kanit;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.66px;
    text-transform: uppercase;
}

.serviceContactCardWrapper {
    border: 1px solid #EEE;
    background-color: #1B1D36;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 47px;
    margin: 0 20px;
}

.serviceContactPhoneWrapper {
    margin: 20px 0 25px 0;
}

.serviceContactPhone {
    color: #FFF;
    text-align: center;
    font-family: Kanit;
    font-size: 50px;
    font-style: italic;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 1.5px;
}

.serviceContactPhone:hover {
    color: #FFF;
}

.serviceContactEmail {
    color: #FFF;
    text-align: center;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.48px;
}

.serviceContactEmail:hover {
    color: #fff;
}

.requestServiceSection {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 15px;
}

.requestServiceSectionWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.requestHeadingWrapper {
    max-width: 600px;
}

.requestParaWrapper {
    max-width: 800px;
}

.serviceRateSection {
    margin: 110px auto 100px auto;
    max-width: 1520px;
    padding: 0 15px;
}


.serviceRateHeadingWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.serviceRateMiniText {
    color: #112342;
    font-family: Kanit;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 0.66px;
}



.serviceRateBoxHeading {
    color: #112342;
    text-align: center;
    font-family: Kanit;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.66px;
    text-transform: uppercase;
}

.serviceRateCardsWrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 220px;
}

.serviceRateBoxWrapper {
    border: 2px solid #EEE;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.serviceRateParawraper {
    margin-top: 20px;
}

.serviceRatePara {
    color: #112342;
    text-align: center;
    font-family: Kanit;
    font-size: 50px;
    font-style: italic;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 1.5px;
}

.serviceRateMiniPara {
    color: #112342;
    text-align: center;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.48px;
}

/* service form page css ends here */

/* broker page css starts here */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-style: normal;
  color: #003b49;
}

.custom-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}
.brokerage-text-box h6{
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.16px;
}
.meetBrokersSection {
    margin: 100px auto 90px auto;
    max-width: 1650px;
}

.brokersContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}
.brokerContacts {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}
.brokerContacts a{
    color: #1C4D78;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.brokerImageContainer .broker-cpyb-cert{
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
}

.brokerBox {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.brokerImageContainer {
    width: 150px;
    height: 150px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

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

.brokerImageContainer .broker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.brokerTextContainer {
    margin-top: 20px;
}

.brokerName {
    color: #1B1D36;
    text-align: center;
    font-family: Kanit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.6px;
}

.brokerPhonNumber {
    color: #1C4D78;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.48px;
}

.brokerPhonNumber:hover {
    color: #1C4D78;
}

.brokerLocation {
    color: rgba(0, 0, 0, 0.60);
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0.48px;
}

.mainServiceSection {
    background-color: #1B1D36;
    padding: 100px 0 33px 0;
}

.mainServiceInnerWrapper {
    max-width: 1520px;
    margin: 0 auto;
    position: relative;
}

.mainServiceHeadingWrapper {
    margin-bottom: 84px;
    padding-left: 15px;
}

.mainServiceCardWrapper {
    max-width: 470px;
    margin-bottom: 65px;
}

.mainServiceImageContainer {
    cursor: pointer;
}

.mainServiceCardTitle {
    color: #FFF;
    font-family: Kanit;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.mainServicePara {
    color: #FFF;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.mainServiceRequestBtnWrapper {
    position: absolute;
    right: 0;
    bottom: 5%;
}

/* broker page css ends here */

/* crew page css starts here */
.crewTextContainer {
    max-width: 650px;
}

.crewSectionWrapper {
    margin: 160px 0 100px 0;
}

/* crew page css ends here */

/* events page css starts here */
.eventHeadingWrapper {
    margin: 140px 0 60px 0;
}

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

.eventImageContainer {
    position: relative;
    padding-top: 61%;
}

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

.eventTextWrapper {
    margin-top: 20px;
}

.eventTitle {
    color: #112342;
    font-family: Kanit;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.eventDate {
    color: #C8192A;
    font-family: Kanit;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.eventsCardContainer {
    margin-bottom: 80px;
}

/* events page css ends here */

/* event detail page css starts here */
.eventDetailTopSection {
    margin: 160px 0 100px 0;
}


.eventInfoSection {
    max-width: 1400px;
    margin: 100px auto 200px auto;
    padding: 0 15px;
}

.evnetInfoCardsContainer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.eventInfoCard {
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 100% 100%, 0% 100%);
    background-color: #1B1D36;
    width: 460px;
    padding: 42px 0;
    text-align: center;
    min-height: 220px;
}

.eventInfoMainText {
    color: #FFF;
    text-align: center;
    font-family: Kanit;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.eventAddress {
    color: #FFF;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.8px;
}

.eventInfoHeading {
    color: #FFF;
    text-align: center;
    font-family: Kanit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 1.8px;
}

.brandsOnDisplaySection {
    max-width: 1620px;
    margin: 100px auto;
    padding: 0 15px;
}
.tt-suggestion {
    position: absolute;
    right:0;
    top:151px;
    width: 100%;
    max-width: 900px;
    /* padding: 10px; */
    background-color: #fff;
    max-height: 400px;
    overflow-y: auto;
    z-index: 999;
    display: none;
  }
  
  .tt-suggestion.hidden {
    display: none;
  }
  .tt-suggestion-mobile.hidden {
  display: none;
  }
  .inventorySearchResult {
    margin-bottom: 20px;
    background: #f9f9f9;
    border: 1px solid #f9f9f9;
  }
  .inventorySearchResult:hover{
    border: 1px solid #ca2123;
  }
  .inventorySearchResult .imgContainer img{
    height: 100%;
  }
  .inventorySearchResult .invTitle{
    font-size: 20px;
  }
  .inventorySearchResult .invPrice {
    color: #ca2123;
  }
  .inventorySearchResult .invStock {
    color: #ca2123;
  }
  .conetntSectionContainer {
    padding: 15px 30px;
    color: black;
  }
  .tt-suggestion1 .conetntSectionContainer {
    padding: 15px 13px;
    color: black;
  }
  .tt-suggestion1 .inventorySearchResult .invTitle{
    font-size: 16px;
  }
  #boat_search{
    height: 36px;
    width: 220px;
  }
  #boat_search:focus{
    border: 1px solid black;
    outline: none;
    border-radius: 2px;
  }
  #boat_search.hidden{
    display: none;
  }

.brandsOnDisplayContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.brandOnDisplayLogoWrapper {
    flex: 0 0 280px;
}

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

.secondaryFormWrapper {
    max-width: 350px;
    margin: 0 auto;
}

.eventGalleryCarousel .owl-nav {
    position: absolute;
    bottom: -25%;
    right: 8%;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    display: flex !important;
}

.eventGalleryCarousel .owl-nav .owl-prev span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.eventGalleryCarousel .owl-nav .owl-prev span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.eventGalleryCarousel .owl-nav .owl-next span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.eventGalleryCarousel .owl-nav .owl-next span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

/* event detail page css ends here */

/* blog page css starts here */
.blogTabContainer {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogTabsList {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    list-style: none;
}

.blogTab {
    border: none;
    outline: none;
    background-color: #fff;
    color: #1B1D36;
    font-family: Kanit;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.66px;
    text-transform: uppercase;
    padding-bottom: 5px;
    transition: all 0.2s;
}

.activeBlogTab {
    border-bottom: 3px solid #C8192A;
}

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

.blogImageContainer {
    position: relative;
    padding-top: 61%;
}

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

.blogTextWrapper {
    margin-top: 20px;
}

.blogDate {
    color: rgba(27, 29, 54, 0.50);
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.readMore {
    color: #C8192A;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

/* blogs page css ends here */

/* blog detail page css starts here */
.blogDetailPageWrapper {
    margin: 150px 0 120px 0;
}

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

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

.blogDetailTextContainer {
    margin-top: 40px;
}

.blogHeading {
    color: #003560;
    font-family: Kanit;
    font-size: 35px;
    font-style: italic;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 1.05px;
}

.blogDate {
    color: rgba(27, 29, 54, 0.50);
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.blogPara {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.similarPostsContainer {
    padding-left: 50px;
}

.similarPostHeaderWrapper {
    margin-bottom: 40px;
}

.similarPostTitleWrapper {
    margin-top: 10px;
}

.similarPostCard {
    margin-bottom: 40px;
}

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

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

.similarPostTitle {
    color: #112342;
    font-family: Kanit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.selectInput {
    appearance: none;
    background-image: url("../images/event-detail/down-arrow.png");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

/* blog detail page css ends here */

/* loc door page css starts here */
.locDoorGalleryCarousel .owl-nav {
    position: absolute;
    bottom: -25%;
    right: 8%;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    display: flex !important;
}

.locDoorGalleryCarousel .owl-nav .owl-prev span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.locDoorGalleryCarousel .owl-nav .owl-prev span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.locDoorGalleryCarousel .owl-nav .owl-next span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.locDoorGalleryCarousel .owl-nav .owl-next span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.slipsSection {
    max-width: 1520px;
    margin: 0 auto 100px auto;
}

.slipsImageContainer {
    height: 100%;
}

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

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

.slipsSection .slipsImageContainer {
    width: 50%;
}

.slipsSection .serviceDetailTextContainer {
    width: 50%;
}

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

.offeredServiceCard {
    flex: 0 0 350px;
}

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

.offeredServiceTextWrapper {
    margin-top: 20px;
}

.offeredServiceCardTitle {
    color: #003560;
    font-family: Kanit;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.offeredServiceParaWrapper {
    margin-top: 20px;
    min-height: 84px;
}

.offeredSercviceBtnWrapper {
    margin-top: 40px;
}

.cottageSection {
    margin-top: 140px;
    background-color: #1B1D36;
    padding: 100px 0 150px 0;
}

.cottageGalleryWrapper {
    max-width: 1670px;
    margin: 0 auto;
}

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

/* loc door page css ends here */

/* about page css starts here */
.serviceDetailImageContainer .locationMap {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutGalleryCarousel .owl-nav {
    position: absolute;
    bottom: -25%;
    right: 8%;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    display: flex !important;
}

.aboutGalleryCarousel .owl-nav .owl-prev span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.aboutGalleryCarousel .owl-nav .owl-prev span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.aboutGalleryCarousel .owl-nav .owl-next span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.aboutGalleryCarousel .owl-nav .owl-next span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.swissBoatersSection {
    margin: 80px auto 188px auto;
    max-width: 930px;
    padding: 0 15px;
}

.swissHeaderWrapper {
    margin-bottom: 40px;
}

.storySectinWrapper {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 15px
}

.storySectionCards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 117px;
    margin: 60px 0;
}

.storyTextContainer {
    width: 50%;
}

.storyCardImageContainer {
    width: 50%;
    height: 100%;
}

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

.boldText {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

/* about page css ends here */

/* parts page css starts here */
.factoryCertifiedSection {
    margin: 100px 0;
}

.factoryCertifiedHeader {
    margin-bottom: 80px;
}

.certifiedBrandLogoContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-bottom: 100px;
}

.certifiedLogoWrapper {
    max-width: 180px;
}

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

.partsSpecsList {
    list-style: inside;
}

.partsHeadTag {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.16px;
}

.partsSpecsList li {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.16px;
}

.partsDetailSectionWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    margin: 100px 0;
}

.partsDetailImageContainer {
    width: 50%;
    height: 100%;
}

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

.partsDetailTextContainer {
    width: 50%;
    height: 100%;
}

.bluePhoneText {
    color: #1C4D78;
    font-family: Kanit;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.22px;
}

.bluePhoneText:hover {
    color: #1C4D78;
}

.partsCustomPadding {
    padding-left: 8%
}

/* parts page css ends here */

/* slips page css starts here */
.badges-box{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}
.badge-img{
    max-width: 150px;
    width: 100%;
}
.badge-img img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.slipsGalleryContent {
    margin-top: 10px;
}

.slipsGalleryHeading {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.slipsGalleryCarousel .owl-nav {
    position: absolute;
    bottom: -25%;
    right: 8%;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    display: flex !important;
}

.slipsGalleryCarousel .owl-nav .owl-prev span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.slipsGalleryCarousel .owl-nav .owl-prev span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.slipsGalleryCarousel .owl-nav .owl-next span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.slipsGalleryCarousel .owl-nav .owl-next span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.ratesBlockWrapper {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 120px;
}

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

.slipsRatesContentWrapper {
    margin-top: 57px;
}

.slipsRateTagLineWrapper {
    margin: 10px 0;
}

.slipsRatesTagLine {
    color: #C8192A;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.16px;
    text-transform: uppercase;
}

.slipsRateList {
    list-style: none;
}

.slipsRateList li {
    display: flex;
    justify-content: space-between;
}

.slipsHeading {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.slipsRateList li h5 {
    width: 50%;
}

.slipsRateList li p {
    width: 50%;
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.slipsRateList hr {
    margin: 8px 0;
}

.slipsRateBtnWrapper {
    margin-top: 60px
}

/* slips page css ends here */


/* storage page css starts here */
.storageTextWrapper {
    max-width: 650px;
}

.serviceDetailBtnWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.serviceDetailBtnWrapper .whiteYellowBtnBlueBgClip {
    padding: 7px 28px 8px 28px;
}

.serviceDetailBtnWrapper .whiteYellowBtnBlueBgClip:hover {
    padding: 7px 24px 8px 32px;
}

.storageRateSectionWrapper {
    max-width: 1520px;
    margin: 0 auto;
}

.storageRateSection {
    background-color: #112342;
    padding: 40px 45px 74px 45px;
}

.storageRatesHeading {
    color: #FFF;
    text-align: center;
    font-family: Kanit;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.storageRateTextWrapper {
    margin: 20px 0 30px 0;
}

.storageRedText {
    color: #C8192A;
    text-align: center;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.storageRateBoxHeading {
    color: #FFF;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
}

.storageRatesBoxParaWrapper {
    margin-top: 10px;
}

.storageRateBox {
    padding-left: 20px;
}

.storageRateBoxInnerWrapper {
    max-width: 200px;
}

.storageRatesBoxPara {
    color: #FFF;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.storageRateBoxBorder {
    border-left: 1px solid #FFFFFF33;
}

.summerRates {
    margin-top: 30px;
}

.largeSectionWrapper {
    background-color: #112342;
    padding: 40px 0 56px 0;
}

.allRatesHeading {
    color: #FFF;
    text-align: center;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
}

.allRatesPara {
    color: #FFF;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

.allRatesBox {
    margin-bottom: 20px;
    max-width: 400px;
    margin: 0 auto 20px auto;
}

.smallSectionWrapper {
    background-color: #112342;
    padding: 40px 75px 56px 75px;
}

.dryStackStorageRatesWrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: center;
}

.dryStackItem {
    width: calc(100% / 3);
}

.dryStackItem h5 {
    color: #FFF;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
}

.dryStackItem p {
    color: #FFF;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.smallSectionWrapper hr {
    background-color: #EEEEEE33;
    margin: 8px 0;
}

.lastStorageParaWrapper {
    margin-top: 30px;
}

.seasonRatesContainer {
    margin: 100px 0 120px 0;
}


/* storage page css ends here */

/* contact page css starts here */
.contactSectionWrapper {
    margin-top: 140px;
    margin-bottom: 100px;
}

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

.contactTagLine {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.66px;
    text-transform: uppercase;
}

.contactFormWrapper {
    max-width: 340px;
}

.contactInputWrapper {
    margin-bottom: 20px;
}

.contactInput {
    color: rgba(27, 29, 54, 0.60);
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    padding-bottom: 10px;
    border: none;
    outline: none;
    width: 100%;
    border-bottom: 1px solid #D9D9D9;
}

.contactFormBtnWrapper {
    margin-top: 30px;
}

.contactHeadingWrapper {
    margin-bottom: 60px;
}

.contactTextSectionWrapper {
    display: flex;
    align-items: flex-start;
    /* justify-content: end; */
}

.contactTextSection {
    max-width: 760px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.contactTextImageContainer {
    max-width: 300px;
}

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

.smallHeadingWrapper {
    margin-bottom: 40px;
}

.smallHeading {
    color: #003560;
    font-family: Kanit;
    font-size: 35px;
    font-style: italic;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 1.05px;
}

.contactLocationHeading {
    color: rgba(27, 29, 54, 0.60);
    font-family: Kanit;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.contactHoursWrapper {
    margin: 20px 0 20px 0;
}

.hoursHeading {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.48px;
}

.contactLocationItem {
    margin-bottom: 30px;
}

.contactMainTextWrapper {
    max-width: 400px;
}

.contactMapContainer {
    display: flex;
    align-items: flex-start;
    justify-content: end;
    height: 500px;
}

.mapWrapper {
    width: 90%;
    height: 100%;
}

.contactMapContainer .contactMap {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contactDetailCustomMargin {
    margin-bottom: 100px;
}

.contactPara {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}

/* contact page css ends here */

#contactModal_email .modal-header{
    border-bottom: 0;
    padding-top: 30px;
}

#contactModal_email .modal-dialog{
    max-width: 450px;
}

.popup_input{
    width: calc(100% - 100px);
    height: 43px;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #dedfe0;
    margin-bottom: 0;
    padding: 0 10px 0 10px
}

.shareModalHeading{
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #1a1a1a;
    font-weight: 300;
}

.copyShareLinkBtn{
    text-align: center;
    background: #001a38;
    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;
}

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

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

}

.shareIconsWrapper{
    margin-top: 40px;
}

.shareIconsContainer .fa-brands{
    color: #001a38;
}

.shareIcons{
    border: 1px solid #001a38;
    border-radius: 50%;
    background-color: #fff;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktopShareBtn{
    display: block;
}

.mobileShareBtn{
    display: none;
}


/* boat detail page css starts here */
.boat-inventory-cond-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}

.boatDetailCarouselImageContainer{
    position: relative;
    padding-top: 65%;
}

.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: Kanit;
    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: 40px;
    display: flex;
}

.details-left-container {
    width: 65%;
    padding-left: 150px;
}

.mobileBoatInfo {
    max-width: 500px;
    margin: 0 auto;
}

.details-right-container {
    position: sticky;
    top: 0;
    left: 0;
    width: 35%;
    padding: 0 150px;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-cols {
    flex-basis: calc(33.33% - 10px);
    flex-grow: 1;
}

.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 {
    margin: 15px 0 40px 0;
}

.more-img-btn button {
    color: #000;
    text-align: center;
    font-family: Kanit;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    width: 100%;
    height: 45px;
    background-color: rgba(39, 73, 109, 0.08);
    border: 1px solid #F4F4F4;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
    cursor: pointer;
    margin-top: 15px;
}

.accordion-header h3 {
    color: #112342;
    font-family: Kanit;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.accordion-header span.fa {
    font-size: 20px;
    color: #1C4D78;
}

.accordion-content {
    padding-bottom: 45px;
}

.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: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.specsDetail {
    color: #1B1D36;
    text-align: right;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
}

.boatDetailSpecsHeading {
    color: #1C4D78;
    font-family: Kanit;
    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: #004A87;
    font-weight: 600;
}

.right-sidebar-red-btn {
    background: #D8231C;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px 0;
}

.right-sidebar-sec-btn {
    color: #112342;
    text-align: center;
    font-family: Kanit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.6px;
}

.inq-form-head {
    padding-top: 20px;
    padding-bottom: 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: #1B1D36;
    font-family: Kanit;
    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: #1B1D36;
    text-align: right;
    font-family: Kanit;
    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: Kanit;
    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: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.pricingTitleRed {
    color: #C8192A;
    font-family: Kanit;
    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: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.pricingDetailPayment {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.downPayment {
    color: #1B1D36;
    font-family: Kanit;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: 0.42px;
    text-align: right;
}

.viewDisclaimerBtn {
    color: #1C4D78;
    font-family: Kanit;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: 0.42px;
}

.viewDisclaimerBtn:hover {
    color: #1C4D78;
}

.boatDetailBtn {
    color: #FFF;
    text-align: center;
    font-family: Kanit;
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    background: #1B1D36;
    padding: 10px 0 11px 0;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1B1D36;
    transition: all 0.4s;
}

.boatDetailBtn:hover {
    color: #FFD203;
    padding: 10px 55px 11px 60px;
}

.preOwnedDealerContactWrapper {
    border: 1px solid #EEE;
    background: #FAFAFA;
    padding: 20px 57px 25px 59px;
}

.preOwnedDealerContactHeading {
    color: #112342;
    text-align: center;
    font-family: Kanit;
    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: #1B1D36;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.dealerPhoneNumber {
    color: #1C4D78;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.48px;
}

.dealerPhoneNumber:hover {
    color: #1C4D78;
}

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

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

.boatDetailPageSeparator {
    margin-top: 99px;
}

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

.boat-details-call-sec p {
    text-align: center;
    color: white;
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: Kanit;
    line-height: 30px;
}

.boat-details-call-sec p a {
    color: white;
    text-decoration: none;
}

.boat-details-form {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #D9D9D9;
    color: rgba(27, 29, 54, 0.60);
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;

}

.boat-details-form::placeholder {
    color: #00000099;
    font-family: Kanit;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
}

.boat-details-form:focus {
    outline: none;
    box-shadow: none;
}

.form-lable {
    color: #112342;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 1px;
}

.modal-title {
    color: #004A87;
    text-align: center;
    font-family: Kanit;
    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: #FFF;
    text-align: center;
    font-family: Kanit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.9px;
    display: block;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #1C4D78;
}

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

/* boat detail carousel */

.boat-detail-carosuel .item {
    width: 100%;
    height: auto;
}

.boat-detail-carosuel .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* boat gallery pop up */

.owl-carousel-parent {
    position: relative;
}

.boat-details-title {
    color: #1B1D36;
    text-align: center;
    font-family: Kanit;
    font-size: 25px;
    font-style: italic;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.75px;
}


.similar-bts {
    padding-top: 60px;
    padding-bottom: 120px;

}

.similar-heading {
    color: #171717;
    text-align: center;
    font-family: Kanit;
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.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: rgba(23, 23, 23, 0.50);
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 20px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.spec-cntnt {
    color: #171717;
    font-family: Kanit;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 50px;
}

.boat-title-mn {
    color: #000;
    font-family: Kanit;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
    letter-spacing: 2px;
}
.field-error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}
.boatLocation {
    color: rgba(27, 29, 54, 0.60);
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.48px;
    text-align: center;
    margin: 10px 0 20px 0;
}

.mn-similar-sec {
    padding-top: 60px;
}

.hr-line {
    margin-top: 100px;
}

.formBtnWrapper {
    margin-top: 30px;
}


/* +++++++++++++++++++++++++++ */
.similarInventorySection {
    margin-top: 100px;
    margin-bottom: 180px;
}

.similarListingCarousel {
    position: relative;
    margin-top: 40px
}

.similarListingCarousel .owl-nav {
    position: absolute;
    bottom: -25%;
    right: 8%;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    display: flex !important;
}

.similarListingCarousel .owl-nav .owl-prev span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.similarListingCarousel .owl-nav .owl-prev span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}

.similarListingCarousel .owl-nav .owl-next span {
    background-color: #1C4D78;
    color: #fff;
    font-size: 40px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 20px 25px 20px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s;
}

.similarListingCarousel .owl-nav .owl-next span:hover {
    background-color: #C8192A;
    margin-bottom: 10px;
}


.error_field {
    border-bottom: 1px solid red !important;

}


.error_field::placeholder {
    color: red !important;

}

/* boat detail page css ends here */

.grecaptcha-badge {
    display: none;
}

.recaptcha-disclaimer {
    font-size: 16px;
    color: #1B1D36;
    text-align: center;
    padding: 5px 0;
}
.brand-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 35px;
}

.brand-wrapper .brand-logos {
    max-width: 200px;
    height: auto;
}
.brand-wrapper .brand-logos img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* media queries starts here */
@media(max-width: 1800px) {
    .facilityLinksContainer {
        gap: 100px;
    }
}

@media(max-width: 1700px) {
    .navBarContainer {
        padding: 15px 60px 17px 60px;
    }

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

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

@media(max-width: 1600px) {

    /* home page css */
    .facilityLink {
        padding: 35px 94px 45px 0;
    }

    .linksContainer {
        padding: 0 15px;
    }

    /* home page css */
}

@media(max-width: 1500px) {
    .desktopMenuList {
        gap: 30px;
    }

    .navContactAndSearchWrapper {
        gap: 50px;
    }

    .left_tabs {
        padding-left: 20px;
        padding-right: 21px;
    }


}

@media(max-width: 1440px) {
    .navBarContainer {
        padding: 15px 20px 17px 20px;
    }

    .navContactAndSearchWrapper {
        gap: 30px;
    }

    .footerLogoContainer {
        max-width: 300px;
    }

    .footerFormWrapper {
        padding: 56px 15px;
        gap: 60px;
    }

    /* home page css */
    .facilityLink {
        padding: 25px 94px 35px 0;
    }

    .linksContainer {
        gap: 20px;
    }

    /* home page css */

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

    .serviceGalleryCarousel .owl-nav {
        bottom: -35%;
    }

    .locDoorGalleryCarousel .owl-nav {
        bottom: -35%;
    }

    .eventGalleryCarousel  .owl-nav {
        bottom: -35%;
    }

    .aboutGalleryCarousel  .owl-nav {
        bottom: -35%;
    }

    .promotionCarousel  .owl-nav {
        bottom: -35%;
    }

    .fearuredInventoryCarousel .owl-nav {
        bottom: -35%;
    }

    .recentlySoldInventory .owl-nav {
        bottom: -35%;
    }

    .locDoorGalleryCarousel .owl-nav {
        bottom: -35%;
    }

    .slipsGalleryCarousel .owl-nav {
        bottom: -35%;
    }



    .seviceBrandsLogoContainer {
        gap: 80px;
    }

    .serviceContactCardWrapper {
        margin: 0 10px;
    }

    .offeredServiceCardContainer {
        gap: 40px;
    }

    .slipsSection {
        gap: 60px;
    }

    .similarPostsContainer {
        padding-left: 20px;
    }

    .smallSectionWrapper {
        padding: 40px 35px 56px 35px;
    }

    .partsDetailSectionWrapper{
        gap: 40px;
        align-items: flex-start;
    }

    .storySectionCards{
        gap: 60px;
    }

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

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

@media(max-width: 1350px) {
    .navMenuSectionWrapper {
        gap: 30px;
    }

    .navContactAndSearchWrapper {
        gap: 20px;
    }

    .desktopMenuList {
        gap: 20px;
    }

    .facilityLinksContainer {
        gap: 80px;
    }

    .homeFiltersection {
        flex-wrap: wrap;
    }

    .serviceBrandLogoWrapper {
        max-width: 200px;
    }

    .serviceDetailBtnWrapper {
        flex-wrap: wrap;
    }

    .storageRateBox {
        padding-left: 5px;
    }
}

@media(max-width: 1200px) {
    .navLogoContainer {
        max-width: 200px;
    }

    .navBarContainer {
        padding: 15px 15px 17px 15px;
    }

    .menuListItem {
        font-size: 16px;
        letter-spacing: 0.4px;
    }

    .facilityLinksContainer {
        gap: 60px;
    }

    .footerFormWrapper {
        gap: 100px;
    }

    .sideBarHeadingWrapper {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .sideBarMenuUnitWrapper {
        margin-bottom: 20px;
    }

    /* home page css */

    .formFieldWrapper {
        flex-direction: column;
    }

    /* home page css */

    .requestServiceSectionWrapper {
        gap: 40px;
    }

    .offeredServiceCardContainer {
        flex-wrap: wrap;
    }

    .offeredServiceSection {
        padding: 0 15px;
    }

    .storageRateSection {
        background-color: #112342;
        padding: 40px 15px 74px 15px;
    }

    .storySectionCards {
        gap: 40px;
        align-items: flex-start;
    }

    .storageCardWrapper {
        padding: 0 30px;
    }
}

@media(max-width: 1100px) {
    .navMenuSectionWrapper {
        gap: 20px;
    }

    .navSearchBar {
        width: 180px;
    }
}


@media(max-width: 991px) {
    .badge-img {
        margin: 0 auto;
    }
    .custom-list li::before {
        display: none;
    }
    .custom-list li{
        padding-left: 0;
    }
    .mobileHeader {
        display: block;
    }

    .desktopHeader {
        display: none;
    }

    .blueMobileBarWrapper {
        display: block;
    }

    .homeHeaderSection {
        margin-top: 0;
        min-height: 500px;
    }

    .homeTextForHeader {
        display: none;
    }

    .homeHeaderBtnMobileWrapper {
        display: block;
        position: absolute;
        bottom: 60px;
        left: 5%;
    }

    .brandCarousel .owl-dots {
        bottom: 30px;
    }

    .homeIntroSection {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .facilityImageContainer {
        background-image: url("../images/home/facilities-image.png");
        background-position: right;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 500px;
    }

    .facilityImageContainer img {
        display: none;
    }

    .facilityLinksContainer {
        gap: 132px
    }

    /* boats page css start here */
    .boats-container {
        padding-top: 0px;
    }


    .desktopShareBtn{
        display: none;
    }
    
    .mobileShareBtn{
        display: block;
    }

    .top_new_filter {
        border-top: 1px solid #D3D3D3;
        border-bottom: 1px solid #D3D3D3;
        display: block;
        margin-top: 30px;
    }

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

    .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%;
        max-width: 500px;
        margin: 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;
    }

    .serviceDetailSectionWrapper {
        margin: 60px 0;
    }

    .serviceDetailTextWrapper {
        text-align: center;
    }

    .serviceDetailBtnWrapper {
        justify-content: center;
    }

    .serviceDetailParaSection {
        margin: 30px 0 40px 0;
    }

    .serviceDetailTag {
        font-size: 22px;
        line-height: 24px;
    }

    .serviceDetailImageContainer {
        max-width: unset;
        
    }

    .serviceMapContainer{
        min-height: 400px;
    }

    .brandsSection {
        margin-top: 65px;
    }

    .workCardWrapper {
        padding: 0 10px;
    }

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

    .serviceContactSection {
        margin: 60px auto 60px auto;
    }

    .requestServiceSectionWrapper {
        flex-direction: column;
        justify-content: center;
    }

    .requestParaWrapper {
        text-align: center;
    }

    .serviceRateSection {
        margin: 60px auto 60px auto;
    }

    .serviceRateCardsWrapper {
        gap: 120px;
    }

    .locationSection {
        margin: 60px 0 50px 0;
    }

    .locationheadingWrapper {
        margin-bottom: 40px;
    }

    .locationTextWrapper {
        margin-top: 10px;
        text-align: center;
    }

    .serviceGallerySection {
        margin-bottom: 120px;
    }

    .serviceGalleryHeadingWrapper {
        margin-bottom: 30px;
    }

    .slipsSection {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .slipsSection .slipsImageContainer {
        width: 100%;
    }

    .slipsSection .serviceDetailTextContainer {
        width: 100%;
    }

    .cottageSection {
        margin-top: 60px;
        background-color: #1B1D36;
        padding: 60px 0 70px 0;
    }

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

    .eventsCardContainer {
        margin-bottom: 40px;
    }

    .blogDetailPageWrapper {
        margin: 60px 0 60px 0;
    }

    .similarPostsContainer {
        padding-left: 0;
    }

    .similarPostCard {
        margin-bottom: 30px;
    }

    .similarPostTitleWrapper {
        margin-top: 5px;
    }

    .blogDetailTextContainer {
        margin-top: 20px;
    }

    .statusSectionWrapper {
        margin: 60px 0 50px 0;
    }

    .statusPageBtnWrapper {
        justify-content: center;
    }

    .eventTextWrapper {
        margin-top: 10px;
    }

    .eventCardWrapper {
        margin-bottom: 30px;
    }

    .eventDetailTopSection {
        margin: 60px 0 60px 0;
    }

    .eventInfoSection {
        margin: 60px auto 40px auto;
    }

    .brandsOnDisplaySection{
        margin: 60px 0;
    }

    .brandsOnDisplayContainer{
        justify-content: center;
    }

    .brandAvailableInventorySection {
        margin: 60px auto 40px auto;
    }

    .homeHeaderBtnWrapper img{
        max-width: 150px;
    }

    .mainServiceSection {
        padding: 60px 0 33px 0;
    }

    .meetBrokersSection {
        margin: 60px auto 60px auto;
    }

    .brokersContainer{
        justify-content: center;
    }

    .storageTextWrapper{
        text-align: center;
    }

    .storageRateBox{
        text-align: center;
    }

    .storageRateBoxBorder {
        border-left: 0;
    }

    .largeSectionWrapper{
        padding-left: 15px;
        padding-right: 15px;
    }

    .seasonRatesContainer {
        margin: 60px 0 60px 0;
    }

    .crewSectionWrapper {
        margin: 60px 0 60px 0;
    }

    .crewTextContainer{
        text-align: center;
    }

    .ratesBlockWrapper {
        gap: 60px;
    }

    .partsDetailSectionWrapper{
        flex-direction: column;
        margin: 60px 0;
    }

    .partsDetailImageContainer{
        width: 100%;
    }

    .partsDetailTextContainer{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .factoryCertifiedSection {
        margin: 60px 0;
    }

    .factoryCertifiedHeader {
        margin-bottom: 50px;
    }

    .certifiedBrandLogoContainer {
        gap: 60px;
    }

    .pewaukeeParts{
        flex-direction: column-reverse;
    }

    .partsCustomPadding {
        padding-left: 0;
    }

    .storySectionCards {
        justify-content: center;
        flex-direction: column;
    }

    .storyTextContainer {
        width: 100%;
        text-align: center;
    }

    .storyCardImageContainer{
        width: 100%;
    }

    .secondStoryCard{
        flex-direction: column-reverse;
    }
    .swissBoatersSection {
        margin: 60px auto 60px auto;
    }

    .storageHeadingWrapper {
        margin-bottom: 30px;
        text-align: center;
        padding-left: 0
    }

    .contactSectionWrapper {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .contactFormWrapper {
       margin: 0 auto;
    }

    .mapWrapper{
        width: 100%;
    }

    .contactDetailCustomMargin {
        margin-bottom: 70px;
    }

    .contactTextSection{
        width: 100%;
    }

    .details-left-container{
        margin-top: 0;
    }

    .right-sidebar {
        padding-top: 0;
    }

}

@media(max-width: 767px) {
    .fot-logo {
        margin: 30px 0 0 auto;
    }
    .homeFiltersection {
        flex-direction: column;
    }

    .filterSearchDesktopBtn {
        display: none;
    }

    .filterSearchMobileBtn {
        display: block;
    }

    .quickSearchHeading {
        display: block;
    }

    .promotionSection {
        padding-left: 0px;
    }

    .promotionHeading {
        font-size: 30px;
        line-height: 30px;
        letter-spacing: 0.9px;
    }

    .blueMainHeading {
        font-size: 30px;
        line-height: 30px;
        letter-spacing: 0.9px;
    }

    .featuredInventorySection {
        margin-top: 60px;
        margin-bottom: 140px;
    }

    .blueMainHeading {
        font-size: 30px;
        line-height: 30px;
        letter-spacing: 0.9px;
    }

    .brandHeadingWrapper {
        padding-left: 5%;
        margin-bottom: 20px;
    }

    .brandImageContainer {
        min-height: 500px;
    }


    .brandCarousel .owl-dot.active span {
        height: 3px;
    }

    .brandLinkwrapper {
        left: 5%;
    }

    .brandLogoContainer {
        bottom: unset;
        top: 40px;
        right: 5%;
    }

    .whiteMainHeading {
        font-size: 30px;
        line-height: 30px;
        letter-spacing: 0.9px;
    }

    .introRedHeading {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
    }

    .facilityLink {
        padding: 32px 54px 26px 15px;
    }

    .facilityLinkText {
        font-size: 30px;
        font-weight: 600;
        line-height: 40px;
        letter-spacing: 0.9px;
    }

    .facilitySectionWapper {
        margin: 60px 0;
    }

    .linksContainer {
        flex-direction: column;
        gap: 10px;
    }

    .footerFormWrapper {
        flex-direction: column;
        gap: 40px;
    }

    .footerFormHeading {
        max-width: 330px;
        margin: 0 auto;
    }

    .footerLogoSection {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .mobileLogoContainer {
        max-width: 300px;
    }

    .socilIconsContainer {
        margin-top: 40px;
    }

    .footerLinksSectionWrapper {
        padding-top: 50px;
    }

    .footerBottom {
        margin-top: 10px;
        justify-content: center;
    }

    .footerLoactionLinksWrapper {
        margin-top: 20px;
    }

    .workTextContainer {
        text-align: center;
    }

    .workHeadingWrapper {
        margin: 10px 0;
    }

    .serviceDetailParaSection {
        margin: 20px 0 30px 0;
    }

    .serviceRateCardsWrapper {
        gap: 40px;
    }

    .mainFormWrapper {
        padding: 0 15px;
    }

    .customFormPaddingLeft {
        padding-left: 0 !important;
    }

    .customFormPaddingRight {
        padding-right: 0 !important;
    }

    .customBorderRight {
        border-right: 0;
        margin-bottom: 20px;
    }

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

    .formHeadingWrapper {
        margin-bottom: 40px;
    }

    .formBtnWrapper {
        margin-top: 20px;
    }


    .offeredSercviceBtnWrapper {
        margin-top: 10px;
    }

    .blogTabContainer {
        margin-bottom: 40px;
    }

    .blogTabsList {
        gap: 40px;
    }

    .blogTextWrapper {
        text-align: center;
        margin-top: 10px;
    }

    .blogCardWrapper{
        margin-bottom: 40px;
    }

    .availableInvenoryHeadingContainer {
        margin-bottom: 21px;
        text-align: center;
    }

    .evnetInfoCardsContainer{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .mainServiceHeadingWrapper {
        margin-bottom: 50px;
        padding-left: 0;
        text-align: center;
    }

    .mainServiceRequestBtnWrapper {
        bottom: 0%;
        left: 50%;
        transform: translateX(-50%);
    }

    .mainServiceCardWrapper {
        max-width: unset;
        margin-bottom: 45px;
        text-align: center;
    }

    .ratesBlockWrapper {
        gap: 40px;
    }

    .slipsRatesContentWrapper {
        margin-top: 27px;
    }

    .storageCardTextContainr{
        text-align: center;
    }

    .storageCardWrapper{
        padding: 0 15px;
    }

    .contactTextSection {
        gap: 20px;
    }

    .specsListContainer{
        max-width: unset;
        width: 100%;
    }
}

@media(max-width: 576px) {
    .footerBottom {
        flex-direction: column;
        gap: 5px;
    }

    .footeBottomAfter::after {
        display: none;
    }

    .mobileLogoContainer {
        max-width: 220px;
    }

    .footerLogoContainer {
        max-width: 250px;
    }

    .blueYellowBtn {
        letter-spacing: 0.6px;
    }

    .promotionCarousel .owl-nav {
        bottom: -25%;
    }

    .seviceBrandsLogoContainer {
        gap: 50px;
    }

    .blackParaText {
        line-height: 24px;
        letter-spacing: 0;
    }

    .serviceRateCardsWrapper {
        flex-direction: column;
    }

    .serviceRateParawraper {
        margin-top: 10px;
    }

    .serviceRateHeadingWrapper {
        flex-direction: column-reverse;
        justify-content: center;
        gap: 20px;
    }

    .serviceContactPhone {
        font-size: 40px;
        line-height: 40px;
        letter-spacing: 1px;
    }

    .serviceContactPhoneWrapper {
        margin: 15px 0 20px 0;
    }

    .serviceContactCardWrapper {
        padding: 30px 10px 35px 10px;
    }

    .emailWrapper {
        text-align: center;
    }

    .serviceContactEmail {
        line-height: 18px;
        letter-spacing: 0.28px;
    }

    .offeredServiceCard {
        flex: 0 0 100%;
    }

    .offeredServiceTextWrapper {
        margin-top: 10px;
        text-align: center;
    }

    .offeredServiceParaWrapper {
        margin-top: 5px;
    }

    .headerMainheading {
        font-size: 40px;
        line-height: 40px;
        letter-spacing: 1px;
    }

    .blogTabsList{
        flex-wrap: wrap;
        gap: 30px;
    }

    .blackParaTextNoSpace {
        line-height: 24px;
    }

    .blogPara {
        line-height: 20px;
    }

    .eventTitle {
        font-size: 20px;
    }

    .eventDate {
        font-size: 20px;
    }

    .brandAvailableInventorySection{
        padding: 0px;
    }

    .smallSectionWrapper {
        padding: 40px 15px 56px 15px;
    }

    .ratesBlockWrapper{
        flex-direction: column;
    }

    .rateBlock{
        width: 100%;
    }

    .contactTextSection{
        flex-direction: column;
    }

    .contactTextImageContainer {
        max-width: unset;
        width: 100%;
    }

    .contactMainTextWrapper {
        max-width: unset;
        width: 100%;
    }

    .contactLocationItem {
        text-align: center;
    }

    .smallHeadingWrapper {
        margin-bottom: 20px;
        text-align: center;
    }

    .brandCarousel .owl-dots{
        gap: 0;
    }

}

@media(max-width: 400px) {
    .linksBtn {
        width: 100%;
    }

    .filterSelectField {
        width: 100%;
    }

    .homeFiltersection {
        padding: 28px 15px 27px 15px;
    }

    .inputFieldWrapper {
        width: 100%;
    }

    .footerLogoContainer {
        max-width: 200px;
    }

    .mobileLogoContainer {
        max-width: 200px;
    }

    .promotionCarousel .owl-nav {
        bottom: -45%;
    }

    .homeHeaderBtnMobileWrapper {
        z-index: 5;
    }

    .mobileNavSearchBar {
        width: 150px;
    }

    .blueMobileBar {
        padding: 15px 10px;
    }

    .serviceRatePara {
        font-size: 40px;
        line-height: 40px;
        letter-spacing: 1px;
    }

    .homeHeaderText {
        left: 2%;;
    }
}
