* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "GFS Didot", sans-serif;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: inherit;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
  background-color: white;
  color: #030D14;
}
.main-header .header-icon.mobile {
  display: none;
}
@media (max-width: 768px) {
  .main-header .header-icon.mobile {
    display: block;
  }
}
.main-header .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.main-header .hamburger-menu .bar {
  width: 17px;
  height: 1px;
  background-color: #103E61;
  margin: 3px 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .main-header .hamburger-menu {
    display: flex;
  }
}
.main-header .hamburger-menu[data-open=true] .bar {
  display: flex;
  background-color: #103E61;
}
.main-header .nav-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10%;
}
@media (max-width: 768px) {
  .main-header .nav-menu {
    display: none;
  }
}
.main-header .nav-menu .header-icon {
  max-height: 137px;
  width: auto;
}
.main-header .nav-menu .navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10%;
}
.main-header .nav-menu .navigation .navbar-menu {
  display: flex;
  list-style: none;
  flex-direction: row;
  gap: 40px;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
.main-header .nav-menu .navigation .navbar-menu li a {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
}
.main-header .nav-menu .navigation .navbar-menu li a:hover {
  font-weight: 600;
}
.main-header .nav-menu .book {
  background-color: #103E61 !important;
  color: white;
  padding: 11px 57px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-style: Bold;
  font-size: 12.44px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
}
.main-header .side-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  max-width: 300px;
  width: 100%;
  height: 100vh;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px 27px;
}
@media (max-width: 768px) {
  .main-header .side-menu {
    display: flex;
  }
}
.main-header .side-menu.active {
  transform: translateX(-300px);
  overflow: auto;
}
.main-header .side-menu .side-menu-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.main-header .side-menu .side-menu-content .close-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  padding: 0;
  align-items: flex-end;
  position: relative;
}
.main-header .side-menu .side-menu-content .close-menu .bar {
  width: 20px;
  height: 2px;
  background-color: #103E61;
  margin: 0;
  position: absolute;
  transition: all 0.3s ease;
}
.main-header .side-menu .side-menu-content .close-menu .bar:first-child {
  transform: rotate(45deg);
}
.main-header .side-menu .side-menu-content .close-menu .bar:last-child {
  transform: rotate(-45deg);
}
.main-header .side-menu .side-menu-content .close-menu:hover .bar {
  background-color: rgb(8.7787610619, 34.017699115, 53.2212389381);
}
.main-header .side-menu .side-menu-content .text-logo {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  width: fit-content;
}
.main-header .side-menu .side-menu-content .text-logo p {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.86px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.main-header .side-menu .side-menu-content .navbar-menu {
  list-style: none;
  padding: 0;
  gap: 40px;
  display: flex;
  flex-direction: column;
}
.main-header .side-menu .side-menu-content .navbar-menu li {
  padding-left: 43px;
  display: flex;
  align-items: center;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 35px;
}
.main-header .side-menu .side-menu-content .navbar-menu li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 21.86px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.main-header .side-menu .book {
  background-color: #103E61 !important;
  color: white;
  padding: 11px 57px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-style: Bold;
  font-size: 12.44px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
}
.main-header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}
.main-header .overlay.active {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(5px);
}

.footer {
  background-color: #030D14;
  padding: 80px 5% 32px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 38px;
}
.footer .up {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer .up {
    flex-direction: column;
    align-items: center;
  }
}
.footer .up .footer-menu {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer .up .footer-menu {
    flex-direction: column;
    align-items: center;
  }
}
.footer .up .footer-menu li {
  list-style: none;
  padding: 8px 20px;
}
.footer .up .footer-menu li a {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
}
.footer .down {
  padding: 16px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 0.5px solid #103e61;
}
@media (max-width: 768px) {
  .footer .down {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.footer .down .left {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer .down .left {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
.footer .down .left a {
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0%;
}
.footer .down .left a.ss {
  font-weight: 400;
}
.footer .down .left li {
  list-style: none;
  padding: 0;
}
.footer .down .rrss {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer .down .rrss {
    align-items: center;
    order: -1;
  }
}

.banner-swiper {
  width: 100%;
  height: 75vh;
  position: relative;
  overflow: hidden;
}
.banner-swiper .swiper-wrapper {
  height: 100%;
}
.banner-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.banner-swiper .swiper-slide .banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.banner-swiper .swiper-slide .banner-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}
.banner-swiper .swiper-slide .banner-content {
  position: relative;
  z-index: 3;
  padding: 0 5%;
  max-width: 60%;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInUp 1s ease-out;
}
.banner-swiper .swiper-slide .banner-content h1 {
  font-weight: 400;
  font-style: Regular;
  font-size: 72px;
  line-height: 81px;
  letter-spacing: -3%;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.banner-swiper .swiper-slide .banner-content p {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 21.33px;
  letter-spacing: 0%;
}
.banner-swiper .swiper-slide .banner-content .banner-button {
  background-color: transparent;
  color: white;
  padding: 14px 50px;
  border: 1px solid white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transition: all 0.3s ease;
  text-shadow: none;
}
.banner-swiper .swiper-slide .banner-content .banner-button:hover {
  background-color: white;
  color: #030D14;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  .banner-swiper .swiper-slide .banner-content {
    max-width: 55%;
  }
  .banner-swiper .swiper-slide .banner-content h1 {
    font-size: 56px;
    line-height: 62px;
  }
}
@media (max-width: 1024px) {
  .banner-swiper .swiper-slide .banner-content {
    max-width: 60%;
  }
  .banner-swiper .swiper-slide .banner-content h1 {
    font-size: 48px;
    line-height: 54px;
  }
}
@media (max-width: 768px) {
  .banner-swiper .swiper-slide .banner-content {
    max-width: 90%;
    gap: 20px;
  }
  .banner-swiper .swiper-slide .banner-content h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .banner-swiper .swiper-slide .banner-content p {
    font-size: 16px;
    line-height: 28px;
  }
  .banner-swiper .swiper-slide .banner-content .banner-button {
    padding: 12px 24px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .banner-swiper .swiper-slide .banner-content h1 {
    font-size: 28px;
    line-height: 34px;
  }
  .banner-swiper .swiper-slide .banner-content p {
    font-size: 14px;
    line-height: 24px;
  }
  .banner-swiper .swiper-slide .banner-content .banner-button {
    padding: 10px 20px;
    font-size: 12px;
  }
}
.banner-swiper .swiper-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
  justify-content: center;
}
.banner-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}
.banner-swiper .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 0.8;
}
.banner-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  height: 8px;
  border-radius: 100px;
  opacity: 1;
  background-color: white;
}
@media (max-width: 768px) {
  .banner-swiper .swiper-pagination {
    bottom: 20px;
    gap: 8px;
  }
  .banner-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .banner-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    height: 8px;
    border-radius: 5px;
  }
}
@media (max-width: 480px) {
  .banner-swiper .swiper-pagination {
    bottom: 15px;
    gap: 6px;
  }
  .banner-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 16px;
    height: 8px;
    border-radius: 4px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.steps {
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps .steps-container {
  display: flex;
  flex-direction: row;
  border: 1px solid #9FB2C0;
  border-radius: 14px;
  padding: 22px 32px;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .steps .steps-container {
    flex-direction: column;
    padding: 0 32px;
  }
}
.steps .steps-container .step {
  flex: 1;
  padding: 0 0 0 24px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  border-left: 1px solid #9FB2C0;
}
.steps .steps-container .step.inactive {
  opacity: 0.5;
  filter: grayscale(1);
}
@media (max-width: 768px) {
  .steps .steps-container .step {
    border-left: none;
    padding: 16px 0;
    border-bottom: 1px solid #9FB2C0;
  }
  .steps .steps-container .step:last-child {
    border-bottom: none;
  }
}
.steps .steps-container .step:first-child {
  border-left: none;
}
.steps .steps-container .step .detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.steps .steps-container .step .detail .step-title {
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 14px;
  line-height: 19.17px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #030D14;
  font-family: "Inter", sans-serif;
}
.steps .steps-container .step .detail .step-description {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #103E61;
  font-family: "Inter", sans-serif;
}

.reviews {
  padding: 0;
  background-color: #fbfbfb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews .reviews-swiper {
  width: 100%;
  position: relative;
}
.reviews .reviews-swiper .swiper-wrapper {
  align-items: center;
}
.reviews .reviews-swiper .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  min-height: 400px;
  padding: 0;
}
.reviews .reviews-swiper .swiper-slide .review-image {
  flex: 1;
  max-width: 50%;
}
.reviews .reviews-swiper .swiper-slide .review-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  aspect-ratio: 720/532;
}
@media (max-width: 768px) {
  .reviews .reviews-swiper .swiper-slide .review-image {
    display: none;
  }
}
.reviews .reviews-swiper .swiper-slide .review-content {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 5%;
  display: flex;
  justify-content: center;
}
.reviews .reviews-swiper .swiper-slide .review-content img {
  max-width: 40px;
}
.reviews .reviews-swiper .swiper-slide .review-content .review-name {
  font-weight: 400;
  font-style: Regular;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.4px;
  color: #030D14;
}
.reviews .reviews-swiper .swiper-slide .review-content .review-text {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #103E61;
}
@media (max-width: 768px) {
  .reviews .reviews-swiper .swiper-slide .review-content {
    max-width: 100%;
    text-align: center;
    padding: 120px 5%;
  }
  .reviews .reviews-swiper .swiper-slide .review-content .review-name {
    font-weight: 400;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.4px;
  }
  .reviews .reviews-swiper .swiper-slide .review-content .review-text {
    font-weight: 400;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .reviews .reviews-swiper .swiper-slide {
    flex-direction: column;
    gap: 30px;
    min-height: 300px;
  }
}
.reviews .reviews-swiper .navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: absolute;
  bottom: 20px;
  right: 0;
}
.reviews .reviews-swiper .navigation .swiper-button-prev,
.reviews .reviews-swiper .navigation .swiper-button-next {
  position: relative;
  width: 52px;
  height: 52px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  color: #103E61;
  transition: all 0.3s ease;
}
.reviews .reviews-swiper .navigation .swiper-button-prev:after,
.reviews .reviews-swiper .navigation .swiper-button-next:after {
  font-size: 18px;
  font-weight: 600;
}
.reviews .reviews-swiper .navigation .swiper-button-prev:hover,
.reviews .reviews-swiper .navigation .swiper-button-next:hover {
  background-color: #103E61;
  color: white;
  transform: scale(1.1);
}
.reviews .reviews-swiper .navigation .swiper-button-prev.swiper-button-disabled,
.reviews .reviews-swiper .navigation .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.reviews .reviews-swiper .navigation .swiper-button-prev.swiper-button-disabled:hover,
.reviews .reviews-swiper .navigation .swiper-button-next.swiper-button-disabled:hover {
  background-color: white;
  color: #103E61;
  transform: scale(1);
}
@media (max-width: 768px) {
  .reviews .reviews-swiper .navigation .swiper-button-prev,
  .reviews .reviews-swiper .navigation .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .reviews .reviews-swiper .navigation .swiper-button-prev:after,
  .reviews .reviews-swiper .navigation .swiper-button-next:after {
    font-size: 16px;
  }
}

.invitation {
  background-color: #103E61;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 32px;
}
.invitation .up {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 40%;
}
@media (max-width: 768px) {
  .invitation .up {
    width: 100%;
  }
}
.invitation .up h3 {
  font-weight: 400;
  font-style: Regular;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: center;
}
@media (max-width: 768px) {
  .invitation .up h3 {
    font-size: 32px;
  }
}
.invitation .up p {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
}
.invitation .contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .invitation .contact {
    flex-direction: column;
    gap: 16px;
  }
}
.invitation .contact a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.invitation .contact a p {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
}

.us {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 50px 5% 29px 5%;
  background-color: #fbfbfb;
}
.us .information {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.us .information h3 {
  font-weight: 400;
  font-style: Regular;
  font-size: 34px;
  line-height: 48px;
  letter-spacing: -1px;
  text-align: center;
  color: #030D14;
}
.us .information p {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #103E61;
}
.us .information span {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #030D14;
}
.us .images {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
}
@media (max-width: 768px) {
  .us .images {
    flex-direction: column;
  }
}
.us .images .image {
  position: relative;
}
.us .images .image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  transition: transform 0.3s ease;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.us .images .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 13, 20, 0.2);
  pointer-events: none;
  z-index: 1;
}
.us .images .image p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "GFS Didot", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: white;
  z-index: 2;
}

.experiences {
  background: linear-gradient(to bottom, #030D14 50%, white 50%);
  padding: 50px 5% 57px 5%;
  display: flex;
  flex-direction: column;
  gap: 61px;
  align-items: center;
  justify-content: center;
}
.experiences .info {
  display: flex;
  flex-direction: column;
  gap: 27px;
  align-items: center;
  justify-content: center;
  color: white;
}
.experiences .info .up {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.experiences .info .up h3 {
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 58px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}
.experiences .info .up p {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}
.experiences .info a {
  background-color: transparent;
  color: white;
  padding: 14px 50px;
  border: 1px solid white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transition: all 0.3s ease;
  text-shadow: none;
}
.experiences .info a:hover {
  background-color: white;
  color: #030D14;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.experiences .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  align-items: stretch;
}
.experiences .cards .card {
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1019607843);
}
.experiences .cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.experiences .cards .card .card-image {
  width: 100%;
  height: 358px;
  object-fit: cover;
  flex-shrink: 0;
}
.experiences .cards .card .content {
  padding: 16px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
}
.experiences .cards .card .content .title {
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  font-family: "GFS Didot", sans-serif;
  color: #030D14;
  margin-bottom: 4px;
}
.experiences .cards .card .content .desc {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #103E61;
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .experiences .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .experiences .cards .card .card-image {
    height: 180px;
  }
  .experiences .cards .card .content {
    padding: 20px 16px;
  }
  .experiences .cards .card .content .title {
    font-size: 16px;
    line-height: 22px;
  }
  .experiences .cards .card .content .desc {
    font-size: 13px;
    line-height: 18px;
  }
}
@media (max-width: 768px) {
  .experiences .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .experiences .cards .card .card-image {
    height: 160px;
  }
  .experiences .cards .card .content {
    padding: 18px 14px;
  }
  .experiences .cards .card .content .title {
    font-size: 15px;
    line-height: 20px;
  }
  .experiences .cards .card .content .desc {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 480px) {
  .experiences .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .experiences .cards .card .card-image {
    height: 200px;
  }
  .experiences .cards .card .content {
    padding: 20px 16px;
  }
  .experiences .cards .card .content .title {
    font-size: 16px;
    line-height: 22px;
  }
  .experiences .cards .card .content .desc {
    font-size: 13px;
    line-height: 18px;
  }
}

.boats {
  padding: 48px 5%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.boats .boats-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.boats .boats-container .boats-header {
  padding-bottom: 2px;
  border-bottom: 1px solid black;
  width: fit-content;
}
.boats .boats-container .boats-header h2 {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 28.44px;
  letter-spacing: 0%;
  text-align: center;
  color: black;
}
.boats .boats-container .boats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(254px, 380px));
  gap: 24px;
  width: 100%;
  justify-content: space-evenly;
}
.boats .boats-container .boats-grid .boat-card {
  background-color: #030D14;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.boats .boats-container .boats-grid .boat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.boats .boats-container .boats-grid .boat-card .boat-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.boats .boats-container .boats-grid .boat-card .boat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.boats .boats-container .boats-grid .boat-card .boat-image:hover img {
  transform: scale(1.05);
}
.boats .boats-container .boats-grid .boat-card .boat-content {
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  justify-content: space-between;
}
.boats .boats-container .boats-grid .boat-card .boat-content .boat-title {
  font-weight: 500;
  font-style: Medium;
  font-size: 14.22px;
  line-height: 21.33px;
  letter-spacing: 0%;
  text-align: center;
  color: white;
}
.boats .boats-container .boats-grid .boat-card .boat-content .boat-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.boats .boats-container .boats-grid .boat-card .boat-content .boat-actions .boat-button {
  background-color: transparent;
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  border: 1px solid white;
  cursor: pointer;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.boats .boats-container .boats-grid .boat-card .boat-content .boat-actions .boat-button:hover {
  background-color: #103E61;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #103E61;
}
.boats .boats-container .boats-grid .boat-card .boat-content .boat-actions .boat-button:active {
  transform: translateY(0);
}
.boats .boats-container .boats-grid .no-boats {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #103E61;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  .boats .boats-container .boats-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
    gap: 24px;
  }
  .boats .boats-container .boats-grid .boat-card .boat-image {
    height: 220px;
  }
  .boats .boats-container .boats-grid .boat-card .boat-content {
    padding: 20px;
  }
  .boats .boats-container .boats-grid .boat-card .boat-content .boat-title {
    font-size: 18px;
    line-height: 26px;
  }
  .boats .boats-container .boats-grid .boat-card .boat-content .boat-actions .boat-button {
    padding: 10px 24px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .boats .boats-container .boats-header h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .boats .boats-container .boats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 350px));
    gap: 20px;
  }
  .boats .boats-container .boats-grid .boat-card .boat-image {
    height: 200px;
  }
  .boats .boats-container .boats-grid .boat-card .boat-content {
    padding: 18px;
    gap: 12px;
  }
  .boats .boats-container .boats-grid .boat-card .boat-content .boat-title {
    font-size: 16px;
    line-height: 24px;
  }
  .boats .boats-container .boats-grid .boat-card .boat-content .boat-actions .boat-button {
    padding: 10px 20px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .boats .boats-container .boats-header h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .boats .boats-container .boats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .boats .boats-container .boats-grid .boat-card .boat-image {
    height: 180px;
  }
  .boats .boats-container .boats-grid .boat-card .boat-content {
    padding: 16px;
  }
  .boats .boats-container .boats-grid .boat-card .boat-content .boat-title {
    font-size: 15px;
    line-height: 22px;
  }
  .boats .boats-container .boats-grid .boat-card .boat-content .boat-actions .boat-button {
    padding: 8px 16px;
    font-size: 12px;
  }
}

.boat-detail {
  padding: 0 5% 60px 5%;
  background-color: white;
}
.boat-detail .boat-detail-container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.boat-detail .boat-detail-container .amelia-v2-booking {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 600px;
}
.boat-detail .boat-detail-container .amelia-v2-booking #amelia-container {
  margin: 0;
  width: 100%;
  max-width: 500px;
}
.boat-detail .boat-detail-container .amelia-v2-booking #amelia-container.am-fs__wrapper .el-form-item {
  width: 100%;
}
.boat-detail .boat-detail-container .boat-detail-gallery {
  width: 50%;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 121px;
  flex-shrink: 0;
  justify-content: space-between;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container::-webkit-scrollbar {
  width: 6px;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 3px;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
  transition: background 0.3s ease;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item {
  position: relative;
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item.active {
  border-color: #103E61;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item:hover:not(.active) {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: scale(1.02);
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item:hover img {
  transform: scale(1.05);
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item .more-images-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item .more-images-overlay:hover {
  background: rgba(0, 0, 0, 0.85);
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item .more-images-overlay span {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .main-image-container {
  position: relative;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  max-height: 500px;
  max-width: 500px;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .main-image-container img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  aspect-ratio: 1/1;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .main-image-container .zoom-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  backdrop-filter: blur(10px);
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .main-image-container .zoom-button:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .main-image-container .zoom-button svg {
  width: 20px;
  height: 20px;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .main-image-container:hover .zoom-button {
  opacity: 1;
}
.boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .main-image-container:hover img {
  transform: scale(1.03);
}
.boat-detail .boat-detail-container .boat-detail-gallery .no-images {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  border: 2px dashed #dee2e6;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.boat-detail .boat-detail-container .boat-detail-gallery .no-images img {
  width: 100%;
  max-width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
  opacity: 0.7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.boat-detail .boat-detail-container .boat-detail-gallery .no-images p {
  font-size: 16px;
  color: #103E61;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container {
    height: 500px;
    gap: 16px;
  }
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container {
    width: 100px;
  }
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .boat-detail .boat-detail-container .boat-detail-gallery {
    width: 100%;
  }
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container {
    flex-direction: row;
    width: 100%;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 0;
    gap: 12px;
  }
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container::-webkit-scrollbar {
    height: 6px;
  }
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
  }
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
  }
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 2px solid transparent;
    flex-shrink: 0;
  }
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item.active {
    transform: scale(1.02);
  }
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item:hover {
    transform: scale(1.01);
  }
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .main-image-container {
    height: 350px;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 480px) {
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .thumbnails-container .thumbnail-item {
    width: 70px;
    height: 70px;
  }
  .boat-detail .boat-detail-container .boat-detail-gallery .boat-gallery-container .main-image-container {
    height: 300px;
  }
}
@media (max-width: 1024px) {
  .boat-detail .boat-detail-container {
    flex-direction: column;
    gap: 40px;
  }
  .boat-detail .boat-detail-container .amelia-v2-booking,
  .boat-detail .boat-detail-container .boat-detail-gallery {
    width: 100%;
  }
  .boat-detail .boat-detail-container .amelia-v2-booking {
    order: 2;
  }
  .boat-detail .boat-detail-container .boat-detail-gallery {
    order: 1;
  }
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-modal .lightbox-content {
  position: relative;
  width: 95%;
  max-width: 1400px;
  height: 95%;
  margin: 2.5% auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox-modal.active .lightbox-modal .lightbox-content {
  transform: scale(1);
}
.lightbox-modal .lightbox-content .lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.lightbox-modal .lightbox-content .lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  color: #ff6b6b;
}
.lightbox-modal .lightbox-content .lightbox-image-container {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lightbox-modal .lightbox-content .lightbox-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}
.lightbox-modal .lightbox-content .lightbox-image-container .lightbox-prev,
.lightbox-modal .lightbox-content .lightbox-image-container .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  font-size: 20px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10001;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}
.lightbox-modal .lightbox-content .lightbox-image-container .lightbox-prev:hover,
.lightbox-modal .lightbox-content .lightbox-image-container .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.lightbox-modal .lightbox-content .lightbox-image-container .lightbox-prev:active,
.lightbox-modal .lightbox-content .lightbox-image-container .lightbox-next:active {
  transform: translateY(-50%) scale(0.95);
}
.lightbox-modal .lightbox-content .lightbox-image-container .lightbox-prev {
  left: 24px;
}
.lightbox-modal .lightbox-content .lightbox-image-container .lightbox-next {
  right: 24px;
}
.lightbox-modal .lightbox-content .lightbox-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 20px 0;
  justify-content: flex-start;
  max-height: 120px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lightbox-modal .lightbox-content .lightbox-thumbnails::-webkit-scrollbar {
  height: 8px;
}
.lightbox-modal .lightbox-content .lightbox-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.lightbox-modal .lightbox-content .lightbox-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: background 0.3s ease;
}
.lightbox-modal .lightbox-content .lightbox-thumbnails::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
.lightbox-modal .lightbox-content .lightbox-thumbnails .lightbox-thumbnail {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.lightbox-modal .lightbox-content .lightbox-thumbnails .lightbox-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
  z-index: 1;
}
.lightbox-modal .lightbox-content .lightbox-thumbnails .lightbox-thumbnail.active {
  border-color: #103E61;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.lightbox-modal .lightbox-content .lightbox-thumbnails .lightbox-thumbnail.active::before {
  opacity: 0;
}
.lightbox-modal .lightbox-content .lightbox-thumbnails .lightbox-thumbnail:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.lightbox-modal .lightbox-content .lightbox-thumbnails .lightbox-thumbnail:hover:not(.active)::before {
  opacity: 0.1;
}
.lightbox-modal .lightbox-content .lightbox-thumbnails .lightbox-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.lightbox-modal .lightbox-content .lightbox-thumbnails .lightbox-thumbnail:hover img {
  transform: scale(1.05);
}
.lightbox-modal .lightbox-content .lightbox-counter {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10001;
}
@media (max-width: 1024px) {
  .lightbox-modal .lightbox-content {
    width: 96%;
    height: 96%;
    margin: 2% auto;
    gap: 20px;
  }
  .lightbox-modal .lightbox-content .lightbox-image-container {
    border-radius: 16px;
  }
  .lightbox-modal .lightbox-content .lightbox-image-container .lightbox-prev,
  .lightbox-modal .lightbox-content .lightbox-image-container .lightbox-next {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .lightbox-modal .lightbox-content .lightbox-image-container .lightbox-prev {
    left: 16px;
  }
  .lightbox-modal .lightbox-content .lightbox-image-container .lightbox-next {
    right: 16px;
  }
  .lightbox-modal .lightbox-content .lightbox-thumbnails {
    padding: 16px;
  }
  .lightbox-modal .lightbox-content .lightbox-thumbnails .lightbox-thumbnail {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 768px) {
  .lightbox-modal .lightbox-content {
    width: 98%;
    height: 98%;
    margin: 1% auto;
    gap: 16px;
  }
  .lightbox-modal .lightbox-content .lightbox-close {
    top: -40px;
    font-size: 28px;
    width: 36px;
    height: 36px;
  }
  .lightbox-modal .lightbox-content .lightbox-image-container {
    border-radius: 12px;
  }
  .lightbox-modal .lightbox-content .lightbox-image-container .lightbox-prev,
  .lightbox-modal .lightbox-content .lightbox-image-container .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
    padding: 12px;
  }
  .lightbox-modal .lightbox-content .lightbox-image-container .lightbox-prev {
    left: 12px;
  }
  .lightbox-modal .lightbox-content .lightbox-image-container .lightbox-next {
    right: 12px;
  }
  .lightbox-modal .lightbox-content .lightbox-thumbnails {
    padding: 12px;
    border-radius: 12px;
  }
  .lightbox-modal .lightbox-content .lightbox-thumbnails .lightbox-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }
  .lightbox-modal .lightbox-content .lightbox-counter {
    top: -40px;
    font-size: 12px;
    padding: 6px 12px;
  }
}
@media (max-width: 480px) {
  .lightbox-modal .lightbox-content .lightbox-image-container .lightbox-prev,
  .lightbox-modal .lightbox-content .lightbox-image-container .lightbox-next {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .lightbox-modal .lightbox-content .lightbox-thumbnails .lightbox-thumbnail {
    width: 50px;
    height: 50px;
  }
}

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