@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/montserrat/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --blue: #145ba8;
  --blue-deep: #0d4c92;
  --blue-dark: #083b73;
  --cyan: #08bfd0;
  --ink: #263247;
  --text: #526074;
  --muted: #778398;
  --line: #dde5ef;
  --surface: #f3f6fa;
  --surface-blue: #eaf2fb;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 20px 48px rgba(13, 48, 83, .12);
  --container: 1180px;
  --narrow: 980px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

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

button {
border: none;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: #f8fafc;
  font-family: "Montserrat", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
}

/* Header */

.header-wrapper {
  position: relative;
  z-index: 20;
  background: #114F99;
}
.header-wrapper-main {
  display: flex;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  gap: 63px;
}
.header-wrapper-left {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 63px;
}
.header-wrapper-logo {
  flex: 0 0 auto;
  line-height: 0;
}
.header-wrapper-logo svg {
  display: block;
}
.header-wrapper-nav {
  display: flex;
  gap: 16px;
}
.header-wrapper-link {
  white-space: nowrap;
  color: #FAFCFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
}
.header-wrapper-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 24px;
}
.header-wrapper-info {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-wrapper-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-wrapper-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.header-wrapper-naming {
  color: #FAFCFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 15.6px */
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.header-wrapper-name {
  color: #FAFCFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
}
.header-menu-toggle,
.header-mobile-menu {
  display: none;
}
.header-menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  border: 1px solid rgba(3, 69, 149, .35);
  border-radius: 8px;
  color: #034595;
  background: #FAFCFF;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 27, 64, .14);
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.header-menu-toggle:hover {
  background: #EDF5FF;
}
.header-menu-toggle:active {
  transform: scale(.97);
}
.header-menu-toggle:focus-visible {
  outline: 3px solid rgba(250, 252, 255, .45);
  outline-offset: 3px;
}
.header-menu-toggle[aria-expanded="true"] {
  box-shadow: 0 0 0 2px rgba(250, 252, 255, .8);
}
.header-menu-toggle__line {
  position: absolute;
  left: 50%;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: top .2s ease, opacity .2s ease, transform .2s ease;
}
.header-menu-toggle__line:nth-child(1) {
  top: 14px;
}
.header-menu-toggle__line:nth-child(2) {
  top: 21px;
}
.header-menu-toggle__line:nth-child(3) {
  top: 28px;
}
.header-menu-toggle[aria-expanded="true"] .header-menu-toggle__line:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.header-menu-toggle[aria-expanded="true"] .header-menu-toggle__line:nth-child(2) {
  opacity: 0;
}
.header-menu-toggle[aria-expanded="true"] .header-menu-toggle__line:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}
.header-mobile-menu {
  position: absolute;
  top: 100%;
  right: 24px;
  width: min(316px, calc(100% - 48px));
  padding: 10px 18px 16px;
  border: 0;
  border-radius: 0 0 10px 10px;
  background: #0A55A8;
  box-shadow: 0 18px 34px rgba(0, 27, 64, .28);
}
.header-mobile-nav {
  display: flex;
  flex-direction: column;
}
.header-mobile-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(190, 205, 224, .2);
  color: #FAFCFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  transition: color .2s ease, background-color .2s ease;
}
.header-mobile-nav a:first-child {
  padding-top: 14px;
}
.header-mobile-nav a:last-child {
  border-bottom: 0;
}
.header-mobile-nav a:hover,
.header-mobile-nav a:focus-visible {
  color: #8FE6EC;
  background: rgba(250, 252, 255, .04);
}
.header-mobile-contacts {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(190, 205, 224, .28);
}
.header-mobile-contact {
  display: flex;
  min-width: 0;
  padding: 10px 4px;
  flex-direction: column;
  gap: 4px;
  color: #FAFCFF;
  text-align: center;
}
.header-mobile-contact span {
  color: rgba(250, 252, 255, .66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.header-mobile-contact strong {
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

/*Home banner */

.main-wrapper {
  background: #114F99;
}
.main-wrapper-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.main-wrapper-block {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.main-wrapper-line {
  width: 100%;
  height: 1px;
  background: rgba(190, 205, 224, 0.30);
}
.main-wrapper-title {
  color: #FFF;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
}
.main-wrapper-title span {
  color: #99B7DA;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.28px;
}
.main-wrapper-info {
  display: flex;
  justify-content: space-between;
}
.main-wrapper-description {
  max-width: 600px;
  color: #FAFCFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.44px;
}
.main-wrapper-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-wrapper-button--blue {
  display: flex;
  width: 208px;
  height: 56px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #00BECA;
}
.main-wrapper-button--blue span {
  color: #FAFCFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.36px;
}
.main-wrapper-button--white {
  display: flex;
  width: 208px;
  height: 56px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #FAFCFF;
}
.main-wrapper-button--white span {
  color: #004AA3;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.36px;
  white-space: nowrap;
}
.main-wrapper-background {
  padding-top: 32px;
  background: linear-gradient(to bottom, #114F99 0, #114F99 50%, #fafcff 50%, #fafcff);
}
.main-wrapper-img {
  width: calc(100% - 48px);
  margin: 0 auto;
  border-radius: 12px;
}
.main-wrapper-img picture {
  display: block;
}
.main-wrapper-img img {
  display: block;
  width: 100%;
  height: 460px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 24%;
}

/* Specifications */

.specifications {
  padding: 96px 0;
}
.specifications-wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.specification-up {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.specifications-up__title {
  color: #000C1D;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px; /* 115.556% */
  letter-spacing: 0;
}
.specifications-up__title span {
  color: #4B5461;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px; /* 115.556% */
  letter-spacing: 0;
}
.specifications-up__title br {
  display: none;
}
.specifications-up-cards {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.specifications-up-card-light {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #edf5ff;
  padding: 114px 24px 113px;
}
.specifications-up-card-light__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.specifications-up-card-light__info {
  color: #1E1E1E;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
}
.specifications-up-card-light__description {
  color: #4B5461;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.36px;
}
.specifications-up-card-light__icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
}
.specifications-up-card-blue {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #114F99;
  padding: 114px 24px 113px;
}
.specifications-up-card-blue__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.specifications-up-card-blue__info {
  color: #FFF;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
}
.specifications-up-card-blue__description {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 28px */
  letter-spacing: -0.4px;
}
.specifications-up-card-blue__icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
}
.specifications-up-card-silver {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #576C8A;
  padding: 114px 24px 113px;
}
.specifications-up-card-silver__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.specifications-up-card-silver__info {
  color: #FFF;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
}
.specifications-up-card-silver__description {
  white-space: nowrap;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.36px;
}
.specifications-up-card-silver__icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
}
.specifications-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  align-self: stretch;
}
.specifications-bottom-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 0;
  border-top: 1px solid #DDE5EF;
}
.specifications-bottom-card:nth-last-child(-n + 2) {
  border-bottom: 1px solid #DDE5EF;
}
.specifications-bottom-card__title {
  color: #000C1D;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 26.4px */
  letter-spacing: -0.44px;
}
.specifications-bottom-card__subtitle {
  color: #4B5461;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.36px;
}

/* Contact */

.contact {
  margin-bottom: 96px;
}
.contact-wrapper {
  margin: 0 24px;
  border-radius: 8px;
  color: #FAFCFF;
  background: #114F99;
}
.contact-wrapper-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 72px 0;
}
.contact-wrapper-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0;
}
.contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}
.contact-title {
  color: #FAFCFF;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
}
.contact-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  color: #FAFCFF;
  background: #00BECA;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}
.contact-button:hover {
  background: #08AEB9;
  transform: translateY(-1px);
}
.contact-button:focus-visible,
.contact-detail:focus-visible {
  outline: 3px solid rgba(0, 190, 202, .35);
  outline-offset: 3px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 534px;
  width: 100%;
}
.contact-detail {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  overflow: hidden;
  padding: 8px 8px 8px 24px ;
  border-radius: 8px;
  background: #034595;
  transition: background-color .2s ease;
}
.contact-detail:hover {
  background: #0A4484;
}
.contact-detail__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.contact-detail__label {
  color: #FFFFFF99;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.36px;
}
.contact-detail__value {
  color: #FAFCFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 27.5px */
  letter-spacing: -0.44px;
}
.contact-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.contact-bottom__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.contact-bottom__description {
  color: #FAFCFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 27.5px */
  letter-spacing: -0.44px;
}
.contact-bottom__button {
  display: flex;
  height: 56px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #00BECA;
  transition: background-color .2s ease, transform .2s ease;
}
.contact-bottom__button span {
  color: #FAFCFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.36px;
}
.contact-bottom__button:hover {
  background: #08AEB9;
  transform: translateY(-1px);
}

/* Yacht gallery */

.yacht-gallery {
  padding: 0 24px 96px;
}
.yacht-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.yacht-slider {
  min-width: 0;
}
.yacht-slider__header {
  margin-bottom: 24px;
}
.yacht-slider__title {
  margin: 0;
  color: #000C1D;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.56px;
}
.yacht-slider__description {
  margin: 16px 0 0;
  color: #263247;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}
.yacht-slider__viewport {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #DDE5EF;
}
.yacht-slider__track {
  display: flex;
  height: 100%;
  transition: transform .45s ease;
  will-change: transform;
}
.yacht-slider__slide {
  height: 100%;
  flex: 0 0 100%;
}
.yacht-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yacht-slider__controls {
  position: absolute;
  bottom: 8px;
  z-index: 1;
  display: flex;
  gap: 4px;
}
.yacht-slider:first-child .yacht-slider__controls {
  right: 8px;
}
.yacht-slider:last-child .yacht-slider__controls {
  left: 8px;
}
.yacht-slider__button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border-radius: 6px;
  color: #004AA3;
  background: #FAFCFF;
  box-shadow: 0 4px 16px rgba(0, 30, 67, .12);
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}
.yacht-slider__button:hover {
  color: #FAFCFF;
  background: #004AA3;
  transform: translateY(-1px);
}
.yacht-slider__button:focus-visible,
.yacht-gallery__booklet-link:focus-visible {
  outline: 3px solid rgba(0, 190, 202, .45);
  outline-offset: 3px;
}
.yacht-slider__button svg {
  width: 22px;
  height: 22px;
}
.yacht-gallery__booklet {
  display: flex;
  min-height: 56px;
  margin-top: 32px;
  padding: 8px 16px 8px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 6px;
  color: #FAFCFF;
  background: #114F99;
}
.yacht-gallery__booklet p {
  color: #FAFCFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}
.yacht-gallery__booklet-link {
  display: inline-flex;
  min-height: 40px;
  padding: 10px 16px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #004AA3;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.36px;
  background: #FAFCFF;
  transition: background-color .2s ease, transform .2s ease;
}
.yacht-gallery__booklet-link:hover {
  background: #EDF5FF;
  transform: translateY(-1px);
}

/* block "Deck Plan" */

.plan {
  position: relative;
  width: calc(100% - 48px);
  margin: 0 auto 96px;
  overflow: hidden;
  border-radius: 8px;
}
.plan-background {
  position: absolute;
  inset: 0;
  display: flex;
}
.info-plan {
  display: flex;
}
.plan-background-left {
  min-width: 0;
  height: 100%;
  flex: 1 1 50%;
  border-radius: 8px 0 0 8px;
  background: #F0F4F9;
}
.plan-background-right {
  min-width: 0;
  height: 100%;
  flex: 1 1 50%;
  background-color: #fafcff;
  /*background-image: url("./assets/images/test.png");*/
  /*background-repeat: no-repeat;*/
}
.info-plan-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.info-plan-left__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 128px;
  padding: 88px 56px 90px 0;
}
.info-plan-left__text {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.info-plan-left__title {
  color: #11172A;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px; /* 177.778% */
  letter-spacing: -0.25px;
}
.info-plan-left__subtitle {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 26.4px */
  letter-spacing: -0.48px;
}
.info-plan-left__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;

}
.info-plan-left__card {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px 9px 10px 20px;
  border-radius: 8px;
  background: #FAFCFF;
}
.info-plan-left__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 23px;
  background: #114F99;
}
.info-plan-left__number {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 26.4px */
  letter-spacing: -0.44px;
}
.info-plan-left__name {
  color: #000C1D;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 26.4px */
  letter-spacing: -0.44px;
}
.info-plan-right {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 50%;
  gap: 75px;
  align-items: center;
  justify-content: center;
}
.info-plan-right img {
  display: block;
  width: 100%;
  height: auto;
}

.plan-slider__viewport,
.plan-slider__track,
.plan-slider__slide {
  display: contents;
}

.plan-slider__controls {
  display: none;
}

/* block video */

.video-section {
  margin-bottom: 96px;
}
.video-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.video-wrapper-title {
  color: #4B5461;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
}
.video-wrapper-title span {
  color: #000C1D;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.72px;
}
.video-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
}
.video-card img {
  display: block;
  width: 100%;
  aspect-ratio: 550 / 270;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-card:hover img {
  transform: scale(1.02);
}
.video-card__player {
  object-fit: contain;
  cursor: default;
}
.video-duration {
  position: absolute;
  top: 29px;
  right: 52px;
  padding: 14px;
  border-radius: 7px;
  color: white;
  background: rgba(17, 24, 39, 0.82);
  font: 600 10px/1 Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 30.24px */
  letter-spacing: -0.432px;
}
.video-play {
  position: absolute;
  left: 20px;
  bottom: 15px;
  place-items: center;
}

/* block Info */

.info {
  margin-bottom: 96px;
}
.info-wrapper {
  margin: 0 24px;
  border-radius: 8px;
  background: #F0F4F9;
  padding: 96px 0;
}
.info-wrapper-block {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.info-wrapper-block__title{
  text-align: center;
  color: #000C1D;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.72px;
}
.info-wrapper-block__title span {
  color: #4B5461;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 20px;
  column-gap: 24px;
}
.info-card {
  display: flex;
  padding: 24px 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #DDE5EF;
}
.info-card__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.info-card__title {
  color: #114F99;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}
.info-card__description {
  color: #4B5461;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.36px;
}

/* footer */

.footer-wrapper {
  margin-bottom: 56px;
}
.footer-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-main-block {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.footer-main-info {
  display: flex;
  gap: 80px;
}
.footer-main-info-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-main-info__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-main-info__naming {
  color: #4B5461;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.footer-main-info__name {
  color: #114F99;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}
.footer-main-info__address {
  color: #4B5461;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: -0.36px;
}
.footer-main-info__arrow {
  display: inline-flex;
  cursor: pointer;
}
.footer-main-line {
  width: 100%  ;
  height: 1px;
  background: #DDE5EF;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom__date {
  width: 100%;
  color: #4B5461;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.36px;
}
.footer-bottom__disclosure {
  color: #4B5461;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.36px;
}

/* Adaptive */

@media (max-width: 1320px) {
  .header-wrapper-main {
    min-height: 60px;
    gap: 24px;
  }

  .header-wrapper-left {
    gap: 0;
  }

  .header-wrapper-nav {
    display: none;
  }

  .header-wrapper-actions {
    gap: 16px;
  }

  .header-wrapper-info {
    gap: 16px;
  }

  .header-wrapper-item {
    gap: 10px;
  }

  .header-wrapper-name {
    font-size: 14px;
  }

  .header-menu-toggle {
    display: block;
  }

  .header-mobile-menu:not([hidden]) {
    display: block;
  }
}

@media (max-width: 1270px) {
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 1100px) {
  .main-wrapper-info {
    flex-direction: column;
    gap: 32px;
  }

  .specifications-up-cards {
    flex-direction: column;
  }

  .specifications-up-card-light {
    padding: 114px 24px;
  }

  .specifications-up-card-blue {
    padding: 114px 24px;
  }

  .specifications-up-card-silver {
    padding: 114px 24px;
  }

  .yacht-gallery__grid {
    grid-template-columns: unset;
  }

  .plan {
    width: calc(100% - 32px);
    margin-bottom: 64px;
    border-radius: 8px;
    background: #F0F4F9;
  }

  .plan-background {
    display: none;
  }

  .plan > .container {
    padding: 0;
  }

  .info-plan {
    display: grid;
    grid-template-areas:
      "copy"
      "image"
      "legend";
    grid-template-columns: minmax(0, 1fr);
    padding: 32px 16px 24px;
  }

  .info-plan-left,
  .info-plan-left__block {
    display: contents;
  }

  .info-plan-left__text {
    grid-area: copy;
    gap: 12px;
  }

  .info-plan-left__title {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -.3px;
  }

  .info-plan-left__subtitle {
    max-width: 340px;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -.2px;
  }

  .info-plan-right {
    grid-area: image;
    width: 100%;
    margin-top: 24px;
  }

  .plan-slider--ready {
    display: block;
  }

  .plan-slider--ready .plan-slider__viewport {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
    background: #FAFCFF;
    touch-action: pan-y;
  }

  .plan-slider--ready .plan-slider__track {
    display: flex;
    will-change: transform;
    transition: transform 350ms ease;
  }

  .plan-slider--ready .plan-slider__slide {
    display: flex;
    min-width: 0;
    flex: 0 0 100%;
    align-items: center;
    justify-content: center;
    background: #FAFCFF;
  }

  .plan-slider--ready .plan-slider__slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
  }

  .plan-slider--ready .plan-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }

  .plan-slider__button {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #114F99;
    background: #FAFCFF;
    box-shadow: 0 4px 14px rgba(0, 42, 94, .12);
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
  }

  .plan-slider__button:hover {
    color: #FFFFFF;
    background: #114F99;
  }

  .plan-slider__button:active {
    transform: scale(.96);
  }

  .plan-slider__button:focus-visible,
  .plan-slider__dot:focus-visible,
  .plan-slider__viewport:focus-visible {
    outline: 2px solid #114F99;
    outline-offset: 3px;
  }

  .plan-slider__button svg {
    width: 20px;
    height: 20px;
  }

  .plan-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .plan-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #9BB3CF;
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
  }

  .plan-slider__dot[aria-current="true"] {
    width: 24px;
    background: #114F99;
  }

  .info-plan-left__cards {
    grid-area: legend;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .info-plan-left__card {
    min-height: 48px;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 6px;
  }

  .info-plan-left__icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }

  .info-plan-left__number {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
  }

  .info-plan-left__name {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -.2px;
  }

  .footer-main-block {
    flex-direction: column;
  }

  .footer-main-info__arrow {
    position: absolute;
    top: 0;
    right: 0;
  }

  .footer-main-info-block {
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 950px) {
  .specifications {
    padding: 80px 0;
  }
  .contact {
    margin-bottom: 80px;
  }
  .contact-wrapper-block {
    flex-direction: column;
    gap: 32px;
    padding: 24px 0;
  }
  .contact-copy {
    align-items: center;
  }
  .contact-details {
    max-width: unset;
  }

  .yacht-gallery {
    padding: 0 24px 80px;
  }

  .video-section {
    margin-bottom: 80px;
  }
  .info-wrapper {
    padding: 56px 0;
  }
  .info {
    margin-bottom: 80px;
  }
}

@media (max-width: 780px) {
  .header-wrapper-main {
    min-height: 68px;
    padding: 5px 16px 4px;
  }

  .header-wrapper-logo svg {
    display: block;
    width: 108px;
    height: auto;
  }

  .header-wrapper-info {
    display: none;
  }

  .header-menu-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .header-menu-toggle__line:nth-child(1) {
    top: 12px;
  }

  .header-menu-toggle__line:nth-child(2) {
    top: 19px;
  }

  .header-menu-toggle__line:nth-child(3) {
    top: 26px;
  }

  .header-menu-toggle[aria-expanded="true"] .header-menu-toggle__line:nth-child(1),
  .header-menu-toggle[aria-expanded="true"] .header-menu-toggle__line:nth-child(3) {
    top: 19px;
  }

  .header-mobile-menu {
    right: 0;
    left: 0;
    width: auto;
    padding: 10px 18px 18px;
    border-radius: 0;
  }

  .header-mobile-contacts {
    display: grid;
  }

}

@media (max-width: 750px) {
  .main-wrapper-img img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .specifications-bottom {
    grid-template-columns: unset;
  }

  .contact-wrapper {
    margin: 0;
    border-radius: 0;
  }

  .contact-button {
    width: 100%;
  }

  .info-cards {
    grid-template-columns: unset;
  }

  .info-card {
    flex-direction: row;
  }

  .info-card:nth-child(1) {
    border-top: 1px solid #DDE5EF;;
  }

  .info-wrapper {
    margin: 0;
    border-radius: 0;
  }

  .footer-main-block {
    gap: 24px;
  }

  .footer-main-info {
    flex-direction: column;
    gap: 24px;
  }

  .video-duration {
    top: 8px;
    right: 8px;
  }
  .video-play svg {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 520px) {
  .header-mobile-menu {
    padding: 10px 16px 18px;
  }
  .header-mobile-contacts {
    grid-template-columns: 1fr;
  }
  .main-wrapper-title {
    font-size: 36px;
  }
  .main-wrapper-title span {
    font-size: 36px;
  }
  .main-wrapper-description {
    font-size: 20px;
  }
  .main-wrapper-buttons {
    flex-direction: column;
    align-items: unset;
    width: 100%;
  }
  .main-wrapper-button--blue {
    width: 100%;
  }
  .main-wrapper-button--white {
    width: 100%;
  }
  .specifications-up__title {
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 30.8px */
    letter-spacing: -0.56px;  }
  .specifications-up__title span {
    color: #4B5461;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.56px;
  }
  .specifications-up__title br {
    display: block;
  }
  .specifications-up-card-light__info {
    font-size: 28px;
  }
  .specifications-up-card-blue__info {
    font-size: 28px;
  }
  .specifications-up-card-silver__info {
    font-size: 28px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-detail svg {
    display: none;
  }

  .contact-detail__value {
    font-size: 18px;
  }

  .video-wrapper-title {
    font-size: 28px;
  }

  .video-wrapper-title span {
    font-size: 28px;
  }

  .info-wrapper-block {
    gap: 24px;
  }

  .info-wrapper-block__title {
    text-align: unset;
    font-size: 28px;
  }

  .info-wrapper-block__title {
    font-size: 28px;
  }


  .info-plan {
    padding: 24px 12px 20px;
  }
  .info-plan-left__title {
    font-size: 22px;
  }
  .info-plan-left__subtitle {
    font-size: 13px;
    line-height: 1.35;
  }
  .info-plan-right {
    margin-top: 20px;
  }
  .info-plan-left__cards {
    gap: 7px;
    margin-top: 18px;
  }
  .info-plan-left__card {
    min-height: 44px;
    padding: 7px 8px;
  }
  .info-plan-left__icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
  .info-plan-left__number {
    font-size: 12px;
  }
  .info-plan-left__name {
    font-size: 13px;
  }



  .yacht-gallery__booklet {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  .yacht-gallery__booklet p {
    text-align: center;
  }

  .contact-bottom__description {
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 27.5px */
    letter-spacing: -0.44px;
  }

  .video-play {
    bottom: 8px;
    left: 8px;
  }

  .video-play svg {
    width: 40px;
    height: 40px;
  }

  .video-duration {
    padding: 8px;
    font-size: 12px;
    right: 8px;
    top: 8px;
  }

  .info-card {
    align-items: center;
  }



  .footer-main-logo svg {
    width: 200px;
  }
  .footer-main-info__name {
    font-size: 18px;
  }
}

/* Shared button interactions */

:is(
  .main-wrapper-button--blue,
  .main-wrapper-button--white,
  .contact-button,
  .contact-bottom__button,
  .yacht-gallery__booklet-link
) {
  cursor: pointer;
  transition:
    color .2s ease,
    background-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

:is(
  .header-menu-toggle,
  .yacht-slider__button,
  .plan-slider__button
) {
  cursor: pointer;
  transition:
    color .2s ease,
    background-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.video-card:not(.video-card__player) {
  transition: box-shadow .25s ease, transform .25s ease;
}

.video-play {
  transition: transform .25s ease;
}

.plan-slider__dot {
  transition:
    width .18s ease,
    background-color .18s ease,
    transform .18s ease;
}

.main-wrapper-button--blue:hover {
  background: #08AEB9;
}

.main-wrapper-button--white:hover,
.yacht-gallery__booklet-link:hover {
  background: #EDF5FF;
}

@media (hover: hover) and (pointer: fine) {
  :is(
    .main-wrapper-button--blue,
    .main-wrapper-button--white,
    .contact-button,
    .contact-bottom__button,
    .yacht-gallery__booklet-link
  ):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 39, 85, .2);
  }

  :is(
    .header-menu-toggle,
    .yacht-slider__button,
    .plan-slider__button
  ):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 39, 85, .2);
  }

  .video-card:not(.video-card__player):hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 39, 85, .2);
  }

  .video-card:not(.video-card__player):hover .video-play {
    transform: scale(1.08);
  }

  .plan-slider__dot:hover {
    background: #114F99;
    transform: scale(1.25);
  }
}

:is(
  .main-wrapper-button--blue,
  .main-wrapper-button--white,
  .contact-button,
  .contact-bottom__button,
  .yacht-gallery__booklet-link,
  .header-menu-toggle,
  .yacht-slider__button,
  .plan-slider__button,
  .video-card:not(.video-card__player)
):active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 3px 10px rgba(0, 39, 85, .16);
}

:is(
  .main-wrapper-button--blue,
  .main-wrapper-button--white,
  .contact-button,
  .yacht-gallery__booklet-link,
  .header-menu-toggle,
  .yacht-slider__button,
  .plan-slider__button,
  .plan-slider__dot,
  .footer-main-info__arrow,
  .video-card:not(.video-card__player)
):focus-visible,
.contact-bottom__item > a:focus-visible .contact-bottom__button {
  outline: 3px solid #00BECA;
  outline-offset: 3px;
}

.contact-bottom__item > a:focus-visible {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  :is(
    .main-wrapper-button--blue,
    .main-wrapper-button--white,
    .contact-button,
    .contact-bottom__button,
    .yacht-gallery__booklet-link,
    .header-menu-toggle,
    .yacht-slider__button,
    .plan-slider__button,
    .plan-slider__dot,
    .video-card:not(.video-card__player),
    .video-play
  ) {
    transition-duration: .01ms;
  }
}
