.link, .body-text {
  font-size: 1rem;
  letter-spacing: -0.03em;
}
@media (max-width: 576px) {
  .link, .body-text {
    font-size: 0.9rem;
  }
}

.heading-h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.05;
}
@media (max-width: 992px) {
  .heading-h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 768px) {
  .heading-h1 {
    font-size: 3.1rem;
  }
}
@media (max-width: 576px) {
  .heading-h1 {
    font-size: 2.6rem;
  }
}

.heading-h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
}
@media (max-width: 992px) {
  .heading-h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .heading-h2 {
    font-size: 1.9rem;
  }
}
@media (max-width: 576px) {
  .heading-h2 {
    font-size: 1.7rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  padding: 32px 0;
  transition: all 0.5s ease;
}
.header.fixed {
  background-color: #fff;
  padding: 16px 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}
.header.move-up {
  transform: translateY(-100%);
}

.navbar {
  padding: 0;
  background-color: transparent;
}
.navbar .navbar-brand {
  color: inherit;
}
.navbar .navbar-brand img {
  width: 99px;
}
.navbar .nav-item {
  display: flex;
  align-items: center;
  margin-right: 46px;
}
.navbar .nav-item:last-child {
  margin-right: 0;
}
.navbar .nav-link {
  color: inherit;
}
.navbar .nav-link:hover {
  color: #e02055;
}

@media (max-width: 1200px) {
  .navbar .nav-item {
    margin-right: 36px;
  }
}
@media (max-width: 992px) {
  .header {
    background-color: #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
    padding: 16px 0;
  }

  .navbar .nav-item {
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-top: 10px;
  }
}
@media (max-width: 992px) {
  .navbar .navbar-brand img {
    width: 79px;
  }
}
/* ----------------------------- Footer Section ----------------------------- */
.footer {
  background-color: #280009;
  padding: 58px 0;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
}
.footer .footer-links {
  display: flex;
}
.footer .footer-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 64px;
  transition: color 0.15s ease-in-out;
}
.footer .footer-link:last-child {
  margin-right: 0;
}
.footer .footer-link:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer .copyright-text {
  margin-top: 32px;
  color: #fff;
  font-size: 0.85rem;
}
.footer .social-title {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  letter-spacing: 0.25em;
}
.footer .social-links {
  margin-top: 38px;
  display: flex;
  justify-content: flex-end;
}
.footer .social-link {
  text-decoration: none;
  margin-right: 18px;
}
.footer .social-link:last-child {
  margin-right: 0;
}
.footer .social-link img {
  width: 28px;
  height: 28px;
}

@media (max-width: 992px) {
  /* ----------------------------- Footer Section ----------------------------- */
  .footer .footer-content {
    flex-direction: column-reverse;
  }
  .footer .footer-links {
    margin-top: 32px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .footer .footer-link {
    font-size: 0.9rem;
    margin: 10px;
  }
  .footer .footer-link:last-child {
    margin: 10px;
  }
  .footer .social-links {
    margin-top: 0;
  }
  .footer .copyright-text {
    text-align: center;
  }
}
/* ----------------------------- Gloabal Styles ----------------------------- */
* {
  font-family: "Inter", sans-serif;
}

.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.text-bluish {
  color: #0171e2;
}

.text-greenish {
  color: #009468;
}

.text-yellowish {
  color: #f7b200;
}

.title-text {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.text-btn {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
}
.text-btn .icon {
  margin-left: 8px;
  line-height: 0;
}

.elevated-btn {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 30px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
}
.elevated-btn .icon {
  margin-left: 8px;
  line-height: 0;
}
.elevated-btn:hover {
  background-color: #e23263;
  border-color: #e23263;
}

.btn-primary {
  background-color: #e02055;
  color: #fff;
}

.spacer {
  margin: auto;
}

.flexbox-lg {
  display: block;
}

select {
  color: black;
}

select:invalid {
  color: rgba(0, 0, 0, 0.3);
}

.link {
  color: #007bff;
  text-decoration: none;
}
.link:hover {
  color: #007bff;
}

.app-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.4);
}
.app-modal .app-modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.app-modal .app-modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 28px 20px;
  background-color: #ffff;
  border-radius: 10px;
  max-width: 560px;
  width: 90%;
}
.app-modal .app-modal-close-btn {
  position: absolute;
  top: 28px;
  right: 20px;
  color: #000;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 0;
  z-index: 999;
}
.app-modal .app-modal-message {
  margin-top: 36px;
  margin-bottom: 32px;
}

/* ----------------------------- Booking Section ----------------------------- */
.booking {
  padding: 30px 0;
  background: #eeeeee;
}
.booking .booking-content {
  display: flex;
  align-items: center;
}
.booking .bg-img {
  width: 160px;
  height: 72px;
}
.booking .bg-img img {
  width: 100%;
}
.booking .title {
  margin-left: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}

/* -----------------------------Video Player ----------------------------- */
.video-player-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.6);
}
.video-player-wrapper .video-player-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.video-player-wrapper .video-player {
  position: relative;
  width: 100%;
}
.video-player-wrapper .video-player video {
  width: 100%;
  border-radius: 10px;
}
.video-player-wrapper .player-close-btn {
  position: absolute;
  top: 28px;
  right: 20px;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 0;
  z-index: 999;
}

@media (max-width: 992px) {
  /* ----------------------------- Gloabal Styles ----------------------------- */
  .text-btn {
    font-size: 1.1rem;
  }

  .flexbox-lg {
    display: flex;
  }

  /* ----------------------------- Booking Section ----------------------------- */
  .booking .bg-img {
    width: 120px;
  }
  .booking .title {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  /* ----------------------------- Gloabal Styles ----------------------------- */
  .text-btn {
    font-size: 1rem;
  }

  /* ----------------------------- Booking Section ----------------------------- */
  .booking .bg-img {
    width: 100px;
  }
  .booking .title {
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  /* ----------------------------- Gloabal Styles ----------------------------- */
  .title-text {
    font-size: 0.9rem;
  }

  /* ----------------------------- Booking Section ----------------------------- */
  .booking .bg-img {
    width: 100px;
  }
  .booking .title {
    font-size: 1rem;
  }
}

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