/* nunito-sans-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: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/nunito-sans-v15-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../../fonts/nunito-sans-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../fonts/nunito-sans-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../fonts/nunito-sans-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../../fonts/nunito-sans-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../fonts/nunito-sans-v15-latin-regular.svg#NunitoSans') format('svg'); /* Legacy iOS */
}
/* nunito-sans-700 - 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: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../../fonts/nunito-sans-v15-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../../fonts/nunito-sans-v15-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../fonts/nunito-sans-v15-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../fonts/nunito-sans-v15-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../../fonts/nunito-sans-v15-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../fonts/nunito-sans-v15-latin-700.svg#NunitoSans') format('svg'); /* Legacy iOS */
}
/* 
=============================================================
VARIABLES 
=============================================================
*/
:root {
  --primary-color: #0d2440;
  --secondary-color: #f8a002;
  --light-color: #fff;
  --blue-light-color: #5292dd;

  --grey-color: rgb(130, 130, 130);
  --grey-light-color: #f7f7f7;

  --gradient: linear-gradient(67.04deg, #ff6138 8.11%, #ff9101 101%);

  --border-radius-s: 5px;
  --border-radius-m: 8px;
  --border-radius-lg: 15px;

  --box-shadow: 0px 2px 20px rgba(92, 104, 118, 0.4);
  --transition: all 0.3s ease-in-out;

  --litepicker-month-header-color: #0d2440;
  --litepicker-day-color: #0d2440;
  --litepicker-day-color-hover: #f8a002;
  --litepicker-is-in-range-color: #f7f7f7;
  --litepicker-is-start-color-bg: #0d2440;
  --litepicker-is-end-color-bg: #0d2440;
  --litepicker-is-end-color: #e9eced;
  --litepicker-is-start-color: #e9eced;
  --litepicker-button-prev-month-color-hover: #f8a002;
  --litepicker-month-weekday-color: #0d2440;
  --litepicker-is-today-color: #f8a002;
  --litepicker-highlighted-day-color-bg: transparent;
  --litepicker-highlighted-day-color: #0d2440;
}

/* 
=============================================================
GLOBAL 
=============================================================
*/

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

.wbm_stacktrace {
  display: none;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--grey-light-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--blue-light-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: "Nunito Sans", sans-serif;
  text-rendering: optimizeLegibility;
  font-size: 18px;
  color: var(--primary-color);
  scroll-behavior: smooth;
}

body.hiddenOverflow {
  overflow: hidden;
}
body .card:not(.added-to-quote) #quote-off {
  display: flex;
}
body .card:not(.added-to-quote) #quote-on {
  display: none;
}
body .card.added-to-quote #quote-off {
  display: none;
}
body .cardadded-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 .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(--secondary-color);
}
body p a:hover {
  color: var(--blue-light-color);
}
article a:not(.menu-link){
  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: unset;
}
body a:hover {
  color: var(--primary-color);
}
.btn:focus,
body :focus {
  box-shadow: none;
  outline: none;
}
.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%;
}

.opacity-0 {
  opacity: 0;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.grid-list-change {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  cursor: pointer;
}
.grid-list-change .active {
  color: var(--secondary-color);
}
.uppercase {
  text-transform: uppercase;
}
.amount {
  font-weight: 600;
  color: var(--primary-color);
}
.pagination .bootpag {
  display: flex;
}
.pagination .bootpag li {
  color: var(--primary-color);
  border-radius: 50%;
  padding: 0.3rem 0.7rem;
  font-weight: 700;
  margin-left: 5px;
}
.pagination .bootpag li:not(.next, .prev){
  color: var(--primary-color);
  background-color: var(--grey-light-color);
}
.pagination .bootpag li:hover:not(.next, .prev){
  color: var(--light-color);
  background:var(--gradient);
}
.pagination .bootpag li a {
  font-size: 16px;
  font-weight: 700;
}
.pagination .bootpag li.disabled:not(.next, .prev) {
  background:var(--gradient);
}
.pagination .bootpag li.disabled:not(.next, .prev) a {
  color: var(--light-color);
}
.breadcrumb {
  display: none;
  flex-wrap: wrap;
  color: var(--secondary-color);
  font-size: 14px;
}
.breadcrumb li + li:before {
  padding: 4px;
  color: var(--light-color);
  content: "/\00a0";
}
.breadcrumb li a {
  color: var(--light-color);
  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.active-search #aside-search {
  width: 100%;
  padding: 0;
}

/* 
=============================================================
CONTAINERS AND SPACINGS
=============================================================
*/
.custom-container {
  width: 1600px;
  max-width: 100%;
  padding-right: 4vw;
  padding-left: 4vw;
  margin-right: auto;
  margin-left: auto;
}

.pt-6 {
  padding-top: 50px;
}

.mt-6 {
  margin-top: 50px;
}

.pt-120 {
  padding-top: 80px;
}

.pb-120 {
  padding-bottom: 80px;
}

.mt-120 {
  margin-top: 80px;
}

/* 
=============================================================
COLORS TEXT AND BACKGROUD
=============================================================
*/
.bg-primary-color {
  background-color: var(--primary-color);
}
.bg-grey-color {
  background-color: var(--grey-light-color);
}
.bg-grey-light-color {
  background-color: rgba(246, 246, 246, 0.08)
}
.bg-gradient-color {
  background: linear-gradient(34.16deg, #e8f6ef 10.77%, rgba(232, 246, 239, 0) 84.69%);
}

.bg-clip-box{
  background-clip: content-box;
}
.text-secondary-color {
  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);
}
.color-blue {
  color: var(--blue-light-color);
}

/* 
=============================================================
BORDERS
=============================================================
*/
.no-rounded{
  border-radius: 0 !important;
}

.border-round-8{
  border-radius: 8px;
}

.border-blue{
  border: 1px solid 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__days > div,
.litepicker .container__days > a {
  margin: 1px 0;
  padding: 8px 0;
  cursor: pointer;
}
.litepicker .container__days .day-item:hover {
  border: none;
  box-shadow: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.litepicker .month-item-name {
  font-size: 14px;
}

.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: #acacac;
}
.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:not(.is-in-range):not(.is-locked):not(.is-end-date):hover {
  background-color: var(--blue-light-color);
  border-radius: 50%;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--light-color);
}

.litepicker .container__days .day-item.is-start-date,
.litepicker .container__days .day-item.is-start-date:hover {
  background-color: var(--blue-light-color);
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
}
.litepicker .container__days .day-item.is-start-date.is-end-date{
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-right-radius: 50%;
}
.litepicker .container__days .day-item.is-end-date,
.litepicker .container__days .day-item.is-end-date:hover {
  background-color: var(--blue-light-color);
  border-bottom-right-radius: 50%;
  border-top-right-radius: 50%;
  color: var(--light-color);
}

/* 
=============================================================
BUTTONS
=============================================================
*/
.btn {
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}
.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-transparent {
  border-color: var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
}
.btn.btn-transparent:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-transparent-second {
  border-color: var(--secondary-color);
  background-color: transparent;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 700;
}
.btn.btn-transparent-second:hover {
  background: var(--gradient);
  color: var(--light-color);
}
.btn.btn-lg {
  font-weight: 600;
  font-size: 20px;
  line-height: 2.5;
}

.btn.btn-gradient {
  background-color: var(--gradient);
  color: var(--light-color);
  padding: 1.5rem 2rem;
}

.btn-md {
  width: 200px;
}

.btn-white {
  border: 2px solid var(--secondary-color);
  background-color: var(--light-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
}

.btn-cta {
  color: var(--secondary-color);
  border: transparent;
}

.btn.btn-pagination {
  color: var(--primary-color);
  background-color: var(--grey-light-color);
  font-size: 16px;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  margin-left: 5px;
}
.btn.btn-pagination:hover,
.btn.btn-pagination.active {
  color: var(--light-color);
  background: var(--gradient);
}
.btn-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-book-wrapper {
  width: 100%;
  margin: 10px 0 20px 0px;
}
.btn-all-photos {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  background-color: var(--light-color);
  font-weight: 700;
  color: var(--blue-light-color);
  display: flex;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.btn-all-photos:hover {
  transform: scale(1.02);
}

.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(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--light-color);
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  padding: 15px 45px;
  position: relative;
}
.btn-yacht:hover {
  background-color: transparent;
  color: var(--primary-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: 14px;
  font-weight: 700;
  line-height: 27px;
  padding: 0.8rem 1.5rem;
  background: var(--gradient);
  transition: all 0.3s ease-in-out;
  width: 100%;
  color: var(--light-color);
}
.btn-search:hover {
  background: var(--light-color);
  color: var(--secondary-color);
}

.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 .accordion-item {
  border: 0;
  background-color: transparent;
}
.accordion .accordion-item .accordion-header {
  border-bottom: 1px solid var(--grey-light-color);
}
.accordion .accordion-item .accordion-button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
  color: var(--primary-color);
  font-size: 24px;
  padding: 1rem  0;
  border-bottom: 1px solid #BDBDBD;
}
.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/arrow-down.svg);
  height: 10px;
  width: 20px;
  background-size: contain;
}
.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-y: auto;
  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 {
  border-bottom: 1px solid #9ebcce;
}
#accordionEquipment .accordion-header .accordion-button {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  padding: 4px 16px 16px 4px;
}
#accordionEquipment .accordion-header .accordion-button::after {
  width: 30px;
  transform-origin: 8px;
  background-image: url("../../images/icons/arrow-down.svg");
}


/* 
=============================================================
TABS
=============================================================
*/
.tab-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
  row-gap: 20px;
}

.nav-tabs {
  margin-bottom: 20px;
  border: 0;
}
.nav-tabs .nav-link {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
  text-align: center;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  padding-bottom: 10px;
  padding: 10px;
  -webkit-appearance: none;
}
.nav-tabs .nav-link:not(.active) {
  border-bottom: 4px solid var(--primary-color);
}
.nav-tabs .nav-link.active {
  background-color: transparent;
  color: var(--blue-light-color);
  border-bottom: 4px solid var(--blue-light-color);
}
.nav-tabs.nav-tabs-inner .nav-link {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
}
.nav-tabs.nav-tabs-inner .nav-link:not(.active) {
  border-bottom: 4px solid var(--primary-color);
}
.nav-tabs.nav-tabs-inner .nav-link.active {
  background-color: transparent;
  color: var(--blue-light-color);
  border-bottom: 4px solid var(--blue-light-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.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-120 {
  height: 120px;
  width: 120px;
}

.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);
}
.qoute-icon {
  position: relative;
}
.qoute-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;
}

/* 
=============================================================
TYPOGRAPHY
=============================================================
*/
.fs-72 {
  font-size: clamp(38px, 3vw, 72px);
}
.fs-57 {
  font-size: clamp(32px, 3vw, 57px);
}
.fs-32 {
  font-size: clamp(24px, 3vw, 32px);
}
.fs-24 {
  font-size: clamp(18px, 3vw, 24px);
}
.fs-18 {
  font-size: clamp(16px, 3vw, 18px);
}
.fs-16 {
  font-size: 16px;
}
.fs-14 {
  font-size: 14px;
}
.fs-12 {
  font-size: 12px;
}

/* 
=============================================================
SWIPER SLIDER
=============================================================
*/
.swiper {
  --swiper-pagination-bullet-height: 10px;
  --swiper-pagination-bullet-width: 10px;
}
.swiper-button-prev,
.swiper-button-next {
  height: 35px;
  width: 35px;
  border: 1px solid var(--blue-light-color);
  border-radius: 50%;
  top: 70%;
  transition: all 0.2s ease-in-out;
  background-color: transparent;
}
.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: 10px;
  width: 10px;
  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/arrow-right-blue.svg");
  transform: rotate(175deg);
  transform-origin: 3px 3px;
}
.swiper-button-next:after {
  background-image: url("../../images/icons/arrow-right-blue.svg");
}
.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;
}
.swiper-button-prev {
  left: unset;
  right: 50px;
}
.swiper-button-next {
  right: 0;
  left: unset;
}
.yachts-slider {
  position: relative;
  padding-bottom: 0;
}

.swiper-button-next,
.swiper-button-prev {
  top: unset;
  bottom: 0;
}
.destinations-slider {
  padding-bottom: 80px;
  position: relative;
}
.destinations-slider .swiper-slide {
  height: 480px;
}
.destinations-slider .swiper-slide:hover .card-overly {
  opacity: 1;
  transform: scale(1);
}
.destinations-slider .swiper-slide img {
  height: 100%;
  transition: all 0.3s ease-in-out;
  object-fit: cover;
  border-radius: 8px;
}
.destinations-card{
  position: relative;
}

.itinerary-summary-wrapper .itinerary-card .itinerary-card-button {
  display: inline-block;
  padding: 1rem 2rem;
}

.itinerary-summary-wrapper .itinerary-card .itinerary-card-image {
  max-height: 430px;
}

.itinerary-summary-wrapper .itinerary-card .itinerary-card-text {
  padding: 2rem 0;
}

.itinerary-summary-wrapper .itinerary-card .itinerary-card-text h3 {
  font-size: 2rem;
  font-weight: 700;
}

.itinerary-summary-wrapper .itinerary-card .itinerary-card-text ul {
  list-style: none;
  margin: 1rem 0 2rem;
}

.itinerary-summary-wrapper .itinerary-card .itinerary-card-text ul li {
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  border: 1px solid var(--blue-light-color);
  border-radius: 1.5rem;
  padding: 0.1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 0;
}

@media screen and (min-width: 767px) {
  .itinerary-summary-wrapper .itinerary-card {
    display: flex;
  }
  
  .itinerary-summary-wrapper .itinerary-card .itinerary-card-image {
    width: 60%;
  }
  
  .itinerary-summary-wrapper .itinerary-card .itinerary-card-text {
    width: 40%;
    padding: 2rem 3.5rem 0;
  }

  .itinerary-summary-wrapper .itinerary-card .itinerary-card-text h3 {
    font-size: 3.5rem;
  }
}

.destinations-slider .itinerary-card{
  height: 380px;
}

.destination-card-title{
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: var(--grey-light-color);
}

.about-slider .swiper-slide {
  height: 340px;
  transform: scale(0.9);
}
.about-slider .swiper-slide.swiper-slide-active {
  transform: scale(1);
}
.about-slider .swiper-slide:hover .card-overly {
  opacity: 1;
  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 {
  z-index: 4;
}
.advanced-search-modal {
  z-index: 5;
}
.advanced-search-modal .form-element {
  padding: 8px 10px;
}
.advanced-search-modal .modal-dialog {
  max-width: 90vw;
}

.advanced-search-modal .modal-body {
  padding: 0;
}
#aside-search .advanced-search-modal .form-element {
  padding: 8px 10px;
}

/* 
=============================================================
SELECT 2
=============================================================
*/
.select2-container {
  display: block;
}
.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(--grey-light-color);
  color: var(--primary-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: 400;
  font-size: 16px;
}
.select2-dropdown {
  border: none;
  box-shadow: 0 1px 15px 2px #000;
}
.select2-results__option {
  padding: 10px 12px;
}
#crew-label .select2-container--default .select2-selection--single .select2-selection__rendered {
  border: 0;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  padding: 5px 30px;
  width: 100%;
}
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(--primary-color);
  border-radius: 0.25rem;
  color: var(--primary-color);
  height: 53px;
  padding: 15px 10px;
  line-height: 1.5;
}
form[name="booking"] .select2-container--default .select2-selection--single[aria-labelledby="select2-country-container"]:before {
  background-image: url(../../images/icons/chevron-icon.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;
}
#contact_form .select2-container--default .select2-selection--single {
  background-color: #fff;
  color: #6f6f6e;
  font-size: 14px;
  height: 50px;
  border: 1px solid #e0e0e0;
  padding-top: 10px;
}
.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;
}
textarea.form-control,
input.form-control,
select.form-select {
  color: var(--primary-color);
  padding: 10px 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  border: transparent;
  border-bottom: 1px solid var(--primary-color);
  border-radius: 0;
}
textarea.form-control ::-webkit-input-placeholder,
input.form-control ::-webkit-input-placeholder,
select.form-select ::-webkit-input-placeholder {
  /* Edge */
  color: var(--primary-color);
}
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);
}
textarea.form-control ::placeholder,
input.form-control ::placeholder,
select.form-select ::placeholder {
  color: var(--primary-color);
}
.input-group .btn {
  z-index: 1;
}
.input-transparent {
  background-color: transparent;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label:before {
  content: "";
  display: inline-block;
  color: #9ebcce;
  margin-right: 15px;
  margin-bottom: 4px;
  font-size: 14px;
  cursor: pointer;
  vertical-align: middle;
  height: 16px;
  width: 16px;
  border: 1px solid #bdbdbb;
  padding: 8px;
}
input[type="checkbox"]:checked + label:before {
  content: "";
  background-image: url(../../images/icons/checkmark.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  position: inherit;
  left: 0px;
  width: 16px;
  height: 16px;
  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: calc(50% - 8px);
  right: 30px;
  transform: translateY(50%);
  width: 16px;
  height: 10px;
  background-image: url("../../images/icons/arrow-down-secondary.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.select-element.select-element-md {
  width: 235px;
}
.select-element.select-element-sm:before {
  content: "";
  width: 12px;
  right: 8px;
  top: calc(50% - 9px);
}
.label-box {
  display: inline-flex;
  flex-direction: column;
  width: calc(100% - 40px);
}
/* Main search form */
.main-search-form {
  border-radius: 8px;
  color: var(--primary-color);
  margin-top: 0;
  padding: 1rem 0;
  position: relative;
}
.main-search-form .label-icon {
  font-size: 16px;
  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 {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  max-height: 40px;
  border-radius: 4px;
}
.main-search-form .main-search-wrapper input {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 14px;
}
.main-search-form .main-search-wrapper ::placeholder {
  color: #fff;
  opacity: 1;
}
.main-search-form .main-search-wrapper .date {
  font-size: 16px;
  position: relative;
}

.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 {
  background: -webkit-linear-gradient(67.04deg, #ff6138 8.11%, #ff9101 101%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.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);
  /*position: fixed;
  left: 50%;
  top: 50%;
  width: 90vw;
  transform: translate(-50%, -50%);
  z-index: 5;
 */
  border-radius: 8px;
}
.main-search-form .advanced-serach-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #bdbdbd;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  padding-left: 0;
}
.main-search-form .advanced-serach-wrapper .advanced-search-title {
  position: relative;
  padding: 1em;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 10px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  background-color: #f7f5f0;
}
.main-search-form .advanced-serach-wrapper .advanced-search-title .advanced-search-close {
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../../images/icons/close.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
  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: 8px 10px;
  border: 1px solid #f7f5f0;
}
.main-search-form .advanced-serach-wrapper .main-search-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  color: #4a4a4a;
  text-transform: uppercase;
}
/* 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 .ui-widget-header {
  background: var(--blue-light-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: #f7f5f0;
  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(--blue-light-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;
}
.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: rgba(12, 54, 99, 0.15);
    padding: 3px 9px;
    border-radius: 8px;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .sort-form .form-element.select-element-direction span {
    width: 2ch !important;
  }
}
.sort-form .form-element span {
  margin-right: 5px;
  display: block;
  min-width: max-content;
}
.sort-form .form-element span.filter-title {
  width: 200px;
}
.sort-form .form-element:before {
  right: 10px;
}
@media (min-width: 767px) {
  .sort-form .form-element:before {
    right: -10px;
  }
}
@media (min-width: 1199px) {
  .sort-form .form-element:before {
    top: 10%;
    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: 14px;
  font-weight: 400;
}
.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;
}
/* ASIDE SEARCH FORM */
#aside-search .form-element {
  padding: 16px 0;
  border-radius: 0;
  margin-bottom: 1.5rem;
}
#aside-search .form-element.date:before {
  display: none;
}
@media (min-width: 1199px) {
  #aside-search .form-element.date:before {
    display: block;
  }
}
.aside-search {
  background-color: #F7F7F7;
}
@media (min-width: 767px) {
  .aside-search {
    padding:2rem;
  }
}
.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-bottom: 1px solid #adc0d7;
  padding: 16px 0;
}
.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);
  font-size: 16px;
}
.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 .ui-widget-header,
.aside-search .main-search-wrapper .search-fileds .range-slider-wrap .ui-slider-handle {
  background: var(--blue-light-color) !important;
}
.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;
}
#cookieConsent {
  background-color: #303d5e;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 30px 15px;
  z-index: 99999999;
  display: none;
}
#cookieConsent p {
  color: #fff;
  margin: 0;
  padding: 0;
}
#cookieConsent a.cookieConsentOK {
  background: var(--gradient);
  transition: .3s ease-in-out;
  color: var(--light-color);
  display: inline-block;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
}

.equipment-check label {
  font-size: 13px;
}
/* 
=============================================================
CARDS
=============================================================
*/
.card {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  border: none;
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.1);
}

.card:hover img {
  z-index: 3;
  transform: scale(1.02);
}
@media (min-width: 991px) {
  .card .card-grid {
    display: grid;
    grid-template-columns: 33vw 1fr;
  }
}
@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;
  top: 10px;
  left: 20px;
  cursor: pointer;
  z-index: 2;
}

.card .yacht-compare .like-sticker .icon {
  height: 24px;
  width: 24px;
}
.card .discount-sticker {
  position: absolute;
  right: 20px;
  top: 0;
  background-color: var(--primary-color);
  padding: 5px 15px;
  z-index: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  clip-path: circle(60.6% at 50% 0%);
}
.card .discount-sticker span {
  display: inline-flex;
  padding: 0px 5px 5px;
}
.card .card-img {
  display: block;
  cursor: pointer;
  height: 100%;
  border: none;
  background: transparent;
}
.card .card-img img {
  transition: all 0.3s ease-in-out;
  height: auto;
  object-position: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.card .card-img img.yacht-image {
  max-height: 280px;
  object-fit: cover;
}
.yachts-slider .card .card-img img {
  max-height: 280px;
  object-fit: cover;
}

.yachts-slider .btn.btn-gradient {
  padding: 0.5rem 3.75rem;
}

.card .card-text {
  padding: 10px 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--primary-color);
}
.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;
  min-height: 55px;
  align-items: center;
  margin-bottom: 10px;
}
.card .card-text .boat-info-grid {
  display: flex;
  justify-content: space-between;
}
.card .card-text .boat-info-grid .boat-info {
  display: flex;
  flex: 1 auto;
  flex-direction: column;
  align-items: center;
  padding: 5px 0;
  position: relative;
}
.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: 600;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: clip;
  text-overflow: clip;
  max-width: 4ch;
  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: 6.5ch;
}
.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.data-cabins {
  white-space: nowrap;
  overflow: hidden;
  max-width: 2ch;
}
.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: 300;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
}
.card .card-text .boat-info-grid .boat-info .data-title > * {
  display: none;
}
.card .card-text .boat-info-grid .boat-info svg,
.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 {
  color: var(--light-color);
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  position: absolute;
  bottom: 10px;
  left: 0;
  padding: 5px 12px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  background-color: var(--primary-color);
  min-height: 15px;
}

.card .price-wrapper {
  padding: 10px 1rem;
  background-color: var(--grey-light-color);
  box-sizing: border-box;
  border: none;
}

.card .price-wrapper .price-row {
  display: flex;
  align-items: center;
}
.card .price-wrapper .price {
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
}
.card .price-wrapper .price .old-price {
  font-size: 18px;
  font-weight: 400;
  text-decoration: line-through;
  color: var(--grey-color);
}

.card .price-wrapper .dates {
  font-size: 13px;
  color: var(--grey-color);
  justify-content: center;
}
.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;
  padding: 10px;
  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);
}
.card-blog {
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
}
.card-blog:before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(9deg, var(--primary-color) 0%, rgba(12, 54, 99, 0) 74%);
  border-radius: 8px;

}
.card-blog .box-link {
  border-radius: 8px;
  z-index: 2;
}
.card-blog .card-desc {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  color: #f2eadf;
}
.card-blog:hover {
  box-shadow: 0px 2px 20px rgba(92, 104, 118, 0.4);
  transform: scale(1.02);
}
.card-blog:hover .line-link {
  color: var(--primary-color);
}
.card-blog:hover .line-link:after {
  width: 100%;
  background-color: var(--primary-color);
}
.card-blog .card-img {
  border-radius: 8px;
}
.card-blog .card-img img {
  border-radius: 8px;
  height: 380px;
  object-fit: cover;
}
.card-blog .blog_shortdesc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price-card header {
  padding: 10px 20px;
}
.price-card .hidden-table {
  padding: 10px 0;
}
.price-card .price-calculation-table {
  width: 100%;
}
.price-card .price-calculation-table th {
  text-transform: uppercase;
  color: var(--primary-color);
}
.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 td self:not(.table-data-last, .table-data) {
  width: 50%;
}
.price-card .price-calculation-table td.table-data-last {
  font-size: 16px;
  font-weight: 600;
  text-align: end;
  padding-left: 10px;
  color: var(--primary-color);
  white-space: nowrap;
}
.price-card .price-calculation-table td.table-data-last.total-price {
  font-size: 18px;
  font-weight: 800;
}
.price-card .price-calculation-table td.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: 6px;
  top: 9px;
  width: 18px;
}
.destination-card {
  position: relative;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  height: 450px;
}
.destination-card img {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.destination-card:hover {
  transform: scale(1.02);
  box-shadow: 0px 2px 20px rgba(92, 104, 118, 0.4);
}
.destination-card .destination-card-title-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.destination-card .destination-card-title-btn h3 {
  color: #f2eadf;
}
.destination-card .destination-card-title-btn .btn-secondary {
  background-color: transparent;
  color: #cbb26b;
  padding: 12px 45px;
}
.destination-card .destination-card-title-btn .btn-secondary:hover {
  background-color: #cbb26b;
  color: #fff;
}
.home-destinations-desc {
  background-image: url(../../images/world.svg);
  background-repeat: no-repeat;
  background-size: 0;
  background-position: top right;
}

.home-destinations-wrapper .home-card .overlay {
  transition: var(--transition);
}

.home-destinations-wrapper .home-card .overlay p {
  font-size: 18px!important;
  font-weight: 700;
  color: var(--light-color);
  opacity: 0;
  padding: 1.5rem;
  position: absolute;
  bottom: 0;
  transition: var(--transition);
  text-align: left;
}

.home-destinations-wrapper .home-card .overlay p font {
  font-size: 18px!important;
}

.home-destinations-wrapper .home-card .overlay * {
  display: none;
}

.home-destinations-wrapper .home-card:hover .overlay {
  background: linear-gradient(15deg, rgba(12, 54, 99, 0.80) -9.11%, rgba(12, 54, 99, 0.00) 113.33%);
}

.home-destinations-wrapper .home-card:hover .overlay p {
  opacity: 1;
}

.home-destinations-wrapper .home-card:hover .home-card-title {
  top: 1.5rem;
}

.home-boat-type .home-boat-type-wrapper .home-card {
  margin-bottom: 1rem;
  text-align: center;
}

.home-card {
  position: relative;
  border-radius: 8px;
  height: 325px;
  margin-bottom: 1rem;
}
.home-card .overlay{
  position: absolute;
  left:0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(12deg, rgba(12, 54, 99, 0.8) 12.73%, rgba(12, 54, 99, 0) 33.07%);
  border-radius: 8px;
}

.home-card img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}
.home-card .home-card-title {
  position: absolute;
  right: 20px;
  left: 20px;
  bottom: 20px;
  color: var(--light-color);
  font-weight: 400;
}
.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);
}
/* about card */
.card-about {
  height: 160px;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 575px) {
  .card-about {
    height: 300px;
  }
}
@media (min-width: 767px) {
  .card-about {
    height: 180px;
  }
}
@media (min-width: 991px) {
  .card-about {
    height: 300px;
  }
}
.card-about img {
  min-height: 160px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}
@media (min-width: 575px) {
  .card-about img {
    min-height: 300px;
  }
}
@media (min-width: 767px) {
  .card-about img {
    min-height: 180px;
  }
}
@media (min-width: 991px) {
  .card-about img {
    min-height: 220px;
  }
}
/* brands card */
.brands-card {
  position: relative;
}
.brands-card:hover .brand-overlay {
  background-color: var(--primary-color);
}
.brands-card:hover .brands-card-link a {
  color: #fff;
}
.brands-card .brand-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.brands-card .brands-card-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.yachtlist-grid .boat-info-wrapper {
  border-top: 1px solid #f2eadf;
  border-bottom: 1px solid #f2eadf;
}

/* 
=============================================================
HEADER 
=============================================================
*/

.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 1);
}
.header a,
.header .nav-link {
  color: var(--primary-color);
}

.header a:hover,
.header .nav-link:hover {
  color: var(--secondary-color);
}
.header.header-shrink {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 2px 50px rgba(0, 0, 0, 0.08);
}
.header.header-shrink .header_wrapper .nav-link,
.header.header-shrink .hamburger span {
  color: var(--primary-color);
}
.header.header-shrink .has-submenu .sub-menu a {
  color: var(--primary-color);
  padding: 0 1rem;
  line-height: 22px;
}
.header.header-shrink .has-submenu .sub-menu a:hover {
  color: var(--secondary-color);
}
.header.header-shrink .nav-link:hover {
  color: var(--secondary-color);
}
.header.header-shrink .main-nav li.has-submenu span:before {
  border-color: var(--primary-color);
}

.header.header-shrink .logo-wrapper {
  height: 50px;
}
.header.header-shrink .logo-wrapper .logo {
  opacity: 0;
}
.header.header-shrink .logo-wrapper::after {
  content: "";
  position: absolute;
  width: 198px;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../../images/barcando-logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.header .header_wrapper {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.header .header_wrapper .header_wrapper_logo {
  width: 200px;
  position: relative;
}
.header .header_wrapper .header_wrapper_logo .logo {
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.header .header_wrapper .nav {
  display: none;
}

.header .header_wrapper .nav.opened {
  display: block;
  position: fixed;
  background-color: #fff;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 100px 20px 20px;
  overflow-y: auto;
}
.header .header_wrapper .nav.opened li {
  margin-bottom: 1rem;
}
.header .header_wrapper .nav.opened .main-nav {
  flex-direction: column;
  margin-top: 1rem;
}
.header .header_wrapper .nav.opened .main-nav > li > .nav-link {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--primary-color);
}
.header .header_wrapper .nav.opened .main-nav > li span {
  top: 0px;
}
.header .header_wrapper .nav .wishlist {
  position: relative;
  cursor: pointer;
  padding: .5rem 1rem;
}

.header .header_wrapper .nav .wishlist .count {
  position: absolute;
  left: 35px;
  bottom: 20px;
  font-weight: 700;
  font-size: 16px;
  color: var(--light-color);
  background: var(--gradient);
  border-radius: 50%;
  padding: 3px 11px;
}
.header .hamburger {
  cursor: pointer;
  padding: 8px 10px;
  display: block;
}

.header .hamburger.active {
  background-color: rgba(12, 54, 99, 0.1);
  border-radius: 5px;
}
.header .hamburger.active span {
  color: var(--secondary-color);
}
.header .hamburger.active .hamburger_icons .icon-1,
.header .hamburger.active .hamburger_icons .icon-2,
.header .hamburger.active .hamburger_icons .icon-3 {
  background-color: var(--primary-color);
}
.header .hamburger span {
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}
.header .hamburger .hamburger_icons {
  height: 32px;
  width: 32px;
  position: relative;
}
.header .hamburger .hamburger_icons .icon-1,
.header .hamburger .hamburger_icons .icon-2,
.header .hamburger .hamburger_icons .icon-3 {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}
.header .hamburger .hamburger_icons .icon-1 {
  transform: translateY(-8px);
  animation-delay: 100ms;
}
.header .hamburger .hamburger_icons .icon-3 {
  transform: translateY(8px);
  animation-delay: 250ms;
}
.header .hamburger .hamburger_icons.icons-animate .icon-1 {
  transform: rotate(40deg);
}
.header .hamburger .hamburger_icons.icons-animate .icon-3 {
  transform: rotate(-40deg);
}
.header .hamburger .hamburger_icons.icons-animate .icon-2 {
  opacity: 0;
}
.lang-desktop .lang:hover .lang-list {
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
.lang {
  position: relative;
  cursor: pointer;
}
.lang .lang-btn {
  position: relative;
}
.lang .lang-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  right: -15px;
  background-image: url("../../images/icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.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: 1rem 0;
  width: max-content;
  position: absolute;
  right: 0;
  background-color: #fff;
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 2px 20px rgba(92, 104, 118, 0.4);
  list-style: none;
}
.lang-list.active-lang{
  opacity: 1;
  visibility:visible;
}
.lang .lang-list li {
  padding: 5px 15px;
}
.lang .lang-list a {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.lang .lang-list a span {
  margin-right: 10px;
}
.lang .lang-list a img {
  width: 22px;
}
.lang .lang-list a:hover {
  color: var(--secondary-color);
}
/* main nav and sub menu*/
.main-nav {
  display: flex;
  flex-direction: row;
}
.main-nav li .nav-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  margin: 0 0.4rem;
}
.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;
}
.main-nav li.has-submenu span:before {
  border-style: solid;
  border-width: 0.07em 0.07em 0 0;
  border-color: var(--primary-color);
  content: "";
  display: inline-block;
  height: 0.5rem;
  left: 42%;
  position: absolute;
  top: 38%;
  transform: rotate(135deg);
  vertical-align: top;
  width: 0.5rem;
}

.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;
}

.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-horizontal-wrapper .nav .main-nav > li:last-child:not(:has(.has-submenu)) a.nav-link {
  border-radius: 100px;
  border: 2px solid #FF6138;
  line-height: revert;
  margin: 0 8px;
  padding: .4rem 1rem .4rem 1.25rem;
}

.header-info {
  display: none;
}

.header-info-contact {
  position: relative;
  padding: 1.45rem 1.5rem;
  margin: 0 1.5rem;
  display: none;
}

.header-info-contact::before {
  content: "";
  width: 1px;
  height: 46px;
  background: #ccc;
  left: 0;
  position: absolute;
}

.header-info-contact-main svg {
  width: 2rem;
  height: 2rem;
  margin-right: 14px;
}

.header-info-contact-phone {
  display: block;
}

.header-info-contact svg {
  stroke: #F8A002;
}

.header-info-contact-dropdown {
  background-color: white;
  position: absolute;
  display: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  min-width: 240px;
  line-height: 3;
  left: 0;
  top: 88px;
  filter: drop-shadow(0px 11px 40px rgba(0, 0, 0, 0.08));
}

.header-info-contact-dropdown a:first-child {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 0.9rem;
}

.header-info-contact-dropdown svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 10px;
}

.header-info-contact:hover .header-info-contact-dropdown {
  display: block;
}

.header-info .wishlist {
  margin-right: 2rem;
}

.header-info .wishlist .count {
  font-size: 16px;
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 50%;
  line-height: 1.6;
  position: relative;
  top: 10px;
  left: -14px;
  background: #F8A002;
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .header-horizontal-wrapper {
    display: flex;
    align-items: center;
  }

  .header-info {
    display: flex;
    align-items: center;
  }

  .header-info-contact {
    display: block;
  }
}


/* 
=============================================================
HERO SECTION
=============================================================
*/
.hero-section {
  /* background: linear-gradient(0deg, #0d2440 4.27%, rgba(12, 54, 99, 0) 60.6%); */
  position: relative;
}

@media screen and (min-width: 576px) {
    .hero-section {
      height: 136vh;
    }
}

/* .swiper.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0d2440 4.27%, rgba(12, 54, 99, 0) 60.6%);
  height: 100%;
  width: 100%;
  z-index: 1;
} */

.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: cover!important;
  color: var(--light-color);
  display: flex;
  align-items: center;
}

@media screen and (min-width: 576px) {
	/*
  .hero_inner-pages {
    height: 100vh;
  }*/
}

.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(--primary-color);
}

.hero-absolute {
  padding: 2rem 0;
  bottom: 0;
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 10;
}
.hero-absolute .pt-300 {
  padding-top: 25vh;
}

.hero-slider {
  z-index: -1;
  height: 137vh;
}
.hero-slider .swiper-slide{
  background-size: cover !important;
}
.hero-slide-absolute{
  position: absolute;
  top: 25%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 4vw;
}
@media screen and (min-width: 575px) {
  .hero-slider {
    height: 100%;
  }
  .hero-slide-absolute{
    top: 60%;
  }
}
.hero-slider img {
  height: 100%;
  object-fit: cover;
}

.hero-section h1
/*,.hero_inner-pages h1*/ {
  color: #F7F7F7;
  text-shadow: 8px -8px 7px rgba(0, 0, 0, 0.20);
  font-size: 2rem;
  font-weight: 700;
}

.hero-description,
.hero_inner-pages .hero-description {
  font-size: 1.5rem;
  color: white;
  padding-bottom: 0.75rem;
  display: inline-block;
  margin-top: 2rem;
}

.hero-description::after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background: linear-gradient(67deg, #FF6138 8.11%, #FF9101 101%);
}

/* 
=============================================================
HOME
=============================================================
*/

.home-about {
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.375rem;
  border-radius: 1rem;
  border: 1px solid rgba(82, 146, 221, 0.30);
  transition: all .3s ease-in-out;
}

.home-about:hover {
  box-shadow: 0px 11px 40px 0px rgba(0, 0, 0, 0.08);
}

.home-about-icon {
  margin-right: 2rem;
}

.home-about-icon img {
  width: 3rem;
  height: 3rem;
}

.home-about-desc {
  font-size: 1.125rem;
}

.home-about-wrapper {
  text-align: center;
  margin: 5rem 0 0;
  font-family: 'Nunito Sans';
}

.home-about-wrapper p:has(a) {
  text-align: center;
}

.home-about-wrapper p,
.home-about-wrapper p a {
  font-family: 'Nunito Sans'!important;
}


.home-about-wrapper p a {
    background: var(--gradient);
    transition: var(--transition);
    color: var(--light-color);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 100px;
    border: 2px solid var(--gradient);
    padding: 1.1rem 2rem;
    margin: 2rem auto;
    display: inline-block;
    border: 1px solid var(--secondary-color);
}

.home-about-wrapper p a:hover {
  background: var(--light-color);
  color: var(--secondary-color);
}

.card-blue {
  background-color: #E5EFF8;
  padding: 3rem;
  position: relative;
}


.newsletter-wrapper {
  background-color: var(--blue-light-color);
  box-shadow: 0px 11px 40px rgba(0, 0, 0, 0.08);
  border-radius: 42px;
  padding: 3rem 5%;
  background-image: url(../../images/graphic.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.newsletter-form ::-webkit-input-placeholder {
  color: var(--light-color);
}
.newsletter-form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--light-color);
}
.newsletter-form ::placeholder {
  color: var(--light-color);
}
.newsletter-form input {
  border-top: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
  border-bottom: 1px solid var(--light-color) !important;
  padding: 15px;
  background-color: transparent;
  color: var(--light-color);
}

#mc_embed_signup .indicates-required{
  text-align: left !important;
  width: 100%;
}

#mc_embed_signup form{
  margin: 0 !important;
}

#mc-embedded-subscribe {
  margin: 0 !important;
}

.newsletter-form button {
  padding: 15px 45px;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  text-transform: capitalize;
}

/* 
=============================================================
SECTION
=============================================================
*/

.section-intro {
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.section-intro h2 {
  font-size: 2rem;
  font-weight: 700;
}

.section-intro-title p {
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: 18px;
}

.section-intro-actions {
  text-align: right;
}

.section-intro-actions a {
  display: inline-block;
  margin-bottom: 4px;
}

/* 
=============================================================
YACHTLIST / SEARCH RESULT
=============================================================
*/
.yachtlist-grid{
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}

/* 
=============================================================
BOOKING STEP
=============================================================
*/
.extras-table tbody tr{
  border-bottom: 1px solid #ccc;
}
.extras-table tbody tr th,
.extras-table tbody tr td{
  padding: 5px 0;
}

#contact_info_content input.form-control,
#contact_info_content textarea.form-control{
  background-color: transparent;
}

/* 
=============================================================
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;
}

/*
=============================================================
FREE QUOTE PAGE / PREVENTIVO
=============================================================
*/

.free-quote-form {
  padding-top: 0.5rem;
  padding-bottom: 6rem;
}

.free-quote-form-step-2 {
  display: none;
}

.free-quote-page-wrapper {
  background-color: #FFFAEF;
  min-height: 1500px;
}

.contact .contact-form-wrapper form input,
.contact .contact-form-wrapper form select,
.contact .contact-form-wrapper form textarea,
.contact .contact-form-wrapper form .form-control {
  border-radius: 4px;
  border: 1px solid #E6E5E5;
  background-color: var(--light-color);
  min-height: 48px;
}

.free-quote-page-wrapper h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 6rem;
}

.free-quote-page-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 400;
  padding-bottom: 2rem;
  margin-bottom: 7rem;
  position: relative;
}

.free-quote-page-wrapper h2::after{
  content: "";
  height: 1px;
  width: 50%;
  background: linear-gradient(67deg, #FF6138 8.11%, #FF9101 101%);
  display: block;
  position: absolute;
  left: 0;
  bottom: -2rem;
}

.free-quote-page-wrapper h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.free-quote-form-step-intro {
  margin-bottom: 2rem;
}

.free-quote-form-step-intro span {
  display: block;
  font-size: 18px;
  margin-bottom: 1.5rem;
  color: var(--blue-light-color);
}

.contact-form-wrapper .form-counter div div {
  display: flex;
  align-items: center;
}

.contact-form-wrapper .form-counter div div input {
  width: 3rem;
  text-align: center;
  background: transparent;
  border: none;
}

.free-quote-form-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3.5rem 0 0;
}

.free-quote-form-navigation .btn-white {
  background: transparent;
}

.free-quote-form-navigation .btn-white,
.free-quote-form-navigation .btn-gradient {
  padding: 0.65rem 1.75rem;
}

.contact .contact-form-wrapper .form-counter div div input::-webkit-outer-spin-button,
.contact .contact-form-wrapper .form-counter div div input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact .contact-form-wrapper .form-counter div div input[type=number] {
  -moz-appearance: textfield;
}

.contact .contact-form-wrapper .form-counter div label {
  font-weight: 400;
}

.contact .contact-form-wrapper .form-counter div button {
  font-size: 1.8rem;
  width: 2rem;
  height: 2rem;
  padding-bottom: 2px;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-form-wrapper form label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

@media screen and (min-width: 991px) {
  .free-quote-form {
    padding-left: 2.25rem;
    border-left: 4px solid var(--blue-light-color);
  }

  .free-quote-page-wrapper h1 {
    font-size: 4.5rem;
    margin-top: 10rem;
  }

  .free-quote-page-wrapper h2 {
    font-size: 2rem;
  }

  .free-quote-page-wrapper h3 {
    font-size: 2.625rem;
  }  

  .free-quote-page-wrapper {
    background-color: #FFFAEF;
    background-image: url(../../images/waves-beach.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    min-height: 1500px;
  }
}

/* 
=============================================================
ERROR PAGES
=============================================================
*/
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 100vh;
  background-color: var(--grey-light-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(--primary-color);
}
.error-page .error-page-btn {
  display: block;
  margin: 40px auto 0;
  padding: 16px 24px;
  width: max-content;
  border-radius: 50px;
  background: var(--gradient);
  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);
}

/*
=============================================================
Other
=============================================================
*/

@media screen and (min-width: 992px) {
  .circle-shape {
    position: relative;
    overflow: hidden;
    z-index: 10;
  }

  .circle-shape::after {
    content: "";
    width: 765px;
    height: 765px;
    border-radius: 50%;
    background: linear-gradient(67deg, rgba(255, 97, 56, 0.10) 8.11%, rgba(255, 145, 1, 0.10) 101%);
    filter: blur(100px);
    display: block;
    position: absolute;
    z-index: -1;
    top: 11%;
  }
  
  .circle-shape.circle-shape-right::after {
    right: 10%;
  }

  .circle-shape.circle-shape-left::after {
    left: 10%;
  }
}


/* 
=============================================================
FOOTER
=============================================================
*/
footer {
  background-color: var(--grey-light-color);
  color: var(--primary-color);
  padding: 6rem 0 4rem;
}
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;
}

footer.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

@media (max-width: 575px) {
  footer .logo {
    width: 180px;
 }
}
footer .footer-links li {
  margin-bottom: 10px;
  line-height: 2;
}
footer .footer-links a {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}
footer .footer-links a:hover {
  color: var(--secondary-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;
 }

 footer .footer-first-column {
  padding-right: 6rem;
 }
}
@media (min-width: 991px) {
  footer .footer-items {
    margin: auto;
 }

 ul.footer-destination-list {
  column-count: 2;
  column-gap: 1.5rem;
 }
}
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 {
  color: var(--primary-color);
  font-size: 14px;
  margin-bottom: 14px;
}
@media (min-width: 575px) {
  .copyright p {
    margin-bottom: 0;
 }
}
.copyright img {
  width: 100%;
  max-width: 640px;
}

.footer-cta {
  padding: 2rem 0;
  width: 100%;
  background: var(--gradient);
  text-align: center;
}

.footer-cta a.btn {
  box-shadow: 0px 11px 40px 0px rgba(0, 0, 0, 0.08);
}

footer.footer #mc_embed_signup .newsletter-form input.email {
  color: var(--primary-color);
  border-radius: 50px;
  border: 1px solid var(--blue-light-color)!important;
  background: var(--light-color);
  padding: 1.5rem;
}

footer.footer #mc_embed_signup .newsletter-form input.email::placeholder {
  color: var(--blue-light-color);
  font-size: 1rem;
}

.footer-social {
  margin-top: 3rem;
}

.footer-social h4 {
  margin-bottom: 0.75rem;
}

.footer-social svg {
  margin-top: .5rem;
}

.footer-newsletter h4 {
  margin: 3rem 0 1rem;
}

.footer-newsletter-submit-input-wrap {
  position: relative;
}

.footer-newsletter-submit-input-wrap .footer-newsletter-submit {
  position: absolute;
  right: 7px;
  top: 7px;
}

.footer-newsletter-submit-input-wrap .footer-newsletter-submit #mc-embedded-subscribe {
  padding: 1rem;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
}

/* 
=============================================================
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.40);
  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;
}

/* 
=============================================================
BANNER-QUOTE
=============================================================
*/

.banner-quote {
  margin: 4rem auto 3rem;
}

.banner-quote .banner-quote-wrapper {
  display: flex;
}

.banner-quote .banner-quote-text {
  border-radius: 16px 0px 0px 16px;
  background: var(--gradient);
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  width: 35%;
  padding: 4.5rem;
}

.banner-quote .banner-quote-text h3 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--light-color);
}

.banner-quote .banner-quote-text .btn {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.banner-quote .banner-quote-image {
  width: 65%;
}

.banner-quote .banner-quote-image {
  background: url(../../images/banner-quote.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom-right-radius: 1rem;
}

@media screen and (max-width: 1200px) {
  .banner-quote .banner-quote-text {
    border-radius: 1rem;
    width: 100%;
    text-align: center;
  }

  .banner-quote .banner-quote-text h3 {
    font-size: 2rem;
  }

  .banner-quote .banner-quote-image {
    display: none;
  }
}

.home-testimonials {
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-top: 7rem;
}

.home-testimonials-grid {
  display: grid;
  grid-gap: 2rem;
}

.home-testimonials-grid .card.card-testimonial {
  border-radius: 8px;
  padding: 2.25rem;
  background: var(--light-color);
  box-shadow: 0px 11px 40px 0px rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
}

.home-testimonials-grid .card.card-testimonial a svg {
  width: 2rem;
  height: 2rem;
  margin-right: 8px;
}

.card-testimonial-author-wrap {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.card-testimonial-author-wrap .card-title {
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.25rem;
  text-transform: uppercase;
  border-radius: 50%;
  background: #749D48;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  margin-right: 1rem;
}

.card-testimonial-author-wrap .card-testimonial-author {
  font-size: 1.125rem;
  font-weight: 700;
}

.card-testimonial .testimonial-social-item {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  color: var(--blue-light-color);
  font-size: 1.125rem;
}

.card-testimonial .testimonial-social-item div {
  margin: 1rem 0;
}

.card-testimonial .testimonial-social-item div span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.card-testimonial .testimonial-social-item div b {
  display: block;
}

.star-container {
  display: flex;
  gap: 4px;
}

@media screen and (min-width: 991px) {
  .home-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 
=============================================================
YACHT DETAILS
=============================================================
*/
.yachtdetails-aside{
  background-color: #F7F7F7;
  padding: 14px 1.5rem;
  z-index: 2;
}

.yachtdetails .main-img{
  height: 50vh;
  object-fit: cover;
}

.spec-item{
  display: flex;
}

.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;
}

/* 
=============================================================
PORTS AND MARINES
=============================================================
*/

.port_info{
  background: linear-gradient(67.04deg, rgb(255 97 56 / 20%) 8.11%, hsl(34deg 100% 50% / 20%) 101%);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-left:10%;
  justify-content: center;
}

#map.port_map{
  height: 300px;
}

.porti_parallax{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--light-color);
}

/* 
=============================================================
CONTACT
=============================================================
*/
.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);
}

/* 
=============================================================
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;
  }
  .header .header_wrapper .logo-wrapper .logo {
    width: 100%;
  }
  .hero-section {
    height: 100vh;
  }
  .hero-absolute {
    padding: unset;
  }

  .home-destinations-desc {
    background-size: 400px;
    background-position: right;
  }
  
  .home-card {
    min-height: 280px;
  }

  .main-search-form .main-search-wrapper .search-fileds .form-element {
    max-height: 50px;
    padding: 16px;
    margin-bottom: 16px;
  }

  .yachtlist-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 2rem;
  }

  .sale-specification-list .spec-item {
    width: 33.33%;
  }
}

.destination-details {
  padding-top: 2rem;
}

.destination-details-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.destination-details-content p {
  margin-bottom: 1.5rem;
}

.destination-details-content ol li,
.destination-details-content ul li {
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.destination-details .section-intro h2 {
  margin-bottom: 2rem;
}

.destination-details table {
  display: none; /* TODO RETURN IF NEEDED */
  margin-top: 4rem;
  position: relative;
  margin-bottom: 4rem;
}

.destination-details table::before {
  content: "";
  background-color: var(--secondary-color);
  height: 1px;
  width: 100%;
  position: absolute;
  top: -4rem;
}

.destination-details table tr td {
  background-repeat: no-repeat;
  min-width: 40px;
  min-height: 40px;
  background-position: center;
  text-align: center;
}

.destination-details table tbody tr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.destination-details table tr td p b {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.destination-details table tr td p {
  font-size: 1.125rem;
  margin-bottom: 0;
}


/* min 767px */
@media (min-width: 767px) {
  .section-intro h2 {
    font-size: 3.5rem;
  }

  .w500 {
    max-width: 50vw;
  }
  .custom-container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  body .breadcrumb {
    display: flex;
  }

  .hero-section .home-hero-content {
    top: 30vh;
    width: 100%;
  }

  .hero-section h1,
  .hero_inner-pages h1  {
    font-size: 3rem;
  }
  
  .hero-description,
  .hero_inner-pages .hero-description {
    font-size: 2rem;
  }

  .home-destinations-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }  
  
  .home-destinations-wrapper .home-card {
    height: 400px;
    width: 50%;
    margin: 0 auto;
  }

  .home-destinations-wrapper.category-destinations {
    flex-wrap: wrap;
  }  
  
  .pt-6 {
    padding-top: 100px;
  }

  .mt-6 {
    margin-top: 100px;
  }

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

  .pb-120 {
    padding-bottom: 120px;
  }

  .mt-120 {
    margin-top: 120px;
  }
  .btn-all-photos {
    padding: 1rem 2rem;
  }
  /*
  .yachts-slider {
    padding-bottom: 50px;
  }
  */
  .blog-slider .swiper-button-next,
  .blog-slider .swiper-button-prev {
    display: none;
  }
  .about-slider .swiper-slide img {
    object-fit: cover;
  }
  .card .card-text,
  .card .price-wrapper {
    padding: 10px 1.5rem;
  }
  .sale-specification-list .spec-item {
    width:23%;
  }
}

/* min 991px */
@media (min-width: 991px) {
  .section {
    padding-top: 120px;
  }

  .destination-details table tbody tr {
    display: table;
    width: 100%;
  }

  .destination-details table tr td {
    text-align: left;
  }

  .hero-section .home-hero-content {
    top: 40vh;
  }

  .article-padding-left {
    padding-left: 10vw;
  }

  .article-padding-right {
    padding-right: 10vw;
  }

  #aside-search-open,
  #aside-search-close {
    display: none;
  }

  .litepicker .month-item-name {
    font-size: 16px;
  }

  .litepicker .day-item {
    font-size: 16px;
  }
  .advanced-search-modal .modal-dialog {
    max-width: 80vw;
  }
  .main-search-form .main-search-wrapper .search-fileds {
    border-radius: 8px;
    margin-bottom: 0;
  }
  .main-search-form .main-search-wrapper .date {
    font-size: 18px;
  }

  .yachtdetails-aside{
    margin-top: -10rem;
  }
 
  .lang-mobile{
    display: none;
  }

  .header {
    padding: 0;
  }

  .home-destinations-wrapper .home-card {
    height: 400px;
    width: 25%;
  }

  .home-destinations-wrapper.category-destinations .home-card {
    width: 350px;
  }

  .home-boat-type .home-boat-type-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }

  .home-boat-type .home-boat-type-wrapper .home-card {
    width: 20%;
    height: 488px;
  }

  .destination-details-content h3 {
    font-size: 2rem;
  }

  .destination-details-content h3::before {
    content: "";
    height: 1px;
    width: 96px;
    background: var(--secondary-color);
    left: -120px;
    top: 50%;
    display: block;
    position: absolute;
  }
}

.lang-mobile {
  margin-left: auto;
  margin-right: 30px;
}

/* min 1199px */
@media (min-width: 1199px) {
  .header .hamburger {
    display: none;
  }

  .header .header_wrapper .nav .wishlist {
    width: 42px;
    margin-left: 10px;
  }
  .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: 1rem;
  }

  .header.header-shrink .main-nav li.has-submenu span:before {
    border-color: var(--primary-color);
  }

  .header .header_wrapper .nav {
    display: flex;
  }

  .main-nav li.has-submenu span {
    top: 18px;
    width: 16px;
    height: 8px;
    right: 0px;
    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(--primary-color);
    width: 0.3em;
    height: 0.3em;
    left: 0;
    position: relative;
    top: -1px;
  }

  .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(--secondary-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: 340px;
  }

}

@media (min-width: 1200px) {
  .header .header_wrapper .nav .lang-mobile {
    display: none;
  }
  .header .header_wrapper .nav .wishlist {
    padding: unset;
  }
  .header .header_wrapper .nav .wishlist .count{
    right: -5px;
    bottom: -5px;
    left: unset;
  }
  .card-blue {
    background-color: transparent;
    background-image: url(../../images/wave-bg-blue.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (min-width: 1920px) {
  /*
  .hero_inner-pages .main-search-form {
    top: 240px;
  }
*/
  .hero-section h1,
  .hero_inner-pages h1  {
    font-size: 4.5rem;
  }

  .hero-absolute {
    bottom: 10%;
  }

  .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-slider {
    display: none;
  }

  .hero-absolute {
    position: static;
    padding: 5rem 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 {
    left: 0vh;
    opacity: 1;
 }
  #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: #fff;
    transition: all 0.3s ease-in-out;
 }

 #aside-search .aside-search{
  padding: 1rem;
 }


}

/* 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;
  }
}
