﻿@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


@font-face {
    font-family: 'Söhne-Breit-bold';
    src: url('/assets/fonts/sohne-real-fonts/WOFF2/soehne-breit-halbfett.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Söhne-Breit-medium';
    src: url('/assets/fonts/sohne-real-fonts/WOFF2/soehne-breit-kraftig.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Söhne-regular';
    src: url('/assets/fonts/sohne-fonts/Sohne-Buch.woff2') format('woff2'),
         url('/assets/fonts/sohne-fonts/Sohne-Buch.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Söhne-medium';
    src: url('/assets/fonts/sohne-fonts/Sohne-Kraftig.woff2') format('woff2'),
         url('/assets/fonts/sohne-fonts/Sohne-Kraftig.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Söhne-bold';
    src: url('/assets/fonts/sohne-fonts/Sohne-Dreiviertelfett.woff2') format('woff2'),
         url('/assets/fonts/sohne-fonts/Sohne-Dreiviertelfett.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* @font-face {
  font-family: "Söhne-Breit-bold";
  src: url("/assets/fonts/Söhne-Breit/TestSohneBreit-Halbfett.otf")
    format("opentype");
} */

/* @font-face {
  font-family: "Söhne-Breit-medium";
  src: url("/assets/fonts/Söhne-Breit/TestSohneBreit-Kraftig.otf")
    format("opentype");
} */

@font-face {
  font-family: "Söhne-Breit-regular";
  src: url("/assets/fonts/Söhne-Breit/TestSohneBreit-Buch.otf")
    format("opentype");
}

@font-face {
  font-family: "Söhne-Breit-light";
  src: url("/assets/fonts/Söhne-Breit/TestSohneBreit-Leicht.otf")
    format("opentype");
}

/* @font-face {
  font-family: "Söhne Breit";
  src: url("/assets/fonts/sohn-font/OTF/SöhneBreit-Halbfett.otf")
    format("opentype");
} */

/* @font-face {
  font-family: "Söhne-bold";
  src: url("/assets/fonts/sohn-font/TestSohne-Halbfett.otf");
} */

/* @font-face {
  font-family: "Söhne-medium";
  src: url("/assets/fonts/sohn-font/TestSohne-Kraftig.otf");
} */

/* @font-face {
  font-family: "Söhne-regular";
  src: url("/assets/fonts/sohn-font/TestSohne-Buch.otf");
} */

@font-face {
  font-family: "Söhne-light";
  src: url("/assets/fonts/sohn-font/TestSohne-Leicht.otf");
}

/* @font-face {
  font-family: "TestSohne-Buch";
  src: url("/assets/fonts/Söhne/TestSohne-Buch.otf");
}
@font-face {
  font-family: "Söhne-light";
  src: url("/assets/fonts/Söhne/TestSohne-Leicht.otf");
} */


:root {

  /* colors variales */

  --black-color: #111;
  --white-color: #fff;
  --gray-color: #d9d9d9;
  --lightest-gray-color: #fafafa;
  --blue-color: #0d324f;
  --light-blue-color: #357bff;
  --sky-color: #99b0ff;
   --dark-blue-color: #0f0f31;
  --border-radius: 8px;
  --blue-banner-bg: #080821;

   /* Sohne Breit fonts variales */

  --Text-Secondary-title: #f6f6f8;
  --font-family-title: "Söhne-Breit-medium";
  --Söhne-Breit-regular: "Söhne-Breit-regular";
  --Söhne-Breit-light: "Söhne-Breit-light";
  --Söhne-Breit-bold: "Söhne-Breit-bold";

  /* Sohne fonts variales */

  --Text-Secondary-darker: #3a404d;
  --font-family-Body: "Söhne-bold";
  --Söhne-medium: "Söhne-medium";
  --Söhne-regular: "Söhne-regular";
  --Söhne-light: "Söhne-light"; 


  /* --Söhne-light: "Söhne-light"; */
  /* --Söhne-regular: "Söhne-regular"; */
  
}

/* Common css start here  */

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.my-40 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.my-30 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

p {
  margin-bottom: 0;
  font-family: Figtree;
  font-size: 20px;
  font-style: normal;
  line-height: 28px;
  font-weight: 300;
}
ul {
  margin-bottom: 0;
}

.btn-box {
  display: flex;
  gap: 13px;
}

html {
  scroll-behavior: smooth;
}
.alert{
position: fixed;
bottom: 0;
left: 0;
text-align: center;
width: 100%;
z-index: 1000;
}
.blue-btn {
  color: var(--white-color);
  color: var(--Text-Secondary-title);
  font-family: var(--font-family-title);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  background: var(--dark-blue-color);
  border: 1px solid var(--dark-blue-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-decoration: none;
  transition: all 0.5s;
  min-width: 160px;
  min-height: 40px;
  border-radius: var(--border-radius);
}

.blue-btn:hover {
  background: var(--light-blue-color);
  border: 1px solid var(--light-blue-color);
  color: var(--Text-Secondary-title);
}

.home-light-blue-btn {
  color: var(--white-color);
  color: var(--Text-Secondary-title);
  font-family: var(--font-family-title);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  background: var(--light-blue-color);
  border: 1px solid var(--light-blue-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  text-decoration: none;
  transition: all 0.5s;
  min-width: 160px;
  min-height: 40px;
  border-radius: var(--border-radius);
}
.home-light-blue-btn:hover {
  background: #1a1a8b;
  border: 1px solid #1a1a8b;
  color: var(--Text-Secondary-title);
}
.home-white-outline-btn{
  color: var(--Text-Secondary-title);
  font-family: var(--font-family-title);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid var(--Text-Secondary-title);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-decoration: none;
  transition: all 0.5s;
  min-width: 160px;
  min-height: 40px;
  border-radius: var(--border-radius);
}
.home-white-outline-btn:hover {
  border: 2px solid #1a1a8b;
  color: var(--light-blue-color);
}
.light-blue-btn {
  color: var(--white-color);
  color: var(--Text-Secondary-title);
  font-family: var(--font-family-title);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  background: var(--light-blue-color);
  border: 1px solid var(--light-blue-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-decoration: none;
  transition: all 0.5s;
  min-width: 160px;
  min-height: 40px;
  border-radius: var(--border-radius);
}

.light-blue-btn:hover {
  background: #1a1a8b;
  border: 1px solid #1a1a8b;
  color: var(--Text-Secondary-title);
}

.blue-outline-btn {
  color: var(--light-blue-color);
  font-family: var(--font-family-title);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid var(--light-blue-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-decoration: none;
  transition: all 0.5s;
  min-width: 160px;
  min-height: 40px;
  border-radius: var(--border-radius);
}

.blue-outline-btn:hover {
  border: 2px solid #fff;
  color: #fff;
}

.white-outline-btn {
  color: var(--Text-Secondary-title);
  font-family: var(--font-family-title);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid var(--Text-Secondary-title);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-decoration: none;
  transition: all 0.5s;
  min-width: 160px;
  min-height: 40px;
  border-radius: var(--border-radius);
}

.white-outline-btn:hover {
  border: 2px solid #1a1a8b;
  color: #1a1a8b;
}

.rich-text {
  font-family: "Urbane-Light";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.section-title {
  color: var(--black-color);
  font-family: "Bai Jamjuree";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.featured-title {
  color: var(--dark-blue-color);
  font-family: var(--Söhne-Breit-bold);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.8px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.fearured-lg-title {
  color: var(--black-color);
  font-family: "Bai Jamjuree";
  font-size: 48px;
  font-style: italic;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.tobler-featured-box {
  display: flex;
  padding-top: 148px;
  padding-bottom: 148px;
}
.gear-featured-box {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}
.tobler-featured-col {
  width: 50%;
}

.tobler-featured-col .content-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
}

.fearured-rich-text {
  margin: 20px 0 40px 0;
}

.fearured-rich-text strong {
  font-family: var(--font-family-Body);
  font-weight: 400;
}

.storage-featured-box {
  display: flex;
  padding-top: 72px;
  padding-bottom: 72px;
}

.storage-featured-co-1 {
  width: 37%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.storage-featured-co-2 {
  width: 63%;
}

.storage-featured-col .content-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
}

.storage-featured-img {
  width: 100%;
  height: 100%;
  max-height: 602px;
}

.storage-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storage-featured-list {
  margin: 20px 0;
  list-style-type: disc;
  padding-left: 30px;
}

.storage-featured-list li {
  font-family: Figtree;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

.fixed-height-img {
  height: 100%;
  min-height: 864px;
}

.tobler-featured-img {
  width: 100%;
  height: 100%;
}

.fp-l {
  padding-left: 47.5px;
}

.fp-r {
  padding-right: 47.5px;
}

.tobler-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-heading {
  color: var(--black-color);
  font-family: "Bai Jamjuree";
  font-size: 48px;
  font-style: italic;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.sm-title-heading {
  font-family: "Urbane-Light";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}

.bg-light-gray {
  background: #eceef2;
}

.common-header {
  position: relative;
}

.common-header::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 33, 0) 0%,
    rgba(8, 8, 33, 0.65) 50%,
    #080821 100%
  );
}
.gear-header-img {
  padding-top: 42% !important;
}
.common-header-img {
  position: relative;
  padding-top: 42%;
}

.common-banner-content {
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: 2;
}

.common-content-box {
  width: 100%;
  padding-left: 100px;
}

.common-header-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.common-banner-title {
  color: var(--white-color);
  font-family: var(--Söhne-Breit-bold);
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 96px;
  text-transform: uppercase;
  border-bottom: 3px solid #357bff;
  padding-bottom: 5px;
}
.common-banner-title span.sybmbol {
  color: var(--light-blue-color);
}
.common-blue-banner {
  background: var(--blue-banner-bg);
  padding: 148px 15px;
}

.blue-banner-content-box {
  width: calc(100% - 47%);
  margin: 0 auto;
}

.blue-sm-title {
  color: var(--Text-Secondary-title);
  font-family: var(--Söhne-medium);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
}

.bottom-banner-title {
  color: var(--white-color);
  font-family: var(--Söhne-Breit-bold);
  font-size: var(--font-size-Heading-1, 96px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--font-line-height-Heading-1, 96px);
  text-transform: uppercase;
}

.bottom-blue-banner {
  background: var(--blue-banner-bg);
  padding: 148px 15px;
}

.bottom-blue-banner-content-box {
  width: calc(100% - 47%);
  margin: 0 auto;
}

.bottom-blue-banner-content-box strong {
  font-weight: 700 !important;
}

.bottom-banner-title {
  font-family: var(--font-family-title);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.8px;
  text-transform: uppercase;
}

.bottom-white-banner {
  background: var(--white-color);
  padding: 148px 15px;
}

.bottom-white-banner .bottom-white-banner-content-box {
  width: calc(100% - 55%);
  margin: 0 auto;
}

.bottom-white-banner .bottom-white-banner-content-box strong {
  font-weight: 700 !important;
}

.bottom-white-banner .bottom-white-banner-content-box h3 {
  color: #000000 !important;
  font-family: var(--font-family-title);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.4px;
  text-transform: uppercase;
}

.bottom-white-banner .bottom-banner-title {
  font-family: var(--Söhne-Breit-bold);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.8px;
  text-transform: uppercase;
  color: #000;
}

.accordion-title {
  color: var(--Text-Primary-highlight);
  font-family: var(--Söhne-Breit-bold);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.accordion-sec {
  padding: 148px 32px;
  background: #aeb6c7;
}

.accordon-wrapper {
  max-width: calc(100% - 55%);
  margin: 0 auto;
  background: var(--white-color);
  border-radius: var(--border-radius);
  padding: 48px;
}

.accordion-card {
  padding: 20px 0;
  margin: 7px 0;
  border-bottom: 1px solid #e0e0e0;
}

.custom-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.custom-accordion-header h3 {
    color: var(--dark-blue-color);
    font-family: var(--font-family-Body);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.custom-accordion-header span.fa {
  font-size: 23px;
}

.content-show {
  display: block !important;
}

.custom-accordion-body p {
  color: var(--dark-blue-color);
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* Common css end here  */

/* desktop header css strat here */

/* header-start here */

.header-container {
  padding-right: 120px;
  padding-left: 120px;
}

.header-box {
  display: flex;
  height: 108px;
}

.logo-box {
  width: 20%;
  padding: 20px 0;
}

.right-nav-box {
  width: 20%;
}

.centaral-nav-box {
  width: 60%;
}

.desktop-header .centaral-nav-link,
.desktop-header .left-nav-link {
  color: var(--Text-Secondary-title);
  font-family: var(--font-family-title);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  transition: all 0.5s;
}

.desktop-header .centaral-nav-link {
  padding: 0 17px;
  color: var(--white-color);
}
.desktop-header .centaral-nav-link:hover{
  color: var(--light-blue-color);
}

.desktop-header li {
  list-style: none;
}

.grecaptcha-badge {
  display: none;
}

.desktop-header {
  background: var(--dark-blue-color);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.centaral-nav {
  height: 100%;
}

.centaral-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  height: 100%;
}

.centaral-nav ul li {
  padding-top: 42px;
  padding-bottom: 42px;
}
.toggle-menu{
  position: relative;
  cursor: pointer;
}
.toggle-menu.active::after{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--light-blue-color);
  width: 100%;
  height: 3px;
}
.canvas-menu{
  padding-top: 40px;
}
.dropdown-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.header-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  max-width: 320px;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.right-nav {
  height: 100%;
}

.right-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  margin-bottom: 0;
}

.header-brand-logos {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
}

.header-search-box {
  padding: 0 17px;
}

.header-search {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header-search span {
  color: var(--white-color);
  font-size: 20px;
  cursor: pointer;
}

.header-search input {
  border: none;
  outline: none;
  box-shadow: none;
  font-family: "Urbane-Light";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.header-search input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.location-dropdown {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header-location-box {
  cursor: pointer;
  text-align: right;
}

.header-location-box h6 {
  color: var(--white-color);
  margin-bottom: 0;
  text-align: right;
  font-family: "Bai Jamjuree";
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  text-decoration-line: underline;
}

.header-location-box p a {
  color: var(--aqua-color);
  font-family: "Bai Jamjuree";
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-resources-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.header-resources-box a {
  font-family: "Urbane-Light";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--black-color);
}

.header-resources-box svg {
  cursor: pointer;
}

/* mega menus start here */
.mega-menu-wrapper {
  position: relative;
  background: #9ca6bb;
  box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.3);
}

.close-mega-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 22px;
  right: 23px;
  color: var(--black-color);
  opacity: 0.5;
}

.close-mega-menu span {
  color: var(--black-color);
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-left: 5px;
}

.mega-menu-box {
  padding: 40px 15px 25px 15px;
  max-width: calc(100% - 70%);
  margin: 0 auto;
  display: none;
}

.mega-menu-box.show-mega-menu {
  display: block;
}

.mega-menu-col-1 h6 {
  color: var(--aqua-color);
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.mega-menu-col-1 ul li > a {
  color: var(--black-color);
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
  display: block;
}

.mega-menu-col-1 .top-list-box {
  margin-bottom: 56px;
}

.menu-card {
  position: relative;
  margin-bottom: 8px;
}

.mega-boats-box {
  display: flex;
  flex-wrap: wrap;
}
.text-uppercase{
  text-transform: uppercase;
}

.mega-menu-container {
  display: flex;
  justify-content: center;
}

.mega-menu-col {
  width: calc(100% / 3);
}

.mega-menu-col ul li > a {
  color: #3a404d;
  font-family: var(--font-family-Body);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 16px;
  display: block;
}
.mega-menu-col ul li a span{
    font-family: 'Figtree';
    font-weight: 700;
}

.mega-boats-col {
  width: calc(100% / 3);
  padding: 0 4px;
}

.menu-card-img {
  position: relative;
  padding-top: 56%;
}

.menu-card-logo {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 120px;
  margin: 0 auto;
}

.menu-card-logo > .menu-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-card-img > .menu-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-title {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  text-align: center;
}

.menu-card-title h6 {
  color: #fff;
  font-family: Oswald-Regular;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.service-mega-menu {
  display: flex;
  width: calc(100% - 30%);
  margin: 0 auto;
}

.service-dropdown-card {
  width: calc(100% / 3);
  padding: 0 4px;
  display: block;
}

.service-mega-menu-img {
  position: relative;
  padding-top: 56%;
}

.service-mega-menu-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-mega-menu-title {
  margin-top: 8px;
}

.service-mega-menu-title h6 {
  color: var(--black-color);
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
}

/* dropdown start here */
.toggle-dropdown {
  position: relative;
}

.sm-dropdown {
  position: absolute;
  top: 100px;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  min-width: 300px;
  background: #000;
  height: auto !important;
  padding: 10px 55px 38px 40px;
  display: none !important;
  z-index: 100;
}

.sm-dropdown li a {
  color: #fff;
  font-family: Oswald-semibold;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.tobler-dropdown.show-mega-menu {
  display: block !important;
}

/* form css start here */
.iti {
  border: 1px solid #dedfe0;
  width: 100%;
}

.phoneInput {
  width: 100%;
  padding-left: 40px;
  outline: none;
  border: none;
}

.form-sec {
  padding: 148px 15px;
  position: relative;
}

.scroll-down {
  position: absolute;
  top: -120px;
  left: 0;
  visibility: hidden;
}

.custom-form-control:placeholder-shown {
  color: #9ca6bb;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.custom-form-control {
  display: block;
  width: 100%;
  padding: 8px 16px;
  color: #9ca6bb;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border: 2px solid #d6dae3;
  background: #f6f6f8;
  border-radius: var(--border-radius);
  height: 40px;
}

.custom-form-control:focus {
  outline: none;
  box-shadow: none;
  border: 2px solid #d6dae3;
}

.custom-textarea {
  display: block;
  width: 100%;
  padding: 8px 16px;
  color: #9ca6bb;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border: 2px solid #d6dae3;
  background: #f6f6f8;
  border-radius: var(--border-radius);
}

.custom-textarea:focus {
  outline: none;
  box-shadow: none;
  border: 2px solid #d6dae3;
}

.custom-textarea:placeholder-shown {
  color: #9ca6bb;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.form-subtitle {
  color: var(--black-color);
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.custom-search-view ul li {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    font-family: var(--font-family-Body);
    font-weight: 400;
}
.custom-search-view ul li strong {
    font-family: var(--Söhne-medium);
    font-weight: 600;
    letter-spacing: 0.5px;
}
.custom-search-view ul li .closX {
    font-family: Figtree;
    font-weight: 300;
}
.custom-search-view ul {
    padding-left: 0;
}
.field-error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}
.error_field{
  border: 1px solid red;
}

.custom-search-view ul .closX {
    cursor: pointer;
}

.preferred-contact-method-title {
  color: #586173;
  text-align: center;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 5px;
  text-align: left;
}

.loader-wrapper {
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, .3);
    z-index: 99;
    display: none
}


/* --- Global HubSpot Form Styling --- */
.hs-form-container {
    width: 100%;
}

.hs-form-container .hs-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hs-form-container .hs-form .hs-form-field {
    flex: 1 1 48%; /* two-column layout on large screens */
    min-width: 100%; /* fallback for mobile */
    margin-bottom: 1rem;
}

.hs-form-container .hs-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    color: #000;
}

.hs-form-container .hs-form input,
.hs-form-container .hs-form select,
.hs-form-container .hs-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.hs-form-container .hs-form textarea {
    min-height: 120px;
    resize: vertical;
}

.hs-form-container .hs-form button.hs-button {
    background-color: #007bff; /* match your customBtn */
    color: #fff;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.hs-form-container .hs-form button.hs-button:hover {
    background-color: #0056b3;
}



.radio-wrapper label {
  margin-right: 10px;
  margin-bottom: 0;
}

.radio-wrapper label input {
  margin-right: 4px;
}

.form-title-heading {
  color: var(--Text-Secondary-darker);
  text-align: center;
  font-family: var(--font-family-title);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.4px;
  text-transform: uppercase;
}

.form-description {
  text-align: center;
  color: var(--black-color);
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.form-box {
  max-width: 686px;
  margin: 0 auto;
  padding: 0;
}

.form-box .form-col {
  width: calc(50% - 2px);
}

.loan-calculator-form .form-box .form-col {
  width: calc(33% - 2px);
}

.form-box .form-row {
  gap: 4px;
}

.form-box .sm-form-col {
  width: calc(50% - 2px);
}

.form-box .sm-form-row {
  gap: 4px;
  display: flex;
}

/* custom radio button css start here */

.custom-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 10px;
}

.custom-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: #3d4a5c;
  user-select: none;
}

.custom-radio input {
  display: none;
}

/* Square radio */
.custom-radio .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #b9c2d0;
  border-radius: 50px;
  transition: all 0.2s ease;
  position: relative;
  background: var(--white-color);
}

/* Active state */
.custom-radio input:checked + .checkmark {
  background-color: #4c8bf5;
  border-color: #4c8bf5;
}

/* Check icon */
.custom-radio .checkmark::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.2s ease;
}

.custom-radio input:checked + .checkmark::after {
  opacity: 1;
}

/* custom checkboxes css start here */

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-family: "Inter", sans-serif;
  margin-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

.options-grid > * {
  flex: 0 0 calc(25% - 22px);
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: #3d4a5c;
  user-select: none;
}

.custom-checkbox input {
  display: none;
}

/* Square box */
.custom-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #b9c2d0;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
  background: var(--white-color);
}

/* When checked */
.custom-checkbox input:checked + .checkmark {
  background-color: #4c8bf5;
  border-color: #4c8bf5;
}

/* Checkmark icon */
.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.2s ease;
}

.custom-checkbox input:checked + .checkmark::after {
  opacity: 1;
}

/* mobile header start here */

.mobile-header {
  display: none;
}

.mobile-header-list {
  display: none;
  position: fixed;
  top: 89px;
  right: 0;
  z-index: 999;
  width: 100%;
  max-width: 992px;
  height: calc(100vh - 90px);
  background: var(--dark-blue-color);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  justify-content: space-between;
  flex-direction: column;
}

/* when menu is active */
.mobile-header-list.mobile-menu-show {
  display: flex;
  transform: translateX(0);
}
.mobile-contact-btn-container {
    padding: 0 30px 30px 30px;
}
.close-icon {
  display: none;
}

.mobile-header-list ul {
  padding: 0;
}

.mds-nav-tab {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 30px 0 35px 35px;
  padding: 0 30px;
  column-gap: 10px;
}

.nav-btn {
  color: #222;
  text-align: center;
  font-family: "acumin-Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  display: inline-block;
  padding: 14px 25px 14px 23px !important;
  border: 1px solid rgba(34, 34, 34, 0.1);
  background: rgba(34, 34, 34, 0.1);
  width: 110px;
  height: 45px;
  list-style: none;
}

.sub-header-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sub-header-box span {
  margin-right: 30px;
  margin-top: 30px;
}

.nav-btn.active {
  background: #222;
  color: #fff;
  border: 1px solid #222;
}

.mobile-nav-box {
  display: none;
  position: fixed;
  top: 90px;
  right: 0;
  z-index: 999;
  width: 100%;
  max-width: 992px;
  height: calc(100vh - 250px);
  background: var(--dark-blue-color);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.mobile-nav-box ul li {
  padding: 6px 0;
}

.mobile-nav-box .dropdown-header p {
  color: var(--Text-Secondary-title);
  font-family: var(--font-family-title);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
}

.mobile-dropdown-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-list {
  padding-left: 0 !important;
  margin-top: 10px;
  display: none;
}

.dropdown-list li a {
  color: var(--Text-Secondary-title, #f6f6f8);
  font-family: var(--Söhne-regular);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.dropdown-list li a span{
  font-family: 'Figtree';
}

.mobile-nav-box .dropdown-menu-link {
  color: var(--Text-Secondary-title);
  font-family: var(--font-family-Body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
}

.mobile-nav-box.show-mobile-menu {
  display: block;
  transform: translateX(0);
}

.mobile-nav-box ul {
  padding-left: 32px;
  padding-right: 32px;
}

.mobile-dropdown span.fa {
  color: var(--Text-Secondary-title);
  font-size: 25px;
}

.mobile-nav-box ul li {
  list-style: none;
}

.dropdown-header {
  padding-left: 32px;
  padding-right: 32px;
}

.mobile-header-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 25px;
  width: 100%;
  height: 90px;
  background: var(--white-color);
  z-index: 500;
}

.mobile-header-img {
  max-height: 90px;
  height: 100%;
  max-width: 243px;
}

.sub-header {
  background: #fff;
  height: 60px;
}

.mobile-header-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sub-header ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
}

.sub-header ul li {
  list-style: none;
}

.sub-header ul li a {
  padding: 22px 33px;
  display: inline-block;
  color: var(--black-color);
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.sub-header ul li a span.fa {
  padding-right: 10px;
}

.header-bg {
  border-bottom: 1px solid var(--dark-blue-color);
  background: var(--dark-blue-color);
}

.custom-toggle-icon span.fa {
  font-size: 30px;
  color: var(--white-color);
}

.custom-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  color: black;
  text-decoration: none;
  letter-spacing: 1px;
  font-family: "Oswald-SemiBold";
  text-transform: uppercase;
}

.custom-nav-link:hover {
  text-decoration: none;
  color: black;
}

.mobile-header-list ul li {
  list-style: none;
  padding: 0 30px;
}

.drodown-box {
  overflow: hidden;
}

.submenu-nav-link {
  display: block;
  padding: 15px 0;
  color: var(--Text-Secondary-title);
  font-family: var(--font-family-title);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
}

.submenu-nav-link:hover {
  color: var(--Text-Secondary-title);
}

.dropdown-menu-link {
  color: var(--Text-Secondary-title);
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.dropdown-menu-link:hover {
  color: var(--Text-Secondary-title);
}

.content-menu.mobile-menu-show {
  display: block;
}

.content-menu {
  display: none;
}

.nav-search {
  border: none !important;
}

.nav-search:focus {
  box-shadow: none;
  outline: none;
}

.mobile-header-number {
  text-decoration: none;
  color: #fff;
}

.mobile-header-number:hover {
  text-decoration: none;
  color: #fff;
}

/* mobile header end here */

/* footer css start here */

.newsletter {
  background-color: var(--sky-color);
  text-align: center;
  color: #000;
  padding: 148px 20px;
  border-bottom: 1px solid var(--sky-color);
}

footer {
  background-color: var(--white-color);
}

.newsletter-box {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter h2 {
  color: var(--dark-blue-color);
  text-align: center;
  font-family: var(--Söhne-Breit-bold);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
}

.newsletter p {
  color: var(--dark-blue-color);
  text-align: center;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.newsletter-form {
  margin: 20px auto 20px auto;
  max-width: 400px;
  display: flex;
  height: 56px;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px 15px;
  width: calc(100% - 30px);
  height: 100%;
  outline: none;
  background-color: var(--white-color);
  border: 1px solid var(--white-color);
  color: var(--black-color);
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border-radius: 5px;
}

.newsletter-form button {
  padding: 16px 30px;
  cursor: pointer;
  color: #f6f6f8;
  font-family: var(--font-family-title);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  border-radius: 5px;
  background: var(--light-blue-color);
  border: 1px solid var(--light-blue-color);
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 0 5px;
  color: var(--white-color);
  font-size: 16px;
  border: 1px solid var(--aqua-color);
  padding: 7px 9px;
  line-height: normal;
  background: var(--aqua-color);
}

.footer-box {
  width: 100%;
  padding-left: 96px;
  padding-right: 96px;
  margin: 0 auto;
  background: var(--dark-blue-color);
}

.footer-grid {
  display: flex;
  gap: 40px;
  padding: 60px 0;
}

.footer-col-1 {
  width: 50%;
  display: flex;
  position: relative;
  gap: 40px;
}

.footer-col-2 {
  width: 50%;
}

.footer-mobile-box {
  display: none;
}

.footer-column {
  width: calc(100% / 4);
}

.footer-column h4,
.footer-column h3 {
  color: var(--light-blue-color);
  font-family: var(--Söhne-medium);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.footer-column h4 a{
  color: var(--light-blue-color);
}
.footer-column h4 a:hover{
  color: var(--light-blue-color);
}
.footer-column ul {
  list-style: none;
  padding-top: 5px;
  margin-bottom: 0;
  padding-left: 0;
}

.footer-column ul li {
  cursor: pointer;
  padding: 12px 0;
}

.footer-column ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: var(--gray-color);
  font-family: var(--Söhne-medium);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.footer-logo {
  max-width: 315px;
  width: 100%;
  margin: auto 0 0 0;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.address {
  color: var(--black-color);
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}

.phone a {
  margin-top: 10px;
  color: var(--aqua-color);
  font-family: "Bai Jamjuree";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.footer-container {
  width: calc(100% - 20%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
}

.bottom-links {
  position: relative;
  padding: 0 15px;
  color: #d3d3d3b8;
  text-align: center;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bottom-links + .bottom-links::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 1px;
  height: 12px;
  background: var(--gray-color);
  transform: translateY(-46%);
}

.footer-bottom p,
.footer-bottom p a {
  color: var(--Text-Secondary-title);
  font-size: 12px;
  font-style: normal;
  font-family: Figtree;
  font-weight: 400;
  line-height: 18px;
}

.footer-bottom ul li {
  list-style: none;
  color: var(--Text-Secondary-title);
  font-size: 12px;
  font-style: normal;
  font-family: Figtree;
  font-weight: 400;
  line-height: 18px;
  padding: 10px 0;
}

.footer-bottom ul li a {
  color: var(--Text-Secondary-title);
  font-size: 12px;
  font-style: normal;
  font-family: Figtree;
  font-weight: 400;
  line-height: 18px;
  padding: 10px 7px;
}

.recaptcha-disclaimer {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-top: 10px;
  padding: 5px 0;
}

.footer-bottom {
  padding-bottom: 10px;
  background: #586173;
  padding-top: 10px;
}

.locations {
  text-align: center;
}

.footer-company-links li {
  padding: 10px 0 !important;
}

.last-accordion {
  border-bottom: 1px solid var(--gray-color);
}

.footer-address-box {
  margin-bottom: 30px;
}

.footer-address-box h6 {
  color: var(--gray-color);
  font-family: var(--font-family-Body);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.8px;
}

.footer-address-box p {
  color: var(--gray-color);
  font-family: Figtree;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 5px;
}

.footer-address-box a {
  color: var(--white-color);
  font-family: var(--font-family-Body);
  font-size: 12px;
  font-style: normal;
  /* font-weight: 700; */
  line-height: 18px;
}
/* mobile footer starts here  */
.mob-footer h4 {
  color: var(--light-blue-color);
  font-family: var(--Söhne-medium);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.mob-footer {
  width: 100%;
}
.mob-footer h6 {
  font-family: var(--Söhne-regualar);
  font-size: 12px;
  font-weight: 400;
}
.mob-footer h6 a {
  font-family:var(--Söhne-regualar);
  font-size: 12px;
  font-weight: 500;
}
.mob-footer p {
  font-family: unset;
  font-size: 12px;
  font-weight: unset;
}
.social-icons a i {
  color: var(--light-blue-color);
  font-size: 22px;
  margin-right: 8px;
}

/* home page css star5t here */
.owl-carousel.owl-drag .owl-item{
  min-height: auto;
  aspect-ratio: 2 / 1;
    margin-bottom: 20px;
}
.tobler-container {
  width: calc(100% - 11%);
  margin: 0 auto;
}

.home-hero-section {
  position: relative;
}

.home-hero-section::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 33, 0) 0%,
    rgba(8, 8, 33, 0.65) 50%,
    #080821 100%
  );
}

.home-banner-video {
  position: relative;
  padding-top: 44%;
}

.home-banner-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-video::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.home-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

.home-banner-title {
  color: var(--Text-Secondary-title);
  text-align: center;
  font-family: var(--font-family-title);
  font-size: 128px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 56px;
}

.banner-content-box {
  max-width: calc(100% - 30%);
  margin: 0 auto;
  text-align: center;
}

.home-blue-banner-title {
  color: var(--light-blue-color);
  text-align: center;
  font-family: var(--font-family-title);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.4px;
  text-transform: uppercase;
}
.tobler-banner-content-home p {
  font-size: 40px;
  line-height: normal;
}
.home-dotted-text {
  color: var(--light-blue-color) !important;
  text-align: center;
  font-family: Figtree;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

.number-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.number-box-item {
  width: calc(100% / 3 - 8px);
  text-align: center;
}

.number-box-item h4 {
  color: var(--light-blue-color);
  font-family: var(--Söhne-Breit-bold);
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 96px;
  text-transform: uppercase;
}

.number-box-item p {
  color: var(--light-blue-color);
  text-align: center;
  font-family: Figtree;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

.home-blue-banner-content-box {
  width: calc(100% - 40%);
  margin: 0 auto;
}

.explore-sec {
  padding: 148px 0;
}

.home-section-title-heading {
  color: var(--dark-blue-color);
  text-align: center;
  font-family: var(--Söhne-Breit-bold);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.home_services {
  padding-bottom: 4px;
}

.lg-card-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.lg-card-col {
  width: calc(100% / 3 - 10px);
}

.lg-card-col a {
  display: block;
}

.hm_serviceBox {
  position: relative;
}

.servc_img {
  position: relative;
  padding-top: 115%;
}

.servc_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hms_title {
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  width: 100%;
  padding: 24px;
  color: var(--Text-Secondary-title);
  font-family: var(--font-family-title);
  font-size: 32.092px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.51px;
  text-transform: uppercase;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.hms_title img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.servc_img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 350px;
  background: linear-gradient(180deg, #080821 0%, rgba(8, 8, 33, 0) 60%);
  z-index: 0;
}
.hm_serviceBox:hover:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #080821 0%, rgba(8, 8, 33, 0) 60%);
  z-index: 0;
}
.hm_serviceBox:hover .hms_title{
  color: var(--light-blue-color);
}
.hm_serviceBox:hover .card-arrow-icon {
  filter: brightness(0) saturate(100%) invert(32%) sepia(92%) saturate(915%) hue-rotate(196deg) brightness(113%) contrast(106%);
}
.servc_img::before {
  position: absolute;
  content: "";
  bottom: -0.5px;
  right: -0.5px;
  width: 130px;
  height: 130px;
  background: white;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: 1;
}
.brand-slider 
.brand-slider .owl-nav {
  display: none !important;
}
.historyslider .owl-nav, .brand-slider .owl-nav {
  margin-top: 0px !important;
  display: block !important;
}

.historyslider .owl-nav button.owl-prev,
.historyslider .owl-nav button.owl-next,
.brand-slider .owl-nav button.owl-prev,
.brand-slider .owl-nav button.owl-next {
  position: absolute !important;
  top: 45% !important;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(15, 15, 49, 0.60) !important;
  border-radius: 10px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.historyslider .owl-nav button.owl-prev,
.brand-slider .owl-nav button.owl-prev {
  left: 20px;
}

.historyslider .owl-nav button.owl-next,
.brand-slider .owl-nav button.owl-next {
  right: 20px;
}

.historyslider .owl-nav button span,
.brand-slider .owl-nav button span {
  font-size: 35px;
  color: #357BFF;
  line-height: 50px;
  height: 60px;
}

.historyslider .owl-nav button:hover,
.brand-slider .owl-nav button:hover {
  background: rgb(0, 0, 0) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.historyslider .owl-dots,
.brand-slider .owl-dots {
  margin-top: 15px;
}

.historyslider .owl-dots button span,
.brand-slider .owl-dots button span {
  width: 16px !important;
  height: 16px !important;
  aspect-ratio: 1/1 !important;
  background: #AEB6C7 !important;
}

.brand-slider .owl-dots button.active span {
  width: 16px !important;
  height: 16px !important;
  aspect-ratio: 1/1 !important;
  background: var(--dark-blue-color) !important;
}
.historyslider .owl-dots button.active span{
  background: var(--light-blue-color) !important;
}

.historyslider .item,
.brand-slider .item {
  position: relative;
  padding-top: 50%;
}

.fiber-glass-slider .item {
  position: relative;
  padding-top: 66% !important;
}
.fiber-glass-slider .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-slider .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logo-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 56px;
}

.brand-logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  /* height: 257px; */
  /* aspect-ratio: 1 / 1; */
  aspect-ratio: 31 / 25;
  width: calc(100% / 4 - 20px);
  background: var(--white-color);
  box-shadow: -5px 5px 15px 0 rgba(0, 0, 0, 0.05);
  border: 2px solid #d6dae3;
  border-radius: var(--border-radius);
}

.brand-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brands-section {
  padding: 148px 0;
}

.tobler-banner {
  background-image: url("/assets/images/tobler-banner-img.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.tobler-banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #080821b2;
}

.tobler-banner-content {
  max-width: calc(100% - 38%);
  margin: 0 auto;
  padding: 265px 20px;
  text-align: center;
  position: relative;
}

.tobler-banner-content h3 {
  color: var(--Text-Secondary-title);
  text-align: center;
  font-family: var(--Söhne-Breit-bold);
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 96px;
  text-transform: uppercase;
}

.tobler-banner-content p {
  margin: 25px;
  color: var(--white-color);
  text-align: center;
  font-family: Figtree;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 48px;
}

/* gear and program page css start here */

/* fiberglass page css start here */

.fiberglass-slider-section {
  padding: 148px 0;
}

.fiberglass-slider-section-header {
  padding-bottom: 56px;
  max-width: 864px;
  margin: 0 auto;
}

.fiberglass-slider-title {
  color: var(--dark-blue-color);
  text-align: center;
  font-family: var(--font-family-title);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
  text-transform: uppercase;
}

.fiberglass-slider-section-header p {
  color: var(--dark-blue-color);
  text-align: center;
  font-family: Figtree;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

.fiber-glass-slider-wrapper {
  max-width: calc(100% - 25%);
  margin: 0 auto;
}

.location-address-box a {
  color: var(--Text-Primary-highlight);
}

.location-address-box a:hover {
  color: var(--Text-Primary-highlight);
}

.featured-subtitle {
  color: var(--Text-Primary-highlight);
  font-family: var(--font-family-Body);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.restoration-img {
  position: relative;
  padding-top: 66%;
}

.restoration-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------canvas page --------------------------------- */

.fiber-glass-slider .owl-nav button:hover {
    background: rgba(15, 15, 49, 0.60) !important;
    color: var(--light-blue-color) !important;
}

.fiber-glass-slider .owl-nav button.owl-prev {
    position: absolute;
    top: 47%;
    left: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(15, 15, 49, 0.60) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    border-radius: var(--border-radius);
}

.fiber-glass-slider .owl-nav button.owl-next {
    position: absolute;
    top: 47%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(15, 15, 49, 0.60) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    border-radius: var(--border-radius);
}

.fiber-glass-slider .owl-nav button.owl-next:hover,
.fiber-glass-slider .owl-nav button.owl-prev:hover {
    background: rgba(15, 15, 49, 0.60) !important;
    color: var(--light-blue-color) !important;
}
.fiber-glass-slider .owl-nav{
  display: block !important;
}
.fiber-glass-slider .owl-nav span {
    font-size: 41px;
    margin-top: -9px;
    color: var(--light-blue-color);
    line-height: 15px;
}

.desired-service-radio input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #d6dae3;
  border-radius: 4px;
  background-color: var(--white);
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}

.desired-service-radio input[type="checkbox"]:checked::after {
  display: block;
}

.desired-service-radio input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 12px;
  border: solid #9e9e9e;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
}

.feature-icon-circle {
  width: 60px;
  height: 60px;
  background-color: #212529;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: var(--font-family-title);
  font-size: 30px;
}

.feature-card {
  background-color: #F6F6F8;
  border: 2px solid #d6dae3;
  border-radius: 8px;
  min-height: 350px;
  box-shadow: -5px 5px 15px 0 rgba(0, 0, 0, 0.05);
  padding: 100px 24px;
}

.feature-card .card-subhead {
  color: var(--Text-Primary-highlight);
  text-align: center;
  font-family: var(--Söhne-medium);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-card .feature-text {
  color: var(--Text-Primary-highlight);
  text-align: center;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.feature-row > .col-12 {
  margin-bottom: 1.5rem;
}

.desired-service-radio label {
  color: var(--Text-Primary-highlight);
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 6px 0;
}

/* --------------------------canvas page --------------------------------- */

/* --------------------------parts page --------------------------------- */
.toblerbrandsec .feature-card img {
  max-width: 250px;
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.toblerbrandsec .feature-card p {
  color: var(--Text-Secondary-dark);
  text-align: center;
  font-family: Figtree;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
}

.toblerbrandsec .feature-card {
  background-color: #fff;
  border: 2px solid #d6dae3;
  border-radius: 8px;
  /* height: 400px !important; */
  display: flex;
  box-shadow: -5px 5px 15px 0 rgba(0, 0, 0, 0.05);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 7 / 6;
  width: 100%;
}
.parts-brands-container{
  width: calc(100% - 40%);
  margin: 0 auto;
}
.parts-brands-col {
  width: calc(100% / 3);
  padding: 8px;
}
/* --------------------------parts page --------------------------------- */

/* --------------------------staff page --------------------------------- */
.caree-gray-sec {
  background: #ECEEF2;
  padding: 148px 20px;
}
.prostaffpartners .card {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: -5px 5px 15px 0 rgba(0, 0, 0, 0.05);
  border: 2px solid #d6dae3 !important;
  min-height: 250px;
}

.prostaffpartners .card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* --------------------------staff page --------------------------------- */

/* --------------------------winterization page --------------------------------- */

.winterization-service-menu {
  padding: 90px 0;
}

.winterization-service-menu h5 {
  color: var(--Text-Primary-highlight);
  text-align: left;
  font-family: var(--font-family-title);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.4px;
  text-transform: uppercase;
  padding-bottom: 30px;
}

.winterization-service-menu h6 {
  color: var(--Text-Primary-highlight);
  font-family: var(--Söhne-medium);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.winterization-service-menu .card {
  border-radius: 8px;
  border: 2px solid #d6dae3;
  background: #f6f6f8;
  box-shadow: -5px 5px 15px 0 rgba(0, 0, 0, 0.05);
  padding: 24px;
}

.winterization-service-menu ul {
  padding: 0 24px;
}

.winterization-service-menu ul p {
  color: #0f0f31;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.winterization-service-menu ul li {
  color: #0f0f31;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* --------------------------winterization page --------------------------------- */

/* --------------------------winterization/summerization booking page --------------------------------- */

.winterization-booking {
  padding: 100px;
}

.winterization-booking h2 {
  color: #03236b;
  font-family: var(--font-family-Body);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.winterization-booking h1 {
  color: #3a404d;
  font-family: var(--font-family-title);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.8px;
  text-transform: uppercase;
}

.booking-details {
  width: calc(100% - 71.6%);
  margin: 0 auto;
}

.booking-details h3 {
  color: #0f0f31;
  font-family: var(--font-family-title);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.4px;
  text-transform: uppercase;
}

.booking-details label {
  color: #0f0f31;
  font-family: var(--font-family-Body);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 5px 0;
}

.booking-details p {
  color: #0f0f31;
  font-size: 16px;
  font-style: normal;
  padding-left: 20px;
}

.booking-details .section-card {
  background: #fff;
  border: 2px solid #d6dae3;
  border-radius: 8px;
  padding: 40px;
  /* margin-bottom: 35px; */
}

.booking-details .section-card ul li strong {
  font-weight: 700;
}

.booking-details .section-card ul {
  padding-left: 25px;
}

.booking-details .deliverysuccess ul {
  padding-left: 0px;
}

.booking-details .section-card input {
  margin-right: 5px;
}

.booking-details .section-card ul li {
  color: #0f0f31;
  font-size: 16px;
  font-style: normal;
  list-style: none;
  /* padding: 0 20px; */
}

.booking-details hr {
  margin: 25px 0;
}

.form-winterization label {
  color: #0f0f31;
  text-align: center;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}


/* --------------------------winterization/summerization booking page --------------------------------- */
/***************************** SERVICE FORM PAGE CSS START ********************************************* */

.service_appoint .sterndive .container_check {
    padding: 0px 0px 5px 30px !important;
}

.service_appoint .sterndive .container_check {
    padding: 0px 0px 0px 30px !important;
}

.service_appoint .sterndive .checkmark:after {
    left: 5px !important;
    top: 2px !important;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.service_appoint .sterndive .checkmark {
    top: 5px;
    height: 18px;
    width: 18px;
}

.service_appoint .sterndive label {
    font-size: 17px !important;
    font-family: "Söhne Breit" !important;
    margin-bottom: 0rem !important;
    color: #000 !important;
}

.service_appoint {
    padding: 40px 0px;
}

.service_appoint .mid_title {
    padding-top: 15px;
}

.service_appoint .mid_title p {
    font-size: 30px;
}

.service_appoint .mid_title span {
    font-size: 18px;
    /* color: #9e262c; */
    color: black;
    display: inline-block;
    /* padding-bottom: 20px; */
}

.service_appoint .mid_title .sterndive {
    border: 1px solid #000;
    margin-bottom: 25px;
}

.service_appoint .mid_title .sterndive .top_heading {
    background-color: #0d324f;
    padding: 15px 0px;
    text-align: center;
    color: #fff !important;
}

.service_appoint .mid_title .inner_wrap {
    display: flex;
    justify-content: space-between;
}

.wraP_with_border {
    /* border-bottom: 1px solid #000; */
}

.mini_border {
    /* border-bottom: 1px solid #c1c1c1; */
}

.service_appoint .mid_title .inner_wrap .bold_new {
    font-size: 21px !important;
    font-family: "Söhne Breit" !important;
}

.service_appoint .mid_title .inner_wrap p {
    padding-top: 10px;
}

.service_appoint .mid_title .inner_wrap .left {
    padding-top: 15px;
    padding-bottom: 0px;
    padding-left: 15px;
}

.service_appoint .mid_title .inner_wrap .right {
    max-width: 110px;
    width: 100%;
    text-align: center;
}

.service_appoint .mid_title .inner_wrap .right {
    padding: 12px 18px;
    /* background-color: #e8e8e8; */
}


/* .service_appoint .mid_title .tabel_wraper label{
    font-size: 21px;
    font-family: karlaBold;
} */

.service_appoint .mid_title .inner_wrap p {
    font-size: 18px;
}

.service_appoint .mid_title .bottom_check {
    padding-left: 35px;
    padding-bottom: 15px;
}
/***************************** SERVICE FORM PAGE CSS START ********************************************* */
/* --------------------------event listing page --------------------------------- */
.event-card-image{
  position: relative;
  padding-top: 77%;
}
.event-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}
.event-card {
  border: 2px solid #d6dae3;
  border-radius: 18px;
  background: #f6f6f8;
  margin-bottom: 30px;
  padding: 18px;
}

/* .event-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.event-card-body {
  padding: 10px 0;
}

.event-title {
  color: #03236b;
  font-family: var(--Söhne-Breit-bold);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.4px;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-meta {
  color: #586173;
  font-family: var(--Söhne-regular);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 8px;
}

.event-description {
  color: #586173;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination-wrapper-custom .pagination .page-link {
  color: #000 !important;
  background-color: #fff !important;
  border: 1px solid #dee2e6;
  border-radius: 8px !important;
  margin: 0 4px;
}

.pagination-wrapper-custom .pagination .page-item.active .page-link {
  color: #ffffff !important;
  background-color: #000000 !important;
  border: 1px solid #dee2e6;
  border-radius: 8px !important;
}

.pagination-wrapper-custom .pagination .page-link:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.pagination-wrapper-custom .page-item.disabled .page-link {
  visibility: hidden;
}

/* --------------------------event listing page --------------------------------- */

/* --------------------------event detail page --------------------------------- */

.event-detail-head p {
  color: #03236b;
  font-family: var(--font-family-Body);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  padding: 20px 0;
}

.event-detail-head H1 {
  color: #0f0f31;
  font-family: var(--Söhne-Breit-bold);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.8px;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.breadcrumb-item a {
    color: #03236B;
    font-family: var(--font-family-Body);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #03236B;
}
.event-detail-content h2 {
  color: #0f0f31;
  font-family: var(--Söhne-Breit-bold);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.8px;
  text-transform: uppercase;
}
.similar-heading {
    color: #3A404D;
    font-family: var(--Söhne-Breit-bold);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    text-transform: uppercase;
}
.event-detail-head-image{
  position: relative;
  padding-top: 45%;
}
.event-detail-head-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-detail-content h3 {
  color: #0f0f31;
  font-family: var(--font-family-Body);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

.event-detail-suges .event-card img {
  aspect-ratio: 1.6 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-detail-suges{
  padding-top: 144px;
}
/* --------------------------event detail page --------------------------------- */

/* --------------------------meet the team page --------------------------------- */

.team-members-sec h2 {
  color: #3a404d;
  font-family: var(--Söhne-Breit-bold);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
}

.team-members-sec .tobler-container {
  border-radius: 18px;
  border: 2px solid #d6dae3;
  background: #eceef2;
}

.team-members-sec .card {
  border-radius: 18px;
  border: 2px solid #d6dae3;
  background: #f6f6f8;
  box-shadow: -5px 5px 15px 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.team-members-sec .rowcards img {
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

.team-members-sec .rowcards h3 {
  color: #03236b;
  font-family: Figtree;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.team-members-sec .rowcards p {
  color: #586173;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
/* Outer accordion card */
.team-accordion-item {
  border-radius: 15px;
  border: 1px solid #e0e6ed;
  background: #f5f7fa;
}

/* Header button style */
.department-btn {
  font-size: 20px;
  font-weight: 600;
  color: #222 !important;
  text-decoration: none !important;
  padding: 0;
}

/* Arrow icon */

.arrow-icon {
    font-size: 30px;
    transform: rotate(0deg); 
    transition: 0.3s ease;
    display: inline-block; 
}


div[data-toggle="collapse"][aria-expanded="true"] .arrow-icon {
    /* Expanded state: Pointing UP */
    transform: rotate(-180deg);
}

/* Member card design */
.member-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e6ed;
  padding: 15px;
  transition: 0.2s ease;
}

.member-card img {
  border-radius: 12px;
}

/* Hover effect */
.member-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

        /* Outer accordion card */
        .team-accordion-item {
            border-radius: 15px;
            border: 1px solid #e0e6ed;
            background: #f5f7fa;
        }

        /* Header button style */
        .department-btn {
            font-size: 20px;
            font-weight: 600;
            color: #222 !important;
            text-decoration: none !important;
            padding: 0;
        }

        /* Arrow icon */        /* Outer accordion card */
        .team-accordion-item {
            border-radius: 15px;
            border: 1px solid #e0e6ed;
            background: #f5f7fa;
        }

        /* Header button style */
        .department-btn {
            font-size: 20px;
            font-weight: 600;
            color: #222 !important;
            text-decoration: none !important;
            padding: 0;
        }

        /* Arrow icon */
        .arrow-icon {
            font-size: 30px;
            transform: rotate(90deg);
            transition: 0.3s ease;
        }

        /* Rotate arrow when expanded */
        #dept1.show~.arrow-icon,
        .card-header[aria-expanded="true"] .arrow-icon {
            transform: rotate(-90deg);
        }

        /* Member card design */
        .member-card {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e0e6ed;
            padding: 15px;
            transition: 0.2s ease;
        }

        .member-card img {
            border-radius: 12px;
        }

        /* Hover effect */
        .member-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .arrow-icon {
            font-size: 30px;
            transform: rotate(90deg);
            transition: 0.3s ease;
        }

        /* Rotate arrow when expanded */
        #dept1.show~.arrow-icon,
        .card-header[aria-expanded="true"] .arrow-icon {
            transform: rotate(-90deg);
        }

        /* Member card design */
        .member-card {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e0e6ed;
            padding: 15px;
            transition: 0.2s ease;
        }

        .member-card img {
            border-radius: 12px;
        }

        /* Hover effect */
        .member-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
/* --------------------------meet the team page --------------------------------- */

/* financing page css start here */

.financing-banner-video {
  position: relative;
  padding-top: 56%;
}

.financing-banner-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*  value your boat css start here  */

.ordered-list {
  padding-left: 20px;
}

.ordered-list li {
  margin-bottom: 10px;
  color: var(--Text-Primary-highlight);
  font-family: Figtree;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

/* staff page css start here */

.prostaffpartners .card {
  min-height: 200px;
}
.staffpositions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #586173;
  border-top: 1px solid #586173;
  padding: 0.5rem 0;
  margin-top: 16px;
}
.staffpositions h3 {
  color: #0f0f31;
  text-align: right;
  font-family: var(--Söhne-medium);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.staffpositions p {
  color: #586173;
  font-family: var(--Söhne-medium);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}
.staffpositions .rich-text{
    margin-bottom: 0;
    font-family: Figtree;
    font-size: 20px;
    font-style: normal;
    line-height: 28px;
    font-weight: 300;
}
/* ----------history -------- */
.polaroid-carousel-container {
  max-width: calc(100% - 48%);
  margin: 0 auto;
}

/* .polaroid-carousel-container .owl-stage-outer {
  background-color: #f7f3ee;
} */

.polaroid-owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 41%;
    right: 12.5%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(15, 15, 49, 0.60) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    border-radius: var(--border-radius);
}

.polaroid-owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 41%;
    left: 12.5%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(15, 15, 49, 0.60) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    border-radius: var(--border-radius);
}
.polaroid-owl-carousel .owl-nav span {
    font-size: 41px;
    margin-top: -9px;
    color: var(--light-blue-color);
    line-height: 15px;
}
.polaroid-item {
  display: block;
  padding: 30px;
  border-radius: 8px;
  /* transform: rotate(-0.5deg); */
  transition: transform 0.3s ease;
  position: relative;
  /* transform: rotate(3deg); */
  padding-top: 70%;
  max-width: 80%;
  margin: 0 auto;
}

.polaroid-item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: contain;
  border-radius: 16px;
}
.polaroid-owl-carousel .owl-nav {
  margin-top: 0 !important;
}

.polaroid-owl-carousel .owl-dots {
  text-align: center;
  /* padding-top: 30px; */
}

.polaroid-owl-carousel .owl-dots button.active span {
   background: var(--light-blue-color) !important;
}
.polaroid-owl-carousel .owl-dots button span {
  width: 16px !important;
  height: 16px !important;
  aspect-ratio: 1/1 !important;
  background: #AEB6C7 !important;
}
/* .polaroid-owl-carousel .owl-dot {
  display: inline-block;
  zoom: 1;
  padding: 5px;
}

.polaroid-owl-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #a9a9a9;
  display: block;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.polaroid-owl-carousel .owl-dot.active span {
  background: #333333;
  transform: scale(1.2);
} */

/* .polaroid-owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -150%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.polaroid-owl-carousel .owl-nav button.owl-prev,
.polaroid-owl-carousel .owl-nav button.owl-next {
  position: relative;
  background: #5c6773 !important;
  width: 32px;
  height: 32px;
  line-height: 28px;
  border-radius: 5px;
  color: #ffffff !important;
  font-size: 20px;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease, background 0.2s ease;
  outline: none;
} */
/* staff page css ends here */

@media screen and (min-width: 2000px) {
  .desktop-header .centaral-nav-link, .desktop-header .left-nav-link {
    font-size: 22px;
  }
}

@media screen and (max-width: 1650px) {
  /* common css start here */
  .bottom-blue-banner,
  .bottom-white-banner {
    padding: 120px 32px;
  }

  .form-sec {
    padding: 120px 32px;
  }

  .newsletter {
    padding: 120px 32px;
  }

  .accordion-sec {
    padding: 120px 32px;
  }

  .accordon-wrapper {
    max-width: calc(100% - 45%);
  }

  .blue-banner-content-box {
    width: calc(100% - 40%);
    margin: 0 auto;
  }

  .tobler-featured-box,
  .fiberglass-slider-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  /* common css ends here */

  .footer-col-2 {
    width: 40%;
  }

  .footer-col-1 {
    width: 60%;
  }

  /* fiberglass css start here */

  .fiberglass-slider-title {
    font-size: 55px;
    line-height: 60px;
  }

  .brands-section {
    padding: 120px 0;
  }
  .our-history-awards .card {
    min-height: 100px;
  }
  /* home page css start here */

  .home-banner-title {
    font-size: 100px;
  }

  .home-blue-banner-content-box {
    width: calc(100% - 25%);
  }

  .number-box-item h4 {
    font-size: 80px;
    line-height: 85px;
  }

  .home-section-title-heading {
    font-size: 55px;
    line-height: 60px;
  }

  .hms_title {
    padding: 24px;
    font-size: 23px;
  }

  .tobler-banner-content {
    max-width: calc(100% - 25%);
  }

  .tobler-banner-content h3 {
    font-size: 80px;
    line-height: 85px;
  }
}

@media screen and (max-width: 1500px) {
  .parts-brands-container {
    width: calc(100% - 20%);
  }
  .header-container {
    padding-right: 80px;
    padding-left: 80px;
  }
  /* common css start here */
  .blue-sm-title {
    font-size: 35px;
    line-height: 41px;
  }

  .feature-card {
    min-height: 300px;
    padding: 70px 24px;
  }

  .common-banner-title {
    font-size: 75px;
    line-height: 80px;
  }
  .polaroid-owl-carousel .owl-nav button.owl-next {
    right: 10.5%;
}

.polaroid-owl-carousel .owl-nav button.owl-prev {
    left: 10.5%;
}

  /* common css ends here */
}

@media screen and (max-width: 1300px) {
      .header-container {
        padding-right: 50px;
        padding-left: 50px;
    }
  /* common css start here */
  .bottom-white-banner .bottom-white-banner-content-box {
    width: calc(100% - 35%);
  }

  .bottom-blue-banner-content-box {
    width: calc(100% - 30%);
  }

  .bottom-banner-title {
    font-size: 40px;
    line-height: 45px;
  }

  .bottom-blue-banner,
  .bottom-white-banner {
    padding: 72px 32px;
  }

  .newsletter {
    padding: 72px 32px;
  }

  .form-sec {
    padding: 72px 32px;
  }

  .accordion-sec {
    padding: 72px 32px;
  }

  .blue-sm-title {
    font-size: 25px;
    line-height: 34px;
  }

  .tobler-featured-box,
  .fiberglass-slider-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .blue-banner-content-box {
    width: calc(100% - 30%);
  }

  .tobler-featured-box {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .common-content-box {
    width: 100%;
    padding-left: 70px;
  }

  .common-banner-title {
    font-size: 60px;
    line-height: 65px;
  }

  .home-banner-title {
    font-size: 80px;
  }

  /* common css start here */
  .footer-box {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-col-1 {
    gap: 20px;
  }

  .number-box-item h4 {
    font-size: 60px;
    line-height: 65px;
  }

  .tobler-container {
    width: calc(100% - 8%);
  }

  .fp-r {
    padding-right: 30px;
  }

  .featured-title {
    font-size: 35px;
    line-height: 40px;
  }

  .fp-l {
    padding-left: 30px;
  }

  .home-section-title-heading {
    font-size: 45px;
    line-height: 60px;
  }

  .hms_title {
    padding: 20px;
    font-size: 23px;
  }

  .tobler-banner-content h3 {
    font-size: 60px;
    line-height: 65px;
  }

  .explore-sec,
  .brands-section {
    padding: 72px 0;
  }

  .tobler-banner-content {
    padding: 200px 20px;
  }
}

@media screen and (max-width: 1200px) {
  .parts-brands-container {
    width: calc(100% - 5%);
}
  .polaroid-carousel-container {
    max-width: calc(100% - 30%);
  }
  .tobler-banner-content p{
      font-size: 30px;
      line-height: 38px;
  }
  .tobler-banner-content {
      max-width: calc(100% - 20%);
  }
  .desktop-header .centaral-nav-link {
    padding: 0 10px;
}
.desktop-header .centaral-nav-link, .desktop-header .left-nav-link {
    font-size: 14px;
}
  /* common css start here */

  .accordon-wrapper {
    max-width: calc(100% - 40%);
  }

  .blue-banner-content-box {
    width: calc(100% - 15%);
  }

  .fiberglass-slider-title {
    font-size: 40px;
    line-height: 42px;
  }

  .form-title-heading {
    font-size: 25px;
    line-height: 28px;
  }

  /* common css ends here */

  .home-banner-title {
    font-size: 60px;
  }

  .number-box-item h4 {
    font-size: 50px;
    line-height: 55px;
  }

  .home-section-title-heading {
    font-size: 40px;
    line-height: 47px;
  }

  .hms_title {
    padding: 18px;
    font-size: 23px;
  }

  .tobler-banner-content h3 {
    font-size: 50px;
    line-height: 55px;
  }

  .explore-sec,
  .brands-section {
    padding: 80px 0;
  }

  .tobler-banner-content {
    padding: 160px 20px;
  }
  .tobler-banner-content-home p {
    font-size: 30px;
    line-height: normal;
  }
}

@media screen and (max-width: 991px) {
  .social-icons a {
      border-color: transparent !important;
      background: transparent;
  }
  .mobile-breadcrumb-container .breadcrumb{
    justify-content: center;
  }
  .event-detail-head-section{
    padding-top: 100px;
  }
  .parts-brands-container {
    width: 100%;
   }
  .mobile-dropwn-btn{
    color: #F6F6F8;
    font-family: var(--font-family-title);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    background: var(--light-blue-color);
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mobile-dropwn-btn:hover{
      color: #F6F6F8;
  } 
  .mobile-header{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  .desktop-header{
    display: none;
  }
  /* common css start here */
  .storage-featured-box {
    flex-wrap: wrap;
  }

  .storage-featured-box .fearured-rich-text {
    margin: 20px 0 0 0;
  }

  .storage-featured-co-1,
  .storage-featured-co-2 {
    width: 100%;
  }

  .bottom-white-banner .bottom-white-banner-content-box h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .bottom-white-banner .bottom-banner-title {
    font-size: 40px;
    line-height: 40px;
  }

  .accordon-wrapper {
    max-width: calc(100% - 20%);
  }

  .tobler-featured-box {
    flex-wrap: wrap;
  }

  .common-banner-title {
    font-size: 50px;
    line-height: 55px;
  }

  .common-content-box {
    padding-left: 32px;
  }

  .fp-l {
    padding-left: 0;
  }

  .fp-r {
    padding-right: 0;
  }

  .reverse-column {
    flex-direction: column-reverse;
  }

  .fixed-height-img {
    min-height: unset;
    /* height: 190px; */
  }

  .tobler-featured-col {
    width: 100%;
  }

  .common-banner-content {
    bottom: 70px;
  }

  .common-banner-title {
    font-size: 50px;
    line-height: 55px;
  }

  /* common css start here */

  /* footer css start here */

  .footer-grid {
    flex-wrap: wrap;
  }

  .team-members-sec h2 {
    font-size: 18px;
    line-height: normal;
    padding: 5px !important;
  }
  .footer-col-2 .footer-logo {
    max-width: 100%;
    width: 80%;
    margin: 0 auto;
  }
  .footer-col-2,
  .footer-col-1 {
    width: 100%;
  }
  .tobler-banner-content-home p {
    font-size: 25px;
    line-height: normal;
  }
  .company-info
    /* fiberglass css start here */

    .fiberglass-slider-section-header {
    padding-left: 25px;
    padding-right: 25px;
  }

  .newsletter h2 {
    font-size: 35px;
    line-height: 43px;
  }

  /* fiberglass css ends here */

  .home-banner-video {
    position: relative;
    padding-top: 42%;
    min-height: 600px;
  }

  .banner-content-box {
    max-width: calc(100% - 20%);
  }

  .home-banner-title {
    font-size: 50px;
  }

  .home-blue-banner-title {
    font-size: 25px;
    line-height: 33px;
  }

  .number-box-item h4 {
    font-size: 40px;
    line-height: 55px;
  }

  .tobler-container {
    width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }

  .home-section-title-heading {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .explore-sec,
  .brands-section {
    padding: 60px 0;
  }

  .tobler-banner-content {
    max-width: calc(100% - 15%);
  }

  .tobler-banner-content h3 {
    font-size: 40px;
    line-height: 45px;
  }

  .home-blue-banner-content-box {
    width: calc(100% - 20%);
  }

  .tobler-banner-content {
    padding: 120px 20px;
  }
  .feature-row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .feature-row > .col-lg-4,
  .feature-row > .col-lg-6 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hms_title {
    padding: 18px;
    font-size: 21px;
  }

  .lg-card-col {
    width: calc(100% / 2 - 10px);
  }

  .lg-card-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand-logo-item {
    width: calc(100% / 2 - 10px);
    margin-bottom: 20px;
    padding: 67px;
  }

  .brand-logo-box {
    flex-wrap: wrap;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hs-form-container .hs-form .hs-form-field {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 767px) {
    .similar-heading {
      font-size: 27px;
      line-height: 30px;
      letter-spacing: 2px;
  }
  .polaroid-carousel-container {
    max-width: 100%;
  }
  .home-light-blue-btn, .home-white-outline-btn{
      font-size: 16px;
      padding: 16px;
  }
  /* common css start here */
  .bottom-blue-banner-content-box {
    width: 100%;
  }

  .bottom-white-banner .bottom-white-banner-content-box {
    width: 100%;
  }

  .bottom-white-banner .bottom-banner-title {
    font-size: 36px;
    line-height: 36px;
  }

  .bottom-banner-title {
    font-size: 28px;
    line-height: 31px;
  }

  .brand-logo-item {
    padding: 50px;
    /* height: 200px; */
  }

  .tobler-featured-box {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .common-content-box {
    padding-left: 0;
  }

  .common-header-img {
    min-height: 600px;
  }

  p {
    font-size: 18px;
    line-height: 25px;
  }

  .featured-title {
    font-size: 28px;
    line-height: 31px;
  }

  .common-banner-content {
    bottom: 72px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    padding-left: 20px;
    padding-right: 20px;
  }

  .common-banner-title {
    font-size: 48px;
    line-height: 48px;
    text-align: center;
  }

  .blue-sm-title {
    font-size: 20px;
    line-height: 24px;
  }

  .blue-banner-content-box {
    width: 100%;
  }

  .accordon-wrapper {
    max-width: 100%;
    padding: 40px;
  }

  .custom-accordion-header h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .accordion-card {
    padding: 15px 0;
  }

  /* common css ends here */

  .footer-column {
    width: calc(100% / 2);
    margin-bottom: 25px;
  }

  .footer-col-1 {
    flex-wrap: wrap;
    gap: unset;
  }
  .tobler-banner-content-home p {
    font-size: 20px;
    line-height: normal;
  }

  /* consignment css start here */

  .consigning-banner-title {
    font-size: 36px !important;
    line-height: 36px !important;
  }

  /* fibglass css start here */
  .fiber-glass-slider-wrapper {
    max-width: calc(100% - 20%);
  }

  .fiberglass-slider-title {
    font-size: 28px;
    line-height: 31px;
  }

  /* fibglass css ends here */

  .home-blue-banner-content-box {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .tobler-banner-content h3 {
    font-size: 28px;
    line-height: 31px;
  }

  .tobler-banner-content {
    max-width: 100%;
  }

  .tobler-banner-content p {
    margin: 25px 0;
    font-size: 20px;
    line-height: 25px;
  }

  .tobler-banner-content {
    padding: 72px 20px;
  }

  .home-banner-title {
    font-size: 36px;
  }

  .white-outline-btn {
    font-size: 12px;
    padding: 15px 15px;
  }

  .light-blue-btn {
    font-size: 12px;
    padding: 15px 15px;
    letter-spacing: 1px;
  }

  .blue-outline-btn {
    font-size: 12px;
    padding: 15px 15px;
    letter-spacing: 1px;
  }

  .home-section-title-heading {
    font-size: 28px;
    line-height: 31px;
    margin-bottom: 40px;
  }

  .number-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .number-box-item {
    width: calc(100% / 8 - 8px);
  }

  .common-blue-banner {
    padding: 72px 32px;
  }

  .polaroid-carousel-container {
    max-width: 100%;
    margin: auto;
  }
  .loan-calculator-form .form-box .form-col {
    width: 100%;
  }
  .event-title,
  .event-meta,
  .event-description {
    font-size: 18px;
  }
  .event-detail-head H1 {
    font-size: 28px;
    font-style: normal;
  }
  .event-detail-head p {
    font-size: 12px;
    font-style: normal;
  }
  .event-detail-content h2 {
    font-size: 28px;
    line-height: normal;
  }
  .event-detail-content h3 {
    font-size: 18px;
  }

  /* .row::-webkit-scrollbar {
    height: 6px;
}

.row::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 20px;
}

.row::-webkit-scrollbar-track {
    background: transparent;
} */

  .event-scroll-row {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 20px;
  }
  .parts-brands-col {
    width: calc(100% / 2);
  }
  .parts-brands-container{
    padding-left: 30px;
    padding-right: 30px;
  }

  .event-scroll-row::-webkit-scrollbar {
    height: 10px !important;
    background: #ffffff;
    border: 1px solid #d6dae3;
    border-radius: 30px;
  }

  .event-scroll-row::-webkit-scrollbar-thumb {
    background: #aeb6c7;
    border-radius: 10px;
    border: 1px solid #d6dae3;
    height: 10px !important;
  }
  .winterization-booking {
    padding: 40px;
  }
  .winterization-booking h1 {
    font-size: 28px;
    line-height: normal;
  }
  .winterization-booking h2 {
    font-size: 12px;
    line-height: normal;
  }
  .winterization-booking p {
    font-size: 18px;
    line-height: normal;
  }
  .booking-details {
    width: calc(100% - 10%);
    margin: 0 auto;
  }
  .booking-details p {
    font-size: 16px;
  }
  .booking-details h3 {
    font-size: 18px;
  }

  /* value-your-boat */
.value-boat-form .custom-radio-group {
    display: block !important;
}
.value-boat-form .radio-wrapper label {
    margin-bottom: 12px !important;
}
.value-boat-form .options-grid {
    display: block !important;
    padding: 0;
}
.value-boat-form .custom-checkbox {
    margin-bottom: 15px;
}
}

@media screen and (max-width: 576px) {
 .prostaffpartners .card{
    min-height: unset;
    aspect-ratio: 31 / 25;
    width: 100%;
  }
  .rowcards{
    width: 100%;
    padding: 15px;
  }
    .similar-heading {
      font-size: 22px;
      letter-spacing: 0.5px;
  }
  .event-detail-head H1{
    line-height: 31px;
  }
  .parts-brands-col {
      width: 100%;
  }
  .polaroid-owl-carousel .owl-nav {
      display: none !important;
  }
  .historyslider .owl-nav, .brand-slider .owl-nav {
      display: none !important;
  }
  .historyslider .owl-dots, .brand-slider .owl-dots {
    margin-top: 0;
  }

  .polaroid-owl-carousel .owl-nav button.owl-prev{
        left: 32px;
  }
   .polaroid-owl-carousel .owl-nav button.owl-next{
        right: 34px;
  }
  /* common css start here */

  .btn-box {
    flex-wrap: wrap;
  }

  .common-blue-banner .light-blue-btn {
    width: 100%;
  }

  .common-blue-banner .blue-outline-btn {
    width: 100%;
  }

  .bottom-blue-banner .blue-outline-btn {
    width: 100%;
  }

  .bottom-blue-banner .light-blue-btn {
    width: 100%;
  }

  /* common css ends here */

  /* form css start here */

  .form-box .form-col {
    width: 100%;
  }

  .form-box .form-row {
    gap: 0;
  }

  .form-title-heading {
    font-size: 18px;
    line-height: 22px;
  }

  /* form css ends here */

  /*  footer css start here */
  .newsletter h2 {
    font-size: 22px;
    line-height: 26px;
  }

  .newsletter-form {
    flex-wrap: wrap;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
  }

  .banner-content-box {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .home-dotted-text {
    font-size: 16px;
    line-height: 28px;
  }

  .number-box-item p {
    font-size: 18px;
  }

  .home-blue-banner-title {
    font-size: 18px;
    line-height: 22px;
  }

  .lg-card-col {
    width: 100%;
  }

  .number-box-item {
    width: 100%;
    margin-bottom: 35px;
  }

  .number-box-item h4 {
    font-size: 64px;
    line-height: 64px;
  }

  .brand-logo-item {
    padding: 50px;
    /* height: 150px; */
  }

  /* fiberglass css start here */

  .fiber-glass-slider-wrapper {
    max-width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }

  .fiberglass-slider-section-header p {
    font-size: 16px;
    line-height: 24px;
  }

  /* fiberglass css ends here */
}

@media screen and (max-width: 450px) {
    .home-light-blue-btn, .home-white-outline-btn {
      font-size: 13px;
      padding: 13px;
    }
    .home-banner-content {
      top: 59%;
    }

    .polaroid-owl-carousel .owl-nav button.owl-prev {
        left: 17px;
    }
    .polaroid-owl-carousel .owl-nav button.owl-next {
        right: 20px;
    }
  /* staff page css start here */

  /* .prostaffpartners .card {
    min-height: 150px;
  } */

  /* staff page css ends here */
  .brand-logo-item {
    padding: 30px;
    /* height: 120px; */
  }
}

@media screen and (max-width: 400px) {
  .form-sec {
    padding: 72px 25px;
  }

  .consigning-banner-title {
    font-size: 25px !important;
    line-height: 25px !important;
  }

  .fiber-glass-slider-wrapper {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .feature-row > .col-lg-4,
  .feature-row > .col-lg-6 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .tobler-container {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .accordion-sec {
    padding: 72px 25px;
  }

  .common-banner-title {
    font-size: 40px;
    line-height: 40px;
  }

  .common-blue-banner {
    padding: 72px 25px;
  }
  .footer-container {
    width: calc(100% - 2%);
  }
}

@media screen and (max-width: 350px) {
  .brand-logo-item {
    padding: 30px;
    /* height: 100px; */
  }
}
