@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.42857143;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(10, 47, 76, 0.5);
  padding: 14px;
  width: 300px;
  z-index: 999;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-bottom-right-radius: 6px;
}

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

header span {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: flex-start;
  margin-left: 30px;
  color: #fff;
  font-size: 16px;
  top: 24px;
  position: relative;
}

header span img {
  margin-left: 4px;
}

.img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bannervideo {
  width: 100%;
  height: 100%;
  object-fit: fill;
  /* position: absolute;
  z-index: 9;
  top: 0;
  left: 0; */
}

.sidebar {
  border-top-right-radius: 6px;
  background: rgba(10, 47, 76, 0.5);
  position: absolute;
  left: 0;
  top: 92px;
  width: 300px;
  height: calc(100% - 92px);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 30px 15px;
  z-index: 99;
}

.sidebar.visible {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.sidebar>.sidebar-label {
  transform: translatex(-80%);
  transition: transform 0.4s ease-in-out;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 12px;
  margin: 6px 0;
  cursor: pointer;
}

.sidebar>.sidebar-label.active {
  background-color: #04A0C7
}

.sidebar>.sidebar-label:nth-child(1) {
  transition-delay: 0.05s !important;
}

.sidebar>.sidebar-label:nth-child(2) {
  transition-delay: 0.15s !important;
}

.sidebar>.sidebar-label:nth-child(3) {
  transition-delay: 0.25s !important;
}

.sidebar>.sidebar-label:nth-child(4) {
  display: none;
  /* transition-delay: 0.30s !important; */
}

.sidebar>.sidebar-label:nth-child(5) {
  transition-delay: 0.40s !important;
}

.sidebar.visible>.sidebar-label {
  transform: translatex(0);
  transition: transform 0.4s ease-in-out;
}

.additional-sidebar-labels {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  padding: 0 15px
}

.additional-sidebar-labels .sidebar-label {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 12px;
  margin: 6px 0;
  cursor: pointer;
}

.additional-sidebar-labels .sidebar-label.active {
  background-color: #04A0C7 !important;
  color: #fff !important;
}

.additional-sidebar-labels .sidebar-label:last-child {
  background-color: #F5C451;
  color: #000;
}

.hotspots {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hotspot {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.hotspot .centre {
  width: 30px;
  height: 30px;
  position: absolute;
  display: block;
  transform: rotate(45deg);
  background: rgba(0, 36, 76, 0.8);
  border-radius: 15px 15px 0 15px;
}

.hotspot .centre:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  background-color: #62C3FF;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
}

.hotspot .label {
  position: absolute;
  margin-right: 16px;
  margin-top: 4px;
  right: 100%;
  background: rgba(0, 36, 76, 0.7);
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 1;
  width: auto;
  overflow: visible;
  padding: 10px 12px;
  border: 1px solid #000;
}

.hotspot .label:before {
  content: "";
  right: -10px;
  top: 12px;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #062746;
  border-right: 0;
}

.toggle-btn {
  min-width: 165px;
  border-radius: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0095ee;
  color: #fff;
  border: none;
  padding: 12px 20px 10px 40px;
  cursor: pointer;
  z-index: 9;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.toggle-btn.show::after {
  position: absolute;
  content: url('./../images/show.svg');
  left: 10px;
  top: 10px;
}

.toggle-btn.hide::after {
  position: absolute;
  content: url('./../images/hide.svg');
  left: 10px;
  top: 10px;
}

.label {
  display: none;
}

.detailSidebar {
  position: absolute;
  left: 300px;
  top: 0;
  background: rgba(255, 255, 255, 0.1);
  width: 550px;
  height: 100%;
  padding: 24px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 9;
  display: none;
}

.detailSidebar.visible {
  display: block;
}

.detailSidebar .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.detailSidebar .header h6 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

.closeDetailSidebar {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 18px;
  cursor: pointer;
}

.closeDetailSidebar img {
  width: 26px;
}

.detailContent {
  display: grid;
  padding-right: 5px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
  overflow-y: auto;
  max-height: calc(100% - 50px);
}

.detailContent.padding {
  max-height: calc(100% - 150px);
  padding-bottom: 20px;
}

.vessel {
  cursor: pointer;
}

.vessel img {
  border-radius: 8px;
  max-width: 100%;
  height: 150px;
  object-fit: cover;
}

.vessel h4 {
  margin: 0;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

.vesselDetails {
  position: absolute;
  left: 0;
  top: 0;
  width: 650px;
  height: 100%;
  padding: 14px;
  background-color: rgba(6, 39, 70, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 98;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
}

.vesselDetails.visible {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  /* overflow: auto; */
}

.vesselDetails .logo {
  width: 130px;
  margin: 0;
}

.vesselDetails .titleheader {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 50px;
}

.vesselDetails img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-right: 14px;
  cursor: pointer;
}

.vesselDetails p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  top: 3px;
}

.contentBack {
  background-color: rgba(255, 255, 255, 0.20);
  width: 100%;
  padding: 14px 0px 14px 14px;
  margin-top: 24px;
  height: calc(100vh - 195px);
  overflow-y: auto;
  border-radius: 6px;
}

.detailsInline {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; */
}

.contentInline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.contentLeft,
.contentRight {
  background-color: rgba(255, 255, 255, 0.10);
  padding: 10px;
  font-size: 15px;
  color: #ffffff;
  font-weight: 400;
}

.left p,
.right p {
  margin: 4px 0 10px 0;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.contentBack h6 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.contentBack ul {
  margin: 0;
  padding: 0 0 0 18px;
}

.contentBack ul li {
  font-size: 14px;
  margin: 8px 0;
  color: #fff;
  list-style: disc;
}

.contentBack p {
  margin: 4px 0 10px 0;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}


.mfp-container {
  background-color: rgba(0, 36, 76, 0.8);
}

figure {
  margin: 0;
  padding: 0;
}

.mfp-arrow {
  width: auto !important;
  height: auto !important;
}

.mfp-arrow::before {
  display: none !important;
}

.mfp-arrow::after {
  border: 0 !important;
}

.mfp-arrow-left::after {
  position: absolute !important;
  left: 0 !important;
  content: url('./../arrows/arrow-left.svg') !important;
  background-size: 10px 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  left: 30px !important;
  right: auto !important;
}

.mfp-arrow-right::after {
  position: absolute !important;
  left: auto !important;
  content: url('./../arrows/arrow-right.svg') !important;
  margin: 0 !important;
  padding: 0 !important;
  right: 50px !important;
}

.mfp-arrow:after {
  top: 48px !important;
}

.popup-gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.popup-gallery img {
  height: 150px !important;
  object-fit: cover;
  border-radius: 6px;
}

.additional-sidebar-labels .sidebar-label:nth-child(2) {
  display: block;
}

.additional-sidebar-labels .sidebar-label:nth-child(4) {
  display: block;
}

.arrow {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 0 0 0;
}

.arrow img {
  width: 7px;
  height: 14px;
  position: relative;
  top: 4px;
  margin-left: 5px;
}

.data-sheet .pdf {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.contentBack .detailsInline p {
  margin-left: 0px;
}

.inrow .detailContent {
  display: block;
}

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

.aboutus p {
  margin: 14px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.aboutus h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.aboutus ul {
  margin: 0;
  padding: 0 0 0 20px;
}

.aboutus ul li {
  font-size: 15px;
  color: #ffffff;
  list-style: disc;
  margin: 14px 0;
}

.icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 40px 0;
}

.icons img {
  margin: 0 24px 0 0;
  width: 50px;
  height: auto;
  display: block;
  cursor: pointer;
}

.contentBack .detailsInline.two {
  grid-template-columns: 1fr !important;
}

.contentBack .detailsInline p {
  margin-left: 0px;
}

.data-sheet .sheet-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.specification {
  margin-bottom: 30px;
}

.gallery h6 {
  margin-bottom: 10px;
}

.gallery {
  margin-bottom: 30px;
}

.gallery .popup-gallery img {
  height: 112px;
  width: 100%;
  object-fit: cover;
}

/* .gallery .popup-gallery a{
  border-radius: 14px;
  overflow: hidden;
} */
.data-sheet {
  margin-bottom: 24px;
}

.data-sheet h6 {
  margin-bottom: 10px;
}

.data-sheet .popup-gallery {
  margin-left: 24px;
}

.mfp-close-btn-in .mfp-close {
  cursor: pointer !important;
}

.in-service-vassels-wrapper {
  display: flex;
  overflow-x: auto;
}

.in-service-vassels-wrapper .serviceVessel {
  min-width: 200px;
  margin-right: 24px;
}

.in-service-vassels-wrapper .serviceVessel img {
  border-radius: 8px;
  max-width: 100%;
  height: 150px;
  object-fit: cover;
}

.in-service-vassels-wrapper .serviceVessel .arrow {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 0 0 0;
}

.in-service-vassels-wrapper .serviceVessel .arrow h4 {
  margin: 0;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

.in-service-vassels-wrapper .serviceVessel .arrow img {
  width: 7px;
  height: 14px;
  position: relative;
  top: 5px;
  margin: 0;
}


.aligncenter {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 120px);
}

.aligncenter img {
  width: 300px;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}

.aligncenter p {
  max-width: 320px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  margin: 14px auto;
}
 
* {
  scrollbar-width: thin;
  scrollbar-color: #cacaca transparent;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 10px;
  margin-left: 10px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #cacaca;
  border-radius: 10px;
  border: 3px solid transparent;
}
  
.in-service-vassels {
  margin-top: 30px;
  display: none;
}

.embed-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(10, 47, 76, 0.5);
  display: none;
  align-items: flex-start;
  justify-content: center;
}

.embed-container.show {
  display: flex;
}

.pdfCenter {
  position: relative;
  height: 100%;
}

.embed-content {
  height: 95%;
  margin-top: 20px;
  overflow-y: auto;
  max-width: 800px;
}

.embed-content canvas {
  width: 100% !important;
}

.embed-content embed {
  width: 700px !important;
}

.close-embed {
  position: absolute;
  right: -50px;
  top: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 18px;
  cursor: pointer;
}

.close-embed img {
  width: 26px;
}

.in-service-vassels-wrapperDetails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  overflow-y: auto;
  max-height: calc(100% - 40px);
}


.in-service-vassels-wrapperDetails .serviceVessel img {
  border-radius: 8px;
  max-width: 100%;
  height: 170px;
  object-fit: cover;
  margin-right: 0;
}

.in-service-vassels-wrapperDetails .serviceVessel .arrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 0 0;
}

.in-service-vassels-wrapperDetails .serviceVessel .arrow h4 {
  margin: 0;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

.in-service-vassels-wrapperDetails .serviceVessel .arrow img {
  width: 7px;
  height: 14px;
}

.in-service-vassels-wrapperDetails .serviceVesselDetails {
  width: auto;
}

.yachts h6 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.no-data-contain {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 14px;
}

.airCushion .popup-youtube{
  width: 60px;
  display: block;
  margin-bottom: 40px;
}

/* checkbox css */
.checkBoxDiv {
  display: flex;
  flex-wrap: wrap;
  .checkboxTitle{
    margin-bottom: 10px;
    margin-right: 10px;
}
  
  .styled-checkbox {
    position: absolute;
    opacity: 0;
  
    & + label {
      position: relative;
      cursor: pointer;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      background-color: #04A0C7;
      padding: 8px 14px 8px 32px;
      border-radius: 4px;
      display: block;
    }
 
    &:checked +  label{
      color: #000;
      background-color: #F5C451;
    }
  
    & + label:before {
      content: '';
      margin-right: 10px;
      display: block;
      vertical-align: middle;
      width: 16px;
      height: 16px;
      background: transparent;
      border: 1px solid white;
      border-radius: 3px;
      position: absolute;
      left: 8px;
      top: 50%;
      margin-top: -8px;
    }
    &:checked  + label:before {
      border: 2px solid black;
    }
   
    &:checked + label:after {
      content: '';
      position: absolute;
      left: 11px;
      top: 17px;
      background: white;
      width: 2px;
      height: 2px;
      box-shadow:
        2px 0 0 white,
        4px 0 0 white,
        4px -2px 0 white,
        4px -4px 0 white,
        4px -6px 0 white,
        4px -8px 0 white;
      transform: rotate(45deg);
    }
    &:checked  + label:after {
      background: black;
      box-shadow:
        2px 0 0 black,
        4px 0 0 black,
        4px -2px 0 black,
        4px -4px 0 black,
        4px -6px 0 black,
        4px -8px 0 black;
    }
  }
}

.videoPlayer {
  width: 100%;
  height: 100%;
  object-fit: fill;
  position: absolute;
  top: 0;
  left: 0;
}

.bannerimage {
  position: relative;
}

.d-block {
  display: block;
}

.d-block a {
  display: inline-block;
}

.leftimage {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.rightimage {
  position: absolute;
  left: 40%;
  top: 0;
  width: 60%;
  height: 100%;
}