/* 
=============================================================
FONTS
=============================================================
*/
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/poppins-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/poppins-v20-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* 
=============================================================
VARIABLES 
=============================================================
*/
:root {
  --primary-color: #003066;
  --secondary-color: #0076fa;
  --blue-light-color: #99c9ff;
  --yellow-color: #ffd500;
  --orange-color: #ff9f55;
  --light-color: #ffffff;

  --grey-color: #828282;

  --border-radius-s: 5px;
  --border-radius-m: 8px;
  --border-radius-lg: 15px;
  --border-radius-xl: 30px;

  --box-shadow: 1px 4px 50px 0px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease-in-out;

  --litepicker-month-header-color: #001449;
  --litepicker-day-color: #001449;
  --litepicker-day-color-hover: #001449;
  --litepicker-is-in-range-color: #ffd500;
  --litepicker-is-start-color-bg: #001449;
  --litepicker-is-end-color-bg: #001449;
  --litepicker-is-end-color: #e9eced;
  --litepicker-is-start-color: #e9eced;
  --litepicker-button-prev-month-color-hover: #459cff;
  --litepicker-month-weekday-color: #001449;
  --litepicker-is-today-color: #ffd500;
  --litepicker-highlighted-day-color-bg: transparent;
  --litepicker-highlighted-day-color: #ffd500;

  --swiper-pagination-bullet-height: 16px;
  --swiper-pagination-bullet-width: 16px;
}

/* 
=============================================================
GLOBAL 
=============================================================
*/

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

.wbm_stacktrace {
  display: none;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: var(--border-radius-m);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

body {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-rendering: optimizeLegibility;
  font-size: 18px;
  color: var(--primary-color);
  scroll-behavior: smooth;
  overflow-x: hidden;
  zoom: 0.9 !important;
  position: relative;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .header-right.header-right-absolute {
  top: -50%;
  position: absolute;
  right: 4vw;
}

body:not(.added-to-quote) #quote-off {
  display: flex;
}
body:not(.added-to-quote) #quote-on {
  display: none;
}
body .added-to-quote #quote-off {
  display: none;
}
body .added-to-quote #quote-on {
  display: flex;
}
body .relative {
  position: relative;
}
body .sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  z-index: 1;
}
body .h-main {
  height: calc(100vh - 170px);
}
body .hidden,
body .hide {
  display: none;
}
body footer ul,
body ul.bootpag,
body ul.main-nav,
body ul.main-nav * ul {
  list-style: none;
}
body ol {
  text-decoration: none;
}
body ul {
  padding: 0;
  margin: 0;
}
body .ch100 ul li,
body article ul li,
body ul.custom-bullets li {
  margin-left: 20px;
  position: relative;
  line-height: 2;
}
body .ch100 ul li::marker,
body article ul li::marker,
body ul.custom-bullets li::marker {
  color: var(--secondary-color);
}
body p a {
  color: var(--blue-light-color);
}
body p a:hover {
  color: var(--secondary-color);
}

article a.blue-link:not(.menu-link) {
  color: var(--blue-light-color);
}

body a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: var(--secondary-color);
}
body a:hover {
  color: var(--primary-color);
}

body .orange-link a {
  position: relative;
  display: inline-block;
  color: var(--primary-color);
  font-weight: bold;
  z-index: 1;
}

.body .orange-link a:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  z-index: -1;
  transition: all 0.1s cubic-bezier(0, 0.59, 1, 0.26);
}
.btn:focus,
body :focus {
  box-shadow: none;
  outline: none;
}

body.contact .footer-top .custom-container {
  height: 100%;
}

body.contact .footer-top .custom-container > div {
  height: 100%;
  background-color: rgba(255, 213, 0, 0.15);
  padding: 0;
}

.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.vh100 {
  height: 100vh;
}
.ch100 {
  max-width: 100ch !important;
  margin: 0 auto;
}
.w500 {
  max-width: 100%;
}

.w720 {
  max-width: 720px;
  width: 100%;
  margin: auto;
}

.w960 {
  max-width: 960px;
  width: 100%;
  margin: auto;
}

.opacity-0 {
  opacity: 0;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.book-date {
  font-size: 13px;
}

.amount {
  font-weight: 600;
  color: var(--secondary-color);
}
.pagination .bootpag {
  display: flex;
  align-items: center;
}
.btn.btn-pagination.active,
.pagination .bootpag li:not(.next, .prev) {
  background-color: var(--yellow-color);
  color: var(--light-color);
  border-radius: 50% !important;
  padding: 0.8rem 1rem;
  font-weight: 600;
  margin-left: 5px;
}
.pagination .bootpag li a:not(.next, .prev) {
  color: var(--primary-color);
}
.pagination .bootpag li:hover:not(.next, .prev) {
  color: var(--primary-color);
}
.btn.btn-pagination,
.pagination .bootpag li {
  font-size: 16px;
  font-weight: 600;
  padding: 0.8rem;
  line-height: 1;
  margin-right: 10px;
}

.pagination .bootpag li.next,
.pagination .bootpag li.prev {
  display: flex;
}

.pagination .bootpag li.next a,
.pagination .bootpag li.prev a {
  font-size: 16px;
}

.btn.btn-pagination:not(.active),
.pagination .bootpag li.disabled:not(.next, .prev) {
  color: #5f6d7d;
}
.pagination .bootpag li.disabled a {
  color: var(--primary-color);
}
.breadcrumb {
  display: none;
  flex-wrap: wrap;
  color: var(--secondary-color);
  font-size: 14px;
}
.breadcrumb li + li:before {
  padding: 4px;
  color: var(--primary-color);
  content: "/\00a0";
}
.breadcrumb li a {
  text-decoration: none;
}
.breadcrumb li a:hover {
  color: var(--secondary-color);
}

#aside-search-open,
#aside-search-close {
  cursor: pointer;
  display: flex;
}
#aside-search-open:hover,
#aside-search-close:hover {
  opacity: 0.7;
}

#aside-search-close {
  padding: 20px 0;
  color: var(--primary-color);
  text-align: right;
  text-transform: uppercase;
}
#yachtlist {
  padding-top: 2rem;
}

.yacht-inner {
  background-image: url(../../images/header-bg.jpg);
}

/* 
=============================================================
CONTAINERS AND SPACINGS
=============================================================
*/
.custom-container {
  width: 1600px;
  max-width: 100%;
  padding-right: 4vw;
  padding-left: 4vw;
  margin-right: auto;
  margin-left: auto;
}

.container-1200 {
  width: 1200px;
  max-width: 100%;
  padding-right: 4vw;
  padding-left: 4vw;
  margin-right: auto;
  margin-left: auto;
}

.pt-120 {
  padding-top: 40px;
}

.pb-120 {
  padding-bottom: 40px;
}

.mt-120 {
  margin-top: 40px;
}

.mb-120 {
  margin-bottom: 40px;
}

/* 
=============================================================
COLORS TEXT AND BACKGROUD
=============================================================
*/

.bg-primary-dark {
  background-color: var(--primary-color);
}

.bg-yellow {
  background: linear-gradient(49deg, rgba(255, 218, 85, 0.5) 0%, rgba(255, 213, 0, 0.3) 100%);
}

.bg-sand {
  background-color: transparent;
  background-image: url(../../images/sand-textured.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-circle-gradient {
  background-repeat: no-repeat;
  background-size: contain;
}

.circle-right {
  background-image: url(../../images/bg-circle-right.webp);
  background-position: center right;
}

.circle-left-bottom {
  background-image: url(../../images/bg-circle-left-bottom.webp);
  background-position: center left;
}

.circle-left {
  background-image: url(../../images/bg-circle-left.webp);
  background-position: center left;
}

.bg-about-us {
  position: relative;
}

.bg-testimonial {
  background-image: url(../../images/testimonials.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.bg-secondary-light {
  background-color: var(--secondary-color);
}

.text-shadow {
  text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}
.color-unset {
  color: unset;
}
.color-primary {
  color: var(--primary-color);
}
.color-secondary {
  color: var(--secondary-color);
}
.color-light {
  color: var(--light-color);
}

/* 
=============================================================
BORDERS
=============================================================
*/
.no-rounded {
  border-radius: 0 !important;
}

.border-round-8 {
  border-radius: 8px;
}

.border-blue {
  border: 1px solid var(--blue-light-color);
}

.border-top-light {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.border-top-grey {
  border-top: 1px solid #e0e0e0;
}

.border-top-blue {
  border-top: 1px dashed var(--blue-light-color);
}
/* 
=============================================================
LITEPICKER
=============================================================
*/
.container__months {
  box-shadow: none;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.container__months .month-item {
  background-color: var(--light-color);
}
.container__months .month-item-weekdays-row > div {
  font-size: 0.85rem;
  font-weight: 500;
}
.container__months.columns-5 {
  width: calc((var(--litepicker-month-width) * 5) + 50px);
}
.container__months.columns-6 {
  width: calc((var(--litepicker-month-width) * 6) + 60px);
}
.container__months.columns-7 {
  width: calc((var(--litepicker-month-width) * 7) + 70px);
}
.container__months.columns-8 {
  width: calc((var(--litepicker-month-width) * 8) + 80px);
}
.container__months.columns-9 {
  width: calc((var(--litepicker-month-width) * 9) + 90px);
}

.litepicker .container__months .month-item-header {
  font-size: 24px;
  font-weight: 700;
}

.litepicker .container__months .month-item-weekdays-row {
  font-weight: 700;
}

.litepicker .container__days > div,
.litepicker .container__days > a {
  margin: 1px 0;
  padding: 8px 0;
  cursor: pointer;
}
.litepicker .container__days .day-item {
  font-weight: 700;
}
.litepicker .container__days .day-item:hover {
  border: none;
  box-shadow: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.litepicker-popup {
  position: fixed;
  background: var(--primary-color);
  top: 50%;
  color: var(--light-color);
  left: 50%;
  padding: 2rem;
  box-shadow: 0px 2px 20px rgba(92, 104, 118, 0.4);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.litepicker .day-item {
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.litepicker .day-item.is-locked {
  text-decoration: line-through;
}
.litepicker .day-item.is-locked.is-highlighted {
  color: #9e9e9e;
}
.litepicker .day-item.is-locked.is-highlighted::before {
  content: "";
  background: none;
}
.litepicker .button-next-month svg path,
.litepicker .button-previous-month svg path {
  fill: var(--primary-color);
}
.litepicker .is-highlighted {
  position: relative;
  z-index: 0;
}
.litepicker .is-highlighted::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.litepicker .container__days .day-item.is-start-date,
.litepicker .container__days .day-item.is-end-date,
.litepicker .day-item.is-start-date.is-highlighted,
.litepicker .day-item.is-end-date.is-highlighted {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
}

.litepicker .container__days .day-item.is-end-date:hover,
.litepicker .container__days .day-item:not(.is-in-range):not(.is-locked):not(.is-end-date):hover {
  /* background-color: var(--secondary-color);
  border-radius: 50%;
  -webkit-box-shadow: none;
  box-shadow: none; */
  background: url(../../images/icons/calendar-circle.svg);
  color: var(--primary-color);
  background-position: center;
  background-repeat: no-repeat;
}

.litepicker .container__days .day-item:not(.is-in-range):not(.is-locked):not(.is-end-date):not(.is-start-date) {
  background: url(../../images/icons/calendar-circle.svg);
  color: var(--light-color);
  background-repeat: no-repeat;
  background-position: center;
}

.litepicker .container__days .day-item.is-start-date {
  background: url(../../images/icons/calendar-circle.svg), linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 213, 0, 1) 50%, rgba(255, 213, 0, 1) 100%);
  background-position: center;
  background-repeat: no-repeat;
  color: var(--primary-color);
}

.litepicker .container__days .day-item.is-end-date {
  background: url(../../images/icons/calendar-circle.svg), linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 213, 0, 1) 50%, rgba(255, 213, 0, 1) 100%);
  background-position: center;
  background-repeat: no-repeat;
  color: var(--primary-color);
}

.litepicker .container__days .day-item.is-in-range.is-highlighted {
  background-color: var(--litepicker-is-in-range-color);
  color: var(--primary-color);
}

#litepicker-small .litepicker .container__months {
  box-shadow: none;
}

.litepicker .container__months .month-item-header .button-previous-month,
.litepicker .container__months .month-item-header .button-next-month {
  background: #f2f2f2;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* 
=============================================================
BUTTONS
=============================================================
*/

.slide-checkbox {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  cursor: pointer;
}

.slide-checkbox:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e0e0e0;
  border-radius: 34px;
  transition: background-color 0.2s;
}

.slide-checkbox:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

input[type="checkbox"]:checked + .slide-checkbox:before {
  background-color: var(--secondary-color);
}

input[type="checkbox"]:checked + .slide-checkbox:after {
  transform: translateX(26px);
}

.btn {
  font-size: 18px;
  font-weight: 400;
  border-width: 1px;
  border-style: solid;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  padding: 0.8rem 2rem;
}
.btn.btn-no-radius {
  border-radius: 0;
}
.btn.btn-primary {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-primary:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}
.btn.btn-secondary {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--light-color);
}
.btn.btn-secondary:hover {
  background-color: var(--light-color);
  color: var(--secondary-color);
}
.btn.btn-secondary-transparent {
  border-color: var(--secondary-color);
  background-color: transparent;
  color: var(--secondary-color);
}
.btn.btn-secondary-transparent:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.btn.btn-transparent {
  background-color: var(--light-color);
  color: var(--secondary-color);
  box-shadow: 1px 13px 50px 1px rgba(0, 118, 250, 0.2);
}
.btn.btn-transparent:hover {
  box-shadow: 1px 13px 50px 1px rgba(0, 118, 250, 0.4);
}

.btn.btn-lg {
  font-weight: 600;
  font-size: 20px;
  line-height: 2.5;
}

.btn-md {
  width: 200px;
}

.btn-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-book {
  font-weight: 600;
  text-transform: capitalize;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--secondary-color);
  width: 180px;
  padding: 1.15rem 0;
  color: var(--light-color);
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-book.btn-contact {
  left: 0;
  right: unset;
}

.btn-all-photos {
  cursor: pointer;
}

.btn-show-more {
  visibility: hidden;
  transition: unset;
  cursor: pointer;
  z-index: 2;
  position: inherit;
}

.btn-all-photos:hover {
  color: var(--orange-color);
}

.add-date-btn {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 35px;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  cursor: pointer;
}

/* cover whole div with a href */
.box-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  z-index: 2;
}
.yacht-btn-wrapp {
  width: 100%;
}
.yacht-btn-wrapp .yacht-btn-book {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.btn-yacht {
  background-color: var(--blue-light-color);
  border: 1px solid var(--blue-light-color);
  color: var(--light-color);
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 15px 0;
  position: relative;
}
.btn-yacht:hover {
  background-color: transparent;
  color: var(--blue-light-color);
}
.btn-yacht::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 15px;
  /*  background-image: url(../../images/icons/arrow-left-white.svg);
  background-size: contain;
  background-repeat: no-repeat; */
  transition: all 0.3s ease-in-out;
}
.line-link {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  color: var(--blue-light-color);
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
}
.line-link:hover:after {
  width: 100%;
}
.line-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 30%;
  background-color: var(--blue-light-color);
  transition: width 0.4s linear;
}
.btn-search {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  padding: 20px;
  background: var(--secondary-color);
  transition: all 0.3s ease-in-out;
  width: 100%;
  color: var(--light-color);
  text-transform: uppercase;
}
.btn-search:hover {
  box-shadow: 0 4px 8px 0 rgba(30, 121, 228, 0.5);
  background: var(--blue-light-color);
  color: var(--light-color);
}
.btn-search span {
  text-transform: capitalize;
}

@media screen and (max-width: 767px) {
  .btn-search-sm {
    font-size: 16px;
    padding: 0.8rem 2rem;
  }
}

.btn-reset {
  color: #bdbdbd;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  border: 1px solid #bdbdbd;
}

.btn-gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 27px;
  background: var(--gradient);
  transition: all 0.3s ease-in-out;
  color: var(--light-color);
  text-transform: uppercase;
}

.btn-gradient:hover {
  color: var(--light-color);
}

.btn-gradient img {
  transition: var(--transition);
}
.btn-gradient:hover img {
  margin-left: 10px;
}

.arrow-link {
  position: relative;
  width: max-content;
  padding-right: 25px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  color: var(--secondary-color);
  border: none;
  background-color: transparent;
}
.arrow-link:hover {
  color: var(--primary-color);
}
.arrow-link:hover::before {
  right: -15px;
}
.arrow-link::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 10px;
  background-image: url(../../images/icons/arrow-right-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}

/* 
=============================================================
ACCORDION
=============================================================
*/

.accordion-search {
  border-radius: 50px;
  border: 1px dashed var(--blue-light-color);
  background: #fff;
  padding: 40px;
  text-transform: capitalize;
}

.accordion-search .accordion-item .accordion-header {
  position: relative;
}

.accordion-search .accordion-item .accordion-header:not(.accordion-header-equipment):after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../images/icons/accordion-plus.svg);
  height: 28px;
  width: 28px;
  background-size: contain;
}
.accordion-search .accordion-item .accordion-header:not(.collapsed):not(.accordion-header-equipment)::after {
  background-image: url(../../images/icons/accordion-minus.svg);
}

.accordion .accordion-item {
  border: 0;
  background-color: transparent;
}
.accordion .accordion-item .accordion-header {
  border-bottom: 1px solid var(--grey-light-color);
  cursor: pointer;
}
.accordion .accordion-item .accordion-button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
  color: var(--primary-color);
  font-size: 24px;
  padding: 1rem 0;
  font-weight: 600;
}
.accordion .accordion-item .accordion-button h3 {
  font-weight: 400;
}
.accordion .accordion-item .accordion-button:not(.collapsed),
.accordion .accordion-item .accordion-button:hover {
  color: var(--primary-color);
}
.accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.accordion .accordion-item .accordion-button:after {
  background-image: url(../../images/icons/accordion-plus.svg);
  height: 28px;
  width: 28px;
  background-size: contain;
}
.accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url(../../images/icons/accordion-minus.svg);
  transform: unset;
}
.accordion .accordion-item .accordion-button.accordion-btn-small {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: normal;
  border-bottom: none;
  box-shadow: none;
  padding: 0;
}
.accordion .accordion-item .accordion-button.accordion-btn-small:after {
  transform: rotate(0deg);
}
.accordion .accordion-item .accordion-body {
  font-size: 18px;
  padding: 1rem 10px;
}
.accordion .accordion-toggle.form-toggle {
  position: relative;
  border-bottom: none;
  box-shadow: none;
  color: #828282;
  border-bottom: 1px dotted #9888c3;
  font-weight: 500;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 0;
  text-transform: uppercase;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.accordion .accordion-toggle.form-toggle:after {
  content: "";
  position: absolute;
  right: 8px;
  background-image: url(../../images/icons/arrow-down-secondary.svg);
  height: 10px;
  width: 12px;
  background-size: contain;
  background-repeat: no-repeat;
}
.accordion .accordion-toggle.form-toggle.active:after {
  transform: rotate(-180deg);
}
.accordion .accordion-content {
  display: none;
}
#accordionEquipment .accordion-body {
  max-height: 160px;
  margin-top: 13px;
  overflow-x: hidden;
  padding: 1rem 10px;
}
#accordionEquipment .accordion-body .equipment-check {
  margin-bottom: 10px;
}
#accordionEquipment .accordion-body input[type="checkbox"] + label:before {
  width: 25px;
  height: 25px;
}
#accordionEquipment .scroll-more {
  border-bottom: 1px solid var(--blue-light-color);
  bottom: 0;
  position: absolute;
  left: 0;
  font-size: 14px;
  right: 0;
  text-align: center;
  background-color: transparent;
  padding-bottom: 5px;
}

#accordionEquipment .accordion-header .accordion-button {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400;
  padding: 4px 16px 16px 4px;
}
/* #accordionEquipment .accordion-header .accordion-button::after {
  width: 18px;
  height: 18px;
  right: 10px;
  background-image: url("../../images/icons/arrow-right.svg"); 
} */

/* 
=============================================================
TABS
=============================================================
*/
.tab-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
  margin-bottom: 60px;
  max-width: 720px;
  width: 100%;
  margin: auto;
}

.nav-tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 20px;
  border-radius: 60px;
  background: #f5f5f5;
  backdrop-filter: blur(25px);
}

@media (min-width: 767px) {
  .nav-tabs {
    flex-direction: row;
  }
}

.nav-tabs .nav-item {
  margin-right: 3%;
}

.nav-tabs .nav-link {
  font-weight: 600;
  color: var(--blue-light-color);
  text-align: center;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  padding: 20px 0;
  -webkit-appearance: none;
  border: none;
}

.nav-tabs .nav-link.active {
  font-weight: 600;
  background-color: transparent;
  color: var(--secondary-color);
}
.nav-tabs.nav-tabs-inner .nav-link {
  color: var(--blue-light-color);
  font-size: 18px;
  font-weight: 700;
}

.nav-tabs.nav-tabs-inner .nav-link.active {
  background-color: transparent;
  color: var(--secondary-color);
}
.tab-content {
  overflow-x: hidden;
}
.tab-content .sort-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--primary-color);
}
.tab-content .sort-form .form-element {
  color: var(--primary-color);
}
.tab-content .sort-form select {
  color: var(--primary-color);
}

.tab-content .sort-form .select-element:before {
  background-image: url(../../images/icons/arrow-down-light.svg);
}
.tab-content .sort-form .choices__list--single .choices__item {
  color: var(--light-color);
}

/* 
=============================================================
ICONS AND IMAGES
=============================================================
*/
img {
  width: 100%;
  height: auto;
}

.img-radius {
  border-radius: var(--border-radius-m);
}

.img-radius-50 {
  border-radius: 50px;
}

. {
  height: 480px;
  width: 70%;
}

.img-120 {
  height: 120px;
  width: 120px;
}

.img-50 {
  height: 60px;
  width: 50px;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.img-shadow {
  box-shadow: 0px 2px 15px 3px rgba(0, 0, 0, 0.1);
}

.icon {
  cursor: pointer;
}

.icon-sm {
  width: 15px;
  height: 15px;
}

.icon-md {
  width: 24px;
  height: 24px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.icon-xl {
  width: 44px;
  height: 44px;
}

.icon-150 {
  width: 150px;
}

.icon-secondary svg {
  fill: var(--secondary-color);
}
.icon-secondary svg path {
  fill: var(--secondary-color);
}
.quote-icon {
  position: relative;
}
.quote-icon::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  background-image: url("../../images/left-quote.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.custom-modal-quote .modal-content {
  background-color: transparent;
}

.custom-modal-quote .modal-header {
  border: none;
}

.custom-modal-quote .delete-all {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--light-color);
  border-bottom: 1px solid var(--light-color);
  max-width: max-content;
  cursor: pointer;
}

.custom-modal-quote .modal-content .modal-body img {
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}
.custom-modal-quote .modal-content .modal-body td {
  font-size: 16px;
  padding: 5px 0;
  font-weight: 500;
  color: #fff;
}

.iframe-100 iframe {
  width: 100%;
  height: 700px;
}

/* 
=============================================================
TYPOGRAPHY
=============================================================
*/

.fs-80 {
  font-size: clamp(42px, 5vw, 80px);
}
.fs-72 {
  font-size: clamp(38px, 5vw, 72px);
}
.fs-64 {
  font-size: clamp(36px, 5vw, 64px);
}
.fs-57 {
  font-size: clamp(32px, 5vw, 57px);
}
.fs-46 {
  font-size: clamp(28px, 5vw, 46px);
}
.fs-32 {
  font-size: clamp(24px, 5vw, 32px);
}
.fs-24 {
  font-size: clamp(18px, 5vw, 24px);
}
.fs-22 {
  font-size: clamp(18px, 5vw, 22px);
}
.fs-18 {
  font-size: clamp(16px, 5vw, 18px);
}
.fs-16 {
  font-size: 16px;
}
.fs-14 {
  font-size: 14px;
}
.fs-12 {
  font-size: 12px;
}
.fw-300 {
  font-weight: 300;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}

.heading-img {
  width: 280px;
  object-fit: none;
}

.bottom-img {
  width: 300px;
  object-fit: contain;
}

/* 
=============================================================
SWIPER SLIDER
=============================================================
*/

.vertical-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  cursor: pointer;
}

.vertical-text-slide {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s, transform 1s;
  height: 0;
  overflow: hidden;
}

.vertical-text-slide.active {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  overflow: visible;
}

.vertical-slider-img {
  object-fit: cover;
  height: 650px;
  border-radius: 50px;
}

.vertical-image-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
  margin-top: 2rem;
}

@media screen and (min-width: 1200px) {
  .vertical-image-gallery {
    height: 600px;
    margin-top: 0;
  }
}

.vertical-image-gallery img {
  max-width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: 50px;
  object-fit: cover;
}

.vertical-image-gallery img.active {
  opacity: 1;
}

.swiper {
  --swiper-pagination-bullet-height: 10px;
  --swiper-pagination-bullet-width: 10px;
}

.swiper-button-prev {
  left: unset;
  right: 80px;
}

.swiper-button-prev,
.swiper-button-next {
  top: unset;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  background-color: var(--light-color);
  padding: 0.5rem;
  bottom: 10px;
}

.swiper-button-prev:not(.swiper-button-disabled),
.swiper-button-next:not(.swiper-button-disabled) {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}

.swiper-button-prev.no-border,
.swiper-button-next.no-border {
  border: none;
}
.swiper-button-prev.swiper-button-md:after,
.swiper-button-next.swiper-button-md:after {
  content: "";
  height: 15px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  height: 30px;
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.swiper-button-prev:after {
  background-image: url("../../images/icons/slider-arrow-left.svg");
}
.swiper-button-next:after {
  background-image: url("../../images/icons/slider-arrow-right.svg");
}

.swiper-button-onright {
  left: unset;
  right: 80px;
}

.swiper-indicators {
  position: relative;
  height: 50px;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.slider-fraction {
  position: relative;
  width: 100px;
}
.swiper-pagination-fraction {
  color: #cbb26b;
  font-weight: 500;
  font-size: 14px;
}

.yachts-slider {
  position: relative;
  padding-bottom: 0;
  z-index: 0;
}

.yachts-slider .swiper-pagination {
  display: none;
}

@media (min-width: 767px) {
  .review-button-prev.swiper-button-prev,
  .review-button-next.swiper-button-next {
    top: 50%;
    bottom: unset;
  }
  .yachts-slider .swiper-pagination {
    display: block;
  }
}

@media (max-width: 767px) {
  .yachts-slider .swiper-button-prev {
    right: 55%;
    top: 20px;
  }
  .yachts-slider .swiper-button-next {
    right: 35%;
    top: 20px;
  }
}

.blue-list {
  margin-top: 1.5rem;
}

.blue-list ul {
  margin-left: 40px;
}

.blue-list li {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.heart-list {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--primary-color);
  margin-right: 0;
}

@media (min-width: 768px) {
  .heart-list {
    margin-right: 15%;
    margin-bottom: 0;
  }
}

.heart-list:last-child {
  border-bottom: 1px solid var(--primary-color);
}

.heart-list .heart-svg {
  padding: 0.8rem;
  background-color: rgba(245, 72, 41, 0.2);
}

.dest_icon {
  height: 60px;
}

@media (min-width: 992px) {
  .blue-list {
    padding: 0 1rem;
  }
}

.yachts-slider .swiper-slide:hover .card-overly {
  transform: scale(1);
}
.about-slider .swiper-slide img {
  height: 100%;
  transition: all 0.3s ease-in-out;
  object-fit: contain;
}

.about-slider .swiper-slide .icon img {
  object-fit: contain;
}
.yachtdetails .boat-details-slider .swiper-button-next:hover,
.yachtdetails .boat-details-slider .swiper-button-prev:hover {
  background-color: transparent;
}
.similaryachts-slider .similaryachts-button-next,
.similaryachts-slider .similaryachts-button-prev {
  background-color: #fff;
  top: 50%;
}
.similaryachts-slider .similaryachts-button-next:hover,
.similaryachts-slider .similaryachts-button-prev:hover {
  background-color: transparent;
}
.card-overly {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  padding: 0 10%;
  box-sizing: border-box;
}
.card-overly .icon {
  object-fit: contain;
}

/* 
=============================================================
MODAL
=============================================================
*/
.modal-backdrop {
  width: 100%;
  height: 100%;
  right: 0;
}
/* .advanced-search-modal {
  z-index: 5;
} */
.advanced-search-modal .form-element {
  padding: 8px 10px;
}
.advanced-search-modal .modal-dialog {
  max-width: 100vw;
}

.advanced-search-modal .modal-body {
  padding: 0;
}
#aside-search .advanced-search-modal .form-element {
  padding: 8px 10px;
}

.advanced-search-modal .equipment-wrapper {
  border-top: 1px dotted var(--secondary-color);
}

.advanced-search-modal .equipment-check {
  display: flex;
  align-items: flex-start;
}

.advanced-search-modal .equipment-check label {
  text-align: start;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  border-radius: 38px;
  border: 1px solid #e0e0e0;
  background: #f2f2f2;
  margin-right: 16px;
  margin-bottom: 10px;
  padding: 8px 12px;
}

.close {
  width: 35px;
  height: 45px;
  cursor: pointer;
}

.close:hover {
  opacity: 0.7;
}
/* 
=============================================================
SIMILAR ARTICLE
=============================================================
*/
.similar-card {
  position: relative;
}

.similar-desc {
  padding: 0 1rem;
  margin-top: -1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 
=============================================================
SELECT 2 AND FORMS
=============================================================
*/
.form-element {
  position: relative;
}

.form-element .label {
  position: absolute;
  top: -5px;
}

.form-element svg {
  position: absolute;
  right: 0;
  z-index: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 0;
  z-index: 1;
}

.select2-container {
  display: block;
  width: 100% !important;
  z-index: 1;
}
.select2-container--default .select2-selection--single {
  border: none;
  background-color: transparent;
}
.select2-container--open .select2-dropdown {
  /*  width: max-content !important; */
  min-width: 180px;
  box-shadow: 0px 2px 20px rgba(92, 104, 118, 0.4);
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected {
  background-color: var(--secondary-color);
  color: var(--light-color);
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--primary-color);
  font-weight: normal;
  font-size: 16px;
  text-align: initial;
}
.select2-dropdown {
  border: none;
  box-shadow: 0 1px 15px 2px #000;
}
.select2-results__option {
  padding: 10px 12px;
  color: var(--primary-color);
}
#crew-label .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  padding: 5px 30px;
  width: 100%;
  border: 1px solid #d7dde4;
}
form[name="booking"] .select2-container--default .select2-selection--single[aria-labelledby="select2-country-container"] {
  background-color: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--blue-light-color);
  border-radius: 0;
  color: var(--primary-color);
  height: 48px;
  padding: 15px 10px;
  line-height: 1.5;
}

form[name="booking"] .select2-container--default .select2-selection--single[aria-labelledby="select2-country-container"] .select2-selection__rendered {
  color: var(--primary-color);
}

form[name="booking"] .select2-container--default .select2-selection--single[aria-labelledby="select2-country-container"]:before {
  background-image: url(../../images/icons/arrow-down.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 10px;
  position: absolute;
  right: 0;
  top: calc(50% - 2px);
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  width: 16px;
}

.select2-container--open .select2-dropdown.custom_sort_left {
  left: -120px;
}

/* 
=============================================================
FORMS
=============================================================
*/
form .invalid {
  color: #ad0f0f;
  font-size: 12px;
  font-style: normal;
}
input,
input.form-control,
input.input-group-text,
select.form-select,
textarea.form-control {
  width: 100%;
}
input:focus,
input.form-control:focus,
input.input-group-text:focus,
select.form-select:focus,
textarea.form-control:focus {
  outline: none;
  border: 1px solid var(--primary-color);
  box-shadow: none;
}
input[type="time" i]::-webkit-calendar-picker-indicator {
  background-image: none;
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
/* input[type="time"]:before {
  content: 'Time';
  color: #fff;
  position: absolute;
  background-color: rgba(0, 28, 61, 0.8);
}

input[type="time"]:hover:before {
  content: '';
} */

textarea.form-control,
input.form-control,
select.form-select {
  background-color: transparent;
  color: var(--primary-color);
  padding: 10px 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  border: transparent;
  border-bottom: 1px solid var(--light-color);
  border-radius: 0;
}
.form-control::-webkit-input-placeholder,
textarea.form-control ::-webkit-input-placeholder,
input.form-control ::-webkit-input-placeholder,
select.form-select ::-webkit-input-placeholder {
  /* Edge */
  color: var(--primary-color) !important;
  text-transform: uppercase;
  font-size: 16px;
}
.form-control::-ms-input-placeholder,
textarea.form-control :-ms-input-placeholder,
input.form-control :-ms-input-placeholder,
select.form-select :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--primary-color) !important;
  text-transform: uppercase;
  font-size: 16px;
}
.form-control::placeholder,
textarea.form-control ::placeholder,
input.form-control ::placeholder,
select.form-select ::placeholder {
  color: var(--primary-color) !important;
  text-transform: uppercase;
  font-size: 16px;
}

.custom-modal-quote input.form-control::-moz-placeholder,
.custom-modal-quote input.form-control::-ms-input-placeholder,
.custom-modal-quote input.form-control::placeholder {
  color: var(--light-color) !important;
}
.input-group .btn {
  z-index: 1;
}
.input-transparent {
  background-color: transparent;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:not(.optional-extra) + label:before {
  content: "";
  display: inline-block;
  color: var(--primary-color);
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 14px;
  cursor: pointer;
  vertical-align: middle;
  height: 24px;
  width: 24px;
  border: 1px solid #e0e0e0;
  background-color: #e0e0e0;
  border-radius: 50%;
  padding: 8px;
  background-image: url(../../images/icons/uncheck.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.checkbox-light input[type="checkbox"]:not(.optional-extra):not(.form-check-input) + label:before {
  border: 1px solid var(--blue-light-color);
}

input[type="checkbox"]:not(.optional-extra):not(.input-term):checked + label {
  background-color: var(--blue-light-color);
}

input[type="checkbox"]:not(.optional-extra):checked + label:before {
  content: "";
  background-image: url(../../images/icons/uncheck.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  position: inherit;
  left: 0px;
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}
label.form-label {
  font-weight: 500;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 0;
}
.form-check-label {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  font-weight: normal;
}
select {
  width: 100%;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-align: left;
  cursor: pointer;
  z-index: 1;
  background: transparent;
}
select option {
  background-color: var(--primary-color);
  color: #fff;
}
.select-element {
  position: relative;
}
.select-element:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 38px;
  width: 20px;
  height: 20px;
  background-image: url("../../images/icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
}
.select-element.select-crew:before {
  background-image: url("../../images/icons/arrow-down.svg");
}
.select-element.select-element-md {
  width: 235px;
}
.select-element.select-element-sm:before {
  content: "";
  width: 12px;
  right: 8px;
}
.label-box {
  display: inline-flex;
  flex-direction: column;
  width: calc(100% - 40px);
}
/* Main search form */
.main-search-form {
  border-radius: 30px;
  background-color: var(--light-color);
  margin-top: 0;
  position: relative;
  padding: 20px 30px;
}

@media screen and (min-width: 1200px) {
  .main-search-form {
    border-radius: 100px;
  }
}

.form-element-label {
  display: flex;
  align-items: center;
  position: relative;
}

.main-search-form .label-icon {
  font-size: 14px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 5px;
  text-align: left;
  color: var(--light-color);
}
.main-search-form .label {
  font-weight: 500;
  font-size: 12px;
}
.main-search-form .main-search-wrapper .search-fileds {
  border: none;
  margin-bottom: 20px;
}

.main-search-form .main-search-wrapper .search-fileds .form-element {
  padding: 10px;
  display: flex;
  align-items: center;
  max-height: 60px;
  border-bottom: 1px dashed var(--blue-light-color);
}

.main-search-form .main-search-wrapper .search-fileds .form-element:before {
  content: "";
  display: none;
}

.main-search-form .main-search-wrapper input {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: normal;
  z-index: 1;
  cursor: pointer;
}
.main-search-form .main-search-wrapper ::placeholder {
  color: var(--primary-color);
  opacity: 1;
}
.main-search-form .main-search-wrapper .date {
  font-size: 16px;
  position: relative;
  max-height: 79px !important;
}

.main-search-form .main-search-wrapper .date .date-start,
.main-search-form .main-search-wrapper .date .date-end {
  max-width: 100px;
}
.main-search-form .main-search-wrapper .date .date-start input,
.main-search-form .main-search-wrapper .date .date-end input {
  cursor: pointer;
}
.main-search-form .main-search-wrapper .date .date-start input:hover,
.main-search-form .main-search-wrapper .date .date-end input:hover {
  color: #cbb26b;
}

.main-search-form .advanced-serach {
  cursor: pointer;
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

.main-search-form .advanced-serach:hover {
  color: var(--secondary-color);
}

.main-search-form .advanced-serach .advanced-serach-icon {
  width: 1rem;
  height: 1rem;
  background-image: url("../../images/icons/plus-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.main-search-form .advanced-serach:hover .advanced-serach-icon {
  transform: rotate(90deg);
}
.main-search-form .advanced-serach-wrapper {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0px 1px 15px 2px rgba(154, 122, 95, 0.15);
  border-radius: 50px;
}
.main-search-form .advanced-serach-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--primary-color);
  font-weight: 400;
  font-size: 16px;
  padding-left: 0;
}
.main-search-form .advanced-serach-wrapper .advanced-search-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem;
  color: var(--blue-light-color);
  margin-bottom: 10px;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
  background-color: var(--secondary-color);
  font-weight: 600;
}
.main-search-form .advanced-serach-wrapper .advanced-search-title .advanced-search-close {
  background-image: url("../../images/icons/close.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.main-search-form .advanced-serach-wrapper .advanced-search-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-search-form .advanced-serach-wrapper .advanced-search-btn .advanced-clear-btn {
  color: var(--primary-color);
  font-size: 18px;
  cursor: pointer;
}
.main-search-form .advanced-serach-wrapper .form-element {
  padding: 10px 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
}
.main-search-form .advanced-serach-wrapper .main-search-label {
  font-size: 13px;
  line-height: 27px;
  color: var(--primary-color);
}

.main-search-wrapper .advanced-serach-modal .select2-results__option--selectable {
  color: var(--primary-color);
}
/* select date home */
.filter-date {
  width: 240px;
  display: flex;
}
.filter-date::before {
  width: 13px;
  top: calc(50% - 10px);
}
.select-date {
  color: var(--secondary-color);
  font-size: 14px;
}

.range-slider {
  zoom: 1.1;
}

.range-slider .ui-widget-header {
  background: var(--secondary-color);
}
.range-slider .ui-slider.ui-widget.ui-widget-content {
  margin: 10px;
  display: block;
  border-radius: 8px;
}
.range-slider .ui-slider-horizontal {
  height: 10px;
}
.range-slider .ui-widget.ui-widget-content {
  background: rgba(196, 196, 196, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  height: 8px !important;
}
.range-slider .search-filter .range-slider .ui-widget.ui-widget-content {
  background: rgba(196, 196, 196, 0.5);
}
.range-slider .search-filter .border-left {
  border-color: rgba(196, 196, 196, 0.5) !important;
  border-width: 2px !important;
}
.range-slider .ui-slider-handle {
  background: var(--secondary-color) !important;
  cursor: pointer !important;
  border: none !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 20px;
  top: -7px !important;
}
.range-slider .ui-state-default {
  padding: 0 !important;
  line-height: 0;
  z-index: 1;
}
.range-slider .search-slider {
  font-size: 14px;
  text-align: center;
  color: #4a4a4a;
}
/* sort form */
.sort-form .choices__list--single .choices__item {
  font-weight: 700;
}
.sort-form .form-element {
  display: flex;
  align-items: center;
  max-width: max-content;
  margin-right: 1rem;
}
.sort-form .form-element.select-element-last {
  margin-right: 0;
}
@media (max-width: 767px) {
  .sort-form .form-element {
    max-width: 100%;
    background-color: var(--light-color);
    padding: 3px 9px;
    border-radius: 8px;
    margin-right: 0;
    margin-bottom: 1rem;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 767px) {
  .sort-form .form-element.select-element-direction span {
    width: 2ch !important;
  }
}
.sort-form .form-element span {
  display: block;
  min-width: max-content;
}
.sort-form .form-element span.filter-title {
  width: 200px;
}
.sort-form .form-element:before {
  right: 15px;
  background-image: url(../../images/icons/arrow-down-light.svg);
}
@media (min-width: 767px) {
  .sort-form .form-element:before {
    right: -10px;
  }
}
@media (min-width: 1199px) {
  .sort-form .form-element:before {
    right: 0;
  }
}
.sort-form select {
  color: var(--primary-color);
  border: none;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 767px) {
  .sort-form select {
    padding: 5px 10px;
  }
}
.sort-form label {
  position: relative;
  width: 100%;
}
.sort-form span {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.sort-form .caret-down {
  background-image: url("../../images/icons/arrow-down-gold.svg");
  width: 10px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
/* .sort-form .select2-container .dropdown-wrapper {
  display: none;
} */
.sort-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 700;
  font-size: 16px;
  padding-right: 5px;
  text-transform: uppercase;
  color: var(--secondary-color);
  width: max-content;
  min-width: 160px;
}

/* ASIDE SEARCH FORM */
#aside-search {
  margin-top: 46px;
}

#aside-search .form-element.date:before {
  display: none;
}
@media (min-width: 1199px) {
  #aside-search .form-element.date:before {
    display: block;
  }
}

.aside-search {
  padding: 0;
  margin: 0;
  border: 0;
  color: var(--primary-color);
  background-color: transparent;
}

.aside-search .main-search-wrapper .main-search-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
}
.aside-search .main-search-wrapper .btn-search {
  font-size: 14px;
  line-height: 24px;
  padding: 0.8rem 1.5rem;
}
.aside-search .main-search-wrapper .search-fileds .form-element {
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #adc0d7;
  padding: 16px 0;
  margin-bottom: 30px;
}

.aside-search .label {
  font-size: 13px;
  font-weight: normal;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.aside-search .main-search-wrapper .search-fileds .form-element.select-element:before {
  background-image: url("../../images/icons/arrow-right.svg");
  right: 10px;
  width: 18px;
  height: 18px;
}

.aside-search .main-search-wrapper .search-fileds .date {
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 0px;
}
.aside-search .main-search-wrapper .search-fileds .date input {
  color: var(--primary-color);
  cursor: pointer;
}
.aside-search .main-search-wrapper .search-fileds .date::before {
  content: "";
  background-image: none;
}
.aside-search .main-search-wrapper .search-fileds .date .main-search-label {
  color: var(--primary-color);
}
.aside-search .main-search-wrapper .search-fileds .arrow-right-date {
  background-image: url("../../images/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 40px;
  height: 10px;
  margin: 0 10px;
}
.aside-search .main-search-wrapper .search-fileds .range-slider-wrap {
  padding: 18px 0px;
}
.aside-search .main-search-wrapper .search-fileds .range-slider-wrap .ui-widget.ui-widget-content {
  border: none;
}

.aside-search .main-search-wrapper .search-fileds .range-slider-wrap .search-slider {
  display: block;
  text-align: center;
  text-transform: uppercase;
}
.aside-search .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
}

/* cookies */
.termsfeed-com---palette-light.termsfeed-com---nb{
  background-color: var(--primary-color) !important;
  color: var(--light-color) !important;
  max-width: 100% !important;
  width: 100% !important;
}
.termsfeed-com---nb-simple{
  max-width: 100% !important;
}
.termsfeed-com---nb .cc-nb-main-container{
  padding: 2rem !important;
}
.termsfeed-com---palette-light .cc-nb-text,
.termsfeed-com---palette-light .cc-nb-title{
  color: var(--light-color) !important;
}
.termsfeed-com---nb .cc-nb-title{
  font-size: 18px !important;
}
.termsfeed-com---nb .cc-nb-text{
  font-size: 12px !important;
}

.termsfeed-com---nb .cc-nb-okagree, .termsfeed-com---nb .cc-nb-reject, .termsfeed-com---nb .cc-nb-changep{
  border-radius: 50px !important;
}

.termsfeed-com---palette-light .cc-nb-okagree,
.termsfeed-com---palette-light .cc-nb-reject{
  background-color: var(--blue-light-color) !important;
}


#cookieConsent {
  background-color: var(--primary-color);
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 30px 15px;
  z-index: 99999999;
  display: none;
}
#cookieConsent p {
  color: var(--light-color);
  margin: 0;
  padding: 0;
}
#cookieConsent p a {
  color: var(--secondary-color);
}
#cookieConsent .cookieConsentOK {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  color: var(--light-color);
}

.equipment-check label {
  font-size: 13px;
}

/* 
=============================================================
ADDITIONAL FILTER
=============================================================
*/
.additional-filters .form-element {
  margin-bottom: 0;
  height: 100%;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  border-radius: 30px;
  padding: 0.5rem 1rem;
}

.additional-filters .form-element .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--primary-color);
}

.additional-filters .btn {
  height: 100%;
}

/* 
=============================================================
CARDS
=============================================================
*/

.custom-card {
  position: relative;
  margin-bottom: 2rem;
}

.custom-card .box-link {
  background: linear-gradient(0deg, #ffffff 10%, rgba(255, 255, 255, 0) 50%);
}

.custom-card-inner {
  color: var(--light-color);
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.custom-card .img-wrapper img {
  height: 400px;
  object-fit: cover;
}

.card {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  padding: 20px;
  border-radius: 50px;
  border: 1px dashed var(--blue-dark, #99c9ff);
  background: #fff;
}

.card:hover {
  box-shadow: 0px 9px 37px 3px rgba(0, 49, 89, 0.15);
  border-radius: 50px;
}

/* .card:hover img {
  z-index: 3;
  transform: scale(1.02);
} */
@media (min-width: 767px) {
  .card {
    padding: 20px 30px;
  }

  .custom-card-wrapper .custom-card-box.even {
    margin-top: -4rem;
  }

  .custom-card {
    margin-bottom: 5rem;
    padding: 0 2rem;
  }
}

@media (min-width: 991px) {
  .card .card-grid {
    display: grid;
    grid-template-columns: 33vw 1fr;
  }

  .custom-card .img-wrapper img {
    height: 690px;
  }
}

@media (min-width: 1299px) {
  .card .card-grid {
    grid-template-columns: 30vw 1fr;
  }
}
@media (max-width: 1199px) {
  .card .card-grid {
    grid-template-columns: 38vw 1fr;
  }
}
.card .yacht-compare {
  position: absolute;
  bottom: -5px;
  right: -5px;
  cursor: pointer;
  background: var(--orange-color);
  padding: 10px;
  border-radius: 50%;
  z-index: 2;
}

.card .yacht-compare .like-sticker .icon {
  height: 24px;
  width: 24px;
}
.card .discount-sticker {
  position: absolute;
  right: -2px;
  top: 0px;
  background-color: var(--yellow-color);
  z-index: 1;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  padding: 1rem;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
}
.card .discount-sticker span {
  display: inline-flex;
  padding: 0px 5px 5px;
}
.card .card-img {
  display: block;
  cursor: pointer;
  height: 100%;
  border-radius: 50px;
  border: none;
  background: transparent;
}

.card .card-img img {
  transition: all 0.3s ease-in-out;
  object-fit: cover;
  object-position: center;
  border-radius: 50px;
  height: 280px;
  max-height: 100%;
}
.card-img .tags {
  left: 10px;
  top: 10px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  display: flex;
}
.card-img .tags .tag {
  background-color: var(--secondary-color);
  padding: 2px 10px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 0.6rem;
}
.card-img .tags .tag span {
  color: var(--light-color);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.card .card-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--primary-color);
  margin-top: 10px;
}
.card .card-text.card-button {
  background: transparent;
  border: none;
  box-sizing: border-box;
  text-align: initial;
  width: 100%;
}
.card .card-text.card-button .realtime {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: inherit;
}
.card .card-text.card-button .boat-info-wrapper,
.card .card-text.card-button .boat-info-grid,
.card .card-text.card-button .price-wrapper {
  width: 100%;
}
.card .card-text .card-yacht-name {
  font-size: 23px;
}
.card .card-text .card-from-to {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}
.card .card-text .boat-info-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card .card-text .boat-info-grid .boat-info {
  display: flex;
  flex-direction: column;
  flex: 1 auto;
  padding: 5px 0;
  position: relative;
}
.card .card-text .boat-info-grid .boat-info.separator {
  border-left: 1px solid var(--blue-light-color);
  height: 20px;
}
.card .card-text .boat-info-grid .boat-info:last-of-type {
  border-right: 0;
  justify-content: center;
}
.card .card-text .boat-info-grid .boat-info:nth-last-child(2) {
  justify-content: center;
}
.card .card-text .boat-info-grid .boat-info .boat-info-icon {
  margin-right: 5px;
}
.card .card-text .boat-info-grid .boat-info .data-number {
  color: var(--primary-color);
  font-weight: 700;
  font-family: "soleil", sans-serif;
  font-size: 24px;
  line-height: 27px;
  text-align: center;
}
.card .card-text .boat-info-grid .boat-info .data-number > * {
  display: none;
}
.card .card-text .boat-info-grid .boat-info .data-number.data-lenght {
  white-space: nowrap;
  overflow: hidden;
  max-width: 7ch;
}
.card .card-text .boat-info-grid .boat-info .data-number.data-year {
  white-space: nowrap;
  overflow: hidden;
  max-width: 4ch;
}

.card .card-text .boat-info-grid .boat-info .data-number b {
  display: none;
}
.card .card-text .boat-info-grid .boat-info .data-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
}
.card .card-text .boat-info-grid .boat-info .data-value {
  font-weight: 600;
}
.card .card-text .boat-info-grid .boat-info .data-title > * {
  display: none;
}
.card .card-text .boat-info-grid .boat-info img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.card .card-text .boat-info-grid .boat-info-separator {
  height: 100%;
  width: 1px;
  margin: 5px 0;
}
.card .card-base-name {
  font-family: "soleil", sans-serif;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  min-height: 40px;
}

.card .price-wrapper {
  width: 100%;
  background: transparent;
  box-sizing: border-box;
  border: none;
}

.card .price-wrapper .price-row {
  display: flex;
  align-items: center;
}
.card .price-wrapper .price {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 23px;
  font-weight: 700;
  color: var(--primary-color);
}
.card .price-wrapper .price .old-price {
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
  color: var(--blue-light-color);
  margin-left: 0.8rem;
}

.card .price-wrapper .dates {
  font-size: 14px;
  color: var(--primary-color);
}
.card .price-wrapper .price .price-text {
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
}
.card .price-wrapper .single-price {
  display: inline-flex;
  justify-content: space-between;
  flex: 1;
}
.card .card-footer {
  background-color: transparent;
}
/* home fleet card */
.boattype-article {
  width: 100%;
}
@media (min-width: 575px) {
  .boattype-article {
    width: 50%;
  }
}
@media (min-width: 767px) {
  .boattype-article {
    width: 33%;
  }
}
@media (min-width: 1199px) {
  .boattype-article {
    width: 20%;
  }
}
.boattype-card-middle {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}
@media (min-width: 991px) {
  .boattype-card-middle {
    padding: 0 4rem;
  }
}
.boattype-card {
  border-radius: 10px;
  height: 380px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (min-width: 767px) {
  .boattype-card {
    height: 320px;
  }
}
@media (min-width: 991px) {
  .boattype-card {
    height: 450px;
  }
}
.boattype-card:hover {
  transform: scale(1.02);
}
.boattype-card img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
/* list fleet card */
.fleet-card {
  transition: all 0.3s ease-in-out;
  position: relative;
  height: 400px;
}
.fleet-card .box-link {
  border-radius: 8px;
}
.fleet-card:hover {
  box-shadow: 0px 2px 20px rgba(92, 104, 118, 0.4);
  transform: scale(1.02);
}
.fleet-card .title {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #f2eadf;
}
.fleet-card img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
/* home fleet card */
@media (min-width: 1199px) {
  .ourfleet-card-wrap:nth-child(even) {
    margin-top: 40px;
  }
}
.ourfleet-card {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.ourfleet-card .ourfleet-card-link {
  background: linear-gradient(356.75deg, rgba(46, 137, 202, 0.8) 4.62%, rgba(60, 145, 249, 0.1) 56.54%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.ourfleet-card .ourfleet-card-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}
.ourfleet-card:hover {
  transform: scale(1.02);
  box-shadow: 0px 2px 20px rgba(92, 104, 118, 0.4);
}
/* review card */
.review-card {
  position: relative;
  background-color: #fff;
  margin-top: 20px;
  padding-top: 100px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 575px) {
  .review-card {
    margin-top: 0;
  }
}
.review-card .review-card-avatar {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 30px;
  top: -20px;
}
.review-card .review-card-avatar img {
  border-bottom-right-radius: 40px;
}
.review-card .review-card-author {
  display: inline-flex;
  align-items: center;
}
.review-card .circle-separator {
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 50%;
  margin: 0 10px;
  background-color: var(--primary-color);
}

/* blog card */

.card-blog {
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.card-blog-title {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
  width: 100%;
  color: var(--secondary-color);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 1px 4px 50px 0px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1024px) {
  .card-blog {
    padding: 0 3rem;
  }

  .card-blog-title {
    flex-direction: column;
    top: -80px;
    right: -30px;
    bottom: unset;
    left: unset;
    width: 70%;
    padding: 1.5vw 2vw;
  }
}

/* price card */
.price-card-img {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px dashed var(--blue-light-color);
  padding-top: 0.8rem;
}

.price-card-img img {
  width: 140px;
  margin-right: 1.5rem;
}

.price-card header {
  padding: 10px 0;
}
.price-card .hidden-table {
  padding: 10px 0;
}
.price-card .hidden-table .dashed-line {
  margin: 0.8rem 0;
  border-top: 1px dashed var(--blue-light-color);
}
.price-card .price-calculation-table {
  width: 100%;
  border-spacing: 0 0.8rem;
}
.price-card .price-calculation-table th {
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 400;
}
.price-card .price-calculation-table #crew-label {
  width: 100%;
}
.price-card .price-calculation-table td {
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 15px;
}
.price-card .price-calculation-table.extras td {
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 8px;
  text-transform: none;
  color: #27ae60;
}
.price-card .price-calculation-table.extras td.table-data-last {
  color: #27ae60;
  font-weight: 400;
}

.price-card .price-calculation-table td self:not(.table-data-last, .table-data) {
  width: 50%;
}
.price-card .price-calculation-table .table-data-last {
  font-size: 16px;
  font-weight: 600;
  text-align: end;
  padding-left: 10px;
  color: var(--primary-color);
}
.price-card .price-calculation-table .table-data-last.total-price {
  font-size: 16px;
  font-weight: 600;
}
.price-card .price-calculation-table .table-data-last span {
  font-size: 11px;
}
.price-card .price-calculation-table td label {
  width: calc(100% - 80px);
}
.price-card .price-calculation-table td select {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 5px 10px;
  font-size: 14px;
}
.price-card .price-calculation-table .total-price-head {
  font-size: 16px;
  font-weight: 800;
}
.price-card .price-calculation-table .select-element:before {
  right: 10px;
  top: 18px;
  width: 18px;
}

.total_price_wrapper.fixed {
  position: fixed;
  top: 0;
  background: var(--light-color);
  left: 0;
  right: 0;
  margin: 0 4vw;
  width: calc(100% - 8vw);
  padding: 20px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--box-shadow);
}

.destination-card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.destination-card .box-link {
  background: linear-gradient(11deg, #0076fa 0%, rgba(0, 118, 250, 0) 40%);
  border-radius: 50px;
}

.destination-card img {
  height: 380px;
  width: 100%;
  border-radius: 50px;
  object-fit: cover;
  transition: var(--transition);
}

.destination-card:hover .box-link,
.destination-card:hover img {
  box-shadow: 0px 2px 10px rgba(92, 104, 118, 0.4);
}
.destination-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem;
  z-index: 2;
}

.section-home-work {
  background-size: cover !important;
}

.home-work-2 {
  margin-top: 0;
}

.home-destinations-desc {
  background-image: url(../../images/world.svg);
  background-repeat: no-repeat;
  background-size: 0;
  background-position: top right;
}

.home-yachts {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 767px) {
  .home-yachts {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-work-2 {
    margin-top: 3rem;
  }
}
@media (min-width: 991px) {
  .home-yachts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 991px) {
  .home-yachts .home-card:last-child {
    grid-column-start: 2;
    grid-column-end: 4;
  }
}

.home-card {
  position: relative;
  border-radius: 8px;
  height: 280px;
}
.card_blog-small .overlay,
.home-card .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0);
}

.home-card img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}

.home-card-title {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--light-color);
}

.home-card .home-card-title-desc {
  padding: 1rem;
  margin-top: -2rem;
  color: var(--light-color);
}
.card-overly {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  padding: 10px;
  cursor: pointer;
  background: linear-gradient(281.4deg, rgba(34, 77, 119, 0.8) 23.91%, rgba(36, 82, 128, 0.8) 95.1%);
  transition: all 0.3s ease-in-out;
}
.card-overly p,
.card-overly p > * {
  font-size: 14px !important;
}
.card-overly .line-link:hover {
  color: #fff;
}
.line-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.line-boxes p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #cbb26b;
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 767px) {
  .line-boxes p {
    width: calc(50% - 20px);
  }
}
@media (min-width: 991px) {
  .line-boxes p {
    width: calc(25% - 20px);
  }
}
.line-boxes p b {
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 1rem;
  color: #cbb26b;
}
.icon-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  position: relative;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}
.icon-text-box:nth-child(1),
.icon-text-box:nth-child(2),
.icon-text-box:nth-child(3) {
  max-width: calc(100% - 80px);
}
.icon-text-box:nth-child(1)::after,
.icon-text-box:nth-child(2)::after,
.icon-text-box:nth-child(3)::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: -45px;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 767px) {
  .icon-text-box:nth-child(1)::after,
  .icon-text-box:nth-child(2)::after,
  .icon-text-box:nth-child(3)::after {
    left: -60px;
  }
}
@media (min-width: 767px) {
  .icon-text-box:nth-child(1) {
    max-width: 60%;
  }
}
.icon-text-box:nth-child(1):after {
  background-image: url("../../images/icons/search.svg");
}
@media (min-width: 767px) {
  .icon-text-box:nth-child(2) {
    max-width: 80%;
  }
}
.icon-text-box:nth-child(2):after {
  background-image: url("../../images/icons/send.svg");
}
@media (min-width: 767px) {
  .icon-text-box:nth-child(3) {
    max-width: 60%;
  }
}
.icon-text-box:nth-child(3):after {
  background-image: url("../../images/icons/star.svg");
}
.double-img {
  position: relative;
}
.double-img .back-img {
  width: 65%;
  margin: auto;
}
@media (min-width: 767px) {
  .double-img .back-img {
    width: 70%;
  }
}
.double-img .front-img {
  width: 60%;
  margin: auto;
  position: absolute;
  right: 30px;
  bottom: 0;
  box-shadow: 0px 2px 20px rgba(92, 104, 118, 0.4);
}
@media (min-width: 767px) {
  .double-img .front-img {
    width: 70%;
    right: 0;
  }
}
.double-img .rotate-img {
  transform: rotate(4deg);
}
.double-img .rotate-img-reserve {
  transform: rotate(-4deg);
}
/* blog popular card */
.blog-popular {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.blog-popular:hover {
  box-shadow: 0px 2px 5px rgba(92, 104, 118, 0.4);
  transform: scale(1.01);
}

/* partners card */
.card-partners {
  padding: 2.5rem;
  border-radius: var(--border-radius-xl);
  background-color: rgba(242, 242, 242, 1);
}

.yachtlist-grid .boat-info-wrapper {
  border-top: 1px solid #f2eadf;
  border-bottom: 1px solid #f2eadf;
}

/* testimonial card */
.img-testimonial {
  height: 350px;
  object-fit: cover;
}
.testimonials-social {
  display: flex;
  justify-content: center;
}

.testimonials-card {
  position: relative;
}

.testimonials-card-content {
  margin-top: -3.5rem;
  padding: 2rem 1.5rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(25px);
}

.testimonials-card-content .separator {
  background-color: var(--primary-color);
  height: 13px;
  width: 2px;
  margin: 0 0.8rem;
}

@media screen and (min-width: 767px) {
  .testimonials-card-content {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem;
  }
}

/* 
=============================================================
HEADER 
=============================================================
*/

.header {
  position: absolute;
  width: 100%;
  z-index: 4;
  padding: 15px 0;
  background-color: transparent;
}

.header-blue {
  position: static;
  background-color: var(--secondary-color);
}

.header-blue.header-absolute {
  position: absolute;
}

.header-top {
  display: flex;
  justify-content: end;
}

.header-top-social {
  display: flex;
  align-items: center;
}

.header-yacht {
  background-color: var(--primary-color);
  position: static;
  margin-bottom: 2rem;
}
.header a,
.header .nav-link {
  color: var(--primary-color);
}

.back {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  cursor: pointer;
}
.back:hover {
  opacity: 0.7;
}

.header a:hover,
.header .nav-link:hover {
  color: var(--yellow-color);
}

.header .header_wrapper {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: end;
}

.header .header_wrapper .header_wrapper_logo {
  position: relative;
  margin: 0 3rem;
}
.header .header_wrapper .header_wrapper_logo .logo {
  height: 100%;
  width: 200px;
  transition: all 0.3s ease-in-out;
}

.header .header_wrapper .nav {
  display: flex;
}

.header .header_wrapper .nav.opened {
  display: block;
  position: fixed;
  background-color: var(--secondary-color);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 100px 20px 20px;
  overflow-y: auto;
}
.header .header_wrapper .nav.opened .nav-logo {
  display: none;
}

.footer-logo,
.nav-logo {
  width: 170px;
}

@media screen and (min-width: 768px) {
  .footer-logo,
  .nav-logo {
    width: 220px;
  }
}

.header .header_wrapper .nav.opened + .header-right {
  width: 100%;
  z-index: 1;
}

.header .header_wrapper .nav.opened .main-nav {
  flex-direction: column;
  margin-top: 0;
}
.header .header_wrapper .nav.opened .bookingrequest-mobile {
  margin-top: 2rem;
  display: block;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header .header_wrapper .nav.opened .lang-mobile {
  display: flex;
  margin-top: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header .header_wrapper .nav.opened .lang-mobile .active {
  color: var(--yellow-color);
}

@media (min-width: 767px) {
  .header .header_wrapper .nav.opened .main-nav {
    margin-top: 1rem;
  }
}
.header .header_wrapper .nav.opened .main-nav > li > .nav-link {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--light-color);
  border-bottom: 1px solid #eef2f8;
  padding: 15px 0;
}
.header .header_wrapper .nav.opened .main-nav > li span {
  top: 0px;
}
.wishlist {
  position: relative;
  cursor: pointer;
  height: 36px;
  width: 36px;
  justify-content: center;
}
.wishlist .count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.logo-mobile {
  margin: unset;
}

.logo-mobile img {
  width: 100px;
}

.hamburger.active span {
  color: var(--secondary-color);
}
.hamburger.active .hamburger_icons .icon-1,
.hamburger.active .hamburger_icons .icon-2,
.hamburger.active .hamburger_icons .icon-3 {
  background-color: var(--light-color);
}
.hamburger span {
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}
.hamburger .hamburger_icons {
  height: 32px;
  width: 32px;
  position: relative;
}
.hamburger .hamburger_icons .icon-1,
.hamburger .hamburger_icons .icon-2,
.hamburger .hamburger_icons .icon-3 {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 3px;
  background-color: var(--light-color);
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}
.hamburger .hamburger_icons .icon-1 {
  transform: translateY(-10px);
  animation-delay: 100ms;
}
.hamburger .hamburger_icons .icon-3 {
  transform: translateY(10px);
  animation-delay: 250ms;
}
.hamburger .hamburger_icons.icons-animate .icon-1 {
  transform: rotate(40deg);
}
.hamburger .hamburger_icons.icons-animate .icon-3 {
  transform: rotate(-40deg);
}
.hamburger .hamburger_icons.icons-animate .icon-2 {
  opacity: 0;
}
.lang-desktop .lang:hover .lang-list {
  visibility: visible;
  opacity: 1;
  z-index: 2;
}

.bookingrequest-mobile,
.lang-mobile,
.bookingRequest {
  display: none;
}
.lang {
  position: relative;
  cursor: pointer;
  padding: 2px 1.5rem 2px 0.5rem;
  border: 1px solid var(--light-color);
  border-radius: 50px;
}
.lang .lang-btn {
  position: relative;
  color: var(--light-color);
  font-size: 18px;
  font-weight: 600;
}

.lang .lang-btn span {
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  margin-right: 10px;
}
.lang .lang-btn img {
  width: 22px;
}
.lang .lang-list {
  padding: 0;
  width: max-content;
  position: absolute;
  right: 0;
  top: 35px;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 2px 20px rgba(92, 104, 118, 0.4);
  list-style: none;
}
.lang .lang-list li {
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid var(--light-color);
}

.lang:hover .lang-list,
.lang-list.active-lang {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

.lang .lang-list a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
}
.lang .lang-list a span {
  margin-right: 10px;
}
.lang .lang-list a img {
  width: 22px;
}
.lang .lang-list a:hover {
  color: var(--yellow-color);
}
/* main nav and sub menu*/
.main-nav {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  flex-grow: 1;
}
.nav.opened .main-nav {
  display: flex;
}
.main-nav li .nav-link {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: var(--light-color);
  padding: 0 2rem 0 0;
  cursor: pointer;
}
.nav .logo {
  padding-right: 2.2rem;
}

.main-nav li.has-submenu {
  position: relative;
}
.main-nav li.has-submenu span {
  position: absolute;
  background-position: 50%;
  background-repeat: no-repeat;
  position: absolute;
  right: -3px;
  top: -3px;
  width: 40px;
  height: 40px;
  background-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.lang .lang-btn::before,
.main-nav li.has-submenu span:before {
  border-style: solid;
  border-width: 0.1em 0.1em 0 0;
  border-color: var(--light-color);
  content: "";
  display: inline-block;
  height: 0.5rem;
  left: 42%;
  position: absolute;
  top: 38%;
  transform: rotate(135deg);
  vertical-align: top;
  width: 0.5rem;
}

.lang .lang-btn::before {
  right: -15px;
  left: unset;
  top: 8px;
}

.main-nav li.has-submenu span.active {
  transform: rotate(180deg);
}

.main-nav li.has-submenu.active {
  transform-origin: center bottom;
}
.main-nav li.has-submenu.active:before {
  transform: rotate(180deg);
}
.main-nav li.has-submenu a.active .sub-menu {
  display: block;
  position: static;
}

.header .header_wrapper .nav.opened .main-nav .sub-menu {
  border-radius: 0;
  box-shadow: none;
  background-color: unset;
}

.header .header_wrapper .nav.opened .main-nav .sub-menu li a {
  color: var(--light-color);
}

.main-nav .sub-menu {
  position: unset;
  background-color: #fff;
  padding: 20px 0;
  display: none;
  transition: none;
  width: 100%;
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0px 2px 20px rgba(92, 104, 118, 0.4);
}

.main-nav .sub-menu li {
  padding: 0.5rem;
}
.main-nav .sub-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  padding: 0 1rem;
  color: var(--primary-color);
}

.main-nav .sub-menu .has-dropdown-submenu {
  position: relative;
}

.main-nav .sub-menu .has-dropdown-submenu .has-dropdown-menu {
  position: unset;
  width: calc(100% - 40px);
  padding: 0 0 0 10px;
  margin-left: 25px;
  background-color: rgba(85, 89, 98, 0.35);
  left: 0;
  display: none;
}

.main-nav .sub-menu .has-dropdown-submenu .has-dropdown-menu a {
  font-size: 14px;
  line-height: 2;
  padding: 4px;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
}
.main-nav .sub-menu .has-dropdown-submenu .has-dropdown-menu a:hover {
  color: var(--secondary-color);
}

.main-nav .sub-menu .has-dropdown-submenu span {
  transform: rotate(0deg);
  right: 7px;
  width: 12px;
}

.main-nav .sub-menu li:not(.has-dropdown-submenu) span {
  display: none !important;
}

.header_top {
  display: none;
  justify-content: space-between;
}

.header_top a {
  color: var(--light-color);
}

.header_top.remove {
  display: none;
}

.header_top--separator {
  display: inline-block;
  height: 60%;
  width: 1px;
  margin: 0 1rem;
  background-color: var(--light-color);
}

/* 
=============================================================
HERO SECTION
=============================================================
*/
.hero-section {
  background-size: cover !important;
  position: relative;
  height: calc(100vh + 150px);
}

@media (min-width: 1201px) {
  .hero-wave {
    background-image: url("../../images/hero-wave.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
  }
  .hero-section {
    height: 100vh;
  }
}

@media (min-width: 1201px) and (min-height: 680px) {
  .hero-wave {
    height: 190px;
  }
}

@media (min-width: 1201px) and (min-height: 1000px) {
  .hero-wave {
    height: 20vh;
  }
}

.hero-section .home-hero-content {
  position: absolute;
  top: 25vh;
  left: 0;
  right: 0;
  width: calc(100% - 28px);
  margin: auto;
  text-align: center;
  z-index: 2;
}

.hero-section .hero-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 768px;
}

.hero_inner-pages {
  background-size: inherit;
  color: var(--light-color);
  display: flex;
  height: auto;
  position: relative;
  padding-top: 40px;
}

@media (min-width: 767px) {
  .hero_inner-pages {
    height: 380px;
    background-size: cover;
  }

  .hero_inner-pages:after {
    content: "";
    background-image: url("../../images/bg-wave-test.svg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

/* @media (min-width: 992px) {
  .hero_inner-pages {
    height: 600px;
  }

  .hero_inner-pages:after {
    height: 400px
  }
}

@media (min-width: 1600px) {
  .hero_inner-pages {
    height: 600px;
  }

  .hero_inner-pages:after {
    height: 350px
  }
} */

@media (min-width: 1800px) {
  .hero_inner-pages {
    height: 400px;
  }
  .hero_inner-pages:after {
    height: 200px;
  }
}

/* .hero_inner-pages.hero_small {
  padding: 4vw 0px;
} */

.hero_inner-pages .hero_content .breadcrumb {
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

@media (min-width: 576px) {
  .hero_inner-pages .hero_content .breadcrumb {
    justify-content: end;
  }
}

.hero_inner-pt {
  padding-top: 10rem;
}

@media (min-width: 576px) {
  .hero_inner-pt {
    padding-top: 15rem;
  }
}

.hero_inner-small {
  /*  padding-top: 10rem; */
  color: var(--primary-color);
}

.hero_inner-small .breadcrumb li a,
.hero_inner-small .breadcrumb li + li:before,
.hero_inner-small {
  color: var(--secondary-color);
}

.hero-absolute {
  padding: 2rem 0;
  bottom: 0;
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  width: 100%;
  top: 200px;
  display: block;
}

@media screen and (min-width: 768px) {
  .hero-absolute {
    display: flex;
    align-items: center;
    top: 0;
  }
}

.hero-absolute .pt-300 {
  padding-top: 25vh;
}

.hero-slider {
  z-index: -1;
  height: 100vh;
}
.hero-slider .swiper-slide {
  background-size: cover !important;
}
.hero-slide-absolute {
  position: absolute;
  top: 25%;
  left: 0;
  transform: translateY(-50%);
  right: 0;
  text-align: center;
}

.hero-slide-absolute .swiper-pagination {
  bottom: -30px;
}

.swiper-pagination .swiper-pagination-bullet {
  background: #d7dde4;
  opacity: 1;
  height: 16px;
  width: 16px;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #9fcbff;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.hero-slide-absolute .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  background: #f2f2f2;
  height: 3px;
  width: 25px;
  border-radius: 0;
  opacity: 1;
}
.hero-slide-absolute .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--secondary-color);
}
@media screen and (min-width: 575px) {
  .hero-slider {
    height: 100%;
  }
  .hero-slide-absolute {
    top: 50%;
  }
}
.hero-slider img {
  height: 100%;
  object-fit: cover;
}

/* 
=============================================================
HOME
=============================================================
*/

.home-icons {
  display: flex;
  flex-wrap: wrap;
}

.home-icon {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 1px 2px 40px 3px rgba(95, 125, 149, 0.1);
  backdrop-filter: blur(25px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 576px) {
  .home-icon {
    width: calc(50% - 25px);
    margin-right: 25px;
  }
}

.home-icon-img {
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.home-icon-1 {
  background-image: url("../../images/icons/boat.svg");
}
.home-icon-2 {
  background-image: url("../../images/icons/globe.svg");
}
.home-icon-3 {
  background-image: url("../../images/icons/boats.svg");
}
.home-icon-4 {
  background-image: url("../../images/icons/security-payment.svg");
}
.home-icon-5 {
  background-image: url("../../images/icons/verified.svg");
}

@media (min-width: 992px) {
  .home-icon {
    width: calc(33.33% - 25px);
  }
}

@media (min-width: 1200px) {
  .home-icon {
    width: calc(20% - 25px);
  }
}

.newsletter {
  max-width: 880px;
  width: 100%;
  margin: auto;
}

.newsletter-form ::-webkit-input-placeholder {
  color: var(--secondary-color);
  font-family: "Soleil", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.newsletter-form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(---secondary-color);
  font-family: "Soleil", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.newsletter-form ::placeholder {
  color: var(--secondary-color);
  font-family: "Soleil", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.newsletter-form input {
  border: none !important;
  padding: 20px;
  border-radius: 0 !important;
  background: transparent;
  color: var(--secondary-color);
}

.newsletter-form-wrapper {
  position: relative;
  border-radius: 50px;
  background: #99c9ff;
  backdrop-filter: blur(40px);
  max-width: 370px;
  width: 100%;
}

.newsletter-form-btn {
  position: absolute;
  border: none;
  background: transparent;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#mc_embed_signup .indicates-required {
  text-align: left !important;
  width: 100%;
  color: var(--light-color);
  font-size: 14px;
}

#mc_embed_signup form {
  margin: 0 !important;
}

#mc_embed_signup #mce-success-response {
  color: var(--light-color) !important;
  padding: 0;
  width: 100%;
  margin: 1rem 0 0 0 !important;
}

.btn-newsletter {
  position: static;
  width: 100% !important;
  height: 100%;
  display: flex;
  justify-content: center;
}

.btn-newsletter .btn {
  margin: 0 !important;
  padding: 0.5rem 2.5rem;
  width: 100% !important;
}

@media (min-width: 992px) {
  .btn-newsletter {
    width: unset !important;
    position: absolute;
    right: 20px;
    top: 15px;
    display: inline-block;
  }
}

.home-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 720px;
  width: 100%;
  margin: auto;
  gap: 20px;
}

.home-partners .partner-link {
  height: 100%;
  width: 100%;
  display: block;
}

.home-partners .partner-link img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.home-partners .partner {
  width: 50px;
  height: 50px;
}

.home-partners .partner.img-120 {
  width: 120px;
  height: 50px;
}

.home-partners .partner.img-120 img {
  object-fit: contain;
}

@media screen and (min-width: 767px) {
  .home-partners {
    justify-content: end;
  }
}

.section-about {
  position: relative;
}

/* .section-about::after{
  content:"";
  background-image: url(../../images/bg-about-down.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  bottom: 0;
  height: 300px;
  width: 100%;
  position: absolute;
}

.section-about::before{
  content:"";
  background-image: url(../../images/bg-about-up.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 300px;
  width: 100%;
  position: absolute;
} */

.img-about {
  z-index: 2;
  position: relative;
  height: 400px;
  object-fit: cover;
}

/* 
=============================================================
YACHTLIST / SEARCH RESULT
=============================================================
*/
.yachtlist-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}

/* 
=============================================================
BOOKING STEP
=============================================================
*/
.booking-step-modal-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  align-items: center;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: end;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.4s ease-in-out, width 0.3s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out, width 0.3s ease-in-out;
  transition: opacity 0.4s ease-in-out, width 0.3s ease-in-out;
  width: 0;
  z-index: 5;
}

.booking-step-modal-wrapper.open {
  opacity: 1;
  width: 100%;
}

.booking-step-modal-wrapper .booking-step-modal-overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: rgba(31, 41, 55, 0.502);
  height: 100%;
  width: 0;
}

.booking-step-modal-wrapper .booking-step-modal {
  background: #fff;
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 0;
}
.booking-step-modal-wrapper .booking-step-modal.open {
  width: 100%;
  overflow-x: scroll;
}

@media screen and (min-width: 767px) {
  .booking-step-modal-wrapper .booking-step-modal.open {
    width: 70vw;
  }
  .booking-step-modal-wrapper .booking-step-modal-overlay {
    width: 100%;
  }
}

.extras-table-right {
  width: 70%;
}
.extras-table tbody tr {
  border-bottom: 1px solid #ccc;
}
.extras-table .extras-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-top: 1px solid #e0e0e0;
}
.extras-table .extras-list:first-child {
  border-top: unset;
}

.extras-table tbody tr th,
.extras-table tbody tr td {
  padding: 5px 0;
}

.form-input-number {
  display: flex;
  justify-content: end;
}

.form-input-number input {
  padding: 10px;
  border: 1px solid #e0dfe0;
  text-align: center;
  width: 30%;
}

#contact_info_content input.form-control,
#contact_info_content textarea.form-control {
  background-color: transparent;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  font-size: 18px;
}

#contact_info_content .select2-container {
  border-bottom: 1px solid var(--primary-color);
}

#contact_info_content .select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 18px;
  color: var(--primary-color);
}

#contact_info_content input.form-control:focus,
#contact_info_content textarea.form-control:focus {
  border: 1px solid var(--primary-color);
}

#contact_info_content .form-control::-webkit-input-placeholder,
#contact_info_content textarea.form-control ::-webkit-input-placeholder,
#contact_info_content input.form-control ::-webkit-input-placeholder,
#contact_info_content select.form-select ::-webkit-input-placeholder {
  /* Edge */
  color: var(--primary-color) !important;
  text-transform: none;
  font-size: 18px;
}
#contact_info_content .form-control::-ms-input-placeholder,
#contact_info_content textarea.form-control :-ms-input-placeholder,
#contact_info_content input.form-control :-ms-input-placeholder,
#contact_info_content select.form-select :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--primary-color) !important;
  text-transform: none;
  font-size: 18px;
}
#contact_info_content .form-control::placeholder,
#contact_info_content textarea.form-control ::placeholder,
#contact_info_content input.form-control ::placeholder,
#contact_info_content select.form-select ::placeholder {
  color: var(--primary-color) !important;
  text-transform: none;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .tooltip-wrapper {
    position: relative;
    display: none;
  }
}
.tooltip {
  visibility: hidden;
  position: absolute;
  background: #ffffff;
  left: 0px;
  top: 55px;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 12px;
  font-weight: normal;
  z-index: 2;
  width: max-content;
}

@media screen and (min-width: 768px) {
  .tooltip {
    left: 15px;
    top: unset;
  }
}
.tooltip.hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 9999s, opacity 0.1s linear;
}

.tooltip.show {
  visibility: visible;
  opacity: 1;
}

/* 
=============================================================
TABLE
=============================================================
*/
.custom-table {
  margin: 3rem 0;
}

.custom-table tbody th,
.custom-table tbody td {
  border: 1px solid #e0e0e0;
}

.custom-table tbody th {
  background: var(--primary-color);
  color: var(--light-color);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 16px;
}

.custom-table tbody tr td {
  padding: 20px;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color);
}

.custom-table tbody tr:nth-child(even) {
  background: rgba(0, 180, 252, 0.2);
}

/* 
=============================================================
BLOG
=============================================================
*/
.blog-tag {
  border: 2px solid #bdbdbd;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #bdbdbd;
  padding: 0.5rem 2.2rem;
  width: max-content;
}

.blog-tag:hover {
  border: 2px solid var(--blue-light-color);
  color: var(--blue-light-color);
}

.hero-blog {
  height: 480px;
  object-fit: cover;
}

.share {
  border-top: 1px solid #bdbdbd;
  padding-top: 3rem;
  margin-top: 5rem;
  display: flex;
  justify-content: flex-end;
}

/* 
=============================================================
DESTINATIOS
=============================================================
*/
.sailing-area-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}

.card-blur {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  box-shadow: 5px 4px 68px 0px rgba(153, 201, 255, 0.15);
  padding: 2rem;
}

@media screen and (min-width: 576px) {
  .card-blur {
    padding: 60px;
  }
}

@media screen and (min-width: 767px) {
  .sailing-area-card {
    grid-template-columns: 1fr 50%;
  }
  .sailing-area-card.odd .card-blur {
    margin-top: 3rem;
    margin-right: -3rem;
  }
  .sailing-area-card.even .card-blur {
    margin-top: 3rem;
    margin-left: -3rem;
  }
}

/* 
=============================================================
ROUTE/ITINERARIES
=============================================================
*/
.routes-wrapper {
  margin-bottom: 2rem;
}

.routes-link {
  position: static;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.routes-link-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media (min-width: 992px) {
  .routes-link {
    position: absolute;
  }
  .routes-wrapper {
    margin-bottom: 5rem;
  }
}

.itinarary-card {
  position: relative;
  border-radius: 50px;
  box-shadow: 1px 2px 40px 3px rgba(95, 125, 149, 0.1);
  height: 400px;
}

.itinarary-card img {
  height: 100%;
  object-fit: cover;
}

.itinarary-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--light-color);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 1.5rem;
}

.itinarary-card-label {
  font-size: 13px;
  font-weight: 600;
  background-color: var(--light-color);
  border-radius: 50px;
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 8px;
}

.itinerary-inner-label {
  background-color: var(--orange-color);
  font-size: 16px;
  color: var(--light-color);
  font-weight: 600;
  padding: 8px 14px;
  margin-right: 34px;
  border-radius: 50px;
  width: max-content;
}

.itinerary-inner-images {
  display: grid;
  grid-template-columns: 2fr 50%;
  grid-gap: 20px;
}

.itinerary-inner-images div:nth-child(2) {
  grid-row: span 2;
  display: flex;
  align-items: center;
}

/* 
=============================================================
ERROR PAGES
=============================================================
*/
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 100vh;
  background-color: var(--primary-color);
}
.error-page .error-page-content {
  text-align: center;
}
.error-page .error-page-content h3,
.error-page .error-page-content p {
  margin-top: 20px;
  color: var(--light-color);
}
.error-page .error-page-btn {
  display: block;
  margin: 40px auto 0;
  padding: 16px 24px;
  width: max-content;
  border-radius: 50px;
  background: var(--blue-light-color);
  color: var(--light-color);
  transition: all 0.3s ease-in-out;
}
.error-page .error-page-btn:hover {
  color: var(--light-color);
  background: var(--primary-color);
}

/* 
=============================================================
FOOTER
=============================================================
*/
.footer-top {
  display: none;
}

@media screen and (min-width: 767px) {
  .footer-top {
    display: block;
    position: relative;
    width: 100%;
    height: 100px;
  }
}

@media screen and (min-width: 1600px) {
  .footer-top {
    height: 200px;
  }
}

.footer-top:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url(../../images/bg-footer-wave.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer {
  position: relative;
  padding-top: 2rem;
  color: var(--light-color);
}

.footer-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 28, 61, 0.9);
}

footer .payment-icons {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  footer .payment-icons {
    align-items: center;
    justify-content: center;
  }
}
footer .payment-icons .payment-icon {
  height: 35px;
  display: block;
  margin-right: 10px;
  margin-bottom: 20px;
}
footer .payment-icons .payment-icon.secure-icon {
  height: 35px;
  width: 75px;
}
footer .payment-icons .payment-icon.secure-icon img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
footer .payment-icons .payment-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 575px) {
  footer .logo {
    width: 180px;
  }

  #specification .specification-list .spec-item.spec-item-mobile {
    flex-direction: column;
    width: 100%;
  }
}
footer .footer-links li {
  margin-bottom: 10px;
}
footer .footer-links {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  font-family: "Soleil", sans-serif;
  line-height: 25px;
  color: var(--light-color);
  margin-left: 0;
}
footer .footer-links:hover {
  color: var(--yellow-color);
}
footer .footer-items {
  display: flex;
  flex-direction: column;
  margin: auto;
  text-align: center;
}
@media (min-width: 575px) {
  footer .footer-items {
    align-items: flex-start;
    max-width: max-content;
  }
}
@media (min-width: 767px) {
  footer .footer-items {
    text-align: left;
  }
}
@media (min-width: 991px) {
  footer .footer-items {
    margin: auto;
  }
}
footer .footer-items p {
  font-size: 14px;
  line-height: 25px;
}
.copyright {
  padding: 20px 0;
  background-color: transparent;
}
.copyright .copyright-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.copyright .copyright-wrapper img {
  width: 180px;
}
@media (min-width: 575px) {
  .copyright .copyright-wrapper {
    justify-content: space-between;
    flex-direction: row;
  }
}
.copyright p {
  font-size: 14px;
  margin-bottom: 14px;
}
@media (min-width: 575px) {
  .copyright p {
    margin-bottom: 0;
  }
}
.copyright img {
  width: 100%;
  max-width: 640px;
}

.footer-border-bottom {
  height: 10px;
  width: 100%;
  background: var(--gradient);
}

.footer-company-info {
  font-size: 12px;
  opacity: 0.5;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-company-info {
    text-align: left;
  }
}

.footer-bottom-line {
  height: 40px;
  width: 100%;
  margin-top: 2rem;
  background-color: rgba(6, 220, 237, 1);
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
}

/* 
=============================================================
SCROLL TO TOP
=============================================================
*/
.scroll-progress {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  z-index: 5;
  display: none;
  box-shadow: 0px 2px 20px rgba(92, 104, 118, 0.4);
  cursor: pointer;
}
.scroll-progress.show-progress {
  display: grid;
}
.scroll-progress .scroll-progress-value {
  height: calc(100% - 5px);
  width: calc(100% - 5px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #0c3663;
}

#specification.specification-list .spec-item {
  display: flex;
  flex-direction: row;
  width: calc(50% - 12px);
  border: 1px dashed var(--blue-light-color);
  border-radius: 20px;
  background-color: var(--light-color);
  margin-bottom: 0;
}

@media screen and (min-width: 767px) {
  #specification.specification-list .spec-item {
    width: calc(25% - 12px);
  }
}

/* 
=============================================================
YACHT DETAILS
=============================================================
*/
.yachtdetails .thumb-small {
  padding: 0;
}

.yachtdetails-images-wrapper {
  border-top: 1px dashed var(--blue-light-color);
  padding-top: 27px;
}

.yachtdetails-aside {
  padding: 2rem 1rem;
  z-index: 2;
  border: 1px dashed var(--blue-light-color);
  border-radius: 50px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  background-color: var(--light-color);
}

@media (min-width: 992px) {
  .yachtdetails-aside {
    padding: 2rem;
  }
  .yachtdetails .thumb-small {
    padding: 5em;
  }
}

.yachtdetails-aside-box {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed var(--blue-light-color);
}

.yachtdetails img {
  border-radius: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}

.spec-item-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spec-item.box {
  padding: 1rem 0.8rem;
  width: calc(50% - 12px);
  align-items: center;
}

.spec-item.box svg {
  width: 60px;
}

@media (min-width: 992px) {
  .spec-item.box {
    width: calc(25% - 12px);
  }
}

.yachtdetails-calendar {
  height: 0;
  opacity: 0;
  transition: var(--transition);
}

.yachtdetails-calendar.show {
  height: 100%;
  opacity: 1;
}

.sale-specification-list {
  display: flex;
  flex-wrap: wrap;
}

.sale-specification-list .spec-item {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-bottom: 20px;
}
.sale-specification-list .spec-item p {
  margin-bottom: 0;
}
.sale-specification-list .spec-item p:first-child {
  font-size: 14px;
  text-transform: uppercase;
}
.sale-specification-list .spec-item p:last-child {
  font-size: 18px;
  font-weight: 500;
}

#map {
  height: 450px;
}

.review-card {
  position: relative;
  background-color: #fff;
  margin-top: 20px;
  padding-top: 100px;
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid #e0e0e0;
}

.yacht-reviews .review-star-fill {
  left: 0;
  position: absolute;
  z-index: 2;
}

.yacht-reviews .review-star-empty {
  z-index: 0;
}
@media (min-width: 575px) {
  .review-card {
    margin-top: 0;
  }
}
.review-card .review-card-avatar {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 30px;
  top: -20px;
}
.review-card .review-card-avatar img {
  border-bottom-right-radius: 40px;
}
.review-card .review-card-author {
  display: inline-flex;
  align-items: center;
}
.review-card .circle-separator {
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 50%;
  margin: 0 10px;
  background-color: #0c3663;
}

.yachdetails-date-control {
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 22px;
  background-color: transparent;
}

.yachdetails-date-control:focus {
  border: none;
}

/* 
=============================================================
CONTACT
=============================================================
*/
.contact-box {
  background-color: rgba(255, 213, 0, 0.15);
  padding: 2rem 1.5rem;
}

@media screen and (min-width: 567px) {
  .contact-box {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
}

@media screen and (min-width: 1200px) {
  .contact-box {
    padding: 4rem 10rem;
  }
}

.contact textarea.form-control,
.contact input.form-control,
.contact select.form-select {
  background-color: transparent;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact-info a {
  transition: var(--transition);
}
.contact-info a:hover {
  transform: scale(1.05);
}

#contact_form textarea.form-control,
#contact_form input.form-control,
#contact_form select.form-select {
  background-color: transparent;
  color: var(--primary-color);
  padding: 6px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border: transparent;
  border-bottom: 1px dashed var(--secondary-color);
  border-radius: 0;
}
#contact_form .form-control::-webkit-input-placeholder,
#contact_form textarea.form-control ::-webkit-input-placeholder,
#contact_form input.form-control ::-webkit-input-placeholder,
#contact_form select.form-select ::-webkit-input-placeholder {
  /* Edge */
  color: rgba(140, 140, 140, 1) !important;
  font-size: 13px;
}
#contact_form .form-control::-ms-input-placeholder,
#contact_form textarea.form-control :-ms-input-placeholder,
#contact_form input.form-control :-ms-input-placeholder,
#contact_form select.form-select :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(140, 140, 140, 1) !important;
  font-size: 13px;
  text-transform: capitalize;
}
#contact_form .form-control::placeholder,
#contact_form textarea.form-control ::placeholder,
#contact_form input.form-control ::placeholder,
#contact_form select.form-select ::placeholder {
  color: rgba(140, 140, 140, 1) !important;
  font-size: 13px;
  text-transform: capitalize;
}

#contact_form .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: rgba(140, 140, 140, 1) !important;
  font-size: 13px;
  text-transform: capitalize;
}

#contact_form .form-control {
  border: 1px solid var(--primary-color);
}

#contact_form .g-recaptcha {
  width: 100%;
}
#contact_form .select2-container--default .select2-selection--single {
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  height: 37px;
  /* padding-top: 10px; */
  border-radius: 0;
}
#contact_form .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
}

#contact_form .select2-container--default .select2-selection--single {
  border-bottom: 1px dashed var(--secondary-color);
}

#contact_form .select-element:before {
  right: 0;
}

/* 
=============================================================
YACHT ON SALE
=============================================================
*/
.sales-card {
  transition: var(--transition);
}
.sales-card:hover {
  transform: scale(1.03);
  z-index: 2;
}

/* 
=============================================================
RESPONSIVE
=============================================================
*/
/* min 575px */
@media (min-width: 575px) {
  .header_top {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 5;
    padding: 0.8rem 0;
  }
  .header .header_wrapper .logo-wrapper .logo {
    width: 100%;
  }
  /*   .hero-section {
    height: 120vh;
  } */
  .hero-absolute {
    padding: unset;
  }

  .home-destinations-desc {
    background-size: 300px;
  }

  .home-card {
    min-height: 280px;
  }

  .lang-mobile {
    display: none;
  }

  .yachtlist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
  }

  .sale-specification-list .spec-item {
    width: 33.33%;
  }
}

/* min 767px */
@media (min-width: 767px) {
  .w500 {
    max-width: 50vw;
  }
  .container-1200,
  .custom-container {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  body .breadcrumb {
    display: flex;
  }

  .hero-section .home-hero-content {
    top: 30vh;
    width: 100%;
  }

  .pt-6 {
    padding-top: 100px;
  }

  .mt-6 {
    margin-top: 100px;
  }

  .mt-negative-10 {
    margin-top: -10%;
  }

  .pt-120 {
    padding-top: 80px;
  }

  .pb-120 {
    padding-bottom: 80px;
  }

  .mt-120 {
    margin-top: 80px;
  }

  .mb-120 {
    margin-bottom: 80px;
  }
  /*   .yachts-slider {
    padding-bottom: 50px;
  } */

  .sale-specification-list .spec-item {
    width: 23%;
  }
}

/* min 991px */
@media (min-width: 991px) {
  .section {
    padding-top: 120px;
  }

  .hero-section .home-hero-content {
    top: 40vh;
  }

  .article-padding-left {
    padding-left: 10vw;
  }

  .article-padding-right {
    padding-right: 10vw;
  }

  .litepicker .day-item {
    font-size: 16px;
  }
  .advanced-search-modal .modal-dialog {
    max-width: 75vw;
  }
  .main-search-form .main-search-wrapper .search-fileds {
    border-radius: 8px;
    margin-bottom: 0;
  }
}

/* min 1199px */
@media (min-width: 1199px) {
  /*   .pt-120 {
    padding-top: 120px;
  }

  .pb-120 {
    padding-bottom: 120px;
  } */

  /*   .mt-120 {
    margin-top: 120px;
  }

  .mb-120 {
    margin-bottom: 120px;
  } */

  .bookingRequest {
    display: block;
  }
  .hamburger {
    display: none;
  }

  #aside-search-open,
  #aside-search-close {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  .header .header_wrapper .nav .lang-desktop {
    display: none;
  }
  .header .header_wrapper .nav .lang-mobile {
    border-bottom: 1px solid #9ebcce;
    margin-top: 20px;
    padding-bottom: 10px;
    padding-right: 40px;
    text-align: right;
  }
  .header .header_wrapper .nav .lang-mobile .lang-btn:before {
    right: -30px;
  }
  .header .header_wrapper .nav .lang-mobile .lang-btn.active-lang:before {
    top: 30%;
    transform: rotate(180deg);
  }
  .header .header_wrapper .nav .lang-mobile .lang .lang-list.active-lang {
    position: static;
    visibility: visible;
    opacity: 1;
    width: 100%;
    margin-top: 0.4rem;
    z-index: 5;
  }

  .header.header-shrink .main-nav li.has-submenu span:before {
    border-color: var(--primary-color);
  }

  .main-nav li.has-submenu span {
    top: 9px;
    width: 16px;
    height: 8px;
    right: 16px;
    background-size: contain;
  }

  .main-nav .sub-menu .has-dropdown-submenu:hover .has-dropdown-menu {
    display: block;
  }
  .main-nav li.has-submenu span:before {
    border-color: var(--light-color);
    width: 0.45em;
    height: 0.45em;
    left: 0;
    position: relative;
    top: 0;
  }

  .main-nav li:hover .sub-menu {
    display: block;
    animation: growDown 0.3s ease-in-out forwards;
    transform-origin: top center;
    padding: 10px 0;
  }
  .main-nav .sub-menu {
    width: max-content;
    position: absolute;
    transition: all 0.3s ease-in-out;
    padding: 0;
  }

  .header .main-nav li.has-submenu:hover span:before {
    border-color: var(--light-color);
  }

  .main-nav .sub-menu .has-dropdown-submenu .has-dropdown-menu {
    background-color: #041a62;
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: unset;
    width: max-content;
    padding: 20px;
  }
  .main-nav .sub-menu .has-dropdown-submenu .has-dropdown-menu a {
    padding: 0.2 1rem;
  }
  .main-nav .sub-menu .has-dropdown-submenu span {
    transform: rotate(-90deg);
  }

  .section {
    padding-top: 150px;
  }

  .btn.btn-lg {
    font-size: 18px;
    line-height: 2;
  }
  .home-card.first {
    height: 100%;
  }
  .home-card {
    height: 370px;
  }
}

@media (min-width: 1200px) {
  .header .header_wrapper .nav .lang-mobile {
    display: none;
  }
  .header .header_wrapper .nav .wishlist {
    padding: unset;
  }

  .card-blue {
    background-color: transparent;
    background-image: url(../../images/wave-bg-blue.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .home-about {
    background-color: transparent;
    background-image: url(../../images/bg-val.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    height: 380px;
    max-height: unset;
  }
}

@media (min-width: 1920px) {
  .home-hero-wrapper .search-container {
    max-width: 600px;
    margin: auto;
  }
}

/* Landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 910px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .hero-section:after {
    display: none;
  }
  .header .header_wrapper .logo-wrapper {
    width: 80px;
  }

  /*  .hero-absolute {
    position: static;
    padding: 0;
    background: var(--primary-color);
  } */
}

@media screen and (max-height: 375px) and (max-width: 1100px) {
  .hero-section {
    height: auto;
  }
  .hero-section .hero-slider {
    height: auto;
  }
  .hero-section:after {
    display: none;
  }
}

@media (max-width: 1199px) {
  #yachtlist:before {
    content: "";
    position: fixed;
    z-index: 9;
    background-color: rgba(74, 74, 74, 0.8);
    height: 100%;
    width: 100%;
    left: -100%;
    opacity: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
  }
  #yachtlist.active-search:before {
    left: 0%;
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
  #yachtlist.active-search #aside-search {
    width: 100%;
    padding: 0;
    margin: 0;
    left: 0vh;
    opacity: 1;
    background-color: var(--light-color);
    padding: 2rem;
  }
  #aside-search {
    position: fixed;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
    width: 40vw;
    left: -40vw;
    height: 100%;
    transition: all 0.75s ease;
    z-index: 10;
    opacity: 0;
    background: var(--grey-light-color);
    transition: all 0.3s ease-in-out;
  }

  .additional-filters {
    padding: 1rem 2rem;
  }
}

/* FOR PRINT */
@media screen {
  #printSection {
    display: none;
  }
}

@media print {
  body * {
    visibility: hidden;
  }
  #printSection,
  #printSection * {
    visibility: visible;
    -webkit-print-color-adjust: exact !important;
  }
  #printSection {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-print-color-adjust: exact !important;
  }
}

.special-offers {
  background-color: #f2f2f2;
  box-shadow: 0px 1px 50px rgba(0, 0, 0, 0.05);
}

.gallery-slider {
  width: 100%;
  height: 100%;
}

.gallery-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-slider .swiper-slide img {
  display: block !important;
  width: 100% !important;
  height: 500px !important;
  object-fit: cover !important;
}

.gallery-slider figcaption {
  display: none;
  border-radius: 46px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
  padding: 14px 10% 13px 35px;
  color: var(--primary-color);
  position: absolute;
  bottom: -40px;
  left: 0;
  font-size: 14px;
  font-weight: 400;
  max-width: 100%;
  text-align: left;
}

@media (min-width: 768px) {
  .gallery-slider {
    /*  width: 80%; */
    margin: auto;
  }
  .gallery-slider .swiper-slide-next {
    padding-left: 20px;
  }
  /* 
  .gallery-slider .swiper-slide:nth-child(2n) {
    width: 70% !important;
  }

  .gallery-slider .swiper-slide:nth-child(3n) {
    width: 30% !important;
  } */

  .gallery-slider figcaption {
    bottom: -30px;
    left: 10px;
    font-size: 16px;
    font-weight: 400;
    max-width: 500px;
  }
}

.gallery-slider .swiper-slide-active figcaption {
  display: block;
}

.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video:before {
  content: "";
  background: linear-gradient(180deg, #000f21 6.72%, rgba(0, 25, 53, 0) 69.63%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
}
.hero-video:after {
  content: "";
  background: linear-gradient(1.22deg, #001c3d 4.41%, rgba(0, 28, 61, 0) 52.37%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
}

.hero-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.custom-modal {
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  box-shadow: -22px 0px 30px 1px rgba(23, 45, 77, 0.3);
  backdrop-filter: blur(10px);
  z-index: 100;
  transition: all 600ms ease-in-out;
}

.custom-modal .modal-content {
  border: none;
}

.custom-modal.open {
  right: 0%;
  width: 100%;
  overflow-y: scroll;
}

.custom-modal .form-control::placeholder {
  color: var(--light-color) !important;
}

.custom-modal .form-control::-webkit-input-placeholder {
  color: var(--light-color) !important;
}

@media (min-width: 768px) {
  .custom-modal {
    padding: 3rem;
  }
}

@media (min-width: 992px) {
  .custom-modal {
    padding: 6rem;
  }
  .custom-modal.open {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .order-mobile-1 {
    order: 1;
  }
  .order-mobile-2 {
    order: 2;
  }
}

.custom-modal-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.custom-modal-close {
  cursor: pointer;
}

.custom-modal-body .form-check-label {
  color: var(--light-color);
  text-transform: uppercase;
  font-size: 14px;
}

#request-date {
  font-size: 16px;
  padding-left: 0;
}

.home-insurance {
  position: relative;
  padding: 2rem 0;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50px;
}

@media screen and (min-width: 767px) {
  .home-insurance {
    background-size: cover;
  }
}

.home-insurance-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.home-insurance-content {
  z-index: 1;
}

.overview {
  border-radius: 30px;
  border: 1px solid var(--orange-color);
  background: transparent;
  padding: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .overview {
    padding: 3rem;
  }
}

.overview-label {
  position: absolute;
  top: -16px;
  left: 16px;
  font-size: 16px;
  background-color: var(--orange-color);
  color: var(--light-color);
  border-radius: 25px;
  padding: 0.2rem 0.85rem;
  text-transform: uppercase;
}

@keyframes textSlide {
  0%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(-200%);
  }
  75% {
    transform: translateY(-300%);
  }
}

.banner {
  background-color: var(--yellow-color);
  color: var(--primary-color);
  padding: 10px 0;
  position: relative;
  padding-right: 4vw;
  padding-left: 4vw;
  text-align: center;
}

.banner_close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.banner_close:hover {
  opacity: 0.7;
}

.banner_link {
  background: var(--primary-color);
  border: 0;
  font-weight: 600;
  color: var(--light-color);
  padding: 5px 10px;
  border-radius: 30px;
  transition: var(--transition);
}

.banner_link:hover {
  opacity: 0.7;
  color: var(--light-color);
}

@media only screen and (max-height: 568px) and (orientation: landscape) {
  .hero-section {
    height: 200vh;
  }
  .hero-absolute {
    position: absolute;
  }
}

.location-link {
  cursor: pointer;
}

.location-link:hover {
  color: var(--orange-color);
}

.details-link {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.details-link:hover {
  color: var(--orange-color);
}
