:root {
  --faser-dark: #09131f;
  --faser-ink: #142033;
  --faser-muted: #647084;
  --faser-line: #e5e9ef;
  --faser-surface: #ffffff;
  --faser-soft: #f6f8fb;
  --faser-accent: #1f7fbf;
  --faser-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--faser-surface);
  color: var(--faser-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--faser-accent);
}

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

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.screen-reader-text:focus,
.skip-link:focus {
  background: var(--faser-surface);
  clip: auto;
  clip-path: none;
  color: var(--faser-dark);
  display: block;
  height: auto;
  left: 16px;
  padding: 10px 14px;
  top: 16px;
  width: auto;
  z-index: 100000;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(9, 19, 31, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--faser-max);
  min-height: 82px;
  padding: 14px 22px;
}

.site-branding {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-width: 130px;
}

.custom-logo {
  display: block;
  max-height: 56px;
  width: auto;
}

.site-logo-text {
  color: var(--faser-dark);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-navigation {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: flex-end;
}

.primary-menu,
.primary-menu ul,
.footer-menu,
.language-switcher ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {
  color: var(--faser-dark);
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 10px 0;
  text-transform: uppercase;
}

.primary-menu .sub-menu,
.primary-menu .children {
  background: var(--faser-surface);
  border: 1px solid var(--faser-line);
  box-shadow: 0 18px 40px rgba(9, 19, 31, 0.12);
  left: 0;
  min-width: 220px;
  opacity: 0;
  padding: 10px 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 20;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu,
.primary-menu li:hover > .children,
.primary-menu li:focus-within > .children {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-menu .sub-menu a,
.primary-menu .children a {
  font-size: 13px;
  padding: 8px 16px;
  text-transform: none;
}

.language-switcher ul {
  align-items: center;
  display: flex;
  gap: 10px;
}

.language-switcher a,
.language-switcher span {
  color: var(--faser-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.language-switcher .current-lang a,
.language-switcher .current-lang span {
  color: var(--faser-accent);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--faser-line);
  border-radius: 4px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle__bar {
  background: var(--faser-dark);
  display: block;
  height: 2px;
  width: 19px;
}

.site-main {
  min-height: 55vh;
}

.page-id-85 .site-main,
.page-id-87 .site-main,
.page-id-89 .site-main {
  display: none;
  min-height: 0;
}

.content-shell,
.entry:not(.elementor-page .entry) {
  margin: 0 auto;
  max-width: var(--faser-max);
  padding: 64px 22px;
}

.single .content-shell,
.archive .content-shell,
.search .content-shell,
.error404 .content-shell {
  background: var(--faser-surface);
  color: var(--faser-ink);
}

.home .entry,
.page .entry--page {
  padding: 0;
}

.entry-header {
  margin: 0 auto 28px;
  max-width: 860px;
}

.entry-title,
.archive-header h1 {
  color: var(--faser-dark);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.entry-date {
  color: var(--faser-muted);
  display: block;
  font-size: 14px;
  margin-top: 8px;
}

.entry-content {
  margin: 0 auto;
  max-width: var(--faser-max);
}

.entry--post .entry-content,
.archive-header,
.search .entry--page {
  max-width: 860px;
}

.entry-content p {
  margin-bottom: 1.2em;
}

.page-id-1761 .site-main {
  background: #04202e;
}

.page-id-1761 .entry--page {
  padding: 88px 22px 96px;
}

.page-id-1761 .entry-header,
.page-id-1761 .entry-content {
  max-width: 980px;
}

.page-id-1761 .entry-title {
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
}

.page-id-1761 .entry-content,
.page-id-1761 .entry-content p,
.page-id-1761 .entry-content span,
.page-id-1761 .entry-content li {
  color: #ffffff !important;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.page-id-1761 .entry-content b,
.page-id-1761 .entry-content strong {
  color: #ffffff;
  font-weight: 600;
}

.page-id-1761 .entry-content a {
  color: #ffffff;
  text-decoration: underline;
}

.entry-image {
  display: block;
  margin: 0 0 24px;
}

.post-list {
  display: grid;
  gap: 34px;
}

.post-list .entry {
  border-bottom: 1px solid var(--faser-line);
  padding-bottom: 34px;
}

.related-posts {
  border-top: 1px solid var(--faser-line);
  margin-top: 48px;
  padding-top: 34px;
}

.related-posts h2 {
  color: var(--faser-dark);
  font-size: 24px;
  margin: 0 0 20px;
}

.related-posts__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-card {
  background: var(--faser-soft);
  min-width: 0;
}

.related-card a,
.related-card span {
  display: block;
}

.related-card img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.related-card span {
  color: var(--faser-dark);
  font-weight: 700;
  padding: 12px;
}

.case-study-details {
  border-top: 1px solid var(--faser-line);
  margin-top: 34px;
  padding-top: 28px;
}

.case-study-details h2 {
  color: var(--faser-dark);
  font-size: 28px;
  margin: 0 0 14px;
}

.case-study-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.case-study-gallery__item {
  margin: 0;
}

.case-study-gallery__item img {
  aspect-ratio: 4 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.single-case_study .site-main {
  background: var(--faser-dark);
}

.case-study-single {
  background: var(--faser-dark);
}

.case-study-hero {
  background: #ffffff;
  display: grid;
  grid-template-columns: 58.2% 41.8%;
  min-height: 775px;
}

.case-study-hero__copy {
  align-items: center;
  display: flex;
  justify-content: center;
  min-width: 0;
  padding: 80px 9vw;
}

.case-study-hero__inner {
  max-width: 554px;
  text-align: center;
}

.case-study-hero h1 {
  color: #1e1e1f;
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: 65px;
  font-weight: 300;
  letter-spacing: 6px;
  line-height: 78px;
  margin: 0 0 86px;
  max-width: 100%;
  text-transform: uppercase;
  width: 554px;
}

.case-study-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 0 0 52px;
}

.case-study-meta div {
  align-items: baseline;
  display: inline-flex;
  gap: 12px;
}

.case-study-meta dt,
.case-study-meta dd {
  color: #424242;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.38em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

.case-study-services {
  color: #515151;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.case-study-hero__image {
  min-height: 775px;
  overflow: hidden;
}

.case-study-hero__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.case-study-visit-gallery {
  background: var(--faser-dark);
  padding: 12px 7vw 90px;
}

.case-study-visit-gallery h2 {
  color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 36px;
  text-align: center;
}

.case-study-visit-gallery__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1140px;
}

.case-study-visit-gallery__item {
  display: block;
  overflow: hidden;
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.case-study-visit-gallery__item img {
  aspect-ratio: 4 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.case-study-visit-gallery__item:hover img {
  transform: scale(1.035);
}

.case-study-visit-gallery__item.faser-gallery-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.case-study-visit-gallery__item.faser-gallery-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--faser-gallery-delay, 0ms);
}

.case-study-related {
  background: #063848;
  color: #ffffff;
  padding: 100px 24px 118px;
  text-align: center;
}

.case-study-related h2 {
  color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 34px;
}

.case-study-related__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1240px;
}

.case-study-related__card {
  color: #ffffff;
  display: block;
  min-height: 230px;
  overflow: hidden;
  position: relative;
}

.case-study-related__card::after {
  background: linear-gradient(180deg, rgba(4, 32, 46, 0) 35%, rgba(4, 32, 46, 0.72) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.case-study-related__card img {
  display: block;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 240ms ease;
  width: 100%;
}

.case-study-related__card span {
  bottom: 34px;
  color: #ffffff;
  display: block;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 23px;
  font-weight: 600;
  left: 18px;
  line-height: 1.2;
  position: absolute;
  right: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
  z-index: 1;
}

.case-study-related__card:hover img,
.case-study-related__card:focus img {
  transform: scale(1.04);
}

.elementor-985 #yachting .elementor-widget-slides,
.elementor-985 #refitting .elementor-widget-slides,
.elementor-985 #profishing .elementor-widget-slides {
  opacity: 1;
  transform: none;
  transition: opacity 680ms ease, transform 680ms ease;
  transition-delay: var(--faser-solution-delay, 0ms);
  will-change: opacity, transform;
}

.elementor-985 #yachting .elementor-widget-slides.faser-solution-image-reveal,
.elementor-985 #refitting .elementor-widget-slides.faser-solution-image-reveal,
.elementor-985 #profishing .elementor-widget-slides.faser-solution-image-reveal {
  opacity: 0;
}

.elementor-985 #yachting .elementor-widget-slides.faser-solution-image-reveal.from-left,
.elementor-985 #refitting .elementor-widget-slides.faser-solution-image-reveal.from-left,
.elementor-985 #profishing .elementor-widget-slides.faser-solution-image-reveal.from-left {
  transform: translateX(-44px);
}

.elementor-985 #yachting .elementor-widget-slides.faser-solution-image-reveal.from-right,
.elementor-985 #refitting .elementor-widget-slides.faser-solution-image-reveal.from-right,
.elementor-985 #profishing .elementor-widget-slides.faser-solution-image-reveal.from-right {
  transform: translateX(44px);
}

.elementor-985 #yachting .elementor-widget-slides.faser-solution-image-reveal.is-visible,
.elementor-985 #refitting .elementor-widget-slides.faser-solution-image-reveal.is-visible,
.elementor-985 #profishing .elementor-widget-slides.faser-solution-image-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.elementor-1006 .elementor-element-d4a087c .elementor-slides-wrapper .swiper-slide,
.elementor-1023 .elementor-element-7a21ce83 .elementor-slides-wrapper .swiper-slide,
.elementor-1012 .elementor-element-70b803a3 .elementor-slides-wrapper .swiper-slide {
  height: clamp(520px, 62vh, 620px);
}

.elementor-1006 .elementor-element-d4a087c .elementor-slides-wrapper,
.elementor-1023 .elementor-element-7a21ce83 .elementor-slides-wrapper,
.elementor-1012 .elementor-element-70b803a3 .elementor-slides-wrapper {
  min-height: clamp(520px, 62vh, 620px);
}

.home .elementor-element-77799246.faser-background-slideshow {
  transition: background-image 700ms ease;
}

.elementor-985 .elementor-element-a3fd5a4 .elementor-repeater-item-49565d7 .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2025/05/45.TANKOA-S701_SOLO_PhotoCredit-Blueiprod_DJI_0176RT-scaled.jpg") !important;
  background-position: center center;
}

.elementor-985 .elementor-element-7c1d02aa .elementor-repeater-item-fc01ce0 .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2026/02/2-1.jpg") !important;
  background-position: center center;
}

.elementor-985 .elementor-element-ab2ffae .elementor-repeater-item-fc01ce0 .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2026/02/3-1.jpg") !important;
  background-position: center center;
}

.elementor-1006 .elementor-element-7f64318 .elementor-repeater-item-49565d7 .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2026/01/2P7A7314RT-scaled.jpg") !important;
  background-position: center center;
}

.elementor-1006 .elementor-element-e5b4b5e .elementor-repeater-item-fc01ce0 .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2026/02/2.jpg") !important;
  background-position: center center;
}

.elementor-1006 .elementor-element-e5b4b5e .elementor-repeater-item-db430d7 .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2026/02/39.TANKOA-S701_SOLO_PhotoCredit-Blueiprod_2P7A9481RT.jpg") !important;
  background-position: center center;
}

.elementor-1006 .elementor-element-e5b4b5e .elementor-repeater-item-5d7b024 .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2024/08/yachting-7.jpg") !important;
  background-position: center center;
}

.elementor-1006 .elementor-element-e5b4b5e .elementor-repeater-item-e06b1fd .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2024/08/yachting-8.jpg") !important;
  background-position: center center;
}

.elementor-1006 .elementor-element-e5b4b5e .elementor-repeater-item-5f0c17f .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2024/08/yachting-1.jpg") !important;
  background-position: center center;
}

.elementor-1023 .elementor-element-75541c1b .elementor-repeater-item-49565d7 .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2026/01/SOLO4-scaled.jpg") !important;
  background-position: center center;
}

.elementor-1023 .elementor-element-36b96e58 .elementor-repeater-item-fc01ce0 .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2024/08/refitting-10.jpg") !important;
  background-position: center center;
}

.elementor-1023 .elementor-element-36b96e58 .elementor-repeater-item-c1b84a0 .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2026/02/3.jpg") !important;
  background-position: center center;
}

.elementor-1023 .elementor-element-36b96e58 .elementor-repeater-item-889d6ce .swiper-slide-bg {
  background-image: url("/wp-content/uploads/2026/02/3-1.jpg") !important;
  background-position: center center;
}

.faserbiz-honeypot {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.faserbiz-contact-message {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  margin: 0 0 18px;
}

.faserbiz-contact-message--ok {
  color: #c9a45c;
}

.faserbiz-recaptcha-field {
  display: flex;
  justify-content: flex-start;
  min-height: 78px;
}

.faserbiz-recaptcha-field .g-recaptcha {
  transform-origin: left top;
}

.elementor-1050 .elementor-element.elementor-element-66eb86e2 {
  background: var(--faser-dark);
  padding: 70px 24px 96px;
}

.elementor-1050 .elementor-element.elementor-element-66eb86e2 > .e-con-inner {
  margin: 0 auto;
  max-width: 1040px;
  padding: 0 !important;
}

.elementor-1050 .elementor-element.elementor-element-27f80c65 {
  align-items: start;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  width: 100%;
}

.elementor-1050 .elementor-element.elementor-element-25fc6524,
.elementor-1050 .faserbiz-contact-image {
  min-width: 0;
  width: 100% !important;
}

.elementor-1050 .elementor-element.elementor-element-203eb8bc,
.elementor-1050 .elementor-form {
  width: 100%;
}

.elementor-1050 .elementor-element.elementor-element-576946b0 {
  display: grid;
  gap: 70px;
}

.elementor-1050 .elementor-icon-box-title {
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.16;
  margin: 0 0 8px;
}

.elementor-1050 .elementor-icon-box-description {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
  margin: 0;
}

.elementor-1050 .elementor-element.elementor-element-1528002d .elementor-heading-title {
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 58px;
}

.elementor-1050 .elementor-form-fields-wrapper {
  display: grid;
  gap: 34px;
}

.elementor-1050 .elementor-field-group {
  margin: 0;
  width: 100%;
}

.elementor-1050 .elementor-field-textual {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 0;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  min-height: 44px;
  padding: 0 16px;
  width: 100%;
}

.elementor-1050 .elementor-field-textual::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.elementor-1050 .elementor-button {
  background: #93c8e8;
  border: 6px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  color: #092432;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 28px;
  text-transform: none;
}

.elementor-1050 .faserbiz-contact-map {
  align-self: start;
  overflow: hidden;
  width: 100%;
}

.elementor-1050 .faserbiz-contact-map--hero {
  display: block;
  width: 100%;
}

.elementor-1050 .faserbiz-contact-map .elementor-widget-container,
.elementor-1050 .faserbiz-contact-map .elementor-custom-embed {
  height: 100%;
  width: 100%;
}

.elementor-1050 .faserbiz-contact-map__frame,
.elementor-1050 .faserbiz-contact-map .faserbiz-map-frame {
  border: 0;
  display: block;
  height: clamp(520px, 72vh, 840px);
  width: 100%;
}

.elementor-1050 .elementor-element.elementor-element-3f27053.faserbiz-contact-map iframe.faserbiz-map-frame {
  height: clamp(520px, 72vh, 840px);
}

.elementor-1050 .faserbiz-contact-image img {
  display: block;
  height: 600px;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.faserbiz-static-page .elementor-invisible,
.faserbiz-static-global .elementor-invisible {
  visibility: visible;
}

body.elementor-page .site-main {
  background: var(--e-global-color-c97038d, #021722);
}

body.elementor-page .elementor-widget-text-editor p {
  margin-block-start: 0;
  margin-block-end: 0.9rem;
}

.elementor-97 .elementor-element.elementor-element-1b2da81 img,
.elementor-1093 .elementor-element.elementor-element-eeb5e03 img {
  width: 48%;
  max-width: 800px;
}

.page-id-25 .site-main,
.page-id-29 .site-main {
  padding-bottom: 10px;
}

.elementor-widget-form .elementor-field-type-recaptcha_v3 {
  min-height: 60px;
}

.elementor-element-2bd1c66 {
  display: none !important;
}

.home .elementor-element-b166efb .elementor-widget-divider {
  height: 26px;
}

.home .elementor-961 {
  background:
    linear-gradient(180deg, rgba(4, 32, 46, 0) 0, rgba(4, 32, 46, 0.42) 760px, #04202e 100%),
    #04202e;
  color: #ffffff;
  overflow: hidden;
}

.home .elementor-element-77799246 {
  isolation: isolate;
  min-height: calc(100vh - 66px);
  position: relative;
}

.home .elementor-element-77799246::before,
.home .elementor-element-77799246::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.home .elementor-element-77799246::before {
  background:
    linear-gradient(90deg, rgba(4, 32, 46, 0.04) 0%, rgba(4, 32, 46, 0.26) 64%, rgba(4, 32, 46, 0.48) 100%),
    linear-gradient(180deg, rgba(4, 32, 46, 0) 68%, rgba(4, 32, 46, 0.74) 100%);
  z-index: 0;
}

.home .elementor-element-77799246::after {
  display: none;
}

.home .elementor-element-b2c41e5 {
  background: #04202e;
  padding: 104px 24px 96px;
  position: relative;
}

.home .elementor-element-b2c41e5::before {
  content: none;
  display: none;
}

.home .elementor-element-b2c41e5 > .e-con-inner {
  display: block;
  max-width: 1000px;
  padding: 0 !important;
}

.home .elementor-element-6769ea2e {
  align-items: flex-start;
  display: grid;
  gap: 84px;
  grid-template-columns: minmax(300px, 0.95fr) minmax(460px, 1.05fr);
}

.home .elementor-element-6769ea2e > .elementor-element {
  width: 100% !important;
}

.home .elementor-element-7d978d39 .elementor-heading-title {
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
}

.home .elementor-element-5636fa52 {
  position: relative;
}

.home .elementor-element-5636fa52::before {
  background: rgba(142, 198, 245, 0.78);
  content: "";
  height: 100%;
  left: -34px;
  min-height: 86px;
  position: absolute;
  top: 0;
  width: 1px;
}

.home .elementor-element-5636fa52 p {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.35;
  margin: 0;
}

.home .elementor-element-293302e {
  background: #04202e;
  padding: 18px 24px 118px;
}

.home .elementor-element-293302e > .e-con-inner {
  align-items: stretch;
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1140px;
}

.home .elementor-element-1d86887a,
.home .elementor-element-ecda37d,
.home .elementor-element-52471f42 {
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: visible;
  padding: 0 0 28px;
  transition: transform 220ms ease;
}

.home .elementor-element-1d86887a:hover,
.home .elementor-element-ecda37d:hover,
.home .elementor-element-52471f42:hover {
  transform: translateY(-4px);
}

.home .elementor-element-59922640,
.home .elementor-element-3531c8a8,
.home .elementor-element-227c31b8 {
  min-height: 0;
  overflow: visible;
  padding: 0 !important;
}

.home .elementor-element-293302e .elementor-widget-image {
  overflow: hidden;
}

.home .elementor-element-293302e .elementor-widget-image img {
  display: block;
  filter: saturate(0.95) contrast(1.04);
  transition: filter 260ms ease, transform 420ms ease;
  width: 100%;
}

.home .elementor-element-1d86887a:hover img,
.home .elementor-element-ecda37d:hover img,
.home .elementor-element-52471f42:hover img {
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.035);
}

.home .elementor-element-293302e .elementor-widget-divider {
  height: 26px;
  margin-top: 24px;
}

.home .elementor-element-293302e .elementor-widget-divider .elementor-divider {
  padding-block-end: 10px;
  padding-block-start: 10px;
  text-align: center;
}

.home .elementor-element-293302e .elementor-widget-divider .elementor-divider-separator {
  border-top-style: solid;
  border-top-width: 6.6px;
  display: block;
  margin: 0 auto;
  transition: width 240ms ease;
  width: 63%;
}

.home .elementor-element-1d86887a:hover .elementor-divider-separator,
.home .elementor-element-ecda37d:hover .elementor-divider-separator,
.home .elementor-element-52471f42:hover .elementor-divider-separator {
  width: 76%;
}

.home .elementor-element-58d50820 .elementor-divider-separator {
  border-top-color: #93c8e8;
}

.home .elementor-element-2e9b3dbb .elementor-divider-separator {
  border-top-color: #93c8e8;
}

.home .elementor-element-2788e937 .elementor-divider-separator {
  border-top-color: #93c8e8;
}

.home .elementor-element-64be76c2 .elementor-heading-title,
.home .elementor-element-3e2aec5a .elementor-heading-title,
.home .elementor-element-5219895a .elementor-heading-title {
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  text-align: center;
}

.home .elementor-element-63ac9b84,
.home .elementor-element-336d9522,
.home .elementor-element-8ad164a {
  flex: 1 1 auto;
  padding: 22px 30px 6px;
}

.home .elementor-element-63ac9b84 p,
.home .elementor-element-336d9522 p,
.home .elementor-element-8ad164a p {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
  text-align: center;
}

.home .elementor-element-293302e .elementor-widget-button {
  padding: 20px 30px 0;
  text-align: center;
}

.home .elementor-element-293302e .elementor-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  display: inline-flex;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  min-height: 0;
  padding: 0;
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.home .elementor-element-293302e .elementor-button:hover,
.home .elementor-element-293302e .elementor-button:focus {
  background: transparent;
  color: #8ec6f5;
  transform: translateY(-2px);
}

.home .elementor-element-21f7d560 {
  background: #04202e;
  padding: 0;
  position: relative;
}

.home .elementor-element-21f7d560::before {
  background: linear-gradient(180deg, #04202e 0%, rgba(4, 32, 46, 0) 38%, rgba(4, 32, 46, 0.38) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.elementor-977 {
  background: #04202e;
}

.elementor-977 .faser-company-hero {
  background-position: center center;
  background-size: cover;
  display: block !important;
  flex: 0 0 auto;
  height: 600px;
  min-height: 600px;
  position: relative;
  transition: background-image 500ms ease;
  width: 100%;
}

.elementor-977 .faser-company-hero::after {
  content: none;
  display: none;
}

.elementor-977 .elementor-element-3bb781d5 {
  background: #04202e;
  min-height: 400px;
  padding: 96px 24px;
}

.elementor-977 .elementor-element-3bb781d5 > .e-con-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}

.elementor-977 .elementor-element-4bb440cd .elementor-heading-title {
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 30px;
  font-weight: 100;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.elementor-977 .elementor-element-7076cd72 p {
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

.elementor-977 .faser-company-story {
  background: #04202e;
  padding: 10px 24px 82px;
}

.elementor-977 .faser-company-story > .e-con-inner {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1140px;
}

.elementor-977 .elementor-element-0d779a4 img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.elementor-977 .elementor-element-729b96d4 p {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
}

.elementor-977 .faser-company-discover {
  background: #04202e;
  padding: 8px 24px 34px;
}

.elementor-977 .faser-company-discover > .e-con-inner {
  align-items: center;
  display: flex;
  justify-content: center;
}

.elementor-977 .faser-company-discover .elementor-heading-title {
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 30px;
  font-weight: 100;
  letter-spacing: 0.02em;
  margin: 0;
  text-align: center;
}

.elementor-977 .elementor-element-4c1c8c3 {
  background: #04202e;
  padding: 0 24px 82px;
}

.elementor-977 .elementor-element-4c1c8c3 > .e-con-inner {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1140px;
}

.elementor-977 .elementor-cta {
  color: #ffffff;
  display: block;
  min-height: 300px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.elementor-977 .elementor-cta__bg-wrapper,
.elementor-977 .elementor-cta__bg {
  inset: 0;
  position: absolute;
}

.elementor-977 .elementor-cta__bg {
  background-position: center center;
  background-size: cover;
  transition: transform 420ms ease;
}

.elementor-977 .elementor-cta__bg-overlay {
  background: linear-gradient(180deg, rgba(3, 23, 34, 0.06) 0%, rgba(3, 23, 34, 0.66) 100%);
  inset: 0;
  position: absolute;
}

.elementor-977 .elementor-cta__content {
  align-items: flex-end;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 0 24px 34px;
  position: absolute;
  z-index: 1;
}

.elementor-977 .elementor-cta__title {
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.elementor-977 .elementor-cta:hover .elementor-cta__bg,
.elementor-977 .elementor-cta:focus .elementor-cta__bg {
  transform: scale(1.045);
}

@media (max-width: 900px) {
  .elementor-977 .faser-company-hero {
    height: 460px;
    min-height: 460px;
  }

  .elementor-977 .elementor-element-3bb781d5 {
    min-height: 300px;
    padding: 70px 22px;
  }

  .elementor-977 .faser-company-story > .e-con-inner,
  .elementor-977 .elementor-element-4c1c8c3 > .e-con-inner {
    grid-template-columns: 1fr;
  }

  .elementor-977 .faser-company-story {
    padding-bottom: 64px;
  }
}

@media (max-width: 600px) {
  .elementor-977 .faser-company-hero {
    height: 380px;
    min-height: 380px;
  }

  .elementor-977 .elementor-element-4bb440cd .elementor-heading-title,
  .elementor-977 .faser-company-discover .elementor-heading-title {
    font-size: 28px;
  }

  .elementor-977 .elementor-element-7076cd72 p,
  .elementor-977 .elementor-element-729b96d4 p {
    font-size: 16px;
  }

  .elementor-977 .elementor-cta {
    min-height: 250px;
  }
}

.home .elementor-element-21f7d560 img {
  display: block;
  filter: saturate(0.96) contrast(1.03);
  min-height: 300px;
  object-fit: cover;
  width: 100%;
}

.home .faser-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.home .faser-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home .elementor-element-77799246 {
  animation: faserHeroDrift 18s ease-in-out infinite alternate;
}

@keyframes faserHeroDrift {
  from {
    background-position: center center;
  }

  to {
    background-position: center 52%;
  }
}

.elementor-element-13606f3c .elementor-widget-container,
.elementor-element-13606f3c .elementor-social-icons-wrapper,
.elementor-element-13606f3c .elementor-grid-item {
  font-size: 0;
  line-height: 0;
}

.elementor-element-afee1cd .elementor-widget-container,
.elementor-element-afee1cd .elementor-social-icons-wrapper,
.elementor-element-afee1cd .elementor-grid-item {
  font-size: 0;
  line-height: 0;
}

.elementor-977 .elementor-element.elementor-element-0d779a4 img {
  width: 800px;
  max-width: 100%;
}

.elementor-1034 .elementor-element.elementor-element-754c305 {
  display: none;
}

.elementor-1034 .elementor-element.elementor-element-226ca943 {
  padding-bottom: 0;
}

.elementor-1034 .elementor-element.elementor-element-9eb791a {
  background-position: center center;
  background-size: cover;
  min-height: clamp(420px, 46vh, 560px);
  overflow: hidden;
  position: relative;
}

.elementor-1034 .elementor-element.elementor-element-9eb791a::before {
  background: rgba(2, 33, 43, 0.48);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

.elementor-1034 .elementor-element.elementor-element-9eb791a > .e-con-inner {
  position: relative;
  z-index: 1;
}

.elementor-1034 .elementor-element.elementor-element-6ca7299a {
  margin-top: 0;
  padding-top: clamp(54px, 6vw, 86px);
}

.elementor-1034 .elementor-element.elementor-element-4b239efb .elementor-posts-container {
  column-gap: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 42px;
}

.elementor-1034 .elementor-element.elementor-element-4b239efb .elementor-widget-container > .elementor-posts-container:not(.faserbiz-case-grid) {
  display: none;
}

.elementor-1034 .elementor-element.elementor-element-4b239efb .elementor-post {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.elementor-1034 .elementor-element.elementor-element-4b239efb .elementor-post__card {
  background-color: #ffffff;
  border-radius: 0;
  border-width: 0;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
}

.elementor-1034 .elementor-element.elementor-element-4b239efb::after {
  content: none;
  display: none;
}

.elementor-1034 .elementor-element.elementor-element-4b239efb .elementor-post__thumbnail__link {
  display: block;
  margin: 0 0 40px;
  position: relative;
  width: 100%;
}

.elementor-1034 .elementor-element.elementor-element-4b239efb .elementor-post__thumbnail {
  height: 0;
  overflow: hidden;
  padding-bottom: 80%;
  position: relative;
}

.elementor-1034 .elementor-element.elementor-element-4b239efb .elementor-post__thumbnail img {
  display: block;
  height: 100%;
  left: 50%;
  max-width: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: auto;
}

.elementor-1034 .elementor-element.elementor-element-4b239efb .elementor-post__text {
  margin-top: 0;
  padding: 0 14px;
  text-align: center;
}

.elementor-1034 .elementor-element.elementor-element-4b239efb .elementor-post__title {
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.elementor-1034 .elementor-element.elementor-element-4b239efb .elementor-post__title a {
  font-size: inherit;
  line-height: inherit;
}

.elementor-1034 .elementor-element.elementor-element-4b239efb .elementor-post__read-more {
  display: inline-block;
  margin-bottom: 20px;
}

.elementor-1042 .elementor-element.elementor-element-83cd66a .e-n-tabs {
  display: flex;
  flex-direction: column;
}

.elementor-1042 .elementor-element.elementor-element-83cd66a .e-n-tabs-heading {
  align-items: center;
  display: flex;
  min-height: 54px;
  justify-content: center;
}

.elementor-1042 .elementor-element.elementor-element-83cd66a .e-n-tabs-content {
  display: flex;
  flex-direction: column;
}

.elementor-1042 .elementor-element.elementor-element-83cd66a .e-n-tabs-content > .e-con:not(.e-active) {
  display: none;
}

.elementor-1042 .elementor-element.elementor-element-83cd66a .e-n-tab-title {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #c7c7c7;
  cursor: pointer;
  display: flex;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  justify-content: center;
  line-height: 24px;
  margin: 0;
  padding: 15px 35px;
}

.elementor-1042 .elementor-element.elementor-element-83cd66a .e-n-tab-title[aria-selected="true"] {
  color: #ffffff;
}

.elementor-1042 .elementor-element.elementor-element-83cd66a .e-n-tab-title-text {
  color: inherit;
  display: flex;
  font: inherit;
  line-height: inherit;
}

.faserbiz-brand-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
}

.faserbiz-brand-grid .e-loop-item {
  min-width: 0;
}

.faserbiz-brand-grid .elementor-element-5dc58c1 {
  align-items: center;
  background: #ffffff;
  display: flex;
  justify-content: center;
  min-height: 250px;
  overflow: hidden;
  padding: 28px;
}

.faserbiz-brand-grid .elementor-element-5dc58c1 .e-con-inner,
.faserbiz-brand-grid .elementor-widget-image,
.faserbiz-brand-grid .elementor-widget-container,
.faserbiz-brand-grid a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.faserbiz-brand-grid img {
  display: block;
  height: auto;
  max-height: 150px;
  max-width: 86%;
  object-fit: contain;
  width: auto;
}

.faserbiz-brand-placeholder {
  color: #092432;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.faser-brand-boats {
  background: var(--faser-dark);
  color: #ffffff;
  overflow: hidden;
  padding: 58px 0 98px;
}

.faser-brand-boats__inner {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 72px;
  position: relative;
}

.faser-brand-boats__heading {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.faser-brand-boats__heading h2 {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.faser-brand-boats__carousel {
  position: relative;
}

.faser-brand-boats__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.faser-brand-boats__viewport::-webkit-scrollbar {
  display: none;
}

.faser-brand-boats__track {
  display: flex;
  gap: 22px;
  padding: 2px 0 6px;
}

.faser-brand-boats__slide {
  color: #ffffff;
  display: block;
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 0;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.faser-brand-boats__slide img {
  aspect-ratio: 16 / 10;
  display: block;
  height: clamp(205px, 16vw, 265px);
  object-fit: cover;
  object-position: center center;
  transition: filter 260ms ease, transform 260ms ease;
  width: 100%;
}

.faser-brand-boats__slide::after {
  background: linear-gradient(180deg, rgba(2, 23, 34, 0) 42%, rgba(2, 23, 34, 0.78) 100%);
  content: "";
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
}

.faser-brand-boats__slide span {
  bottom: 20px;
  color: #ffffff;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  left: 18px;
  line-height: 1.15;
  position: absolute;
  right: 18px;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
  z-index: 1;
}

.faser-brand-boats__slide:hover img,
.faser-brand-boats__slide:focus img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.faser-brand-boats__button {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 50%;
  color: var(--faser-dark);
  cursor: pointer;
  display: inline-flex;
  font-size: 42px;
  height: 48px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0 0 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
  width: 48px;
  z-index: 2;
}

.faser-brand-boats__button:hover,
.faser-brand-boats__button:focus {
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.faser-brand-boats__button--prev {
  left: -24px;
}

.faser-brand-boats__button--next {
  right: -24px;
}

.faser-brand-boats__button.is-disabled {
  opacity: 0.32;
}

.elementor-1093 .elementor-element.elementor-element-af50743 .elementor-posts-container {
  display: grid;
  gap: var(--grid-row-gap, 35px) var(--grid-column-gap, 30px);
  grid-template-columns: 1fr;
}

.elementor-1093 .elementor-element.elementor-element-af50743 .elementor-post {
  align-items: flex-start;
  display: flex;
  gap: 0;
  margin: 0;
}

.elementor-1093 .elementor-element.elementor-element-af50743::after {
  content: none;
  display: none;
}

.elementor-1093 .elementor-element.elementor-element-af50743 .elementor-post__thumbnail__link {
  display: block;
  flex: 0 0 22%;
  margin: 0;
  width: 22%;
}

.elementor-1093 .elementor-element.elementor-element-af50743 .elementor-post__thumbnail {
  overflow: hidden;
  padding-bottom: 78%;
  position: relative;
}

.elementor-1093 .elementor-element.elementor-element-af50743 .elementor-post__thumbnail img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.elementor-1093 .elementor-element.elementor-element-af50743 .elementor-post__text {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
}

.elementor-1093 .elementor-element.elementor-element-af50743 .elementor-post__title {
  margin: 0;
}

.elementor-1093 .elementor-element.elementor-element-af50743 .elementor-post__title a,
.elementor-1093 .elementor-element.elementor-element-af50743 .elementor-post__read-more {
  display: inline-block;
}

.elementor-location-header > .elementor-element {
  background-color: var(--e-global-color-c97038d, #04202e);
}

.elementor-location-header .cpel-switcher__list,
.elementor-location-footer .cpel-switcher__list {
  align-items: center;
  display: flex;
  gap: var(--cpel-switcher-space, 15px);
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.elementor-location-header .cpel-switcher__lang,
.elementor-location-footer .cpel-switcher__lang {
  list-style: none;
  margin: 0;
  padding: 0;
}

.elementor-location-header .cpel-switcher__lang a,
.elementor-location-footer .cpel-switcher__lang a {
  align-items: center;
  display: inline-flex;
  line-height: 0;
}

.elementor-location-header .cpel-switcher__flag img,
.elementor-location-footer .cpel-switcher__flag img {
  display: block;
}

.elementor-location-footer {
  background: #04202e;
  color: #ffffff;
  font-family: "Montserrat", "Poppins", Arial, sans-serif;
  overflow: hidden;
}

.elementor-1093 .elementor-element.elementor-element-0c01f64 {
  background: #04202e;
  display: flex;
  min-height: 372px;
  padding: 30px 30px 14px;
}

.elementor-1093 .elementor-element.elementor-element-0c01f64 > .e-con-inner {
  align-items: flex-start;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(420px, 467px) minmax(300px, 335px) minmax(285px, 315px) minmax(460px, 539px);
  justify-content: space-between;
  margin: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}

.elementor-1093 .elementor-element.elementor-element-488d9f2,
.elementor-1093 .elementor-element.elementor-element-c44acf0,
.elementor-1093 .elementor-element.elementor-element-9de06c2,
.elementor-1093 .faserbiz-footer-map {
  align-self: stretch !important;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 !important;
  width: 100% !important;
}

.elementor-1093 .elementor-element.elementor-element-488d9f2 .elementor-widget-container,
.elementor-1093 .elementor-element.elementor-element-c44acf0 .elementor-widget-container,
.elementor-1093 .elementor-element.elementor-element-9de06c2 .elementor-widget-container,
.elementor-1093 .faserbiz-footer-map .elementor-widget-container {
  width: 100%;
}

.elementor-1093 .elementor-element.elementor-element-4b522e06 {
  align-self: auto !important;
  width: 100% !important;
}

.elementor-1093 .elementor-element.elementor-element-4b522e06 img {
  display: block;
  height: auto !important;
  margin: 0 0 24px;
  max-width: 447px !important;
  width: 100% !important;
}

.elementor-1093 .elementor-element.elementor-element-23c17a1,
.elementor-1093 .elementor-element.elementor-element-db5531d .elementor-icon-list-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.elementor-1093 .elementor-element.elementor-element-23c17a1 p {
  margin: 0;
}

.elementor-1093 .elementor-element.elementor-element-ed14a22 .elementor-heading-title,
.elementor-1093 .elementor-element.elementor-element-59d1a6d .elementor-heading-title,
.elementor-1093 .faserbiz-footer-map .elementor-heading-title {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.elementor-1093 .elementor-element.elementor-element-db5531d .elementor-icon-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.elementor-1093 .elementor-element.elementor-element-db5531d .elementor-icon-list-item,
.elementor-1093 .faserbiz-footer-legal .elementor-icon-list-item {
  margin: 0 0 20px;
}

.elementor-1093 .faserbiz-footer-legal .elementor-icon-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.elementor-1093 .faserbiz-footer-legal .elementor-icon-list-text {
  color: #ffffff;
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
}

.elementor-1093 .faserbiz-map-frame {
  border: 0;
  display: block;
  height: 272px;
  min-height: 0;
  width: 100%;
}

.elementor-1093 .elementor-element.elementor-element-400628c {
  background: #021722;
  display: block;
  padding: 22px 10px;
}

.elementor-1093 .elementor-element.elementor-element-f2590d3 {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 1fr) minmax(420px, 2fr) minmax(60px, 0.3fr);
  margin: 0 auto;
  max-width: 1900px;
  width: 100%;
}

.elementor-1093 .elementor-element.elementor-element-fdeb329 .elementor-heading-title,
.elementor-1093 .elementor-element.elementor-element-f04bd69 .elementor-heading-title {
  color: #ffffff;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.25;
  margin: 0;
}

.elementor-1093 .elementor-element.elementor-element-f04bd69 {
  text-align: center;
}

.elementor-1093 .elementor-element.elementor-element-afee1cd .elementor-widget-container {
  text-align: right;
}

.elementor-1093 .elementor-element.elementor-element-afee1cd .elementor-social-icon {
  align-items: center;
  background: #4289fa;
  border-radius: 3px;
  color: #8ec6f5;
  display: inline-flex;
  height: 16px;
  justify-content: center;
  width: 16px;
}

.elementor-1093 .elementor-element.elementor-element-7db9ccb {
  background: #ffffff;
  display: block;
  padding: 46px 24px;
  text-align: center;
}

.elementor-1093 .elementor-element.elementor-element-eeb5e03 img {
  display: block;
  margin: 0 auto;
  max-width: 800px;
  width: min(48%, 800px);
}

.elementor-location-header .elementor-nav-menu--main .elementor-nav-menu li:hover > .sub-menu,
.elementor-location-header .elementor-nav-menu--main .elementor-nav-menu li:focus-within > .sub-menu {
  background-color: #ffffff;
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.elementor-location-header .elementor-nav-menu--main .elementor-nav-menu .sub-menu .sub-menu {
  left: 100%;
  top: 0 !important;
}

.elementor-location-header nav.elementor-nav-menu--dropdown .sub-menu {
  display: block;
  position: static;
  width: auto;
}

.elementor-widget-n-menu .e-n-menu-toggle {
  display: none;
}

.elementor-widget-n-menu .e-n-menu-wrapper {
  display: flex;
  justify-content: center;
}

.elementor-widget-n-menu .e-n-menu-heading {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  min-height: 40px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.elementor-widget-n-menu .e-n-menu-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.elementor-widget-n-menu .e-n-menu-title-container {
  align-items: center;
  color: var(--n-menu-title-color-hover, var(--e-global-color-accent, #93c8e8));
  display: flex;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  line-height: 24px;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.elementor-widget-n-menu .e-n-menu-title-container:hover,
.elementor-widget-n-menu .e-n-menu-title-container:focus {
  color: var(--n-menu-title-color-hover, var(--e-global-color-accent, #8fc8ee));
}

.elementor-widget-n-menu .e-n-menu-title-text {
  display: flex;
  color: var(--n-menu-title-color-normal, #fff);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.elementor-slides-wrapper {
  overflow: hidden;
  position: relative;
}

.elementor-slides-wrapper .swiper-wrapper {
  display: block;
  min-height: inherit;
  transform: none !important;
}

.elementor-slides-wrapper .swiper-slide {
  display: none;
  height: var(--e-n-carousel-slide-height, 620px);
  min-height: inherit;
  opacity: 0;
  position: relative;
  transition: opacity 0.3s ease;
  width: 100% !important;
}

.elementor-slides-wrapper .swiper-slide-active {
  display: block;
  opacity: 1;
}

.elementor-slides-wrapper .swiper-slide-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.elementor-slides-wrapper .swiper-slide-inner {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.elementor-swiper-button {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 25px;
  height: 25px;
  justify-content: center;
  margin-top: -12.5px;
  position: absolute;
  top: 50%;
  width: 25px;
  z-index: 3;
}

.elementor-swiper-button-prev {
  left: 10px;
}

.elementor-swiper-button-next {
  right: 10px;
}

.elementor-swiper-button svg {
  height: 1em;
  width: 1em;
}

.swiper-pagination {
  bottom: 5px;
  display: block;
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 3;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-block;
  height: 10px;
  margin: 0 4px;
  padding: 0;
  width: 10px;
}

.swiper-pagination-bullet-active {
  background: #ffffff;
}

@media (max-width: 1024px) {
  .home .elementor-element-77799246 {
    min-height: 620px;
  }

  .home .elementor-element-6769ea2e,
  .home .elementor-element-293302e > .e-con-inner {
    grid-template-columns: 1fr;
  }

  .home .elementor-element-6769ea2e {
    gap: 34px;
  }

  .home .elementor-element-5636fa52::before {
    height: 1px;
    left: 0;
    min-height: 0;
    top: -18px;
    width: 96px;
  }

  .home .elementor-element-293302e > .e-con-inner {
    max-width: 560px;
  }

  .case-study-hero {
    grid-template-columns: 1fr;
  }

  .case-study-hero,
  .case-study-hero__image {
    min-height: 0;
  }

  .case-study-hero__copy {
    padding: 90px 24px;
  }

  .case-study-hero__image img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .case-study-visit-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-related__grid {
    grid-template-columns: 1fr;
  }

  .elementor-1006 .elementor-element-d4a087c .elementor-slides-wrapper .swiper-slide,
  .elementor-1023 .elementor-element-7a21ce83 .elementor-slides-wrapper .swiper-slide,
  .elementor-1012 .elementor-element-70b803a3 .elementor-slides-wrapper .swiper-slide {
    height: 560px;
  }

  .elementor-1006 .elementor-element-d4a087c .elementor-slides-wrapper,
  .elementor-1023 .elementor-element-7a21ce83 .elementor-slides-wrapper,
  .elementor-1012 .elementor-element-70b803a3 .elementor-slides-wrapper {
    min-height: 560px;
  }
}

.navigation.pagination {
  margin-top: 42px;
}

.elementor-widget-social-icons .elementor-social-icon {
  align-items: center;
  display: inline-flex;
  font-size: var(--icon-size, 14px);
  height: var(--icon-size, 14px);
  justify-content: center;
  line-height: var(--icon-size, 14px);
  width: var(--icon-size, 14px);
}

.elementor-widget-social-icons .elementor-social-icon svg {
  display: block;
  height: 1em;
  width: 1em;
}

.site-footer {
  background: var(--faser-dark);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__inner {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.4fr 1fr 1fr;
  margin: 0 auto;
  max-width: var(--faser-max);
  padding: 58px 22px 34px;
}

.site-footer h2 {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li {
  font-size: 14px;
  margin: 0 0 10px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover,
.site-footer a:focus {
  color: #ffffff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 auto;
  max-width: var(--faser-max);
  padding: 18px 22px 28px;
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  margin: 0 0 8px;
}

@media (max-width: 960px) {
  .site-header__inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-navigation {
    align-items: stretch;
    background: var(--faser-surface);
    border-top: 1px solid var(--faser-line);
    box-shadow: 0 18px 40px rgba(9, 19, 31, 0.12);
    display: none;
    flex-direction: column;
    gap: 16px;
    left: 0;
    padding: 16px 22px 22px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-navigation.is-open {
    display: flex;
  }

  .primary-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-menu a {
    border-bottom: 1px solid var(--faser-line);
    padding: 12px 0;
  }

  .primary-menu .sub-menu,
  .primary-menu .children {
    border: 0;
    box-shadow: none;
    min-width: 0;
    opacity: 1;
    padding: 0 0 0 14px;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .elementor-1093 .elementor-element.elementor-element-0c01f64 > .e-con-inner {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .elementor-1093 .elementor-element.elementor-element-f2590d3 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .elementor-1093 .elementor-element.elementor-element-afee1cd .elementor-widget-container {
    text-align: center;
  }

  .elementor-1093 .elementor-element.elementor-element-eeb5e03 img {
    width: min(90%, 760px);
  }

  .related-posts__grid {
    grid-template-columns: 1fr 1fr;
  }

  .faserbiz-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .elementor-1050 .elementor-element.elementor-element-66eb86e2 > .e-con-inner,
  .elementor-1050 .elementor-element.elementor-element-27f80c65 {
    grid-template-columns: 1fr;
  }

  .elementor-1050 .faserbiz-contact-image img {
    height: 520px;
  }

  .elementor-1050 .elementor-element.elementor-element-576946b0 {
    gap: 34px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faser-brand-boats__inner {
    padding-inline: 44px;
  }

  .faser-brand-boats__slide {
    flex-basis: calc((100% - 22px) / 2);
  }

  .faser-brand-boats__button--prev {
    left: -8px;
  }

  .faser-brand-boats__button--next {
    right: -8px;
  }
}

@media (max-width: 640px) {
  .home .elementor-element-77799246 {
    min-height: 520px;
  }

  .home .elementor-element-b2c41e5 {
    padding: 72px 22px 68px;
  }

  .home .elementor-element-7d978d39 .elementor-heading-title {
    font-size: 36px;
  }

  .home .elementor-element-5636fa52 p {
    font-size: 21px;
  }

  .home .elementor-element-293302e {
    padding: 8px 18px 84px;
  }

  .home .elementor-element-64be76c2 .elementor-heading-title,
  .home .elementor-element-3e2aec5a .elementor-heading-title,
  .home .elementor-element-5219895a .elementor-heading-title {
    font-size: 27px;
  }

  .site-header__inner {
    padding-inline: 16px;
  }

  .site-logo-text {
    font-size: 25px;
  }

  .content-shell,
  .entry:not(.elementor-page .entry) {
    padding: 44px 16px;
  }

  .entry-title,
  .archive-header h1 {
    font-size: 36px;
  }

  .case-study-gallery,
  .related-posts__grid {
    grid-template-columns: 1fr;
  }

  .case-study-visit-gallery__grid {
    grid-template-columns: 1fr;
  }

  .case-study-related {
    padding: 72px 18px 88px;
  }

  .case-study-related__card span {
    font-size: 21px;
  }

  .case-study-hero h1 {
    letter-spacing: 4px;
    margin-bottom: 54px;
  }

  .case-study-meta {
    gap: 18px;
    margin-bottom: 34px;
  }

  .elementor-1006 .elementor-element-d4a087c .elementor-slides-wrapper .swiper-slide,
  .elementor-1023 .elementor-element-7a21ce83 .elementor-slides-wrapper .swiper-slide,
  .elementor-1012 .elementor-element-70b803a3 .elementor-slides-wrapper .swiper-slide {
    height: 460px;
  }

  .elementor-1006 .elementor-element-d4a087c .elementor-slides-wrapper,
  .elementor-1023 .elementor-element-7a21ce83 .elementor-slides-wrapper,
  .elementor-1012 .elementor-element-70b803a3 .elementor-slides-wrapper {
    min-height: 460px;
  }

  .elementor-1042 .elementor-element.elementor-element-83cd66a .e-n-tabs-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .elementor-1042 .elementor-element.elementor-element-83cd66a .e-n-tab-title {
    padding-inline: 18px;
  }

  .faserbiz-brand-grid {
    grid-template-columns: 1fr;
  }

  .elementor-1050 .elementor-element.elementor-element-66eb86e2 {
    padding: 58px 20px 76px;
  }

  .elementor-1050 .elementor-element.elementor-element-66eb86e2 > .e-con-inner,
  .elementor-1050 .elementor-element.elementor-element-27f80c65 {
    gap: 42px;
  }

  .elementor-1050 .elementor-element.elementor-element-576946b0 {
    grid-template-columns: 1fr;
  }

  .elementor-1050 .elementor-element.elementor-element-1528002d .elementor-heading-title {
    font-size: 34px;
    margin-bottom: 36px;
  }

  .elementor-1050 .faserbiz-contact-map__frame,
  .elementor-1050 .faserbiz-contact-map .faserbiz-map-frame {
    height: 360px;
  }

  .elementor-1050 .elementor-element.elementor-element-3f27053.faserbiz-contact-map iframe.faserbiz-map-frame {
    height: 360px;
  }

  .elementor-1050 .faserbiz-contact-image img {
    height: 420px;
  }

  .faser-brand-boats {
    padding: 46px 0 74px;
  }

  .faser-brand-boats__inner {
    padding-inline: 22px;
  }

  .faser-brand-boats__slide {
    flex-basis: 82%;
  }

  .faser-brand-boats__slide img {
    height: 230px;
  }

  .faser-brand-boats__button {
    height: 42px;
    width: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home .elementor-element-77799246,
  .home .faser-reveal,
  .home .elementor-element-293302e .elementor-widget-image img,
  .home .elementor-element-1d86887a,
  .home .elementor-element-ecda37d,
  .home .elementor-element-52471f42,
  .home .elementor-element-293302e .elementor-button {
    animation: none !important;
    transition: none !important;
  }

  .home .faser-reveal {
    opacity: 1;
    transform: none;
  }

  .case-study-visit-gallery__item.faser-gallery-reveal {
    opacity: 1;
    transform: none;
    transition: none !important;
  }

  .elementor-985 #yachting .elementor-widget-slides.faser-solution-image-reveal,
  .elementor-985 #refitting .elementor-widget-slides.faser-solution-image-reveal,
  .elementor-985 #profishing .elementor-widget-slides.faser-solution-image-reveal {
    opacity: 1;
    transform: none;
    transition: none !important;
  }

  .faser-brand-boats__viewport {
    scroll-behavior: auto;
  }

  .faser-brand-boats__slide img {
    transition: none !important;
  }
}
