*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    background: #070707;
    color: rgba(255, 255, 255, 0.75);
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
}

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

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
}

.sticky {
    position: sticky;
}

.sticky-wrapper {
  max-width: 1290px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.goBack {
  padding: 16px 0px;
  display: flex;
}
.goBack a {
  display: flex;
    padding: 12px 24px;
    gap: 4px;
border: 1px solid #68686D;
border-radius: 6px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.gallery-head {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  box-sizing: border-box;
  gap: 8px;
}
.gallery-left, .gallery-right {
  flex: 1 1 49%;
  box-sizing: border-box;
  position: relative;
}
.video-player-wrapper {
  border-radius: 4px;
  overflow: hidden;
}
.properties-act {
  position: absolute;
  right: 8px;
  bottom: 8px;
}
.properties-act ul {
  display: flex;
  gap: 4px;
}
.properties-act ul li {
  padding: 4px 8px;
  background: rgba(29, 29, 27, 0.4);
  border: 1px solid #7B7B84;
  backdrop-filter: blur(8px);
  border-radius: 2px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}
.gallery-right {
  position: relative;
}
.gallery-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gallery-right .gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.show-all-photos {
  position: absolute;
  border: 1px solid #7B7B84;
  background: rgba(29, 29, 27, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  padding: 8px 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  bottom: 8px;
  right: 8px;
}

.d-flex {
  display: flex;
}
.container {
    max-width: 1290px;
    margin: 0 auto;
    width: 100%;
}

.text-right {
    text-align: right;
}

.title {
font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 42px;
  color: #fff
}
.row {
    display: flex;
}

.ho-results {
    color: #FFF;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 12px;
}

.button-icon-right {
    border-radius: 6px;
    background: #0057FF;
    padding: 12px 24px;
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    text-decoration: none;
    transition: background 0.2s;
    display: flex;
    margin: 0 auto;
    gap: 4px;
}

.button-icon-right:hover, .hero-button:hover {
    background: #74A4FF;
}

.button-icon-right:focus, .hero-button:focus {
    background: #0057FF;
}

.icon-right {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url('../img/icons/right-arrow-btn-cta.svg') center/contain no-repeat;
}

.mt-32 {
    margin-top: 32px;
}

.pt-32 {
    padding-top: 32px;
}

header {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header .row {
    align-items: center;
    gap: 63px;
}

header.fixed {
    position: fixed;
    top: 0;
    background-color: #070707;
    transform: translateY(-100%);
    animation: slideDown 0.3s forwards;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

.site-main {
    padding-top: 60px;
    max-width: 1290px;
    margin: 0 auto;
    width: 100%;
}

.header-cta {
    border-radius: 6px;
    background: #0057FF;
    padding: 13px;
    display: block;
}
.header-cta i {
    background: url("../img/icons/cta-header.svg");
    width: 24px;
    height: 25px;
    display: block;
}

.main-nav {
    margin-left: auto;
}

.main-nav > ul {
    display: flex;
    gap: 32px;
}

.main-nav ul li a {
    transition: all 0.2s;
    color: #FFF;
}

.main-nav > ul > li > a {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    padding: 22px 0;
    align-items: center;
    display: flex;
}

.main-nav ul li a:hover {
    color: #0057FF;
}

.main-nav ul li a:focus, .current-menu-item > a {
    color: #74A4FF!important;
}

.menu-item-has-children {
    display: flex;
    align-items: center;
    position: relative;
}

.menu-item-has-children > a {
    display: flex;
    gap: 9px;
}

.menu-item-has-children > a:after {
    content: "+";
    display: block;
}

.menu-item-has-children .sub-menu {
    display: none;
    transition: all 0.2s;
    border-radius: 12px;
    position: absolute;
    border: 1px solid #393939;
    background: #070707;
    padding: 24px;
    top: 68px;
    width: 284px;
    left: -5px;
    z-index: 999999;
}

.menu-item-has-children .sub-menu ul {
    display: flex;
    flex-flow: column;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

.menu-item-has-children:hover > a {
    color: #74A4FF;
}

.menu-item-has-children .sub-menu li {
    border-bottom: 1px solid #393939;
    padding-bottom: 12px;
    padding-top: 12px;
}

.menu-item-has-children .sub-menu li:first-child {
    padding-top: 0;
}

.menu-item-has-children .sub-menu li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-has-children .sub-menu li a {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
}

.hero-section {
    padding: 0px 0 120px;
}

.hero-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 31px;
    position: relative;
}

.hero-title {
    color: #FFF;
    font-size: 92px;
    font-style: normal;
    font-weight: 700;
    line-height: 110px;
    text-transform: uppercase;
}

.hero-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

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

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #0057FF;
    padding: 12px 40px;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.hero-section::after {
    content: "";
    border-radius: 450px;
    opacity: 0.2;
    width: 847px;
    height: 847px;
    background: #11069E;
    filter: blur(100px);
    display: block;
    position: absolute;
    right: 0;
    top: 0px;
    z-index: -1;
}
.hero-button::after {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('../img/icons/arrow-hero.svg') no-repeat center center;
    background-size: contain;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: last baseline;
}

.hero-left {
    width: 60%;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    width: 100%;
    margin-top: 38px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.listing-wrapper {
    justify-content: flex-start;
    display: flex;
    flex-flow: wrap;
}

.fjord-models-section, .listing-section {
    text-align: center;
}

.listing-section {
    margin-top: 100px;
}

.fjord-models-wrapper {
    margin-bottom: 60px;
    justify-content: center;
    display: flex;
    flex-flow: wrap;
}

.fjord-models-subtitle {
    color: #74A4FF;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 24px;
    width: 100%;
}

.model-item .model-details {
    position: relative;
    text-align: left;
}

.model-item .model-details:after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url('../img/icons/arrow-models.svg') no-repeat center center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 23px;
}

.fjord-models-title {
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 24px;
}

.fjord-models-description {
    color: #C1C1C1;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
}

.fjord-models-section .models-archive {
    margin-bottom: 120px;
}

.models-archive h1 {
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 60px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.models-grid .model-item {
    display: block;
    border-radius: 8px;
    background: #1D1D1F;
    border: 1px solid #1D1D1F;
    padding: 24px 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    text-align: left;
}

.models-grid .model-item:hover {
    background: #0B0B0B;
    border: 1px solid #393939;
}

.models-grid .model-item:focus {
    border: 1px solid #C1C1C1;
    background: #0B0B0B;
}

.swiper-wrapper {
    padding-bottom: 1px;
}

.models-archive .models-swiper .swiper-slide {
    border-radius: 8px;
    background: #1D1D1F;
    border: 1px solid #1D1D1F;
    padding: 24px 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    text-align: left;
}

.models-archive .models-swiper .swiper-slide:hover {
    background: #0B0B0B;
    border: 1px solid #393939;
}

.models-archive .models-swiper .swiper-slide:focus {
    border: 1px solid #C1C1C1;
    background: #0B0B0B;
}

.listing-single .listing-single-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.listing-single .listing-single-features .feature-item {
  display: flex;
  gap: 12px;
}

.listing-single .listing-single-features .feature-item .feature-icon {
 display: flex;
  justify-content: center;
  align-items: start;
}

.listing-single .listing-single-features .feature-title {
font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #C1C1C1;
}

.listing-single .listing-single-features .feature-value {
    font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #FFFFFF;
}
.listing-single .listing-single-deck-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 49px;
}

.listing-single .listing-single-deck-layout .deck-layout-item {
    width: 153px;
}

.listing-body {
    margin-bottom: 100px;
}

.deck-gallery-wrapper {
    position: relative;
    width: 100%;
}

.deck-gallery-swiper {
    width: 100%;
}

.deck-gallery-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.listing-single-deck-layout {
    margin-top: 48px;
}

.deck-gallery-count span {
    color: #C1C1C1;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.deck-gallery-swiper .swiper-slide {
    height: 376px;
    position: relative;
    overflow: hidden;
}

.deck-gallery-swiper .swiper-slide img {
    height: 100%;
    display: block;
    margin: 0 auto;
}

.deck-gallery-count span.current {
    color: #FFF;
}

.engine-hours {
    margin-top: 12px;
    width: 100%;
}

.engine-hours input {
    border-radius: 2px;
    border: 1px solid #393939;
    background: #070707;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    padding: 11px 16px;
    width: 100%;
}

.engine-hours input::placeholder {
    color: #FFF;
}

.deck-gallery-navigation button {
    border-radius: 6px;
    width: 50px;
    height: 50px;
    padding: 13px;
    font-size: 20px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#main-photo-image img, .gallery-item img {
    cursor: pointer;
}

#prevImage svg {
    transform: rotate(180deg);
}

.deck-gallery-navigation .deck-gallery-prev,
.deck-gallery-navigation .deck-gallery-next {
    border: 1px solid #393939;
}

.deck-gallery-navigation .deck-gallery-prev.active,
.deck-gallery-navigation .deck-gallery-next.active {
    border: 1px solid #FFF;
}

.deck-gallery-count {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
}

.listing-single .listing-single-deck-layout .deck-layout-icon img {
    max-width: 100%;
    height: auto;
    display: block;
}

.listing-single .listing-single-deck-layout .deck-layout-name {
    margin-top: 12px;
    color: #C1C1C1;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.56px;
    text-transform: uppercase;
}

.listing-single .all-listing {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-single .cta-btn-1 {
    display: flex;
    gap: 4px;
}

.listing-single .all-listing hr {
    height: 1px;
    width: 40%;
    border: none;
    background: rgba(112, 128, 144, 0.20);
}

.listing-single .listing-single-deck-layout .deck-layout-value {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.44px;
}

.features {
    margin-top: 100px;
}

.model-thumb {
    margin-bottom: 26px;
}

.model-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.model-title {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 8px;
}

.model-length {
    color: #C1C1C1;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

.fjord-app-section {
    margin-top: 120px;
    margin-bottom: 120px;
}

.fjord-app-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

.fjord-app-left,
.fjord-app-right {
    width: 50%;
}

.fjord-app-image {
    width: 94%;
}

.fjord-app-subtitle {
    color: #74A4FF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 14px;
}

.fjord-app-title {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 64px;
}

.fjord-app-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fjord-app-feature-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.fjord-app-feature-icon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fjord-app-feature-icon {
    border-radius: 6px;
    background: #0057FF;
    padding: 6px;
    display: inline-block;
}

.fjord-app-feature-line {
    width: 2px;
    height: 80px;
    background: #0057FF;
    margin-top: 8px;
}

.fjord-app-feature-text {
    flex: 1;
}

.fjord-app-feature-title {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 13px;
}

.fjord-app-feature-description {
    color: #C1C1C1;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.configurator-left-inner:before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 27px;
    background: url('../img/icons/arrow-3d.svg') no-repeat center center;
    background-size: contain;
    position: absolute;
    right: 35px;
}

.configurator-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
}

.configurator-left, .configurator-right {
    flex: 1 1 50%;
}

.config-subtitle {
    color: #74A4FF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.configurator-left-text {
    width: 29%;
}

.config-title {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 70px;
}

.configurator-left-inner {
    position: relative;
    border-top: 1px solid #393939;
    border-bottom: 1px solid #393939;
    padding: 49px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.config-title-2 {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 16px;
}

.config-subtitle-2 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 8px;
}

.config-description {
    color: #C1C1C1;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.config-image {
    max-width: 100%;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 32px;
    border-radius: 10px;
    border: 1px solid #393939;
    margin-top: 80px;
    margin-bottom: 80px
}

.cta-title {
    color: #FFF;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 12px;
}

.cta-description {
    color: #C1C1C1;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn-1 {
    border-radius: 6px;
    border: 1px solid #FFF;
    padding: 11px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    color: #FFF;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-btn-1:hover {
    background: rgba(255, 255, 255, 0.10);
}

.about-us-wrapper {
    display: flex;
    gap: 60px;
}

.about-us-left {
    width: 37%;
}

.listing-single .main-photo {
    width: 100%;
    margin-bottom: 16px;
}

.listing-single .main-photo img {
    width: 100%;
    border-radius: 10px;
    display: block;
    height: 656px;
    object-fit: cover;
}

.listing-single .thumbnail-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.listing-single .thumbnail-gallery .thumb {
    width: calc(20% - 12.8px);
    cursor: pointer;
}

.listing-single .thumbnail-gallery .thumb img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

.listing-single-measurements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.listing-single-measurement {
    border-radius: 4px;
    background: #1D1D1F;
    height: 236px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 32px 20px 48px 20px;
}

.listing-single-measurement .measurement-icon img {
    max-height: 40px;
    object-fit: contain;
}

.listing-single-measurement .measurement-title {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
}

.listing-single-measurement .measurement-value {
    color: #74A4FF;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.measurements {
    margin-top: 100px;
    margin-bottom: 100px;
}

.measurement-icon {
    display: flex;
    justify-content: center;
}

.listing-title {
    margin-bottom: 48px;
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
}

.about-subtitle {
    color: #74A4FF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-title {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 60px;
}

.about-feature-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #393939;
}

.feature-title {
    margin-bottom: 8px;
}

.feature-title h4 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    transition: all 0.2s;
}

.feature-title h4:hover {
    color: #0057FF;
}

.feature-title h4:focus {
    color: #74A4FF !important;
}

.feature-description {
    color: #C1C1C1;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 16px;
}

.about-feature-item i {
    width: 27px;
    height: 27px;
    display: inline-block;
    background: url('../img/icons/arrow-about.svg') center/contain no-repeat;
}

.about-image {
    border-radius: 8px;
    width: 100%;
    height: auto;
    display: block;
}

.fjord-app-page-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.fjord-app-page-left,
.fjord-app-page-right {
    width: 50%;
    align-content: center;
}

.fjord-app-page-title {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 24px;
}

.fjord-app-page-description {
    color: #C1C1C1;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 32px;
}

.fjord-app-page-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 0;
    margin: 0;
}

.fjord-app-page-feature-item a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.fjord-app-page-section::after {
    content: "";
    border-radius: 450px;
    width: 764px;
    height: 616px;
    fill: rgba(20, 23, 137, 0.80);
    opacity: 0.49;
    filter: blur(100px);
    display: block;
    position: absolute;
    right: 0;
    top: 0px;
    z-index: -1;
}

.fjord-app-page-feature-item a:hover {
    opacity: 0.8;
}

.fjord-app-page-feature-item img {
    width: auto;
    height: auto;
    display: block;
}

.fjord-app-page-main-image {
    max-width: 100%;
    border-radius: 8px;
    display: block;
}

.contact-page-section {
    padding: 60px 0;
}

.contact-page-wrapper {
    display: flex;
    gap: 97px;
}

.contact-title {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 12px;
}

.contact-map {
    width: 100%;
    height: 470px;
    border-radius: 6px;
    overflow: hidden;
}

.contact-left {
    width: 46%;
}

.wpcf7-form-control {
    width: 100%;
}
.contact-description {
    color: #C1C1C1;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 32px;
}

.contact-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form label {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    border-radius: 6px;
    border: 1px solid #393939;
    height: 44px;
    padding: 8px 12px;
    background: transparent;
    color: #FFF;
}

.contact-form textarea {
    height: 88px;
    margin-bottom: 24px;
    resize: vertical;
}

.contact-form input[type="submit"] {
    border-radius: 6px;
    background: #0057FF;
    padding: 12px 24px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
}

.contact-right .contact-map {
    margin-bottom: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-item img.contact-icon {
    width: 24px;
    height: 24px;
}

.contact-info-text {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.contact-page-wrapper {
    border-radius: 10px;
    border: 1px solid #393939;
    padding: 32px;
}

.fjord-brochure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.fjord-brochure-item {
    border-radius: 8px;
    background: #1D1D1F;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.fjord-brochure-thumb {
    margin-bottom: 8px;
}

.fjord-brochure-title {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 24px;
}

.fjord-brochure-button {
    border-radius: 6px;
    background: #0057FF;
    padding: 5px;
    width: 100%;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.about-intro {
    text-align: center;
    margin-bottom: 64px;
}
.about-title {
    color: #FFF;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 24px;
}
.about-description {
    color: #C1C1C1;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 64px;
}

.about-block1 {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}
.about-block1-image img {
    width: 100%;
    border-radius: 12px;
}
.about-block1-image,
.about-block1-text {
    width: 50%;
}

.about-point {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}
.point-dot {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: #C1C1C1;
    flex-shrink: 0;
    margin-top: 8px;
}
.point-text h4 {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 13px;
}
.point-text p {
    color: #C1C1C1;
    font-size: 16px;
    line-height: 24px;
}

.about-title-2 {
    text-align: center;
    color: #FFF;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 32px;
}
.about-whyus {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.whyus-item {
    flex: 1;
    border-radius: 12px;
    border: 1px solid #393939;
    padding: 32px;
    min-width: 280px;
}
.whyus-icon {
    background: #0057FF;
    border-radius: 6px;
    padding: 6px;
    display: inline-block;
    margin-bottom: 14px;
}
.whyus-icon img {
    display: block;
    width: auto;
    height: auto;
}
.whyus-title {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 14px;
}
.whyus-description {
    color: #C1C1C1;
    font-size: 16px;
    line-height: 32px;
}
.about-experience {
    margin-bottom: 60px;
}
.about-experience-title {
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 32px;
}

.experience-card {
    border-radius: 8px;
    border: 1px solid #393939;
    padding: 24px;
}

.experience-img {
    border-radius: 6px;
    margin-bottom: 26px;
    width: 100%;
    height: auto;
}

.experience-title {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 8px;
}

.experience-description {
    color: #98989A;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.48px;
    margin-bottom: 26px;
    min-height: 96px;
}

.about-models {
    margin-bottom: 80px
}

.about-models .fjord-app-page-title {
    text-align: center;
}

.about-experience-swiper .swiper-pagination {
    margin-top: 35px;
}

.experience-buttons {
    display: flex;
    flex-wrap: wrap;
}

.experience-btn-1 {
    border-radius: 6px;
    background: #0057FF;
    padding: 12px 24px;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
}

.experience-btn-2 {
    border-radius: 6px;
    border: 1px solid #FFF;
    padding: 12px 24px;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    margin-left: auto;
}

.swiper-pagination {
    position: relative!important;
}

.swiper-pagination-bullet {
    width: 10px!important;
    height: 10px!important;
    background: #393939!important;
}
.swiper-pagination-bullet-active {
    background: #fff!important;
}

.model-media img {
    width: 100%;
}

.model-media {
    margin-bottom: 80px;
}

.single-model-properties {
    margin-top: 80px;
}

.model-header-block {
    display: flex;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid #393939;
}

.model-header-left h1 {
    color: #FFF;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    font-style: normal;
}

.model-header-right {
    display: flex;
    gap: 53px;
}

.model-spec {
    display: flex;
    flex-direction: column;
}

.spec-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.spec-label img {
    width: 24px;
    height: 24px;
}

.spec-label span {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
}

.spec-value {
    color: #74A4FF;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
}

.model-content-block {
    padding: 27px 0;
}

.model-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

.model-buttons {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.model-buttons  .button-icon-right, .brochure-item .button-icon-right {
    margin: 0;
}

.model-main-features, .general-main-features {
    margin-bottom: 120px;
}

.model-main-title {
    color: #FFF;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 32px;
}

.general-main-features {
    margin-top: 64px;
}

.general-main-features .feature-accordion {
    background: transparent!important;
}

.general-main-features .title {
    text-align: left;
    margin-bottom: 48px;
}

.general-main-features .feature-accordion {
    padding: 0;
    border-bottom: 1px solid rgba(112, 128, 144, 0.20);
    border-radius: 0;
}

.general-main-features .feature-title {
    margin-bottom: 32px;
}

.model-video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    overflow: hidden;
}

.model-video-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.play-button-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-video-btn {
    border-radius: 6px;
    background: #FFF;
    padding: 24px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.8;
}

.play-video-btn:hover {
    opacity: 1;
}

.play-video-btn i {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url('../img/icons/play-video.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.model-video-container iframe {
    width: 100%;
    height: 500px;
    display: block;
}

.feature-accordion {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 32px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.feature-title {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-accordion.open .feature-icon {
    transform: rotate(-90deg);
}

.feature-content {
    display: none;
}

.feature-accordion.open .feature-content {
    display: block;
}

.feature-separator {
    background: #5F5E5E;
    height: 1px;
    margin: 24px 0;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 56px;
}

.feature-tag {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.model-brochure-section {
    margin-top: 120px;
}

.brochure-title {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 28px;
}

.brochure-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 28px;
}

.brochure-items {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.brochure-item {
    flex: 1 1 calc(33.333% - 21.34px);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.brochure-item-title {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 16px;
}

.brochure-item-image {
    border-radius: 4px;
    margin-bottom: 32px;
    width: 100%;
    height: auto;
}
.gallery-section {
    margin-top: 120px;
}

.gallery-section h2 {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 32px;
}

.gallery-section .gallery-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 32px;
}

.gallery-slider .swiper-slide img {
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    height: auto;
}

.gallery-slider {
    position: relative;
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #070707;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
}

.gallery-modal .close-modal {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    cursor: pointer;
}

.gallery-modal .close-modal svg {
    width: 18px;
    height: 18px;
}

.gallery-modal .nav-prev,
.gallery-modal .nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    cursor: pointer;
}

.gallery-modal .nav-prev {
    left: 32px;
}

.gallery-modal .nav-next {
    right: 32px;
}

.gallery-modal .disabled {
    border-radius: 6px;
    border: 1px solid #353535;
    padding: 13px;
    cursor: default;
    opacity: 0.5;
}

.gallery-modal .active-arrow {
    padding: 13px;
    border-radius: 6px;
    border: 1px solid #FFF;
}

.gallery-counter {
    margin-top: 32px;
    text-align: center;
    font-size: 22px;
    line-height: 28px;
    font-style: normal;
    font-weight: 400;
}

.gallery-counter .gallery-current {
    color: #FFF;
}

.gallery-counter .gallery-total {
    color: #C1C1C1;
}

.listing-archive {
    padding-top: 50px;
}

.listing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.listing-card {
    width: calc(50% - 16px);
    display: flex;
    flex-direction: column;
}
.listing-info {
    transition: background 0.2s;
}
.listing-card:hover .listing-info {
    background: rgba(255, 255, 255, 0.10);
}

.listing-card:focus .listing-info {
    background: rgba(255, 255, 255, 0.10);
    border-left: 1px solid #C1C1C1;
    border-right: 1px solid #C1C1C1;
    border-bottom: 1px solid #C1C1C1;
}

.listing-thumb img {
    width: 100%;
    height: 362px;
    border-radius: 10px 10px 0px 0px;
}

.listing-info {
    padding: 24px 24px 32px 24px;
    border-radius: 0px 0px 10px 10px;
    border-left: 1px solid #393939;
    border-right: 1px solid #393939;
    border-bottom: 1px solid #393939;
}

.listing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 1px solid #393939;
    padding-bottom: 12px;
}

.listing-header h3 {
    color: #FFF;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

.listing-price {
    color: #74A4FF;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    margin-left: auto;
}

.listing-details {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.listing-detail {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
}

.listing-pagination {
    margin-top: 60px;
    text-align: center;
    margin-bottom: 28px;
}

.listing-pagination .page-numbers {
    color: #FFF;
    text-decoration: none;
}

.listing-pagination .current {
    color: #74A4FF;
    font-weight: bold;
}

.listing-main-image {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.listing-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.listing-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    padding: 10px 0;
}

.listing-pagination .page-numbers {
    border-radius: 6px;
    text-align: center;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.listing-pagination .page-numbers.dots {
    display: none;
}

.listing-pagination .page-numbers.current {
    border: 1px solid #0057FF;
    background: #0057FF;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.listing-pagination .page-numbers:not(.current):not(.prev):not(.next) {
    border: 1px solid #FFF;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.listing-pagination .page-numbers.prev,
.listing-pagination .page-numbers.next {
    width: 50px;
    height: 50px;
    padding: 13px;
    border: 1px solid #353535;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-pagination .page-numbers.prev i {
    background: url('../img/icons/chevron right.svg') no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
    transform: rotate(180deg);
}

.listing-pagination .page-numbers.next i {
    background: url('../img/icons/chevron right.svg') no-repeat center center;
    width: 24px;
    height: 24px;
    display: block;
}

.listing-pagination .prev.disabled i {
    background: url('../img/icons/chevron-inactive-left.svg') no-repeat center center;
}
.listing-pagination .next.disabled i {
    background: url('../img/icons/chevron-inactive-left.svg') no-repeat center center;
    transform: rotate(180deg);
}

.listing-pagination .page-numbers.prev,
.listing-pagination .page-numbers.next {
    background-color: transparent;
}

.listing-pagination .page-numbers.disabled {
    pointer-events: none;
}

.listing-pagination .prev.disabled i {
    transform: none;
}

.listing-main-image {
    height: 100vh;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.listing-main-image .overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 34, 45, 0.60);
    z-index: 1;
}

.listing-main-image .container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
    z-index: 2;
}


.listing-hero .button-icon-right {
    margin-left: 0;
}

.listing-body h1 {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
}
.listing-price-info-list li:nth-child(1) {
  padding-right: 12px;
}
.listing-price-info-list li:nth-child(1)::after {
  content: '';
  display: block;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.listing-body h2 {
    margin-bottom: 24px;
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.listing-tabs-wrapper .iframe-container iframe {
    border-radius: 10px;
}

.listing-body {
  width: 784px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.listing-hero {
  justify-content: flex-start;
  display: flex;
  flex-flow: wrap;
  border-bottom: 1px solid #393939;
  padding-bottom: 32px;
}
.listing-tabs-wrapper {
    margin-top: 100px;
}
.listing-hero .title {
  text-align: left;
  width: 100%;
}
.listing-body h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 54px;
  color: #fff;
}
.listing-attributes {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin-top: 20px;
}
.listing-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.listing-single-gallery-wrapper {
    margin-top: 24px;
}

.listing-single-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.listing-single-gallery .gallery-item {
    width: calc((100% - 48px) / 3);
    border-radius: 4px;
    overflow: hidden;
}

.listing-single-gallery .gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.listing-single-gallery .gallery-item.hidden-photo {
    display: none;
}

.see-more-images {
    color: #FFF;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    margin-top: 24px;
    cursor: pointer;
}

.masonry-grid {
    display: block;
    margin: 0 -12px;
    position: relative;
}

.masonry-grid .grid-sizer,
.masonry-grid .gallery-item {
    float: left;
    width: 33.333%;
    margin-bottom: 24px;
}

.gallery-item img {
  width: 100%;
  height: 177px;
  border-radius: 4px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.masonry-grid .gallery-item {
    width: calc(33.333% - 24px);
    margin: 0 12px 24px;
    float: left;
    border-radius: 4px;
    overflow: hidden;
}

.masonry-grid .grid-sizer {
    width: 33.333%;
}

.see-all-images {
    margin-top: 24px;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid #FFF;
    background: transparent;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
}
.vessel-events-slider {
  display: flex;
  gap: 20px;
}
.listing-single .download-pdf {
  display: flex;
  border: 1px solid rgba(44, 43, 43, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  justify-content: space-between;
  margin-top: 64px;
  padding: 24px 32px;
}

.listing-single .download-pdf-left {
    flex: 1 1 59%;
    box-sizing: border-box;
}

.listing-single .download-pdf-right {
    flex: 1 1 50%;
    box-sizing: border-box;
}

.listing-single .download-pdf-left .button-icon-right {
    margin-left: 0;
}

.listing-single .download-pdf-right img {
    width: 100%;
    border-radius: 0 0 4px 4px;
    height: 150px;
}

.listing-single .download-pdf-title {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  display: flex;
  align-items: center;
}
.listing-single .download-pdf-title .highlight {
    color: #74A4FF;
}

.listing-single .download-pdf-left {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.listing-single .download-pdf-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #1D1D1F;
    padding: 25px 30px 13px 30px;
    border-radius: 4px 4px 0 0;
}

.listing-single .download-pdf-label {
    color: #C1C1C1;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    margin-bottom: 29px;
}

.listing-price-block {
    margin-top: 100px;
    flex-flow: column;
    display: flex;
    gap: 60px;
}

.listing-price-block .price {
    padding: 32px 44px 36px 24px;
    border-radius: 4px;
    display: flex;
    flex-flow: column;
    gap: 16px;
    border: 1px solid #393939;
    margin: 0 auto;
    margin-left: 0;
}

.listing-price-block .price i {
    display: block;
    width: 36px;
    height: 36px;
    background-image: url('../img/icons/listing/price.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.listing-price-block .listing-price-title {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
}

.tab-title {
    color: #C1C1C1;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -1.76px;
    cursor: pointer;
}

.tab-title.active {
    color: #FFF;
}

.tab-separator {
    margin: 0 12px;
    color: #C1C1C1;
    font-size: 44px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -1.76px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.attribute-text {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.attribute-item {
    display: flex;
    align-items: center;
    gap: 17px;
    border-radius: 6px;
    background: rgba(34, 34, 45, 0.40);
    padding: 8px 24px 8px 8px;
    width: 393px;
    max-width: 100%;
}

.attribute-icon {
    border-radius: 6px;
    border: 1.3px solid rgba(255, 255, 255, 0.20);
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-attr {
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.attr-1 {
    background-image: url('../img/icons/listing/ico-attr-1.svg');
}
.attr-2 {
    background-image: url('../img/icons/listing/ico-attr-2.svg');
}
.attr-3 {
    background-image: url('../img/icons/listing/ico-attr-3.svg');
}
.attr-4 {
    background-image: url('../img/icons/listing/ico-attr-4.svg');
}

.global-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.global-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #070707;
    padding: 24px;
    border-radius: 10px;
    display: none;

    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-box.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}
.range-labels .label {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
}
.modal-box.price-modal   {
    position: absolute;
    width: 616px;
    padding: 0;
}
.modal-box.sort-modal    {
    position: absolute;
    width: 436px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid #393939;
}

.modal-box.length-modal  {
    position: absolute;
    width: 616px;
    padding: 0;
}
.modal-box.filter-modal  {
    position: absolute;
    width: 616px;
    padding: 0;
}

.modal-box.video-modal  {
    position: absolute;
    width: 50%;
    padding: 0;
}
.sort-modal .sort-options {
    display: flex;
    flex-flow: column;
}
.sort-modal .sort-options label {
    cursor: pointer;
}
.sort-modal .sort-options {
    gap: 8px;
}
.sort-options label:nth-child(2), .sort-options label:nth-child(4) {
    border-bottom: 1px solid #393939;
    padding-bottom: 12px;
    margin-bottom: 4px;
}
.sort-modal .sort-options label span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    transition: all 0.2s;
}
.sort-modal .sort-options label:hover span {
    color: #0057FF;
}
.sort-modal .sort-options label:focus span {
    color: #74A4FF;
}

.sort-modal .sort-options label.active span {
    color: #74A4FF;
}

.sort-modal .sort-options input {
    display: none;
}
.listing-filters {
    padding-top: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.filter-body {
    max-height: 600px;
    overflow-y: scroll;
    padding: 0px 16px 12px 16px;
}

.filter-body .popular-features-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-body .popular-features-filter a {
    flex: 1 0 calc(25% - 9px);
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #393939;
    padding: 12px;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-body .popular-features-filter a:hover {
    background: rgba(255, 255, 255, 0.10);
}

.filter-body .popular-features-filter a.active {
    border: 1px solid #74A4FF;
    background: rgba(116, 164, 255, 0.20);
}

.clear-all-filter {
    display: flex;
    gap: 4px;
    align-items: center;
}

.clear-all-filter i {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url('../img/icons/filters/clear-filters.svg');
}

.filter-footer {
    padding: 16px 24px;
    border-top: 2px solid #393939;
    display: flex;
    justify-content: space-between;
}

.filters-left {
    display: flex;
    gap: 26px;
}

.filters-right {
    display: flex;
    gap: 32px;
    align-items: center;
}

.fields-range {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 12px;

}

.fields-range div {
    position: relative;
}

.fields-range .symbol {
    position: absolute;
    right: 17px;
    top: 5px;
}

.fields-range input {
    padding: 11px 16px;
    border-radius: 6px;
    border: 1px solid #C1C1C1;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
}

.fields-range input:focus {
    border: 1px solid #fff;
}

.fields-range input::placeholder {
    color: #C1C1C1;
}

.price-scale {
    margin-top: 11px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.price-scale div {
    color: #C1C1C1;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    text-transform: capitalize;
}

.filter-button {
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    padding: 12px 24px;
    border: 1px solid #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    color: #FFF;
    background: none;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-button:hover {
    background: rgba(255, 255, 255, 0.10);
}


.icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.drop-icon {
    background-image: url('../img/icons/listing/drop.svg');
}

.filter-icon {
    background-image: url('../img/icons/listing/filter.svg');
}

.search-icon {
    background-image: url('../img/icons/listing/Search.svg');
    width: 21px;
    height: 20px;
}

.sort-by-block {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.sort-label {
    color: #C1C1C1;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
}

.sort-value {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #6A6969;
    transition: all 0.2s;
}

.search-field:hover,
.search-field:focus-within {
    border: 1px solid #FFF;
}

.ho-results {
    color: #FFF;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 12px;
}

.search-field input {
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    transition: all 0.2s;
}

.search-field input::placeholder {
    color: #6A6969;
    transition: color 0.2s;
}

.search-field input:focus .search-field {
    border: 1px solid #FFF;
}

.search-field input:focus::placeholder {
    color: #fff;
}

.price-modal, .length-modal, .filter-modal {
    border-radius: 12px;
    border: 1px solid #393939;
    background: #070707;
    padding: 24px;
    color: #fff;
    width: 100%;
    max-width: 600px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px 24px 16px;
}

.price-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.close-modal {
    background: none;
    border: none;
    cursor: pointer;
}

.filter-body .range-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.filter-body .label {
    width: 48%;
    font-size: 16px;
    font-weight: 500;
}

.filter-body .filter-title {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    display: flex;
    margin-bottom: 24px;
    align-items: center;
    gap: 8px;
}

.filter-body .filter-title i {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.filter-body .listing-condition, .filter-body .engine_type {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.filter-body .listing-condition a, .filter-body .engine_type a {
    border-radius: 2px;
    border: 1px solid #393939;
    background: #070707;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    padding: 11px 16px;
    width: 50%;
    transition: all 0.2s;
    text-align: center;
}

.filter-body .listing-condition a.active, .filter-body .engine_type a.active {
    background: #0057FF;
    border-radius: 2px;
    border: 1px solid #070707;
    transition: all 0.2s;
}

.filter-body .listing-condition a.active:hover, .filter-body .engine_type a.active:hover {
    background: #74A4FF;
}

.filter-body .listing-condition a:hover, .filter-body .engine_type a:hover {
    background: rgba(255, 255, 255, 0.10);
}

.slider-wrapper.mb {
    margin-bottom: 8px;
}

.filter-body i.vessel {
    background: url('../img/icons/filters/vessel.svg') center/contain no-repeat;
}

.filter-body i.popular {
    background: url('../img/icons/filters/popular.svg') center/contain no-repeat;
}

.filter-body i.vessel_year {
    background: url('../img/icons/filters/vessel_year.svg') center/contain no-repeat;
}

.filter-body i.speed {
    background: url('../img/icons/filters/speed.svg') center/contain no-repeat;
}

.filter-body i.engine {
    background: url('../img/icons/filters/engine.svg') center/contain no-repeat;
}

.filter-footer .button-icon-right {
    margin: 0;
}

#yearFilter .fields-range input, #speedFilter .fields-range input{
    text-align: center;
    border-radius: 35px;
}

.slider-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider-fill {
    position: absolute;
    height: 18px;
    background: #C1C1C1;
    top: 50%;
    transform: translateY(-50%);
    left: 20%;
    right: 20%;
    border-radius: 9px;
    z-index: 1;
}

.noUi-target {
    height: 22px;
    background: #1D1D1F;
    border-radius: 2px;
    border: none;
    box-shadow: none;
}

.noUi-connect {
    background: #C1C1C1;
    border-radius: 2px;
}

.slider-wrapper {
    padding: 24px 20px 20px 20px;
    border-radius: 4px;
    border: 1px solid #393939;
    background: #070707;
}

.model-single .listing-tabs-wrapper {
    margin-top: 93px;
    margin-bottom: 120px;
}

.noUi-touch-area {
    background-image: url('../img/icons/listing/touch.svg');
    height: 17px;
    width: 17px;
}

.request-yachtv-viewing .request-header {
    display: flex;
    gap:12px;
    flex-flow: column;
    margin-bottom: 34px;
}

.request-yachtv-viewing .request-title {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.request-yachtv-viewing .request-desc {
    color: #C1C1C1;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.request-modal {
    padding: 32px;
}

.modal-box.request-modal .text-right {
    margin-bottom: 15px;
}

.modal-box.request-modal {
    position: absolute;
    top: 0;
    right: 0;
    width: 448px;
}

.modal-box.request-modal .form__group .form__label {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.modal-box.request-modal .form__group input[type=tel], .modal-box.request-modal .form__group input[type=text],.modal-box.request-modal .form__group input[type=email], .modal-box.request-modal .form__group textarea {
    border-radius: 6px;
    border: 1px solid #393939;
    color: #fff;
    height: 44px;
    padding: 8px 12px;
}

.modal-box.request-modal .form__group textarea {
    min-height: 88px;
    max-height: 88px;
}

.modal-box.request-modal .form__group input[type="submit"] {
    border-radius: 6px;
    background: #0057FF;
    padding: 12px 24px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    margin-top: 14px;
}

.fjord-app-features .fjord-app-feature-item:last-child .fjord-app-feature-line {
    display: none;
}

.fjord-app-button {
    margin-top: 70px;
    display: flex;
}

.fjord-app-button a {
    border-radius: 6px;
    background: #0057FF;
    padding: 7px 24px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    display: flex;
    width: auto;
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
}

.fjord-app-button a:hover {
    background: #74A4FF;
}

.fjord-app-button a:focus {
    background: #0057FF;
}

.fjord-app-button a i {
    width: 29px;
    height: 30px;
    display: inline-block;
    background-image: url('../img/icons/app-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.listing-preview .listing-archive {
    padding-top: 0px;
}

.filter-modal .search-form {
    margin-bottom: 12px;
}

.burger-mobile, .mobile-burger-menu {
    display: none;
}

.model-video-hero {
    position: relative;
    padding-top: 56.25%; /* 16:9 ratio */
    overflow: hidden;
    background-color: #000;
}

.model-video-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.video-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.video-bg-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tanks {
    padding-bottom: 32px;
}
.tanks .feature-item {
    text-align: left!important;
}

.tanks .feature-title {
    color: #C1C1C1!important;
    font-size: 16px!important;
    margin-bottom: 0!important;
}
.tanks  .feature-item {
    gap: 0!important;
}
.tanks .feature-value {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-transform: capitalize;
}

footer {
    background: #0A0A1A;
    color: #fff;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
}

.footer-left {
    width: 70%;
    padding: 100px 15px;
    border-right: 1px solid #393939;
}

.footer-logo {
    margin-bottom: 32px;
    text-align: left;
}

.footer-title {
    color: #FFF;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 55px;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    padding: 12px 40px;
    text-decoration: none;
    margin-right: 30px;
}

.footer-button.email {
    border-radius: 6px;
    border: 1px solid #393939;
    color: #FFF;
}

.footer-button.phone {
    border-radius: 6px;
    background: #0057FF;
    color: #FFF;
}

.footer-button i {
    width: 42px;
    height: 42px;
    display: inline-block;
    background: url('../img/icons/tabler_arrow-up.svg') center/contain no-repeat;
}

.footer-right {
    width: 30%;
    padding-top: 75px;
    padding-bottom: 45px;
    text-align: center;
}

.footer-menu-title {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 33.6px;
    margin-bottom: 28px;
}

.footer-nav .footer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li a {
    color: #C1C1C1;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-menu li a:hover {
    color: #0057FF;
}

.footer-menu li a:focus {
    color: #74A4FF;
}

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


.footer-bottom-left {
    padding-top: 40px;
    padding-bottom: 40px;
    width: 70%;
    padding-left: 20px;
    border-right: 1px solid #393939;
}

.footer-socials {
    display: flex;
    gap: 45px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.footer-socials li a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-socials li img {
    width: 20px;
    height: auto;
}

.footer-socials li span {
    color: #C1C1C1;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

.footer-bottom-right {
    padding-top: 40px;
    padding-bottom: 40px;
    width: 30%;
    text-align: center;
    border-top: 1px solid #393939;
}

.footer-copyright {
    color: #C1C1C1;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

.loan-calculator .calculator-left {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(44, 43, 43, 0.7);
    border-radius: 8px;
}

.loan-calculator .calculator-row {
    position: relative;
    margin-bottom: 24px;
}

.loan-calculator h4 {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 12px;
}

.loan-calculator .calculator-left input[type="text"], .loan-calculator .calculator-left input[type="number"] {
    border: 1px solid #F1F1F2;
    border: 1px solid #393939;
    border-radius: 2px;
    width: 100%;
    padding: 8px 16px 8px 40px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.listing-bottom-row {
    border-top: 1px solid #393939;
    padding-top: 80px;
    margin-top: 80px;
}

.listing-bottom-row .title {
    margin-bottom: 32px;
}

.calculator-row .field-icon {
    position: relative;
    width: 100%;
}

.calculator-row .field-icon svg {
    position: absolute;
    bottom: 12px;
    left: 16px;
}
#interest-rate {
    padding: 8px 16px!important;
}
.loan-calculator #monthly-payment {
    font-weight: 700;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    color: #fff;
    margin-bottom: 4px;
}

.loan-calculator {
    margin-bottom: 92px;
}

.loan-calculator .monthly-desc {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    width: 280px;
    margin-bottom: 20px;
}

.loan-calculator {
    display: flex;
    flex-wrap: wrap;
    gap: 80px
}

.calculator-right {
    display: flex;
    flex-flow: column;
    flex: 1 1 30%;
    align-items: center;
    justify-content: center;
}

.calculator-right > div {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background: url('/wp-content/uploads/2026/01/Price.svg') center / cover no-repeat;
    height: 460px;
    width: 100%;
}

.calculator-left {
    flex: 1 1 55%;
}

.calculator-right .request-btn {
    padding: 10px 20px;
    background: #0057FF;
    border-radius: 6px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

#interest-rate {
    margin-bottom: 12px;
}

.loan-calculator .calculator-left .loan-term-buttons button {
    padding: 12px 12px 12px 8px;
    border: 1px solid #68686D;
    border-radius: 6px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    color: #fff;
}
.loan-calculator .calculator-left .loan-term-buttons button.active {
    background: #FFFFFF;
    border: none;
    color: #1D1D1F;
}

.noUi-handle {
    background: #FFFFFF!important;
    box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.05)!important;
    border-radius: 4px!important;
    border: none!important;
}

.loan-calculator .price-scale div {
    font-style: normal;
    font-weight: 400!important;
    font-size: 14px!important;
    line-height: 20px!important;
    color: #7B7B84!important;
}

.loan-calculator .calculator-left .loan-term-buttons {
    display: flex;
    gap: 4px
}

.down-payment-fields {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.calculator-right h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 4px;
}

.general-main-features {
    margin-top: 120px;
}

.general-main-features .feature-accordion {
    background: transparent!important;
}

.general-main-features .title {
    text-align: left;
    margin-bottom: 20px;
}

.general-main-features .feature-accordion {
    padding: 0;
    border-bottom: 1px solid rgba(112, 128, 144, 0.20);
    border-radius: 0;
}

.feature-tabs-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #393939;
    margin-bottom: 32px;
}

.feature-tabs-nav .tab-button {
    padding: 8px 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #C1C1C1;
}
.feature-tabs-nav .tab-button.active {
    color: #FFF;
    border-bottom: 1.4px solid #FFF;
}

.general-main-features .feature-title {
    margin-bottom: 2px;
}

.vessel-event-item {
    padding: 24px;
    border: 1px solid rgba(44, 43, 43, 0.7);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    width: 100%;
}

.vessel-event-item .event-details {
    display: flex;
    flex-flow: column;
    gap: 12px
}

.vessel-event-item .event-details span {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
}

.download-pdf .button-icon-right {
    margin: 0!important;
}

.vessel-events-title {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
    color: #1D1D1B;
    margin-bottom: 32px;
}

.vessel-event-item .event-name {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 16px;
}

.vessel-event-item .event-detail {
    display: flex;
    gap: 5px;
}

.listing-single .download-pdf-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #1D1D1F;
    padding: 25px 30px 13px 30px;
    border-radius: 4px 4px 0 0;
}

.listing-single .download-pdf-label {
    color: #C1C1C1;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    margin-bottom: 29px;
}

.listing-price-block {
    margin-top: 100px;
    flex-flow: column;
    display: flex;
    gap: 60px;
}

.listing-price-block .price {
    padding: 32px 44px 36px 24px;
    border-radius: 4px;
    display: flex;
    flex-flow: column;
    gap: 16px;
    border: 1px solid #393939;
    margin: 0 auto;
    margin-left: 0;
}

.listing-price-block .price i {
    display: block;
    width: 36px;
    height: 36px;
    background-image: url('../img/icons/listing/price.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.listing-price-block .listing-price-title {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
}

.tab-title {
    color: #C1C1C1;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -1.76px;
    cursor: pointer;
}

.tab-title.active {
    color: #FFF;
}
.listing-preview {
    margin-bottom: 80px;
}
.tab-separator {
    margin: 0 12px;
    color: #C1C1C1;
    font-size: 44px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -1.76px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}



.listing-body h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 54px;
  color: #fff;
}

.listing-attributes {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin-top: 20px;
}
.listing-price-info {
  padding-top: 32px;
  border-bottom: 1px solid #393939;
  padding-bottom: 32px;
}
.listing-price-info-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin-bottom: 8px;
}
.listing-price-info-list .price {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #fff;
}
.listing-attributes li {
  display: flex;
  align-items: center;
  position: relative;
  gap: 6px;
  font-size: 14px;
  color: #fff;
  padding-right: 15px;
}
.listing-price-info-list li {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #C1C1C1;
  position: relative;
}
.listing-specs {
  padding-top: 32px;
  border-bottom: 1px solid #393939;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.specs-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 20px;
  padding: 0;
  margin: 0;
}
.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.spec-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-name {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #C1C1C1;
}
.spec-value {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.listing-main {
  margin-top: 40px;
  gap: 80px;
}
.listing-3d-tour .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.listing-attributes li:not(:last-child)::after {
  content: '';
  display: block;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.vessel-description .title {
    margin-bottom: 20px;
}
.description-short {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 64px;
}
.toggle-description {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #FFFFFF;
}

.vessel-description .description-full .toggle-description.close {
    display: inline-block;
    margin-top: 10px;
}

.hidden {
    display: none !important;
}

.description-full {
    margin-bottom: 64px;
    color: #FFFFFF;
}

.special-features {
    margin: 20px 0;
}

.special-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.special-feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;

    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;

    border: 1px solid #393939;
    border-radius: 9999px;
    white-space: nowrap;
}

.special-feature-item.is-hidden {
    display: none;
}

.special-features-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;

    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #FFFFFF;
}
.sellerHighlights {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}
.special-feature-item {
    position: relative;
}

.feature-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);

    max-width: 260px;
    padding: 8px 10px;

    font-size: 13px;
    line-height: 16px;
    color: #FFFFFF;
    background: #1E1E1E;
    border: 1px solid #393939;
    border-radius: 8px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .15s ease;
    white-space: normal;
    z-index: 10;
}

.feature-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #1E1E1E;
}

@media (hover: none) {
    .feature-tooltip {
        display: none;
    }
}

.special-feature-item:hover .feature-tooltip {
    opacity: 1;
    visibility: visible;
}

.modal-box.all-media {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;  
  overflow: hidden; 
}
.all-media {
  padding: 32px;
}

.all-media-wrapper {
    margin-bottom: 80px;
    height: 100%;
  overflow-y: auto;          
  -webkit-overflow-scrolling: touch;
  padding: 40px 24px;
}

.all-media-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #FFFFFF;
    margin-bottom: 24px;
}


.all-media-tabs {
	display: inline-flex;
  gap: 40px;
  border-bottom: 1px solid #68686D;
}

.media-tab {
    background: none;
      border: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #C1C1C1;
    cursor: pointer;
    display: flex;
      gap: 8px;
      padding-bottom: 14px;
}

.media-tab.active {
    color: #FFFFFF;
    border-bottom: 1px solid #fff;
}

.media-block {
    display: none;
    margin-bottom: 80px;
}

.media-block.active {
    display: block;
}

.responsive-iframe {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.responsive-iframe iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.mb-80 {
margin-bottom: 80px;
}
#video-player2, #video-player3 {
width: 100%;
}

.all-media .text-right {
	margin-top: 20px;
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
}
.all-media .goBack {
    padding: 0;
}
.media-block {
  display: none;
  margin-bottom: 80px;
}

.media-block.active {
  display: block;
}
.feature-icon svg path {
    fill: #ffffff;
}