* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: #212529;
  scroll-behavior: smooth;
  letter-spacing: 0.5px;
}

:root {
  --primary: #ff6d4a;
  --secondary: #060316;
  --white: #fff;
  --black: #000;
  --light-black: #00000091;
  --red: #d92525;
  --orange: #BE1A1A;
  --green: #2E750D;
  --yellow: #FFA800;
  --light-blue: #9BE7F8;
  --blue: #00a3c8;
  --orange: #FFA800;
  --grey: grey;
  --dark-blue: #16264F;
  --navbar-bg: #00000067;
  --btn-bg: #ff6d4a;
  --footer-bg: lightgrey;
  --box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  --border-color: #e1dede;
  --table-header-bg-color: #9BE7F8;
  --card-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  --card-header-bg: #030927;
  --sub-card-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

a {
  text-decoration: none;
}

.middle-container {
  margin-top: 5rem;
}

.top-image {
  background-image: url("../images/top-image/img-2.jpg");
  background-position: bottom;
  height: 400px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 1rem;
}
.top-image::after {
  content: "";
  width: 100%;
  opacity: 0.5;
  height: 100%;
  background: var(--black);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.top-image .container {
  height: 100%;
}
.top-image .container .details {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 3rem;
  color: var(--white);
  z-index: 10;
  position: relative;
}
.top-image .container .details .breadcrumbs {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.top-image .container .details .breadcrumbs span {
  margin-right: 1rem;
  font-size: 0.9rem;
}
.top-image .container .details .breadcrumbs span a {
  color: var(--white);
  font-size: 0.9rem;
}
.top-image .container .details h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.book-modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.368627451);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.book-modal::-webkit-scrollbar {
  display: none;
}
.book-modal .modal-card {
  background: var(--primary);
  width: 500px;
  border-radius: 20px;
  padding: 1rem;
  margin-top: 4rem;
  margin-bottom: 2.5rem;
  height: -moz-max-content;
  height: max-content;
  position: relative;
}
.book-modal .modal-card .heading {
  margin-bottom: 1rem;
}
.book-modal .modal-card .heading h2 {
  text-align: center;
  color: var(--white);
}
.book-modal .modal-card .book-form .input {
  width: 100%;
  margin-bottom: 1rem;
}
.book-modal .modal-card .book-form .input .title {
  font-size: 13px;
  margin-bottom: 3px;
  color: var(--white);
}
.book-modal .modal-card .book-form .input input {
  border: 1px solid #eee;
  width: 100%;
  height: 45px;
  border-radius: 5px;
  outline: none;
  padding: 8px;
}
.book-modal .modal-card .book-form .input input:focus {
  box-shadow: 1px 1px 1px var(--primary);
}
.book-modal .modal-card .book-form .input-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.book-modal .modal-card .book-form .total-ticket .title {
  font-size: 13px;
  margin-bottom: 5px;
  color: var(--white);
}
.book-modal .modal-card .book-form .total-ticket .ticket-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.book-modal .modal-card .book-form .total-ticket .ticket-row #counter {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.book-modal .modal-card .book-form .total-ticket .ticket-row #counter .btn {
  height: 2rem;
  width: 2rem;
  background: var(--white);
  font-weight: 700;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 100%;
}
.book-modal .modal-card .book-form .total-ticket .ticket-row #counter .btn #icon {
  height: 75%;
  width: 75%;
  fill: var(--primary);
}
.book-modal .modal-card .book-form .total-ticket .ticket-row #counter #count {
  font-weight: 700;
  color: var(--white);
}
.book-modal .modal-card .book-form .total-ticket .ticket-row .amt {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background: var(--white);
  font-weight: 700;
  color: var(--primary);
}
.book-modal .modal-card .book-form .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.book-modal .modal-card .book-form .submit-btn .btn {
  background: var(--primary);
  color: var(--white);
  height: 45px;
  width: 100%;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.book-modal .modal-card .book-form .submit-btn .btn:hover {
  background: var(--white);
  color: var(--primary);
}
.book-modal .modal-card .close-btn {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  cursor: pointer;
}
.book-modal .modal-card .close-btn #icon {
  height: 2rem;
  width: 2rem;
  fill: var(--white);
}

.owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.owl-dots .owl-dot.active {
  display: flex;
}
.owl-dots .owl-dot.active span {
  background: var(--primary) !important;
  width: 20px !important;
}

.owl-nav button {
  height: 1.6rem;
  width: 1.6rem;
  border-radius: 100% !important;
  background: var(--primary) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.owl-nav button span {
  font-size: 2rem !important;
  margin-bottom: 5px;
  font: unset;
  color: var(--white);
}
.owl-nav .owl-prev {
  left: -1rem;
}
.owl-nav .owl-next {
  right: -1rem;
}

@media (max-width: 768px) {
  .top-image {
    height: 300px;
  }
  .top-image .container .details {
    height: 300px;
  }
}
@media (max-width: 560px) {
  .book-modal {
    padding: 0 1rem;
  }
  .book-modal .modal-card {
    width: 100%;
    margin: 2rem 0;
  }
  .book-modal .modal-card .close-btn {
    top: 0.5rem;
    right: 0.5rem;
  }
  .book-modal .modal-card .book-form .total-ticket .ticket-row {
    width: 100%;
    flex-wrap: wrap;
    gap: 0;
  }
  .book-modal .modal-card .book-form .total-ticket .ticket-row #counter {
    width: 100%;
    margin-bottom: 1rem;
  }
  .book-modal .modal-card .book-form .total-ticket .ticket-row .amt {
    width: 48%;
  }
}/*# sourceMappingURL=style.css.map */