@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins: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");

:root {
    --primaryBG: #DF302B;
    --secondaryBG: #1f3055;
    --lightBG: #D8E9EE;
    --graylightBG: #eff6f8;
    --primaryColor: #4B4B4B;
    --secondaryColor: #1E466D;
    --whiteColor: #fff;
    --btnHover: #b71e19;
    --primaryfont: "Rubik", sans-serif;
    --secondaryfont: "Rubik", sans-serif;
}

* {
    outline: none !important;
    text-decoration: none !important;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--primaryfont);
    color: var(--primaryColor);
}

html,
body {
    height: 100%;
}


ul,
ol,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: var(--primaryColor);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover {
    text-decoration: none;
    color: var(--primaryColor);
}

a:focus,
input:focus,
button:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

img {
    width: auto;
    max-width: 100%;
    display: block;
    height: auto;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondaryColor);
    margin-bottom: 10px;
}

h1,
.h1 {
    font-size: 56px;
    line-height: 120%;
}

h2,
.h2 {
    font-size: 46px;
    line-height: 115%;
}

h3,
.h3 {
    font-size: 36px;
    line-height: 120%;
}

h4,
.h4 {
    font-size: 38px;
    line-height: 120%;
}

h5,
.h5 {
    font-size: 24px;
    line-height: 35px;
}

h6,
.h6 {
    font-size: 18px;
    line-height: 24px;
}

p {
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0 !important;
}

button {
    border: none;
    transition: all 0.4s ease 0s;
    background: transparent;
}

.container {
    max-width: 1170px;
}

.container.wide {
    max-width: 1200px;
}

strong {
    font-weight: 700;
}

.cta-btn {
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 12px 40px;
    font-weight: 700;
    background: var(--primaryBG);
    color: var(--whiteColor);
    font-size: 15px;
    text-transform: uppercase;
    border: 1px solid var(--primaryBG)
}

.cta-btn:hover {
    background: var(--btnHover);
    color: var(--whiteColor);
    border-color: var(--btnHover);
}

.btn_border_white {
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 12px 40px;
    font-weight: 700;
    background: transparent;
    border: 1px solid;
    border-color: var(--whiteColor);
    color: var(--whiteColor);
    font-size: 15px;
    text-transform: uppercase;
}

.btn_border_white:hover {
    background: var(--whiteColor);
    color: var(--primaryBG);
}

.cta-btn-border {
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 12px 40px;
    font-weight: 700;
    background: transparent;
    border: 1px solid var(--primaryBG);
    color: var(--primaryBG);
    font-size: 15px;
    text-transform: uppercase;
}

.cta-btn-border:hover {
    background: var(--primaryBG);
    color: var(--whiteColor)
}

.cta-btn-white {
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 12px 40px;
    font-weight: 700;
    background: var(--whiteColor);
    color: var(--primaryBG);
    border: 1px solid transparent;
    font-size: 15px;
}

.cta-btn-white:hover {
    background: var(--secondaryBG);
    color: var(--whiteColor);
}

.header-area {
    padding: 15px 0;
    position: relative;
}

.promo-bar {
    background: var(--primaryBG);
    margin: -15px 0 15px;
    padding: 12px 15px;
    color: var(--whiteColor);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

header .container.wide,
.page-banner .container.wide {
    width: 100%;
    max-width: 1350px;
}

.promo-bar a {
    color: var(--whiteColor);
    border-bottom: 1px solid;
    font-weight: 400;
    position: relative;
    top: -1px;
    line-height: 12px;
    display: inline-block;
}

.header-inn {
    position: relative;
}

.header-area .site-logo {
    width: 180px;
}

.header-area .mainmenu li {
    display: inline-block;
    margin: 0 7px;
}

.header-area .mainmenu li a {
    font-size: 14px;
    text-transform: uppercase;
    position: relative
}

.menu-item-has-children > a:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 4px 4px 0;
    border-color: var(--primaryColor) transparent;
    display: block;
    width: 0;
    z-index: 1;
    top: calc(50% - 3px);
    right: 0px;
}

#menu-main-menu > li > ul {
    position: absolute;
    background: #fff;
    width: 220px;
    top: calc(100% - 5px);
    box-shadow: 0 5px 15px #00000029;
    z-index: 22;
    padding-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
    border-top: 4px solid var(--primaryBG)
}

#menu-main-menu > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: 0.3s all;
}


#menu-main-menu > li > ul li {
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
}

#menu-main-menu > li > ul li a {
    display: table;
    width: 100%;
    padding: 10px 15px;
    line-height: 1.2;
    margin: 0;
}

#menu-main-menu > li > a {
    padding: 10px 0;
    display: inline-block;
}

.menu-item-has-children > a {
    padding-right: 15px !important;
}

#menu-main-menu li a:hover,
#menu-main-menu li:hover > a {
    color: var(--primaryBG)
}

.header-area .call {
    margin-right: 20px;
}

.header-area .call img {
    margin-right: 5px;
}

.header-area .call a {
    font-weight: 700;
    font-size: 18px;
    color: var(--secondaryColor);
}

.header-area .call a:hover {
    color: var(--primaryBG)
}

.text_white {
    color: var(--whiteColor)
}

.hero-area {
    position: relative;
    z-index: 1;
}

.hero-area .hero_bg {
    height: 520px;
    object-fit: cover;
    width: 100%;
    object-position: center 65% !important;
}

.hero-area .hero-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-area .hero_subHeading {
    margin-bottom: 0px;
    display: block;
}

.hero-area .hero_subHeading {
    color: var(--whiteColor)
}

.hero-area .h1 {
    color: var(--whiteColor)
}

.hero_btn_group {
    margin-top: 40px;
}

.hero_btn_group a {
    font-size: 14px;
    text-transform: uppercase;
    margin: 10px 5px 0 5px;
}

.hero-area::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2
}

.client-logo {
    background: var(--lightBG);
    padding: 50px 0;
    pointer-events: none;
    overflow-x: hidden
}

.client-logo .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex: 1;
}

.client-logo .inner .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.client-logo .inner .items {
    padding: 0 25px;
    height: 55px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--lightBG);
}

.client-logo .inner .items img {
    max-width: 135px;
    max-height: 45px;
    mix-blend-mode: multiply;
}

.feature-boat {
    padding: 70px 0;
}

.feature-boat .h5 {
    letter-spacing: 2px;
    font-weight: 600;
}

.boat-list-slider .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.boat-list-slider .slide {
    padding: 0 10px;
    padding-top: 30px;
    padding-bottom: 20px;
}

.box.style1 .image {
    height: 280px;
    background: #e5e5e5;
    position: relative;
    overflow: hidden;
}

.box.style1 .image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: 85px;
    filter: grayscale(1);
    opacity: 0.3;
}

.box.style1 .text {
    margin-top: 10px;
}

.box.style1 .title {
    font-size: 18px;
    margin-bottom: 4px;
}

.box.style1 .price {
    font-size: 21px;
    font-weight: 600;
}

.box.style1 .image img {
    position: relative;
    z-index: 2;
    height: 320px;
    object-fit: cover;
    top: -20px;
}

.boat-list-slider .slick-arrow {
    width: auto;
    height: auto;
    opacity: 0.6;
    transition: all 0.4s;
}

.boat-list-slider .slick-arrow:hover {
    opacity: 1;
}

.boat-list-slider .slick-arrow::before {
    display: none;
}

.boat-list-slider .slick-prev {
    left: -50px;
}

.boat-list-slider .slick-next {
    right: -50px;
}

.feature-boat .section_action {
    margin-top: 20px;
}

.perfect-boat {
    padding: 70px 0;
    position: relative;
}

.perfect-boat::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lightBG);
    opacity: 0.4;
    z-index: 1;
}

.perfect-boat .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.perfect-boat .container {
    position: relative;
    z-index: 2;
}

.perfect-boat .heading {
    font-weight: 600;
}

.perfect-boat .box {
    padding: 30px;
    background: var(--whiteColor);
    border-radius: 20px;
    margin-top: 30px;
    color: var(--secondaryColor);
    min-height: 130px;
}

.perfect-boat .section_action {
    margin-top: 40px;
}

.perfect-boat .box:hover {
    transform: translateY(-12px);
}

.service-parts {
    padding: 70px 0;
    position: relative;
}

.service-parts .heading {
    font-weight: 600;
}

.service-parts .box {
    position: relative;
    transition: all 0.4s
}

.service-parts .box::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondaryBG);
    opacity: 0.4
}

.service-parts .box .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-parts .box .inner .icon {
    margin-bottom: 20px;
    height: 60px;
}

.service-parts .box .inner .icon img {
    height: 100%;
}

.service-parts .box .title {
    color: var(--whiteColor);
    font-size: 28px;
    line-height: 110%;
}

.service-parts .box:hover {
    transform: translatey(-10px);
}

.service-parts .box:hover .title {
    text-decoration: underline !important;
}

.heading {
    font-weight: 600
}

.cta-area {
    padding: 70px 0;
    background: var(--lightBG)
}

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

.call_group_action .call_action {
    margin-left: 20px
}

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

.call_action img {
    margin-right: 15px;
}

.call_action span {
    font-size: 14px;
    opacity: 0.5;
    text-transform: uppercase;
    line-height: normal;
}

.call_action a {
    color: var(--secondaryColor);
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.call_action a:hover {
    color: var(--primaryBG);
    text-decoration: underline !important
}

.image-text-area {
    padding: 70px 0
}

.boat-breands {
    padding: 70px 0;
    background: var(--lightBG);
    overflow-x: hidden
}

.brand-slider .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.brand-slider .slide {
    padding: 40px 15px;
}

.brand-slider .box {
    position: relative;
    display: block;
}

.brand-slider .box .brand-logo {
    position: absolute;
    padding: 40px;
    left: 0;
    top: 0;
    width: 100%;
}

.brand-slider .box .brand-logo img {
    height: 45px;
    margin: auto;
}

.brand-slider .slick-arrow {
    z-index: 1;
    width: auto;
    height: auto;
}

.brand-slider .slick-next {
    right: 0;
}

.brand-slider .slick-prev {
    left: 0;
}

.slick-prev:before,
.slick-next:before {
    display: none
}

.brand-slider .slick-arrow svg {
    width: 65px;
}

.image-cta {
    background: var(--lightBG);
    padding-top: 30px;
}

.image-cta .inner {
    height: 420px;
    position: relative;
    z-index: 1;
}

.image-cta .inner .cta_shadow {
    position: absolute;
    bottom: -63px;
    right: 0;
    width: 100%;
    height: 150px;
    object-fit: contain;
    z-index: -1;
}

.image-cta .meta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1764705882);
}

.image-cta .meta img {
    height: 70px;
    margin-right: 50px;
}

.image-cta .meta .title {
    color: var(--whiteColor);
    font-weight: 600;
}

.footer-banner {
    margin-top: -530px;
    background: var(--lightBG);
}

footer {
    background: var(--secondaryBG);
}

footer .client-logo {
    background: transparent;
    position: relative;
    z-index: 1;
}

footer .client-logo::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000000;
    opacity: 0.24;
    z-index: -1;
}

.footer-top {
    padding: 60px 0;
}

.footer-top .footer-logo {
    width: auto;
}

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

.footer-logo a img {
    width: 100%;
    max-width: 195px;
}

.footer-contact-info {
    margin: 20px 0 0;
}

.footer-contact-info h4 {
    color: var(--whiteColor);
    font-size: 18px;
}

.footer-contact-info ul li {
    display: flex;
    align-items: flex-start;
    margin-top: 15px;
}

.footer-contact-info ul li .icon {
    background: var(--primaryBG);
    margin-right: 8px;
    border-radius: 50%;
    padding: 6px;
}

.footer-contact-info ul li .icon img {
    width: 12px;
}

.footer-contact-info ul li a {
    color: var(--whiteColor);
    font-size: 15px;
    line-height: 22px;
}

.footer-top .footer_title {
    color: var(--whiteColor);
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-top .footer_links li {
    margin-bottom: 5px;
}

.footer-top .footer_links li a {
    color: var(--whiteColor);
    opacity: 0.7;
    font-size: 14px;
    line-height: 25px;
}

.footer_social li {
    display: inline-block;
    margin-right: 10px;
}

.footer_social li a img {
    width: 22px;
}

.footer-top .footer-widget.alt {
    margin-top: 30px;
}

.copyright {
    padding: 14px 0;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

.copyright::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000000;
    opacity: 0.24;
    z-index: -1;
}

.copyright p,
.copyright a,
.footer-top p {
    color: var(--whiteColor);
    opacity: 0.7;
}

.copyright a:hover,
.footer-top .footer_links li a:hover {
    opacity: 1
}

footer .client-logo .inner .items {
    padding: 0 30px;
    height: inherit;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.header-toggle {
    height: 46px;
    width: 46px;
    text-align: center;
    margin-left: 10px;
    border-radius: 5px;
    margin-right: -15px
}

#menu-toggle span {
    height: 2px;
    width: 100%;
    background: var(--secondaryBG);
    display: block;
    margin-top: 5px;
    position: relative;
    transition: all 0.2s ease 0s;
    border-radius: 5px;
    margin-right: auto;
    margin-left: 0;
}

#menu-toggle span:nth-child(1) {
    top: 4px;
}

#menu-toggle span:nth-child(2) {
    top: 6px;
}

#menu-toggle span:nth-child(3) {
    top: 8px;
}

#menu-toggle {
    width: 42px;
    height: 42px;
    display: block;
    position: relative;
    background: transparent;
    padding: 4px 8px;
    border-radius: 7px;
    margin-left: auto;
    margin-right: auto;
    display: none
}

.float-action {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgb(41, 63, 112) 24%, rgb(39, 141, 180) 100%);
    position: fixed;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 333;
    padding: 13px 10px;
}

.float-action > div a {
    margin: 0 10px;
    font-size: 15px;
}

.float-action > div.call a {
    color: #fff;
    font-weight: bold;
}

.float-action > div a.cta-btn {
    padding: 5px 20px;
}

.float-action {
    background: #1f3055;
    padding: 10px 10px;
    gap: 5px;
}

.float-action > div {
    width: 50%;
}

.float-action .call {
    padding: 7px !important;
}

.float-action .call img {
    width: 22px;
}

.float-action > div a {
    margin-right: 0;
    font-size: 12px
}

.float-action > div a.cta-btn {
    padding: 7px;
}

.stats-box {
    margin-top: 30px;
}

.stats-box .number {
    -webkit-text-stroke: 2px var(--primaryBG);
    font-size: 110px;
    line-height: 100%;
    color: var(--whiteColor);
    font-weight: 900;
    margin-bottom: 5px;
}

.stats-box p {
    font-size: 22px;
    opacity: .6;
    line-height: normal;
}

.stats-area {
    padding: 70px 0
}

.section-action {
    margin-top: 40px
}

.image-text-area ul {
    margin-bottom: 20px;
}

.image-text-area li,
.list-style li,
.text-area ul li {
    padding-left: 15px;
    margin: 4px 0;
    position: relative;
}

.text-area ul li {
    margin: 10px 0;
    padding-left: 20px
}

.image-text-area li:before,
.list-style li:before,
.text-area ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primaryBG);
    position: absolute;
    top: 11px;
    left: 0;
    border-radius: 50%;
}

.text-area ul {
    margin-top: 15px;
    margin-bottom: 30px;
}

.text-area ul li::before {
    width: 8px;
    height: 8px;
}

.testimonial-area {
    padding: 70px 0;
    overflow-x: hidden;

}

.testimonial-box {
    border-radius: 10px;
    padding: 40px;
    background: var(--graylightBG)
}

.testimonial-slider .slide {
    padding: 0 15px;
    padding-top: 40px
}

.testimonial-slider .slick-list {
    margin-left: -230px;
    margin-right: -230px
}

.testimonial-box .subject {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--secondaryBG);
}

.testimonial-box .reviews {
    margin: 20px 0;
}

.testimonial-box .meta {
    display: flex;
    align-items: center
}

.testimonial-box .meta img {
    width: 50px;
    min-width: 50px;
    min-height: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%
}

.testimonial-box .meta .name {
    font-weight: 700;
    color: var(--secondaryBG);
    font-size: 16px;
    line-height: normal
}

.testimonial-box .meta p {
    font-size: 11px
}

.divider hr {
    margin: 0
}

.testimonial-arrows {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-arrows .slick-arrow {
    position: inherit;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto;
    border: 1px solid var(--secondaryBG);
    margin: 0 4px;
    transform: translateY(0)
}

.testimonial-arrows .slick-arrow:hover {
    background: var(--secondaryBG);
}

.testimonial-arrows .slick-arrow path {
    fill: var(--secondaryBG);
}

.testimonial-arrows .slick-arrow:hover path {
    fill: #fff;
}

.page-banner {
    background: var(--secondaryBG);
    padding: 20px 0;
    padding-bottom: 70px;
    position: relative;
    z-index: 1
}

.page-banner .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1
}

.page-banner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #030d17;
    opacity: .8;
}

.banner-text {
    position: relative;
    z-index: 1
}

.banner-text p {
    opacity: 0.8
}

.page-banner .group_btn a {
    margin: 0 7px
}

.page-banner .call_group_action {
    justify-content: center;
    margin-top: 30px
}

.page-banner .call_action a {
    color: var(--whiteColor)
}

.page-banner .call_action a:hover {
    color: var(--primaryBG)
}

.page-banner .call_action span {
    opacity: 0.8
}

.breadcrumb_navigation ul li {
    display: inline-block;
    color: var(--whiteColor);
    font-size: 14px;
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
    font-weight: 300;
}

.breadcrumb_navigation ul li:last-child {
    margin-right: 0;
    padding-right: 0
}

.breadcrumb_navigation ul li::after {
    position: absolute;
    content: "";
    top: 13px;
    right: -4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

.breadcrumb_navigation ul li:last-child::after {
    display: none
}

.breadcrumb_navigation ul li:last-child {
    text-decoration: underline
}

.breadcrumb_navigation li a {
    color: var(--whiteColor);
    font-weight: 500
}

.breadcrumb_navigation {
    padding-bottom: 25px;
}

.inventory-area {
    padding: 70px 0
}

.searchbox {
    display: block;
    position: relative;
    margin-bottom: 30px
}

.searchbox input {
    width: 100%;
    background: transparent url(../img/search.svg) no-repeat calc(100% - 15px) 50%;
    padding: 10px 20px;
    padding-right: 60px;
    border-radius: 0px;
    height: 55px;
    border: 1px solid #C2E1E9;
}

.filter-result {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    margin-bottom: 1rem;
    align-items: center
}

.filter-result .stats {
    margin-right: auto;
}

.filter-result select {
    border-radius: 0px;
    height: 45px;
    border: 1px solid #C2E1E9;
    padding: 0 15px;
    font-size: 14px;
}

.single_listing {
    margin-top: 20px;
    background: var(--graylightBG);
}

.single_listing .top {
    position: relative;
    padding: 20px;
    padding-left: 260px;
}

.single_listing .top .thumbs {
    position: absolute;
    left: 0;
    width: 240px;
    top: 0;
    height: 100%;
    overflow: hidden;
}

.single_listing .top .thumbs img {
    position: absolute;
    left: 0;
    width: 100%;
    top: -11px;
    height: calc(100% + 22px);
    object-fit: cover;
}

.single_listing .head {
    position: relative;
    padding-right: 100px;
}

.single_listing .title {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}

.single_listing .feature_list {
    margin-top: 15px;
}
}

.single_listing .feature_list ul {
    gap: 0;
}

.single_listing .feature_list ul {
    column-count: 2;
}

.single_listing .feature_list ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
}

.single_listing .feature_list ul li span {
    font-weight: 500;
    min-width: 100px;
}

.single_listing .actions {
    display: flex;
}

.single_listing .actions a {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--lightBG);
    font-size: 13px;
    font-weight: 500;
    padding: 10px;
    justify-content: center;
    border-right: 1px solid #B7DFE8;
}

.single_listing .actions a img {
    margin-right: 5px;
    height: 13px;
}

.single_listing .actions a:last-child {
    color: var(--whiteColor);
    background: var(--primaryBG);
    border: none;
}

.extt {
    min-width: auto !important;
    padding-right: 4px !important;
}

.paginations span,
body .paginations a {
    border: 1px solid #ddd;
    height: 20px;
    padding: 0;
    display: table;
    min-width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    border-radius: 5px
}

.paginations a:hover,
.Pagination-item--selected .ais-Pagination-link {
    color: #fff;
    background-color: var(--secondaryBG);
    border-color: var(--secondaryBG)
}

.disabled .Pagination-link {
    opacity: .6;
    cursor: not-allowed;
    color: #a5abc4;
}

.paginations {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 30px;
    justify-content: center
}

.sidebar-widget .title {
    font-weight: 600;
    font-size: 20px;
    color: var(--secondaryColor);
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    line-height: 1;
}

.sidebar-widget .title::before {
    position: absolute;
    content: "";
    top: -3px;
    left: 0;
    width: 18px;
    height: 25px;
    background: var(--primaryBG);
}

@media (min-width: 768px) {
    .closeFilter {
        display: none;
    }
}

.inventory-area .sidebar-widget .inner-list {
    background: var(--graylightBG);
    padding: 20px
}

.inventory-area .sidebar-widget .inner-list ul {
    column-count: 2;
}

.inventory-area .sidebar-widget .inner-list ul li {
    margin-bottom: 5px;
}

.inventory-area .sidebar-widget .inner-list ul li a {
    position: relative;
    padding-left: 15px;
    color: #363940;
    font-weight: 500;
    font-size: 14px
}

.inventory-area .sidebar-widget .inner-list ul li a:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent var(--primaryBG);
    display: block;
    width: 0;
    z-index: 1;
    left: 0px;
    top: 5px;
}

.inventory-area .sidebar-widget .inner-list ul li a:hover {
    color: var(--primaryBG)
}

.sidebar-widget {
    margin-bottom: 30px
}

.sidebar-widget .panel-header {
    font-weight: 700;
    color: #363940;
    font-size: 17px;
    text-transform: none;
    border: none;
    position: relative;
    padding-right: 30px;
    cursor: pointer;
    margin-bottom: 10px;
    padding-bottom: 10px
}

.sidebar-widget .panel-header::after {
    position: absolute;
    content: "";
    top: 34%;
    right: 6px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #040C19;
    border-right: 1px solid #040C19;
    transition: all 0.4s;
}

.inventory-area .sidebar-widget input[type=checkbox] {
    display: none;
}

.inventory-area .sidebar-widget label {
    color: #363940;
    position: relative;
    padding-left: 30px;
    font-size: 15px;
}

.inventory-area .sidebar-widget label::before {
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #99BBD9;
    background: #fff;
    border-radius: 4px;
}

.inventory-area .sidebar-widget label::after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 8px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    visibility: hidden;
}

.inventory-area .sidebar-widget input[type=checkbox]:checked ~ label::before {
    background: var(--secondaryBG);
}

.inventory-area .sidebar-widget input[type=checkbox]:checked ~ label::after {
    opacity: 1;
    visibility: visible;
}

.sidebar-widget .panel-header.act + div {
    overflow: hidden;
    max-height: 0;
}

.sidebar-panel {
    border: none;
    border-bottom: 1px solid #D8E9EE;
    background: transparent;
    padding: 20px;
}

.sidebar-widget .panel-header.act {
    padding: 0;
    margin: 0;
}

.sidebar-panel:last-child {
    border: none
}

.sidebar-widget .checkbox label span {
    min-width: 24px;
    text-align: center;
    padding: 0;
    font-size: 11px;
    color: #3a4570;
    background-color: #dfe2ee;
    border-radius: 8px;
    display: inline-block;
    margin-left: 5px;
    line-height: 21px;
}

.sidebar-widget .price-input {
    width: 100%;
    display: flex;
    margin-bottom: 30px;
    justify-content: space-between;
}

.sidebar-widget .price-input .field {
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
    position: relative
}

.sidebar-widget .price-input .field span {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 1;
    transform: translateY(-50%);
    color: #4B5157;
}

.sidebar-widget .field input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 19px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #D9DADB;
    -moz-appearance: textfield;
    color: #4B5157;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 30px;
    text-align: left;
}

.sidebar-widget .price-input input[type="number"]::-webkit-outer-spin-button,
.sidebar-widget .price-input input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.sidebar-widget .price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
    position: relative
}

.sidebar-widget .price-input .separator::after {
    position: absolute;
    content: "";
    top: 50%;
    width: 40%;
    height: 2px;
    transform: translate(-50%, -50%);
    left: 50%;
    background: #BCBFC2;
    border-radius: 2px
}

.sidebar-widget .slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.sidebar-widget .slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--primaryBG);
}

.sidebar-widget .range-input {
    position: relative;
}

.sidebar-widget .range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.sidebar-widget .range-input input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: #fff;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    cursor: pointer
}

.sidebar-widget .range-input input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #fff;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    cursor: pointer
}

.price_filter {
    margin-top: 25px
}

.price_filter a {
    font-size: 14px;
    color: #4B5157
}

.related-links {
    padding: 35px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.related-links ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.related-links ul li {
    padding: 0 5px 5px;
}

.related-links ul li a {
    background: var(--secondaryBG);
    color: #fff;
    display: table;
    padding: 5px 10px;
    font-size: 14px;
}

.related-links ul li a:hover {
    background: var(--primaryBG);
    color: var(--whiteColor)
}

.page-banner.alt {
    padding: 10px 0
}

.page-banner.alt::before {
    display: none
}

.products-details-area {
    padding-top: 30px;
    padding-bottom: 30px
}

.share-btns .inner {
    line-height: normal
}

.share-btns a {
    display: inline-block;
    margin-left: 10px;
    filter: invert(1) grayscale(1);
}

.share-btns a:hover {
    filter: invert(0) grayscale(0)
}

.single-product-heading .h3 {
    font-weight: 700;
    font-size: 32px;
}

.thumbsSlider {
    position: relative;
}

.thumbsSlider .main-thumb-slider {
    overflow: hidden;
}

.thumbsSlider .main-thumb-slider {
    padding-bottom: 10px;
}

.thumbsSlider:not(.alt) .main-thumb-slider .image {
    width: 100%;
    display: block;
}

@media (min-width: 1100px) {
    .thumbsSlider:not(.alt) .main-thumb-slider .image {
        height: 375px;
    }
}

.thumbsSlider .main-thumb-slider .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-thumb-slider .slide {
    padding: 0 5px;
}

.mini-thumb-slider .slick-list {
    margin-left: -5px;
    margin-right: -5px
}


.thumbsSlider .mini-thumb-slider .image {
    width: 100px;
    height: 80px;
}

@media (min-width: 1100px) {
    .thumbsSlider .mini-thumb-slider .image {
        height: 75px;
    }
}

@media (min-width: 992px) {
    .thumbsSlider .mini-thumb-slider .image {
        width: auto;
        padding: 5px;
    }
}

.thumbsSlider .mini-thumb-slider .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-left: 0;
}

.thumb-actions > div {
    line-height: 14px;
}

.gallery-link {
    display: inline-block;
}

.thumb-actions a {
    font-size: 13px;
    text-decoration: underline;
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid var(--secondaryBG);
    line-height: 14px;
    font-weight: 500;
}

.gallery-bulk {
    height: 0;
    width: 0;
}

.thumb-actions a:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none;
}

.product-head {
    margin-bottom: 20px;
}

.mn-slider .slick-list {
    margin-right: -5px
}

.text_red {
    color: var(--primaryBG)
}

.product-info-table:not(.alt) ul li > div {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 0;
}

.product-info-table .td {
    padding: 12px 10px;
    font-size: 14px;
    color: #989898;
    line-height: 23px;
}

.product-info-table:not(.alt) ul li .td:first-child {
    width: 40%;
}

.product-info-table .dis-price {
    color: #040c19;
    font-weight: 600;
    font-size: 22px;
}

.product-info-table .td.small * {
    font-size: 18px;
}

.product-info-table .price {
    font-weight: 600;
    color: var(--primaryBG);
    font-size: 22px;
}

.product-info-table .td a {
    font-weight: 500;
    font-size: 14px;
}

.product-info-table .td a img {
    margin-right: 5px
}

.product-info-table .price-msrp {
    color: #000;
    text-decoration: line-through !important;
    text-decoration-color: #E5001D !important;
}

.product-info-table .status {
    display: flex;
    margin: 15px 0;
}

.product-info-table .status div {
    background: #1e466d;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    padding: 6px 8px;
    margin-right: 10px;
    line-height: 1;
}

.product-info-table .status div:first-child {
    background: #278bb3;
}

.sp-quick-links {
    display: flex;
}

.sp-quick-links {
    margin: 0 -5px 15px;
    display: flex;
}

.sp-quick-links a {
    font-size: 14px;
    border: 1px solid var(--secondaryBG);
    text-align: center;
    padding: 8px 10px;
    margin: 0 5px;
    display: inline-block;
}

.sp-quick-links a {
    flex: 1;
}

.sp-quick-links a:last-child {
    border-color: var(--primaryBG);
    color: var(--primaryBG);
}

.sp-quick-links a:first-child {
    background: var(--secondaryBG);
    color: var(--whiteColor)
}

.sp-boat-features {
    border: 1px solid #eee;
    border-width: 1px 0;
    margin: 5px 0;
}

.sp-boat-features ul {
    display: flex;
    justify-content: space-between;
}

.sp-boat-features ul li {
    padding: 15px 0;
    line-height: 1;
    color: var(--secondaryColor);
    font-weight: 600;
}

.sp-boat-features ul li span {
    font-size: 13px;
    color: #999;
    display: block;
    padding-bottom: 7px;
    font-weight: 400;
}

.sp-contact {
    display: flex;
    justify-content: center;
    padding: 10px 0 0;
}

.sp-contact a {
    color: var(--secondaryColor);
    font-weight: 600;
}

.sp-contact a span {
    text-decoration: underline !important;
}

.sp-contact .popupAction {
    display: none;
}

.sideWidget {
    padding: 30px;
    background: var(--graylightBG);
    border: 1px solid var(--lightBG);
    border-radius: 9px;
}

.sideBartitle {
    font-size: 22px;
}

.products-details-area .container,
.product-info-area .container {
    max-width: 1300px
}

.product-info-area {
    padding-bottom: 70px
}

.sideForm form input,
.sideForm form textarea {
    width: 100%;
    height: 50px;
    border: 1px solid var(--lightBG);
    background: var(--whiteColor);
    padding: 10px 20px;
}

.sideForm form li {
    margin-bottom: 10px;
}

.sideForm form textarea {
    height: 130px;
}

.sideForm form button {
    display: block;
    width: 100%;
}

.details-info-box {
    background: var(--graylightBG);
    border-radius: 9px;
    padding: 30px;
    border: 1px solid var(--lightBG);
    margin-top: 30px;
}

.details-info-box .inner {
    padding-bottom: 30px;
    position: relative
}

@media (min-width: 1100px) {
    .details-info-box .sp-list-2 {
        column-count: 3 !important;
    }
}

@media (min-width: 600px) {
    .details-info-box ul:not(.sp-list-1) {
        column-count: 2;
    }
}

.details-info-box .list_item li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
}

.sp-list-1 li {
    position: relative;
}

.details-info-box .list_item li span {
    width: 50%;
    color: var(--secondaryColor);
    font-weight: 500;
}

.sp-list-1 li:after {
    content: "";
    background: var(--lightBG);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
}

.details-info-box .heading {
    margin-bottom: 20px;
}

.details-info-box .color-option .box {
    margin-top: 20px;
}

.details-info-box .color-option .box span.color-item {
    height: 90px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 10px;
}

.details-info-box .color-option .box span {
    color: var(--secondaryColor);
    line-height: normal;
    font-size: 15px;
}

.details-info-box .inner.color::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 100%;
    background: var(--lightBG);
}

.col-md-4 .details-info-box,
.col-md-8 .details-info-box {
    height: calc(100% - 30px);
}

.optional-upgrades-list li {
    margin: 0 0 20px;
}

.details-info-box .upgrade-box {
    padding: 12px;
    border-radius: 5px;
    background: var(--whiteColor);
    font-size: 14px;
    line-height: 22px;
}

.details-info-box .calculator {
    position: relative;
    padding-bottom: 0;
    margin: 30px 0;
}

.details-info-box .calculator .border_sep {
    position: absolute;
    left: calc(50% + 40px);
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
}

.details-info-box form label,
.details-info-box form .label {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 15px;
}

.details-info-box form input {
    width: 100%;
    height: 45px;
    background-color: var(--whiteColor);
    border: 1px solid var(--lightBG);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 15px;
}

.details-info-box form .loanAmount {
    font-weight: 500;
    color: var(--secondaryColor);
    font-size: 22px;
}

.details-info-box .calculator_note {
    font-size: 15px;
    padding-left: 50px;
    line-height: 22px;
}

.details-info-box form li {
    margin-bottom: 20px;
    position: relative;
}

.details-info-box form li .percent {
    position: absolute;
    right: 25px;
    top: 42px;
    font-size: 15px;
}

.form-area {
    padding: 70px 0;
    padding-bottom: 50px
}

.contact_side .c_info {
    padding-left: 60px;
    position: relative;
    margin-bottom: 30px;
}

.contact_side .c_info .icon {
    position: absolute;
    left: 0;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primaryBG);
}

.contact_side .c_info .icon img {
    height: 18px;
}

.contact_side .c_info .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondaryColor);
    margin-bottom: 5px;
}

.c_info.address a {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lightBG);
    display: inline-block;
    margin-bottom: 20px;
    width: 100%;
}

.c_info.address a:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.form-area .c_form {
    background: var(--graylightBG);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--lightBG);
}

.form-area .c_form .c_form_heading {
    font-size: 22px;
    color: var(--secondaryColor);
    font-weight: 600;
    position: relative;
    margin: 20px 0;
}

.form-area .c_form .c_form_heading span {
    background: var(--graylightBG);
    padding: 5px 30px;
    padding-left: 0;
    position: relative;
    z-index: 1;
}

.form-area .c_form .c_form_heading::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    height: 10px;
    background: var(--lightBG);
    content: "";
}

.form-area .c_form li {
    margin: 5px 0;
}

.form-area .c_form input {
    width: 100%;
    height: 55px;
    background: var(--whiteColor);
    border: 1px solid var(--lightBG);
    padding: 10px 20px;
}

.form-area .c_form select {
    width: 100%;
    height: 55px;
    background: var(--whiteColor);
    border: 1px solid var(--lightBG);
    padding: 10px 20px;
    color: var(--primaryColor)
}

.form-area .c_form legend {
    color: var(--secondaryColor);
    font-size: 16px;
    font-weight: 600;
    width: auto;
    margin-right: 20px;
}

.form-area .c_form .custom_radio li {
    display: inline-block;
    margin-right: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.form-area .c_form .custom_radio li:last-child {
    margin-right: 0;
}

.form-area .c_form .custom_radio label {
    padding-left: 30px;
    position: relative;
}

.form-area .c_form .custom_radio label::before {
    width: 20px;
    height: 20px;
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
    border-radius: 50%;
    border: 1px solid var(--secondaryColor);
}

.form-area .c_form .custom_radio label::after {
    width: 12px;
    height: 12px;
    position: absolute;
    content: "";
    top: 8px;
    left: 4px;
    border-radius: 50%;
    background: var(--secondaryColor);
    opacity: 0;
    transition: all 0.4s;
}

.form-area .c_form input::placeholder,
.form-area .c_form select,
.form-area .c_form textarea {
    opacity: 0.7
}

.form-area .c_form .custom_radio input[type=radio] {
    display: none;
}

.form-area .c_form .custom_radio input[type=radio]:checked ~ label::after {
    opacity: 1;
}

.form-area .c_form textarea {
    width: 100%;
    height: 110px;
    background: var(--whiteColor);
    border: 1px solid var(--lightBG);
    padding: 10px 20px;
}

.map iframe {
    height: 400px;
    width: 100%;
}

.video-area {
    padding: 70px 0;
    background: var(--graylightBG)
}

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

.video-image .play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
}

.player {
    background: none;
    width: 70px;
    height: 70px;
    border: solid 3px var(--primaryBG);
    border-radius: 100%;
    position: relative;
    text-indent: -9999px;
    background: var(--primaryBG)
}

.player span {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.player:hover {
    background: var(--secondaryBG);
    cursor: pointer;
    border-color: var(--secondaryBG);
}

.image-box-module {
    padding: 70px 0
}

.image-box-v3 .info {
    margin-top: 40px;
}

.group_btn a {
    margin: 0 6px
}

.expertise-area .inner {
    padding: 60px;
    background: var(--graylightBG);
    border-radius: 9px;
    border: 1px solid var(--lightBG)
}

.expertise-area .inner .expertise-items {
    margin-top: 30px;
    padding: 0 45px;
    padding-left: 55px;
    position: relative;
}

.expertise-area .inner .expertise-items .title {
    color: var(--secondaryColor);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
}

.expertise-area .inner .expertise-items::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 20px;
    height: 16px;
    content: "";
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22.408" height="18.667" viewBox="0 0 22.408 18.667"><path id="Path_94" data-name="Path 94" d="M12398.03,1290.5l5.51,5.51,13.363-13.363" transform="translate(-12396.263 -1280.878)" fill="none" stroke="%231e466d" stroke-width="5"/></svg>') no-repeat scroll 0 0/cover;
}

.text-uppercase {
    text-transform: uppercase
}

.instagram-slider {
    padding: 70px 0;
    background: var(--graylightBG);
}

.site-heading {
    margin-bottom: 40px
}

.image-text-area .alt-inner {
    background: var(--graylightBG);
    position: relative;
    transition: all 0.4s;
}

.image-text-area .alt-inner > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 47%;
    height: 100%;
    object-fit: cover;
}

.image-text-area .alt-inner .content-text {
    padding: 40px;
    padding-left: 20px;
}

.image-text-area .alt-inner .content-text img {
    margin-bottom: 20px;
    filter: grayscale(100) invert(1);
    transition: all 0.4s;
    max-width: 190px;
}

.image-text-area .alt-inner .content-text .heading {
    font-size: 30px;
}

.pr_date {
    display: block;
    margin-bottom: 5px;
    color: var(--secondaryColor);
    text-transform: uppercase;
}

.image-text-area .alt-inner.alt > img {
    left: auto;
    right: 0;
}

.image-text-area .alt-inner.alt .content-text {
    padding-left: 40px;
    padding-right: 20px;
}

.custom_modal {
    border-radius: 0;
}

.custom_modal .modal-header {
    padding: 15px 30px;
}

.custom_modal .modal-header .modal-title {
    font-weight: 600;
}

.custom_modal .promotion-content {
    padding: 15px;
}

.custom_modal .heading {
    font-weight: 600;
}

.custom_modal .date {
    display: block;
    margin-bottom: 5px;
    color: var(--secondaryColor);
    text-transform: uppercase;
}

.promotion-content .innerHeading {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
}

.custom_modal .modalbanner {
    margin: 30px 0;
}

.promotion-content .content h4,
.promotion-content .content h5,
.promotion-content .content h3 {
    font-size: 22px;
}

.custom_modal p {
    font-size: 15px;
    line-height: 22px;
}

.promotion-content ul {
    margin-top: 15px;
    margin-bottom: 30px;
}

.promotion-content ul li {
    margin: 5px 0;
    position: relative;
    padding-left: 20px;
}

.promotion-content ul li::before {
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--secondaryBG);
}

.icon-teaser-area {
    padding: 70px 0;
    background: var(--graylightBG);
}

.icon-teaser-box {
    padding: 50px 35px;
    background: var(--whiteColor);
    border-radius: 9px;
    font-size: 14px;
    line-height: 24px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.icon-teaser-box .icon {
    width: 100px;
    margin: 0 auto 26px;
    overflow: hidden;
    border-radius: 50%
}

.icon-teaser-box .title {
    font-weight: 600;
    color: var(--secondaryColor);
    font-size: 24px;
    margin-bottom: 15px;
}

.c_form .quantity .add_row {
    width: 35px;
    height: 35px;
    border: 2px solid var(--primaryBG);
    font-size: 0px;
    border-radius: 50%;
    position: relative;
    margin-left: 3px;
    margin-top: 35px;
}

.c_form .quantity .add_row:before {
    content: "+";
    width: 32px;
    height: 31px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primaryBG);
}

.form-area .c_form .cta-btn {
    margin-top: 20px;
}

.form-area.alt {
    padding-bottom: 70px
}

.gallery_box {
    margin-top: 30px;
    display: block;
    overflow: hidden;
    border-radius: 5px
}

.gallery-area {
    padding: 70px 0
}

.choose-area {
    padding: 70px 0
}

.choose-area .inner {
    background: var(--graylightBG);
    border-radius: 9px;
    padding: 80px;
    border: 1px solid var(--lightBG);
    position: relative;
}

.choose-area .inner .border_sep {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.choose-area .inner ul li {
    padding-left: 30px;
    position: relative;
    margin: 10px 0;
    display: block;
}

.choose-area .inner ul li::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg id='Group_3418' data-name='Group 3418' transform='translate(-1051 -3824)'%3E%3Ccircle id='Ellipse_20' data-name='Ellipse 20' cx='12' cy='12' r='12' transform='translate(1051 3824)' fill='%23DF302B'/%3E%3Cpath id='Path_109' data-name='Path 109' d='M15237.332,3836.665l3.072,3.261,6.441-6.441' transform='translate(-14179.089 -0.706)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cta-area-box {
    padding: 70px 0;
    position: relative;
}

.cta-inner-v1 {
    padding: 60px;
    background: var(--primaryBG);
    color: var(--whiteColor);
    border-radius: 10px;
}

.cta-inner-v1 .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-inner-v1 .btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text-area {
    padding: 70px 0;
}

.blog-listing {
    padding: 70px 0;
}

.blog-box {
    display: block;
    margin-bottom: 30px;
    background: var(--graylightBG);
}

.blog-box:hover {
    transform: translateY(-12px);
}

.blog-box .text {
    padding: 40px;
}

.blog-box .text .title {
    font-weight: 700;
    color: var(--secondaryColor);
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-box .text p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-box .link_text {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    position: relative;
    color: var(--secondaryColor);
}

.blog-box .link_text::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    transition: all 0.4s;
    height: 1.5px;
    background: var(--secondaryBG);
}

.blog-listing .sidebar .title {
    font-size: 22px;
    font-weight: 700;
    padding: 30px;
    background: var(--secondaryBG);
    color: var(--whiteColor);
}

.blog-listing .sidebar li {
    border-bottom: 1px solid #D1E2E6;
}

.blog-listing .sidebar li a {
    display: block;
    padding: 30px;
    background: var(--graylightBG);
    color: var(--secondaryColor);
    position: relative;
    padding-right: 60px;
}

.blog-listing .sidebar li a::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    right: 30px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid var(--secondaryBG);
    border-right: 1px solid var(--secondaryBG);
    transition: all 0.4s;
}

.blog-listing .sidebar li a:hover::after {
    right: 20px;
}

.blog-listing .sidebar-cta {
    padding: 30px;
    background: var(--secondaryBG);
    margin-top: 30px;
    color: var(--whiteColor);
}

.blog-listing .sidebar-cta .title {
    font-weight: 600;
    color: var(--whiteColor);
}

.blog-listing .sidebar li:last-child {
    border-bottom: 0;
}

.postBanner::before {
    display: none
}

.postBanner {
    padding-bottom: 300px;
    padding-top: 50px
}

.page-banner.postBanner .heading {
    color: var(--whiteColor);
    font-weight: 600;
}

.postBanner .post-meta,
.postBanner .post-meta a {
    color: var(--whiteColor);
}

.post-content-area {
    padding-top: 0;
    margin-top: -260px;
    position: relative;
    z-index: 1;
    padding-bottom: 70px;
}

.post-content-area .featured-image {
    margin-bottom: 40px;
}

.post-content-area .author-box {
    padding: 20px;
    background: var(--graylightBG);
    border-radius: 9px;
    border: 1px solid var(--lightBG);
    margin-top: 50px;
}

.post-content-area h3,
.post-content-area h3 {
    font-weight: 600;
}

.related-post {
    padding: 70px 0;
}

.box-slider .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.box-slider .slide {
    padding: 0 15px;
    padding-top: 30px;
}

.image-box-v4 {
    position: relative;
    margin: 15px 0;
}

.image-box-v4 .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 1;
}

.image-box-v4::after {
    background: linear-gradient(0deg, rgba(22, 28, 36, 1) 0%, rgba(22, 28, 36, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    content: "";
    transition: all 0.4s;
}

.image-box-v4 .info img {
    width: 30px;
    min-width: 30px;
    margin-right: 12px;
    position: relative;
    top: -5px;
}

.image-box-v4 .fs_30 {
    font-size: 26px;
}

.image-box-v4 .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    background: rgba(27, 34, 44, 0.71);
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

.image-box-v4 .hover img {
    width: 45px;
}

.image-box-v4 .hover .title {
    margin: 25px 0;
}

.image-box-v4:hover .info {
    opacity: 0;
    visibility: hidden;
}

.image-box-v4:hover .hover {
    opacity: 1;
    visibility: visible;
}

.related-post {
    overflow-x: hidden
}

.get-quote-modal .modal-dialog {
    max-width: 600px
}

.get-quote-modal .modal-header {
    border: none
}

.get-quote-modal .heading {
    font-size: 28px;
    margin: 0
}

.get-quote-modal .modal-content {
    background: var(--graylightBG);
}

.get-quote-modal .c_form {
    padding: 0 15px
}

.get-quote-modal .c_form input,
.get-quote-modal .c_form textarea,
.get-quote-modal .c_form select {
    width: 100%;
    height: 55px;
    background: var(--whiteColor);
    border: 1px solid var(--lightBG);
    padding: 10px 20px;
}

.get-quote-modal .c_form textarea {
    height: 130px
}

.get-quote-modal .c_form li {
    margin-bottom: 15px
}

.FilterToggle {
    display: none
}

.filterFooter {
    display: none
}

.closeformPopupAlt {
    display: none
}

.popupAction.alt {
    display: none
}
.testimonial-area.alt .testimonial-box{
    margin-bottom: 30px
}
.footer_social a{
    display: inline-block;
    margin-right: 5px
}
.footer_social a em{
    color: #fff;
}
.copyright a{
    color: var(--whiteColor);
    opacity: 1
}

/*Responsive*/

@media(max-width:1200px) {
    #menu-toggle {
        display: block;
        margin-left: 10px;
    }

    nav#menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 999;
        min-height: 100vh;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s all;
        text-align: center;
    }

    nav#menu.active {
        opacity: 1;
        visibility: visible;
        transition: 0.3s all;
    }

    .mainmenu ul {
        text-align: center;
    }

    nav#menu {
        overflow: hidden;
        max-height: 0;
        background: var(--secondaryBG);
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        text-align: center;
    }

    nav#menu,
    nav#menu > ul ul {
        overflow: auto;
        padding: 50px 20px;
        padding-top: 15px;
    }

    nav#menu > ul > li {
        display: block !important;
        margin: 0 !important;
        padding: 0;
        position: relative;
    }

    nav#menu ul ul,
    nav#menu ul ul ul {
        display: inherit;
        position: relative;
        left: auto;
        top: auto;
        padding: 0;
    }

    nav#menu > ul > li > span {
        width: 40px;
        height: 35px;
        position: absolute;
        right: 0;
        top: 6px;
        z-index: 2;
    }

    nav#menu ul ul.sub-menu.active {
        visibility: visible;
        opacity: 1;
        max-height: 55em;
    }

    nav#menu > ul > li > a {
        display: block;
        position: relative;
        padding: 10px 0px;
        color: var(--whiteColor);
        font-size: 18px;
        opacity: 1;
    }

    nav#menu > ul > li:last-child > a {
        border: none;
    }

    .mainmenu ul li > ul {
        border: none;
    }

    nav#menu li.has-submenu > a:after {
        border: none;
        content: "+";
        position: absolute;
        top: 10px;
        right: 9px;
        display: block;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        height: auto;
        font-size: 30px;
        font-weight: 400;
    }

    .sub-menu::before {
        height: 90% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .sub-menu::after {
        display: none;
    }

    nav#menu li.has-submenu > a.active:after {
        content: "-";
        font-size: 40px;
    }

    nav#menu ul ul > li a {
        padding: 10px 0px;
        line-height: normal;
        color: #fff;
        font-size: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    ul.sub-menu {
        padding-left: 20px;
    }

    .header-toggle .active span:nth-child(2) {
        opacity: 0;
    }

    .header-toggle .active span:nth-child(1) {
        top: 14px;
        transform: rotate(45deg);
    }

    .header-toggle .active span:nth-child(3) {
        top: 0px;
        transform: rotate(-45deg);
    }

    .header-toggle {
        display: block;
    }

    nav#menu > ul ul {
        background: transparent;
        box-shadow: none;
        width: 100%;
        padding-left: 15px;
    }

    .header-area {
        padding: 14px 0;
    }

    .header-area .header-navigation {
        padding: 0;
    }

    .header-area .action {
        margin: 0;
    }

    .header-area::after {
        height: 15px;
    }

    .header-area .site-logo {
        width: 55px;
    }

    .header-area .call {}

    .header-area .call .title {
        display: block;
        color: #DF302B;
        font-weight: 700;
        font-size: 14px;
    }

    .header-area .call a {
        font-size: 18px;
        font-weight: 600;
        line-height: 20px;
    }

    .menulogo {
        width: 230px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .closeMenu {
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 11;
    }

    body.act {
        overflow: hidden;
    }

    .mCall {
        flex-direction: row !important;
        justify-content: center;
        margin: 30px 0 !important;
    }

    .mCall img {
        margin-right: 15px !important;
    }

    .mCall a {
        color: #FFFFFF !important;
    }

    .dn_12 {
        display: none !important;
    }

    .df_12 {
        display: flex !important;
    }

    .db_12 {
        display: block !important;
    }

    .header-area .site-logo {
        width: 190px;
    }

    nav#menu > ul ul {
        display: none;
        max-height: 10000px;
    }

    nav#menu > ul ul.show {
        display: block;
    }

    nav#menu > ul ul {
        border: none;
        padding: 0
    }

    .box.style1 .price {
        font-size: 18px;
    }

    .image-cta .inner {
        height: 320px;
    }

    .image-cta .meta {
        padding: 20px;
    }

    .image-cta .meta img {
        height: 60px;
        margin-right: 20px;
    }

    .image-cta .meta .title {
        font-size: 24px;
        margin: 0;
    }

    .image-cta .inner > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .boat-list-slider .slick-list {
        padding-right: 100px;
        margin-left: 40px;
    }

    .boat-list-slider .slide {
        padding: 0 8px;
        padding-top: 20px;
    }

    .boat-list-slider .slick-prev {
        display: none;
    }

    .boat-list-slider .slick-next {
        left: 0;
        top: 43%;
        right: auto;
        transform: rotate(180deg);
    }

    .footer-banner {
        margin-top: -250px;
    }

    .testimonial-slider .slick-list {
        margin-left: -320px;
        margin-right: -320px;
    }

    .stats-box .number {
        font-size: 62px
    }

    .stats-box p {
        font-size: 16px;
    }

    .single_listing .feature_list ul li {
        font-size: 12px;
        line-height: 20px;
    }

    .single_listing .actions a {
        padding: 7px 3px;
        font-size: 12px;
    }

    .single_listing .title {
        font-size: 20px;
    }

    .breadcrumb_navigation ul li {
        font-size: 10px;
        margin-right: 7px;
        padding-right: 7px;
    }

    .sp-quick-links {
        display: block
    }
}

@media(max-width:991px) {
    .sp-quick-links {
        display: flex
    }

    h1,
    .h1 {
        font-size: 40px;
    }

    h2,
    .h2 {
        font-size: 30px;
    }

    h3,
    .h3 {
        font-size: 26px;
    }

    h5,
    .h5 {
        font-size: 18px;
        line-height: 28px;
    }

    .client-logo {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .client-logo .inner {
        display: block;
    }

    .feature-boat {
        padding: 50px 0;
    }

    .boat-list-slider .slick-list {
        padding-right: 100px;
        margin-left: 40px;
    }

    .boat-list-slider .slide {
        padding: 0 8px;
        padding-top: 20px;
    }

    a {
        word-wrap: break-word;
    }

    .boat-list-slider .slick-prev {
        display: none;
    }

    .boat-list-slider .slick-next {
        left: 0;
        top: 43%;
        right: auto;
        transform: rotate(180deg);
    }

    .perfect-boat {
        padding: 50px 0;
    }

    .perfect-boat .box {
        padding: 20px 40px;
        min-height: 100px;
        line-height: 22px;
    }

    section {
        padding: 50px 0
    }

    .service-parts {
        padding: 50px 0;
    }

    .service-parts .box .title {
        font-size: 22px;
    }

    .service-parts .box .inner {
        padding: 25px;
    }

    .service-parts .box .inner .icon {
        height: 45px;
    }

    .service-parts .text {
        margin-bottom: 30px;
    }

    .cta-area {
        padding: 50px 0;
    }

    .image-text-area {
        padding: 50px 0;
    }

    .call_group_action .cta-btn {
        padding: 8px 15px;
        font-size: 14px;
        width: auto;
        flex: 1
    }

    .call_action img {
        margin-right: 10px;
        width: 35px;
        height: 35px;
    }

    .call_action span {
        font-size: 12px;
    }

    .call_action a {
        font-size: 18px
    }

    br:not(.c_info br) {
        display: none;
    }

    .boat-breands {
        padding: 50px 0;
    }

    .boat-breands .slide {
        padding: 30px 5px;
    }

    .boat-breands .box .brand-logo {
        padding: 15px;
    }

    .boat-breands .box .brand-logo img {
        height: 20px;
    }

    .footer-banner {
        margin-top: -100px;
        height: 315px;
    }

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

    .footer-top {
        padding: 30px 0;
    }

    .hero-area .hero_bg {
        height: 280px;
    }

    .copyright {
        font-size: 12px;
    }

    .box.style1 .image {
        height: 200px;
    }

    .stats-box .number {
        font-size: 50px;
    }

    .stats-box p {
        font-size: 16px
    }

    .stats-area,
    .testimonial-area {
        padding: 50px 0;
    }

    .testimonial-slider .slick-list {
        margin-left: 0px;
        margin-right: 0px;
    }

    .testimonial-box {
        padding: 25px;
    }

    .page-banner {
        padding-bottom: 50px
    }

    .video-area {
        padding: 50px 0;
    }

    .image-box-module {
        padding: 50px 0;
    }

    .expertise-area {
        padding: 0
    }

    .expertise-area .inner {
        padding: 40px;
    }

    .expertise-area .inner .expertise-items {
        padding-left: 40px;
        padding-right: 0;
    }

    .cta-btn,
    .cta-btn-border {
        padding: 10px 15px
    }

    .instagram-slider {
        padding: 50px 0
    }

    .page-banner .heading {
        font-size: 30px;
    }

    .related-post {
        padding: 50px 0
    }

    .blog-box .text {
        padding: 30px;
    }

    .postBanner {
        padding-bottom: 220px;
    }

    .post-content-area {
        margin-top: -180px;
        padding-bottom: 20px;
    }

    .post-author-image {
        margin-bottom: 20px;
    }

    .blog-listing {
        padding: 50px 0;
    }

    .blog-listing .sidebar .title {
        font-size: 18px;
        padding: 20px;
    }

    .blog-listing .sidebar li a {
        padding: 15px;
        padding-right: 40px;
    }

    .inventory-area {
        padding: 50px 0;
    }

    .single_listing .top {
        padding: 20px;
    }

    .single_listing .top .thumbs {
        position: inherit;
        width: 100%;
        margin-bottom: 20px;
        height: 250px;
    }

    .single_listing .head {
        margin-bottom: 20px;
        padding-right: 70px;
    }

    .single_listing .feature_list ul {
        column-count: 1;
    }

    .single_listing .feature_list ul li {
        margin: 3px 0;
    }

    .single_listing .actions {
        flex-wrap: wrap;
    }

    .single_listing .actions a {
        flex: 0 0 50%;
        padding: 10px 8px;
        font-size: 13px;
        line-height: 20px;
    }

    .single_listing .feature_list ul li span {
        width: 50%;
    }

    .single_listing .title {
        font-size: 20px;
    }

    .page-banner .call_group_action .cta-btn {
        flex: initial
    }

    .filter-result {
        display: block
    }

    .filter-result select {
        width: 100%;
        margin-top: 10px
    }

    .inventory-area .sidebar-widget .inner-list ul {
        column-count: 1;
    }

    .product-head {
        margin-bottom: 10px;
    }

    .thumb-actions a {
        font-size: 9px
    }

    .product-info-table .td.small * {
        font-size: 15px;
    }

    .product-info-table .td {
        padding: 8px;
        font-size: 12px;
    }

    .product-info-table .price {
        font-size: 16px;
    }

    .details-info-box .heading {
        font-size: 24px;
    }

    .details-info-box .color-option {
        margin: 15px 0;
    }

    .product-info-area {
        padding-bottom: 50px
    }

    .single-product-heading .h3 {
        font-size: 20px
    }

    .popupAction.alt {
        display: block
    }

    .popupAction.alt a {
        display: block;
        margin-top: 20px
    }

    .product-info-area {
        padding-top: 0
    }

    .products-details-area {
        padding-bottom: 0
    }

    .details-info-box .inner.color::after {
        display: none
    }

    .details-info-box .calculator .border_sep {
        display: none
    }

    .details-info-box .calculator_note {
        padding-left: 0;
    }

    .sideForm.sideWidget.popupFormAlt {
        position: fixed;
        top: 0;
        z-index: 999;
        width: 100%;
        height: 100%;
        left: 0;
        border-radius: 0;
        border: none;
        display: none
    }

    .sideForm.sideWidget.popupFormAlt.active {
        display: block
    }

    .closeformPopupAlt {
        position: absolute;
        top: 10px;
        right: 10px;
        display: block;
    }

    .form-area {
        padding: 50px 0;
        padding-bottom: 50px;
    }
    .form-area .c_form{
        padding: 30px
    }
    .image-box-v4 .fs_30 {
    font-size: 16px;
}
    .image-box-v4 .hover .title {
    margin: 10px 0;
}
    .image-box-v4 .hover img {
    width: 20px;
}
    .image-box-v4 .hover{
        padding: 15px
    }
    .image-box-v4 .btn_group{
        display: flex;
        gap:5px
        
    }
    .image-box-v4 .btn_group a{
        padding: 6px 10px;
        font-size: 10px
    }
    .icon-teaser-area{
        padding: 50px 0;
        padding-bottom: 20px
    }
    .form-area .c_form .c_form_heading{
        font-size: 18px
    }
    .gallery-area{
        padding: 50px 0
    }
    .image-text-area .alt-inner .content-text .heading {
    font-size: 22px;
}
    .image-text-area .alt-inner .content-text, .image-text-area .alt-inner.alt .content-text {
    padding: 0px;
}
    .image-text-area .alt-inner {
    padding: 30px;
}
    .choose-area .inner {
    padding: 30px;
}
    .choose-area {
    padding: 50px 0;
}
    .cta-inner-v1{
        padding: 30px
    }
    .text-area {
    padding: 50px 0;
}
    .brand-slider .slick-arrow svg {
    width: 50px;
}
}

@media(max-width:767px) {
    
    .image-cta .inner {
        height: 220px;
    }

    .image-cta .meta img {
        height: 30px;
        margin-right: 20px;
    }

    .image-cta .meta .title {
        font-size: 17px;
        margin: 0;
    }

    .footer-banner {
        margin-top: -100px;
        height: 215px;
    }

    .footer-widget {
        margin: 15px 0;
    }

    .call_action a {
        font-size: 16px;
    }

    .call_group_action .call_action {
        margin-left: 10px;
    }

    .testimonial-box .subject {
        font-size: 18px;
    }

    .image-box-v3 .info {
        margin-top: 30px;
    }

    .expertise-area .inner {
        padding: 30px;
    }

    .expertise-area .inner .expertise-items .title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .step_tabs .list-unstyled {
        background: var(--secondaryBG);
        list-style: none;
        padding: 0;
        height: 56px;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 16px;
        line-height: 1;
        font-weight: 600;
        color: var(--whiteColor);
        width: 100%;
        margin-bottom: 30px;
    }

    .step_tabs .list-unstyled li {
        padding: 19px 20px;
        z-index: 2;
    }

    .step_tabs .list-unstyled li.init {
        cursor: pointer;
        position: relative;
    }

    .step_tabs .list-unstyled li.init::after {
        position: absolute;
        content: "";
        top: 50%;
        right: 20px;
        width: 7px;
        height: 7px;
        border-bottom: 1px solid var(--whiteColor);
        border-right: 1px solid var(--whiteColor);
        transform: rotate(45deg) translateY(-50%);
    }

    .step_tabs .list-unstyled li a {
        color: var(--whiteColor);
    }

    .step_tabs.alt .list-unstyled li:not(.init) a {
        padding: 15px;
        display: block;
    }

    .step_tabs .list-unstyled li:not(.init) {
        padding: 15px;
        width: 100%;
        display: none;
        background: var(--secondaryBG);
        color: var(--whiteColor);
        position: relative;
        font-size: 14px;
    }

    .step_tabs.alt .list-unstyled li:not(.init) {
        padding: 0;
    }
    .image-box-v4 .info{
        padding: 20px
    }
    .image-box-v4 .info img {
    width: 20px;
    min-width: 20px;
}
    .brand-slider .slick-arrow svg {
    width: 38px;
}
    


}

@media(max-width:585px) {
    footer {
        margin-bottom: 63px;
    }

    .footer-top .footer-logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

@media(max-width:575px) {

    .promo-bar {
        font-size: 12px;
    }

    .hero_btn_group {
        margin-top: 10px;
    }

    .cta-btn,
    .cta-btn-border, .btn_border_white {
        width: 100%;
        margin: 5px 0 !important;
    }

    .hero_btn_group .btn_border_white {
        display: none;
    }

    .hero-area .hero_bg {
        height: 310px;
    }

    .box.style1 .image {
        height: 225px;
    }

    .box.style1 .title {
        font-size: 14px;
        line-height: 120%;
    }

    .service-parts .box .title {
        font-size: 18px;
    }

    .service-parts .box .inner {
        padding: 15px;
    }

    .service-parts .box .inner .icon {
        height: 35px;
    }

    .content-img {
        margin-bottom: 30px
    }

    .boat-breands .slide {
        padding-bottom: 15px;
    }

    .image-cta {
        padding-top: 0;
    }

    .image-cta .meta {
        padding: 10px;
    }

    .page-banner p {
        font-size: 14px;
        line-height: 22px;
    }

    .image-box-v3 {
        margin: 15px 0;
    }

    .site-heading {
        margin-bottom: 10px
    }

    .insta-box {
        margin-top: 30px
    }

    .inventory-area .widget_nav_menu {
        position: relative;
    }

    .inventory-area .widget_nav_menu {
        margin-bottom: 10px !important;
        margin-top: 0;
        padding: 15px;
        background: var(--secondaryBG)
    }

    .sidebar-widget.widget_nav_menu .title {
        padding: 0;
        margin: 0;
        color: var(--whiteColor);
        font-size: 15px
    }

    .sidebar-widget.widget_nav_menu .title::before {
        display: none
    }

    .inventory-area .widget_nav_menu > div {
        position: absolute;
        z-index: 11;
        background: var(--secondaryBG);
        width: 100%;
        display: none;
        left: 0;
        top: 100%;
    }

    .inventory-area .widget_nav_menu::after {
        position: absolute;
        content: "";
        top: 45%;
        right: 20px;
        width: 7px;
        height: 7px;
        border-bottom: 1px solid var(--whiteColor);
        border-right: 1px solid var(--whiteColor);
        transform: rotate(45deg) translateY(-50%);
    }

    .inventory-area .widget_nav_menu.active > div {
        display: block;
    }

    .inventory-area .sidebar-widget.widget_nav_menu .inner-list ul {
        column-count: 1;
    }

    .FilterToggle {
        display: block;
        margin-top: 10px;
        margin-bottom: .5em;
        position: relative;
        padding: .5em;
        border: 1px solid var(--lightBG);
        background: var(--graylightBG)
    }

    .FilterToggle .icon {
        position: absolute;
        top: 50%;
        right: .5em;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
    }

    .sidebarFilter {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--graylightBG);
        z-index: 999999;
        display: none;
    }

    .sidebarFilter .head {
        padding: 20px;
        position: relative;
    }

    .sidebar-widget .title::before {
        display: none
    }

    .closeFilter {
        position: absolute;
        width: 24px;
        height: 24px;
        top: 30px;
        transform: translateY(-50%);
        right: 10px;
        font-size: 26px;
    }

    .sidebarFilter .head .title {
        padding: 0
    }

    .inventory-area {
        overflow-x: hidden
    }



    .sidebarFilter.active {
        display: block
    }

    .sidebarFilter .inner-list {
        padding: 0 1.5em;
        height: calc(80% - 15px);
        overflow-y: scroll;
    }

    .filterFooter {
        padding: 10px;
    }

    .filterFooter {
        display: block
    }

    .single-product-heading .h3 {
        font-size: 18px
    }

    .share-btns a {
        margin-left: 2px;
    }

    .share-btns a img {
        height: 16px;
    }

    .product-info-table:not(.alt) ul li .td:first-child {
        width: auto;
    }

    .product-info-table .td {
        padding: 7px 3px;
        font-size: 12px;
    }

    .product-info-table ul li {
        padding: 0
    }

    .product-info-table {
        padding: 0 10px
    }

    .product-info-table .td a {
        font-size: 12px
    }

    .product-info-table .sp-boat-features li {
        padding: 10px 0
    }

    .sp-contact .popupAction {
        display: block;
        flex: 1
    }

    .sp-contact a {
        font-size: 13px;
    }

    .sp-contact {
        align-items: center;
        gap: 10px;
    }

    a.cta-btn.formPopupAlt {
        padding: 8px;
        color: var(--whiteColor);
        font-size: 12px
    }

    .image-box-v4 .btn_group{
        display: block
    }

    .popupAction.alt {
        display: none
    }
    .choose-area .border_sep {
    display: none;
}
    .choose-area .right {
    margin-top: 30px;
}
}


.woocommerce-product-search {
    height: 50px;
    background: #fff;
    border: 1px solid #adb1b9;
    display: flex;
    justify-content: space-between;
    margin-right: 10px;
}

.woocommerce-product-search input[type="search"] {
    width: 100%;
    border: none;
    padding: 0 15px;
}

.woocommerce-product-search button {
    height: 50px;
    padding: 0 15px;
    opacity: 0.3;
}

.woocommerce-ordering select {
    background: #f4f7ff;
    height: 50px;
    width: 100%;
    border: none;
    padding: 0 15px;
}

.filter-top-bar {
    margin: 50px 0 30px;
}

.product-thumbnail {
    position: relative;
}

.product-condition {
width: 60px;
height: 34px;
background: var(--primaryBG);
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	line-height: 34px;
	font-weight: 500;
	position: absolute;
	top: 20px;
	left: -10px;
}

.product-condition:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #b62925;
    display: block;
    width: 0;
    z-index: -1;
    left: 0px;
    top: 24px;
}

.product-box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.product-box .product-thumbnail {
    width: 56%;
}

.product-box .product-info {
    width: 44%;
    padding-left: 30px;
}

.product-box .product-info h3 {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    margin: 0;
}

.product-heading span {
font-weight: 500;
font-size: 12px;
line-height: 25px;
padding-left: 15px;
}

.product-info ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.product-info ul li  {
font-weight: bold;
font-size: 14px;
line-height: 30px;
color: #151515;
width: 50%;
padding: 10px;
}

.product-info ul li span {
    font-weight: 500;
    font-size: 11px;
    color: #989898;
    display: block;
    line-height: 1;
}

.product-info hr {
    border: none;
    border-top: 1px solid #040c19;
    opacity: 0.06;
    margin: 12px 0 8px 0;
}

.product-info .cta-btn {
    min-width: auto;
    padding: 0 20px;
}

.product-info > div {
    display: flex;
    flex-direction: column;
}

.product-info .del-price {
font-weight: bold;
font-size: 18px;
color: #000;
}

#sidebar {
    margin: 45px 0 0;

}

#sidebar .widget_nav_menu {
    border: 1px solid rgb(22 28 36 / 14%);
    padding: 20px 30px;
    margin-bottom: 30px;
}

#sidebar .widget_nav_menu h3 {
font-size: 14px;
color: #10141a;
    font-weight: bold;
}


#sidebar .widget_nav_menu ul {
    column-count: 2;
    gap: 15px;
}

#sidebar .widget_nav_menu ul li a {
font-size: 14px;
color: rgb(22 28 36 / 56%);
position: relative;
padding-left: 12px;
}

#sidebar .widget_nav_menu ul li a:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 4px 0 4px 4px;
    border-color: transparent var(--primaryBG);
    display: block;
    width: 0;
    z-index: 1;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

body .wpc-filters-section {
    margin-bottom: 0px;
    position: relative;
    border: 1px solid rgb(22 28 36 / 14%);
    padding: 21px;
}

.wpc-filters-section + .wpc-filters-section {
    border-top: none;
}

body .wpc-filter-header {
font-size: 14px;
font-weight: bold;
color: #10141a;
}

body .wpc-filter-title {
    margin-bottom: 5px;
}

body.single-product section.product {
    padding: 70px 0;
}

.single-product-heading h1 {
font-size: 28px;
color: #000;
}

.single-product-heading .tags {
    background: var(--primaryBG);
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 500;
    padding: 9px 9px;
    margin-left: 25px;
    position: relative;
    top: -4px;
    font-size: 11px;
    white-space: nowrap;
}

.mini-thumb-slider {
    margin-top: 10px;
}

.mini-thumb-slider .slick-list {
    margin: 0 -5px;
}

.mini-thumb-slider .slick-slide {
    padding: 0 5px;
}

.product-information ul li > div {
    display: flex;
    align-items: center;
    border: 1px solid rgba(112,112,112,0.2);
    padding: 13px 15px;
    justify-content: center;
}

.product-information ul li + li > div {
    border-top: none;
}

.product-information ul li > div > div:first-child{
    font-weight: 500;
    font-size: 14px;
    color: #989898;
}

.product-information ul li > div > div:last-child{
font-weight: 700;
    font-size: 24px;
    line-height: 25px;color: #486db4;
    padding-left: 10px;
}

.product-information ul li:last-child > div > div em {
    font-size: 16px;
    font-style: normal;
    position: relative;
    top: -5px;
}


body.single-product .product-info {
    padding-top: 25px;
}

body.single-product .product-info ul li  {
font-size: 16px;
}

body.single-product .product-info ul li span {
    font-size: 13px;
}

body.single-product .product-info ul li:nth-child(2),
body.single-product .product-info ul li:nth-child(4) {
    padding-left: 35px;
    border-left: 1px solid #d0d0d0;
}

body.single-product .product-info ul li:first-child,
body.single-product .product-info ul li:nth-child(2) {
    padding-top: 0px;
}

body.single-product .product-info ul li:nth-child(3) ,
body.single-product .product-info ul li:nth-child(4) {
    padding-bottom: 0px;
}

body.single-product .c_form {
    background: rgb(241 243 247 / 78%);
    border-top: 10px solid var(--primaryBG);
    padding: 15px 30px 30px;
}

body.single-product .c_form .h6 {
    font-size: 20px;
    color: #0c1d40;
    margin-bottom: 10px;
}

body.single-product .c_form input {
    width: 100%;
    height: 50px;
    background:#fff;
    padding: 0 20px;
    font-size: 13px;
    border: none;
}

body.single-product .c_form textarea {
    width: 100%;
    height: 90px;
    background:#fff;
    padding: 10px 20px;
    font-size: 13px;
    border: none;
}

body.single-product .c_form .gform-body .gfield {
    margin-bottom: 15px;
}

body.single-product .c_form button {
    width: 100%;
}

body.single-product .c_form button em {
    display: none;
}

@media(min-width: 992px) {
    .product-head + .row > .col-lg-5 {
        width: 40%;
    }

    .product-head + .row > .col-lg-4 {
        width: 28%;
    }

    .product-head + .row > .col-lg-3 {
        width: 32%;
    }
}

body.single-product .cta-btn-border {
    font-size: 14px;
}

.boat_types .item .item-image:after {
    opacity: 0.5;
}

.boat_types .item .item-image {
    max-height: 220px;
    overflow: hidden;
}
