@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Prata&family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
.text-xxs {
  font-size: 10px !important;
}

.text-xs {
  font-size: 12px !important;
}

.text-sm {
  font-size: 13px !important;
}

.text-md {
  font-size: 16px !important;
}

.text-lg {
  font-size: 18px !important;
}

.text-xl {
  font-size: 20px !important;
}

.text-2xl {
  font-size: 28px !important;
}

.text-3xl {
  font-size: 30px !important;
}

.text-sm-sm {
  font-size: auto;
}

.bg-primary-new {
  background-color: #17519d !important;
}

.bg-success-new {
  background-color: #00b389 !important;
}

.bg-warning-new {
  background-color: #f9b314 !important;
}

.bg-danger-new {
  background-color: #ee397f !important;
}

.bg-purple {
  background-color: #b14fff !important;
}

.bg-accent {
  background-color: #17519d !important;
}

.text-primary-new {
  color: #17519d;
}

.text-success-new {
  color: #00b389;
}

.text-bg-primary {
  background-color: rgb(226, 234, 247) !important;
  color: rgb(47, 90, 162) !important;
}

.text-bg-secondary {
  background-color: rgb(241, 242, 243) !important;
  color: rgb(64, 66, 71) !important;
}

.text-bg-success {
  background-color: rgb(220, 241, 228) !important;
  color: rgb(12, 98, 46) !important;
}

.text-bg-danger {
  background-color: rgb(250, 228, 232) !important;
  color: rgb(176, 61, 80) !important;
}

.text-bg-warning {
  background-color: rgb(251, 241, 221) !important;
  color: rgb(137, 97, 16) !important;
}

.text-bg-info {
  background-color: rgb(229, 244, 248) !important;
  color: rgb(59, 126, 148) !important;
}

.text-bg-light {
  background-color: #f5f5f5 !important;
  color: #616161 !important;
}

.btn-capital {
  text-transform: capitalize !important;
}

.top-3 {
  top: 1rem;
}

.top-4 {
  top: 100px;
}

.sticky-top-80 {
  position: sticky;
  top: 80px;
}

.h-380 {
  height: 380px;
}

.rounded-normal {
  border-radius: 10px;
}

.rounded-lg {
  border-radius: 16px;
}

.shadow-xs {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.sticky-right {
  position: sticky;
  right: 0px;
}

.grid-center {
  display: grid;
  place-content: center;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 576px) {
  .text-sm-sm {
    font-size: 13px !important;
  }
}
.text-serif {
  font-family: "Playfair Display", serif;
}

.text-prata {
  font-family: "Prata", serif;
}

.text-bebas {
  font-family: "Bebas Neue", serif;
}

.fi {
  line-height: 0.5;
}

.btn {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  box-shadow: none;
}

.object-fit-cover {
  object-fit: cover;
}

.navbar {
  transition: 200ms;
}
.navbar .navbar-toggler {
  padding: 0.25rem 0.5rem;
  border: none;
  box-shadow: none !important;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  font-size: 0.875em;
}
.navbar:has(.show) {
  background-color: #17519d;
}

.btn-navbar {
  font-size: 13px;
  text-transform: capitalize;
  box-shadow: none !important;
}

.btn-notif {
  position: relative;
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  padding: 8px;
  box-shadow: none;
}
.btn-notif .dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: red;
}

.btn-calendar {
  font-size: 16px;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 500;
}
.btn-calendar .fi {
  font-size: 18px;
}

.btn-position-map {
  inset: auto 0px 100px auto !important;
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  margin: 10px;
  border: 0;
  border-radius: 2px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
}
.btn-position-map:after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(https://maps.gstatic.com/tactile/mylocation/mylocation-sprite-2x.png);
  background-size: 200px 20px;
  background-position: 0px 0px;
}

.btn-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.link-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
}
.link-arrow .fi {
  font-size: 0.8em;
}

.badge {
  --mdb-badge-padding-y: 0.75em;
  line-height: 0.5;
}

.calendar-dates {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
}
.calendar-dates .dates-boxed {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 8px 16px;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  text-align: center;
  text-wrap: nowrap;
  scroll-snap-align: start;
  user-select: none;
  cursor: pointer;
}
.calendar-dates .dates-boxed small {
  font-size: 13px;
}
.calendar-dates .dates-boxed.selected {
  color: #007bff;
  border-color: #007bff;
}
.calendar-dates .dates-boxed.selected small {
  color: #007bff !important;
}

.form-control {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
}

.form-select {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  box-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.list-group-borderless .list-group-item {
  padding: 6px 0;
  border-width: 0;
}

.list-group-options {
  display: flex;
  flex-direction: column;
}
.list-group-options .toggle-show {
  display: none;
}
.list-group-options .note {
  order: 100;
}
.list-group-options .list-group-item {
  order: 2;
  border-width: 0;
  padding: 4px 0;
}
.list-group-options .list-group-item .label-select {
  padding: 16px;
  border: 1px solid var(--mdb-border-color);
  border-radius: 10px;
  cursor: pointer;
}
.list-group-options .list-group-item .label-select h5 {
  color: rgba(var(--mdb-danger-rgb), 1);
}
.list-group-options .list-group-item .label-select .info {
  font-size: 12px;
  color: var(--mdb-secondary-color);
}
.list-group-options .list-group-item:has(input[type=radio]:checked) {
  order: 1;
}
.list-group-options .list-group-item:has(input[type=radio]:checked) .label-select {
  border-color: #007bff;
  background-color: rgba(var(--mdb-primary-rgb), 1);
  color: white;
}
.list-group-options .list-group-item:has(input[type=radio]:checked) .label-select h5 {
  color: yellow !important;
}
.list-group-options .list-group-item:has(input[type=radio]:checked) .label-select .info {
  color: white;
  opacity: 0.5;
}

.list-group-reverse .list-group-item {
  border-width: 2px 0 0;
}
.list-group-reverse .list-group-item:first-child {
  border-width: 0;
}

.list-group-options:has(input[type=radio]:checked) .toggle-show {
  display: block !important;
  text-align: center;
  justify-content: center;
  gap: 8px;
  order: 99;
}
.list-group-options:has(input[type=radio]:checked) .toggle-show label {
  width: 100%;
  cursor: pointer;
}
.list-group-options:has(input[type=radio]:checked) .toggle-show label::after {
  content: "ﵬ";
  font-family: uicons-regular-rounded !important;
}
.list-group-options:has(input[type=radio]:checked) .note {
  display: block !important;
}
.list-group-options:has(input[type=radio]:checked) .list-group-item:not(:has(:checked)) {
  display: none;
}

.list-group-options:has(input[type=checkbox]:checked) .toggle-show {
  order: 99;
}
.list-group-options:has(input[type=checkbox]:checked) .toggle-show label::after {
  content: "ﵡ";
}
.list-group-options:has(input[type=checkbox]:checked) .list-group-item:not(:has(input[type=radio]:checked)) {
  display: flex;
}

.list-guide {
  display: flex;
  gap: 6px;
  overflow: auto;
  scroll-snap-type: mandatory;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.5s;
  scroll-behavior: smooth;
}
.list-guide li {
  display: flex;
  align-items: center;
}
.list-guide li .more-list {
  display: grid;
  place-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--mdb-border-color);
  border-radius: 23px;
  background-color: white;
  color: var(--mdb-body-color);
  padding-inline: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.list-guide .guide-box {
  position: relative;
  display: flex;
  gap: 8px;
  width: 173px;
  padding: 6px;
  border: 2px solid #eee;
  border-radius: 10px;
  scroll-snap-align: start;
  user-select: none;
  cursor: pointer;
}
.list-guide .guide-box.recommend {
  border-color: #f9b314;
}
.list-guide .guide-box img {
  height: 60px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.list-guide .guide-box .captain-details {
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.list-guide .guide-box .rank {
  display: flex;
  align-items: center;
  gap: 4px;
}
.list-guide .guide-box .rank .fi {
  color: yellow;
}
.list-guide .guide-box .tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  top: 2px;
  left: 2px;
  padding: 4px 6px;
  font-size: 12px;
  border-radius: 6px 0 6px 0;
  background-color: #f9b314;
  color: white;
}
.list-guide .guide-box:has(:checked) {
  border-color: rgba(var(--mdb-primary-rgb), 1);
  background-color: rgba(var(--mdb-primary-rgb), 1);
  color: white;
}

.list-guide-modal {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
}
.list-guide-modal li {
  display: flex;
}
.list-guide-modal .guide-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px;
  border: 2px solid #eee;
  border-radius: 8px;
  text-align: center;
  text-wrap: nowrap;
  scroll-snap-align: start;
  user-select: none;
  cursor: pointer;
}
.list-guide-modal .guide-box img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  margin-bottom: 8px;
}
.list-guide-modal .guide-box h6 {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 2px;
}
.list-guide-modal .guide-box .rank {
  display: flex;
  align-items: center;
  gap: 4px;
}
.list-guide-modal .guide-box .rank .fi {
  color: yellow;
}
.list-guide-modal .guide-box .tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  top: 2px;
  left: 2px;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px 0 6px 0;
  background-color: rgba(var(--mdb-danger-rgb), 1);
  color: white;
}
.list-guide-modal .guide-box:has(:checked) {
  border-color: rgba(var(--mdb-primary-rgb), 1);
  background-color: rgba(var(--mdb-primary-rgb), 1);
  color: white;
}

.list-group-1\/3 .list-group-item {
  display: flex;
  flex-direction: column;
}
.list-group-1\/3 .list-group-item > *:first-child {
  width: auto;
  flex-shrink: 0;
}
.list-group-1\/3 .list-group-item > *:last-child {
  width: unset;
  flex-grow: 1;
}

.input-number-button {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.input-number-button .form-control {
  width: 60px;
  text-align: center;
}

.label-check:has(input) {
  cursor: pointer;
}
.label-check:has(:checked) {
  background-color: rgba(var(--mdb-primary-rgb), 1);
  color: white;
}

.package-info {
  position: relative;
}
.package-info img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 8px;
  border-radius: 10px;
}
.package-info .details {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 16px;
  padding-top: 24px;
  color: white;
  background: linear-gradient(0deg, rgb(2, 0, 36) 0%, rgba(2, 0, 36, 0) 100%);
  border-radius: 0 0 10px 10px;
  line-height: 1.2;
}
.package-info .details h6 {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
}
.package-info .details small {
  color: rgba(255, 255, 255, 0.7);
}

.form-check-sm[type=checkbox] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--mdb-form-control-border-color);
}
.form-check-sm[type=checkbox]::before {
  width: 12px;
  height: 12px;
  opacity: 0;
}
.form-check-sm[type=checkbox]:focus:after {
  background-color: transparent;
}
.form-check-sm[type=checkbox]:checked {
  border-color: #3b71ca;
}
.form-check-sm[type=checkbox]:checked:after {
  width: 6px;
  height: 10px;
  margin-left: 4px;
  margin-top: 1px;
  border-radius: 0 0 2px 0;
}

.form-check-sm[type=radio] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--mdb-form-control-border-color);
}
.form-check-sm[type=radio]::after, .form-check-sm[type=radio]::before {
  width: 12px;
  height: 12px;
}
.form-check-sm[type=radio]:checked:focus:before, .form-check-sm[type=radio]:indeterminate:focus:before {
  box-shadow: 0px 0px 0px 10px #3b71ca;
}
.form-check-sm[type=radio]:checked {
  border-color: #3b71ca;
}
.form-check-sm[type=radio]:checked:after {
  width: 8px;
  height: 8px;
}

input[type=date] {
  position: relative;
  text-align: left;
}
input[type=date]::before {
  position: absolute;
  content: attr(data-date);
  display: inline-block;
  color: var(--mdb-surface-color);
}
input[type=date]::-webkit-datetime-edit, input[type=date]::-webkit-inner-spin-button, input[type=date]::-webkit-clear-button {
  opacity: 1;
}

.scroll-control-wrapper {
  position: relative;
}
.scroll-control-wrapper .btn-scroll-prev,
.scroll-control-wrapper .btn-scroll-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-content: center;
  width: 24px;
  height: 76px;
  padding: 0 20px 0 0;
  box-shadow: none !important;
  border-radius: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.scroll-control-wrapper .btn-scroll-next {
  right: 0;
  padding: 0 0 0 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

.swiper-nav-flex {
  position: relative;
  display: flex;
  align-items: center;
}
.swiper-nav-flex .swiper-button-next,
.swiper-nav-flex .swiper-button-prev {
  position: unset;
  top: 0;
  margin-top: 0;
}

.swal2-popup {
  width: 30em;
  padding: 16px;
  border-radius: 10px;
}

.swal2-icon {
  zoom: 0.65;
  margin-top: 1em;
}

.swal2-image {
  margin: 1em auto;
}

.swal2-title {
  padding: 0.5em 1em !important;
  font-size: 16px;
}

.swal2-input-label,
.swal2-html-container {
  margin-top: 0.5em;
  padding: 0 1.6em 0.5em !important;
  font-size: 13px !important;
}

.swal2-input {
  height: 40px !important;
  padding: 12px !important;
  font-size: 13px !important;
  border-radius: 8px;
  box-shadow: none;
}
.swal2-input:focus {
  box-shadow: none;
  border-color: #50535b;
}

.swal2-actions {
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
}

.swal2-styled {
  padding: 10px 16px;
  min-width: 100px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 8px;
}
.swal2-styled:focus-visible {
  box-shadow: none;
}

.swal2-confirm {
  background-color: #17519d;
  box-shadow: none !important;
}

.swal2-footer {
  margin-top: 0.5em !important;
  padding-top: 1em !important;
  font-size: 13px !important;
}

@media (min-width: 576px) {
  .list-group-1\/3 .list-group-item {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .list-group-1\/3 .list-group-item > *:first-child {
    width: 33.33%;
  }
}
.app-home-header {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 240px;
  background-color: #125f7d;
}
.app-home-header .backdrop {
  position: absolute;
  inset: 0;
}
.app-home-header .backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-home-header .hero-caption {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -150%);
  text-align: center;
  zoom: 0.5;
}

.hero-banner {
  position: relative;
}
.hero-banner .swiper-hero {
  height: 380px;
}
.hero-banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner .swiper-button-next, .hero-banner .swiper-button-prev {
  width: 42px;
  height: 42px;
  border: 2px solid #efefef;
  border-radius: 50%;
  color: #efefef;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.hero-banner .swiper-button-next:hover, .hero-banner .swiper-button-prev:hover {
  opacity: 1;
  background-color: #efefef;
  color: #212121;
}
.hero-banner .swiper-button-next:after,
.hero-banner .swiper-button-prev:after {
  font-size: 20px;
}

.about-us {
  scroll-margin-top: 74px;
}
.about-us img {
  border-radius: 12px;
}
.about-us .img-about-right {
  height: 160px;
}
.about-us .img-about-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-top-header {
  display: flex;
  justify-content: space-between;
  color: white;
  padding: 14px;
}
.home-top-header .top-header-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.home-top-header .btn {
  --bs-btn-font-size: 18px;
}

.packages {
  scroll-margin-top: 74px;
}
.packages .header-wrapper {
  padding: 24px 0 8px;
}
.packages .header-wrapper h3 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 18px;
}
.packages .content-wrapper {
  padding: 8px 0 24px;
}
.packages .swiper .swiper-button-prev, .packages .swiper .swiper-button-next {
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid var(--mdb-border-color);
  color: #212121;
  font-weight: 700;
}
.packages .swiper .swiper-button-prev::after, .packages .swiper .swiper-button-next::after {
  font-size: 12px;
}
.packages .swiper-slide {
  height: auto;
  width: 312px;
}
.packages .swiper-slide .card {
  height: 100%;
  box-shadow: none;
}
.packages .swiper-slide img {
  aspect-ratio: 5/3;
}
.packages .swiper-slide .card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.packages .swiper-slide .card-body h6 {
  font-size: 13px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.packages .package-items {
  position: relative;
  height: 100%;
}
.packages .package-items .package-img {
  height: 380px;
}
.packages .package-items .package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.packages .package-items .package-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 12px;
  border-radius: 50rem;
  background-color: rgba(220, 220, 220, 0.25);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.packages .package-items .package-pack {
  position: relative;
  width: 100%;
}
.packages .package-items .package-content-wrapper {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 6px;
}
.packages .package-items .package-content {
  padding: 1rem;
  background-color: #17519d;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.packages .package-items .package-content h6 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}
.packages .package-items .package-content p {
  font-size: 13px;
  color: var(--bs-gray);
}
.packages .package-items .package-content .package-desc {
  font-size: 11px;
  transition: all 0.3s linear;
  max-height: 80px;
  margin-bottom: 8px;
  overflow: hidden;
  color: rgba(220, 220, 220, 0.75);
}
.packages .package-items .package-content .package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #ffc107;
}
.packages .package-items .package-content .package-price span {
  font-size: 18px;
  font-weight: 700;
}
.packages .package-items .package-content .package-price .btn {
  position: relative;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 50rem;
  transform: translateX(0px);
  transition: all 0.3s ease-in-out;
}
.packages .package-items:hover .package-content {
  background-color: #17519d;
}
.packages .package-items:hover .package-content .package-price {
  color: #ffc107;
}
.packages .package-items:hover .package-content .package-price .btn {
  transform: translateX(0);
}
.packages .package-items:hover .package-desc {
  max-height: 80px !important;
  margin-bottom: 8px !important;
}
.packages .packages-ad-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  background-color: rgb(234, 234, 234);
}
.packages .packages-ad-banner img {
  max-width: 100%;
  max-height: 100%;
}
.packages .btn-more-packages {
  padding: 10px 28px;
  height: 42px;
}
.packages .btn-slide-package {
  display: grid;
  place-content: center;
  padding: 10px;
  height: 42px;
  width: 42px;
  font-size: 20px;
}
.packages .nav-pills .nav-link {
  padding: 12px 24px;
  border-radius: 50rem;
  color: var(--bs-body-color);
  border: 1px solid var(--bs-border-color);
}
.packages .nav-pills .nav-link.active {
  background-color: #17519d;
  color: #fff;
}

.news {
  scroll-margin-top: 74px;
}
.news .swiper-slide {
  border: 1px solid var(--bs-border-color);
  border-radius: 16px;
  display: flex;
}
.news .news-items {
  text-decoration: none;
}
.news .news-items .news-img img {
  border-radius: 16px 16px 0 0;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news .news-items .news-content {
  padding: 16px;
}
.news .news-ad-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  background-color: rgb(234, 234, 234);
}
.news .swiper-news-prev, .news .swiper-news-next {
  display: flex;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--bs-border-color);
  border-radius: 50rem;
  font-size: 18px;
  color: #474747;
}
.news .swiper-button-disabled {
  opacity: 0;
}

.packages-hero-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 180px;
  padding-top: 74px;
  background-image: url(/images/slider/slide-dolphin.jpg);
  background-size: cover;
  background-color: #17519d;
  color: #fff;
}

@media (min-width: 768px) {
  .app-home-header {
    height: 480px;
  }
  .app-home-header .hero-caption {
    zoom: 1;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .hero-banner .swiper-hero {
    height: calc(100vh - 248px);
  }
  .about-us .img-about-right {
    height: 380px;
  }
  .packages .header-wrapper {
    padding: 48px 0 16px;
  }
  .packages .header-wrapper h3 {
    font-size: 28px;
  }
  .packages .content-wrapper {
    padding: 12px 0 48px;
  }
  .packages .swiper-slide .card-body h6 {
    font-size: 16px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .packages .package-items .package-img {
    height: 360px;
  }
  .packages .package-items .package-content {
    background-color: rgba(220, 220, 220, 0.25);
  }
  .packages .package-items .package-content .package-desc {
    max-height: 0px;
    margin-bottom: 0px;
  }
  .packages .package-items .package-content .package-price {
    color: #fff;
  }
  .packages .package-items .package-content .package-price .btn {
    transform: translateX(75px);
  }
  .packages .packages-ad-banner {
    height: 360px;
  }
  .news .news-ad-banner {
    height: 380px;
  }
  .news .news-items .news-img img {
    height: 240px;
    object-fit: cover;
  }
}
body {
  font-size: 13px;
  font-family: "Poppins", "Inter", sans-serif;
}

a {
  text-decoration: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

section {
  background-size: cover;
}/*# sourceMappingURL=style.css.map */