@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Maison Neue Bold";
  src: url("../../fonts/Maison_Neue_Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Maison Neue Reguler";
  src: url("../../fonts/Maison_Neue_Book.ttf") format("truetype");
}
@font-face {
  font-family: "Maison Neue Light";
  src: url("../../fonts/Maison_Neue_Light.ttf") format("truetype");
}
@font-face {
  font-family: "Maison Neue Mono";
  src: url("../../fonts/Maison_Neue_Mono.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  background-color: #fbf7f3;
}

.button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background: #fff;
  width: auto;
  text-decoration: none;
}
.button-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Serif Display", sans-serif;
}

p,
span {
  font-family: "Maison Neue Light", sans-serif;
  font-size: 15px;
  color: #5d5d5d;
}

.text-grey {
  color: #b4b4b4;
}
.text-grey-dark {
  color: #474747;
}
.text-grey-light {
  color: #e4e4e4;
}
.text-green {
  color: #286061;
}
.text-orange {
  color: #e3bb63;
}

.title.main-title {
  font-size: 90px;
  line-height: 90px;
  margin-bottom: 75px;
}
.title.second-title {
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 50px;
}
.title.page-title {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 50px;
}
.title.page-sub-title {
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 25px;
}

.container.page-wrapper {
  padding-block: 50px;
}

.pagination {
  margin-top: 25px;
  gap: 5px;
}
.pagination .page-item .page-link {
  background: none;
  border: none;
  font-size: 13px;
  line-height: 1;
  color: #474747;
  border-radius: 5px;
}
.pagination .page-item .page-link:hover, .pagination .page-item .page-link.active {
  background: #e4e4e4;
}

.section-wrapper {
  padding: 75px 0;
  position: relative;
}

.hero-wrapper-general {
  width: 100%;
  height: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 0;
}
.hero-wrapper-general img,
.hero-wrapper-general iframe {
  width: 100%;
  height: 100%;
}

.btn {
  border-radius: 7.5px;
}
.btn-light {
  border: 1px solid #e4e4e4;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
.shape-wrapper {
  position: relative;
  z-index: 1;
}
.shape-wrapper .shape {
  position: absolute;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
  opacity: 0.1;
  border-radius: 50%;
  background-color: #286061;
}
.shape-wrapper .shape-large {
  top: -30px;
  left: 0px;
  width: 230px;
  height: 230px;
}
.shape-wrapper .shape-medium {
  top: -100px;
  left: 50%;
  width: 130px;
  height: 130px;
}
.shape-wrapper .shape-small {
  bottom: -50px;
  right: 30px;
  width: 100px;
  height: 100px;
}

@media (max-width: 768px) {
  .title.main-title {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 50px;
  }
  .title.second-title {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 35px;
  }
  .hero-wrapper-general {
    height: 250px;
  }
  .section-wrapper {
    padding: 50px 0;
  }
  .shape-wrapper .shape-large {
    top: -30px;
    left: 0px;
    width: 120px;
    height: 120px;
  }
  .shape-wrapper .shape-medium {
    top: -100px;
    left: 50%;
    width: 80px;
    height: 80px;
  }
  .shape-wrapper .shape-small {
    bottom: -50px;
    right: 30px;
    width: 50px;
    height: 50px;
  }
}
.form-wrapper .form-group {
  margin-bottom: 20px;
}
.form-wrapper .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.form-wrapper .form-group .form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.form-wrapper .form-group .form-control:focus {
  border-color: #286061;
  box-shadow: 0 0 0 3px rgba(40, 96, 97, 0.1);
  outline: none;
}
.form-wrapper .form-check {
  margin-bottom: 20px;
}
.form-wrapper .form-check label {
  font-size: 0.9rem;
  color: #666;
}
.form-wrapper .form-check label a {
  color: #286061;
  text-decoration: none;
}
.form-wrapper .form-check label a:hover {
  text-decoration: underline;
}
.form-wrapper .form-check input {
  margin-right: 10px;
}
.form-wrapper .btn-primary {
  background-color: #286061;
  border: 2px solid #286061;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
}
.form-wrapper .btn-primary:hover {
  background-color: #286061;
  border-color: #286061;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(40, 96, 97, 0.2);
}
.form-wrapper .btn-primary span {
  margin-right: 10px;
  color: #fff;
}

.password-wrapper {
  position: relative;
}
.password-wrapper button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: 1px solid #e4e4e4;
}

nav.main-navbar .botton-login-on-nav {
  background-color: #286061;
  color: #fff;
}
nav.main-navbar.not-sticky {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 15px;
}
nav.main-navbar.not-sticky .nav-logo img {
  height: 50px;
  width: auto;
}
nav.main-navbar.not-sticky .nav {
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 10px;
}
nav.main-navbar.not-sticky .nav li .nav-icon {
  display: none;
}
nav.main-navbar.not-sticky .nav li .nav-link {
  color: #666;
  font-size: 13px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
  border-radius: 5px;
}
nav.main-navbar.not-sticky .nav li .nav-link span {
  color: #666;
  font-size: 13px;
}
nav.main-navbar.not-sticky .nav li .nav-link:hover, nav.main-navbar.not-sticky .nav li .nav-link.active {
  background-color: #286061;
  color: #fff;
}
nav.main-navbar.not-sticky .nav li .nav-link:hover span, nav.main-navbar.not-sticky .nav li .nav-link.active span {
  color: #fff;
}
nav.main-navbar.is-sticky {
  background: #286061;
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100px;
}
nav.main-navbar.is-sticky .nav-logo {
  display: none;
}
nav.main-navbar.is-sticky .nav {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
nav.main-navbar.is-sticky .nav li {
  flex: 1;
  height: 100%;
  width: 100%;
  position: relative;
  background-image: linear-gradient(to bottom, transparent, transparent 99%, #ccc 99%, #ccc 100%);
}
nav.main-navbar.is-sticky .nav li:last-child {
  background: none;
}
nav.main-navbar.is-sticky .nav li .nav-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  height: 100%;
  text-align: center;
}
nav.main-navbar.is-sticky .nav li .nav-link:hover {
  background: #fff;
}
nav.main-navbar.is-sticky .nav li .nav-link:hover .fa,
nav.main-navbar.is-sticky .nav li .nav-link:hover span {
  color: #286061;
}
nav.main-navbar.is-sticky .nav li .nav-link .fa {
  color: #fff;
  font-size: 25px;
}
nav.main-navbar.is-sticky .nav li .nav-link span {
  color: #fff;
  font-family: "Maison Neue Reguler";
  font-size: 13px;
}

.menu-mobile {
  position: sticky;
  z-index: 6;
  top: 0;
  right: 0;
  height: auto;
  width: 100%;
  padding: 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.menu-mobile .container-fluid {
  padding: 0;
}
.menu-mobile .container-fluid .navbar-trigger {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 10px 15px;
}
.menu-mobile .container-fluid .navbar-trigger .navbar-toggler {
  background-color: #286061;
  color: #fff;
  border: none;
  outline: none;
  padding: 7.5px 12.5px;
}
.menu-mobile .container-fluid .navbar-brand img {
  height: 50px;
  width: auto;
}
.menu-mobile .container-fluid .navbar-nav {
  margin-top: 0;
  background-color: #f5f5f5;
}
.menu-mobile .container-fluid .navbar-nav li {
  border-bottom: 1px solid #e4e4e4;
}
.menu-mobile .container-fluid .navbar-nav li:first-child {
  border-top: 1px solid #e4e4e4;
}
.menu-mobile .container-fluid .navbar-nav li a {
  padding: 10px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-mobile .container-fluid .navbar-nav li a span {
  font-size: 13px;
}
.menu-mobile .container-fluid .navbar-nav li a i {
  width: 20px;
}
.menu-mobile .container-fluid .navbar-nav li a.active {
  background-color: #286061;
  color: #fff;
}
.menu-mobile .container-fluid .navbar-nav li a.active span {
  color: #fff;
}

footer {
  color: #363636;
  background-color: #e0e0e0;
  padding: 50px;
}
footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  text-align: center;
}
footer .footer-wrapper img {
  width: 90px;
  height: auto;
}
footer .footer-wrapper span {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
}

@media (max-width: 768px) {
  footer {
    padding-bottom: 100px;
  }
}
.faqs-wrapper {
  margin-block: 100px;
}
.faqs-wrapper .accordion {
  border-bottom: 1px solid #e4e4e4;
  --bs-accordion-border-width: 0px;
  background-color: #fff;
}
.faqs-wrapper .accordion .accordion-item {
  border: none;
  border-radius: 0px;
  border-top: 1px solid #e4e4e4;
}
.faqs-wrapper .accordion .accordion-header .accordion-button {
  font-family: "Maison Neue Bold";
  font-size: 15px;
  border-radius: 0px;
  border: none !important;
}
.faqs-wrapper .accordion .accordion-header .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: inherit !important;
}
.faqs-wrapper .accordion .accordion-header .accordion-button::after {
  display: none;
}
.faqs-wrapper .accordion .accordion-header .accordion-button .fa {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.faqs-wrapper .accordion .accordion-header .accordion-button[aria-expanded=true] .fa-plus {
  display: none;
}
.faqs-wrapper .accordion .accordion-header .accordion-button[aria-expanded=true] .fa-minus {
  display: inline-block;
}
.faqs-wrapper .accordion .accordion-header .accordion-button[aria-expanded=false] .fa-minus {
  display: none;
}
.faqs-wrapper .accordion .accordion-body {
  padding-block: 0px;
  font-family: "Maison Neue Reguler";
  font-size: 13px;
}

.audience-wrapper {
  margin-block: 100px;
}
.audience-wrapper .audience-item {
  text-align: center;
}
.audience-wrapper .audience-item h1 {
  color: #e3bb63;
  font-size: 100px;
  line-height: 125px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .audience-wrapper .audience-item h1 {
    font-size: 65px;
    line-height: 75px;
  }
}
.schedule-wrapper {
  padding-block: 50px;
  margin-block: 100px;
  position: relative;
  background-color: #212121;
}
.schedule-wrapper .schedule-item:last-child {
  background-color: #ff0;
}
.schedule-wrapper .schedule-item {
  gap: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding-block: 7.5px;
  border-top: 1px solid #e4e4e4;
}
.schedule-wrapper .schedule-item:first-child {
  border: none;
}
.schedule-wrapper .schedule-item .schedule-date {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  width: 120px;
}
.schedule-wrapper .schedule-item .schedule-date p {
  font-size: 48px;
  line-height: 1;
  padding-top: 7px;
  font-family: "Maison Neue Bold";
  margin: 0px;
  color: #e3bb63;
}
.schedule-wrapper .schedule-item .schedule-date .schedule-month {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  margin: 0px;
}
.schedule-wrapper .schedule-item .schedule-date .schedule-month span {
  font-size: 16px;
  color: #e3bb63;
}
.schedule-wrapper .schedule-item .schedule-text {
  flex: 1;
}
.schedule-wrapper .schedule-item .schedule-text p {
  color: #fff;
  margin: 0;
}
.schedule-wrapper::before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #212121 50.5%);
  top: -100px;
}
.schedule-wrapper::after {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  background: linear-gradient(to bottom left, #212121 50%, rgba(255, 255, 255, 0) 50.5%);
  bottom: -100px;
}
.schedule-wrapper .dots-decoration {
  width: 100px;
  height: auto;
  position: absolute;
  z-index: 2;
}
.schedule-wrapper .dots-decoration.dots-top {
  top: -75px;
  right: 150px;
}
.schedule-wrapper .dots-decoration.dots-bottom {
  bottom: -75px;
  left: 150px;
}
.schedule-wrapper .button {
  margin-block: 50px;
}

@media (max-width: 768px) {
  .schedule-wrapper {
    margin-block: 50px;
  }
  .schedule-wrapper::before {
    height: 50px;
    top: -50px;
  }
  .schedule-wrapper::after {
    height: 50px;
    bottom: -50px;
  }
  .schedule-wrapper .schedule-item {
    gap: 10px;
  }
  .schedule-wrapper .schedule-item .schedule-date {
    gap: 5px;
    width: 100px;
  }
  .schedule-wrapper .schedule-item .schedule-date p {
    font-size: 40px;
  }
  .schedule-wrapper .schedule-item .schedule-date .schedule-month span {
    font-size: 16px;
  }
  .schedule-wrapper .dots-decoration {
    width: 75px;
  }
  .schedule-wrapper .dots-decoration.dots-top {
    top: -50px;
    right: 50px;
  }
  .schedule-wrapper .dots-decoration.dots-bottom {
    bottom: -50px;
    left: 50px;
  }
}
.product-wrapper {
  padding-block: 75px;
}
.product-wrapper .owl-carousel .owl-stage-outer {
  padding-block: 10px;
}
.product-wrapper .owl-carousel .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
  width: 100%;
  margin-top: 15px;
}
.product-wrapper .owl-carousel .owl-dots button {
  width: 10px;
  height: 10px;
  border-radius: 100em;
  border: none;
  background-color: #e4e4e4;
}
.product-wrapper .owl-carousel .owl-dots button.active {
  background-color: #212121;
}
.product-wrapper .custom-title {
  text-align: center;
}
.product-wrapper .custom-title h4 {
  margin-top: -105px;
}
.product-wrapper .product-item {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
}
.product-wrapper .product-item:hover {
  transition: transform 0.3s ease;
}
.product-wrapper .product-item:hover:hover {
  transform: translateY(-5px);
}
.product-wrapper .product-item--header {
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgb(240.75, 240.75, 240.75);
}
.product-wrapper .product-item--header img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.product-wrapper .product-item--body h4,
.product-wrapper .product-item--body p {
  font-family: "Roboto";
}
.product-wrapper .product-item--body h4 {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 15px;
}
.product-wrapper .product-item--body p {
  line-height: 1.5;
}
.product-wrapper .product-item--footer button {
  width: 40px;
  height: 40px;
  border-radius: 100em;
  border: none;
  background-color: #e4e4e4;
  color: #fff;
}
.product-wrapper .product-item:hover {
  box-shadow: #0d816e 0px 2px 8px 0px;
  background: linear-gradient(154.2deg, #0d816e 0%, #51995d 100%);
}
.product-wrapper .product-item:hover .product-item--body h4,
.product-wrapper .product-item:hover .product-item--body p {
  color: #fff;
}
.product-wrapper .product-item:hover .product-item--footer button {
  background: #79cfc2;
  color: #0d816e;
}

@media (max-width: 768px) {
  .product-wrapper .custom-title h4 {
    margin-top: -65px;
  }
}
.hero-wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
}
.hero-wrapper img {
  width: 100%;
  height: 100%;
}
.hero-wrapper .top-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  z-index: 3;
  position: absolute;
  padding: 15px;
  top: 0;
  width: calc(100% - 100px);
}
.hero-wrapper .top-bar button {
  border: 1px solid #e4e4e4;
  border-radius: 100em;
  color: #286061;
}
.hero-wrapper .swiper-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  overflow: hidden;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-wrapper {
    height: auto;
  }
  .hero-wrapper .top-bar {
    width: 100%;
    padding: 10px;
  }
  .hero-wrapper .top-bar img {
    height: 65px;
    width: auto;
  }
  .hero-wrapper .swiper-container {
    height: auto;
    position: static;
  }
}
.welcome-wrapper {
  padding-block: 75px;
  position: relative;
}
.welcome-wrapper .dots-decoration {
  width: 100px;
  height: auto;
  position: absolute;
  z-index: 2;
}
.welcome-wrapper .dots-decoration.dots-top {
  top: 300px;
  left: 150px;
}
.welcome-wrapper .dots-decoration.dots-bottom {
  bottom: -75px;
  right: 250px;
}
.welcome-wrapper .video-container {
  position: relative;
  width: 100%; /* Adjust as needed */
  height: 400px;
  border-radius: 10px; /* Rounded corners */
  margin-top: 75px;
}
.welcome-wrapper .video-container a {
  background-color: none;
  text-decoration: none;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  width: 90%;
  height: 100%;
  display: flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  border-radius: 10px;
}
.welcome-wrapper .video-container a i {
  font-size: 50px;
  color: #f00;
  position: absolute;
  z-index: 2;
}
.welcome-wrapper .video-container a img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.welcome-wrapper .video-container::after {
  content: "";
  width: 80%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  top: 75px;
  right: 0;
  background: #87e7c5;
}

@media (max-width: 768px) {
  .welcome-wrapper {
    padding-block: 50px;
  }
  .welcome-wrapper .dots-decoration {
    display: none;
  }
  .welcome-wrapper .video-container {
    height: 300px;
  }
  .welcome-wrapper .video-container::after {
    top: 55px;
  }
}
.card-product {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 25px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 15px;
}
.card-product--image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgb(240.75, 240.75, 240.75);
}
.card-product--image img {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
}
.card-product--info h3 {
  font-size: 25px;
  line-height: 25px;
}
.card-product--info p {
  font-size: 15px;
  text-transform: uppercase;
  color: #e3bb63;
}
.card-product .button {
  border: none;
  background-color: #286061;
  color: #fff;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.card-product .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: all 0.6s ease-in-out;
}
.card-product .button:hover::before {
  left: 100%;
}

.product-detail {
  align-items: center;
}
.product-detail .profile-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
}
.product-detail .profile-wrapper--image {
  width: 120px;
  height: auto;
  border-radius: 100em;
  overflow: hidden;
  border: 1px solid #e4e4e4;
  padding: 10px;
}
.product-detail .profile-wrapper--image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 100em;
  border: 1px solid rgb(240.75, 240.75, 240.75);
}
.product-detail .profile-wrapper--info {
  flex: 1;
}
.product-detail .profile-wrapper--info table {
  width: 100%;
}
.product-detail .profile-wrapper--info table tr {
  font-size: 13px;
  color: #5d5d5d;
}
.product-detail .profile-wrapper--info table tr td {
  padding: 2.5px;
}
.product-detail .profile-wrapper--info table tr td:first-child {
  font-weight: bold;
  width: 170px;
}
.product-detail .profile-wrapper--info table tr td:first-child i {
  width: 25px;
}
.product-detail .visitor-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}
.product-detail .visitor-wrapper--content {
  width: auto;
  padding: 10px 25px;
  text-align: center;
  border: 1px solid #474747;
  color: #5d5d5d;
  background-color: #fff;
  border-radius: 5px;
}
.product-detail .visitor-wrapper--content span {
  font-size: 13px;
}
.product-detail .image-detail-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.product-detail .image-detail-wrapper .swiper-button-next,
.product-detail .image-detail-wrapper .swiper-button-prev {
  height: 35px;
  width: auto;
}
.product-detail .image-detail-wrapper--main {
  width: 100%;
  padding: 5px;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
}
.product-detail .image-detail-wrapper--main #mainImage {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.product-detail .image-detail-wrapper--main #mainImage:hover {
  cursor: zoom-in;
}
.product-detail .image-detail-wrapper--thumb {
  width: 100%;
  height: auto;
}
.product-detail .image-detail-wrapper--thumb #thumbnailContainer img {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
}
.product-detail .image-detail-wrapper--thumb #thumbnailContainer img:hover {
  cursor: pointer;
}
.product-detail .info-wrapper {
  width: 100%;
}
.product-detail .info-wrapper h1 {
  line-height: 1;
  margin-bottom: 5px;
}
.product-detail .info-wrapper span.product-location {
  color: #e3bb63;
  text-transform: uppercase;
  font-family: "Maison Neue Regular";
  font-size: 15px;
  line-height: 1;
}
.product-detail .info-wrapper--button {
  margin-top: 25px;
  gap: 15px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.product-detail .info-wrapper--button .button {
  background-color: rgb(219.2391304348, 168.152173913, 55.7608695652);
  color: #fff;
}
.product-detail .deskripsi-wrapper p {
  text-align: justify;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .product-detail .visitor-wrapper--content {
    width: 100%;
    margin-block: 15px;
  }
  .info-wrapper {
    margin-top: 25px;
  }
  .info-wrapper h1 {
    font-size: 30px !important;
  }
}
#loginModal .modal-content {
  position: relative;
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#loginModal .modal-body {
  padding: 1.5rem;
}
#loginModal .modal-body .cta_daftar {
  display: flex;
  align-items: end;
  justify-content: center;
}
#loginModal .modal-body .cta_daftar small {
  font-size: 12px;
}
#loginModal .modal-body .cta_daftar a {
  font-family: "Maison Neue Bold";
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
  color: #286061;
}

.registration-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.registration-panel.open {
  right: 0;
}

body.registration-open {
  overflow: hidden;
}

.close-registration {
  background: none;
  border: none;
  color: #e4e4e4;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
}

.registration-body {
  position: relative;
  padding: 20px;
}

.registration-type {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  font-size: 12px;
  color: #474747;
}

@media (max-width: 576px) {
  .registration-panel {
    width: 100%;
    right: -100%;
  }
}
.btn-close.btn-close-modal {
  position: absolute;
  padding: 7.5px;
  right: 1rem;
  top: 1rem;
  z-index: 1050;
  transform: scale(0.7);
  border-radius: 100%;
  background-color: #286061;
  color: #fff;
  cursor: pointer;
}
.btn-close.btn-close-modal:hover {
  background-color: rgb(54.8905109489, 131.7372262774, 133.1094890511);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.contact-cards .contact-card {
  position: relative;
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgb(240, 240, 240) 0%, rgba(250, 250, 250, 0) 100%);
}
.contact-cards .contact-card-title {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: start;
}
.contact-cards .contact-card-title i {
  font-size: 50px;
  color: #f0f0f0;
  transition: all 0.3s ease;
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 10px;
}
.contact-cards .contact-card-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.contact-cards .contact-card-title p {
  font-size: 1rem;
  color: #666;
  transition: all 0.3s ease;
  line-height: 1.5;
  margin: 0;
}

.contact-form-wrapper {
  background-color: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.transportation-tabs-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.transportation-tabs-menu .transport-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.transportation-tabs-menu .transport-icon-item .icon-container {
  width: 75px;
  height: 75px;
  border-radius: 10px;
  background-color: #e4e4e4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  color: #fff;
}
.transportation-tabs-menu .transport-icon-item p {
  font-size: 14px;
  color: #5d5d5d;
  margin: 0;
  transition: all 0.3s ease;
}
.transportation-tabs-menu .transport-icon-item.active .icon-container {
  background-color: #286061;
}
.transportation-tabs-menu .transport-icon-item.active p {
  color: #286061;
  font-weight: bold;
}
.transportation-tabs-menu .transport-icon-item:hover .icon-container {
  transform: translateY(-5px);
}

.transportation-content {
  position: relative;
}
.transportation-content .transport-content-item {
  display: none;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.transportation-content .transport-content-item.active {
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .transportation-content .transport-content-item.active {
    flex-direction: column;
  }
}
.transportation-content .transport-content-item .transport-image {
  flex: 1;
  min-height: 300px;
  max-width: 50%;
  border-right: 1px solid #f0f0f0;
}
@media (max-width: 768px) {
  .transportation-content .transport-content-item .transport-image {
    max-width: 100%;
  }
}
.transportation-content .transport-content-item .transport-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.transportation-content .transport-content-item .transport-info {
  flex: 1;
  padding: 30px;
}
.transportation-content .transport-content-item .transport-info h3 {
  color: #286061;
  font-size: 24px;
  margin-bottom: 20px;
}
.transportation-content .transport-content-item .transport-info p {
  color: #5d5d5d;
  margin-bottom: 15px;
  line-height: 1.6;
}
.transportation-content .transport-content-item .transport-info .schedule-note {
  margin-top: 20px;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  font-size: 14px;
  position: relative;
}
.transportation-content .transport-content-item .transport-info .schedule-note p {
  margin: 0;
}
.transportation-content .transport-content-item .transport-info .schedule-note .link {
  color: #286061;
  text-decoration: underline;
  font-weight: bold;
}

@media (max-width: 768px) {
  .transportation-tabs-menu {
    gap: 20px;
    flex-direction: row;
  }
  .transportation-tabs-menu .transport-icon-item .icon-container {
    width: 60px;
    height: 60px;
  }
  .transportation-tabs-menu .transport-icon-item .icon-container img {
    width: 30px;
    height: 30px;
  }
  .transportation-tabs-menu .transport-icon-item p {
    font-size: 14px;
  }
}
.hotel-list {
  padding: 20px 0;
}

.hotel-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}
.hotel-card:nth-child(1) {
  animation-delay: 0.1s;
}
.hotel-card:nth-child(2) {
  animation-delay: 0.2s;
}
.hotel-card:nth-child(3) {
  animation-delay: 0.3s;
}
.hotel-card:nth-child(4) {
  animation-delay: 0.4s;
}
.hotel-card:nth-child(5) {
  animation-delay: 0.5s;
}
.hotel-card:nth-child(6) {
  animation-delay: 0.6s;
}
.hotel-card:nth-child(7) {
  animation-delay: 0.7s;
}
.hotel-card:nth-child(8) {
  animation-delay: 0.8s;
}
.hotel-card:nth-child(9) {
  animation-delay: 0.9s;
}
.hotel-card:nth-child(10) {
  animation-delay: 1s;
}
.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.hotel-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.hotel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hotel-card__image:hover img {
  transform: scale(1.05);
}
.hotel-card__image__star {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px 10px;
  border-radius: 12px 0 0 0;
  z-index: 2;
  background-color: #fff;
}
.hotel-card__image__star-active {
  color: #ffa500;
}
.hotel-card__image__star-inactive {
  color: #b4b4b4;
}
.hotel-card__content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.hotel-card__name {
  font-family: "DM Serif Display", sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: #474747;
}
.hotel-card__info {
  margin-bottom: 20px;
  flex-grow: 1;
}
.hotel-card__info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.hotel-card__info-item i {
  color: #286061;
  margin-right: 10px;
  margin-top: 4px;
  font-size: 14px;
}
.hotel-card__info-item span {
  font-size: 14px;
  line-height: 1.4;
  color: #b4b4b4;
}
.hotel-card__direction-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #286061;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}
.hotel-card__direction-btn i {
  margin-right: 8px;
}
.hotel-card__direction-btn:hover {
  background-color: rgb(25.1094890511, 60.2627737226, 60.8905109489);
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hotel-card__image {
    height: 160px;
  }
  .hotel-card__content {
    padding: 15px;
  }
  .hotel-card__name {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .hotel-card__info {
    margin-bottom: 15px;
  }
  .hotel-card__info-item {
    margin-bottom: 8px;
  }
  .hotel-card__info-item span {
    font-size: 13px;
  }
  .hotel-card__direction-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/*# sourceMappingURL=main.css.map */
