@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,400;0,500;0,600;0,700;1,100;1,200;1,300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html,
body {
  scroll-behavior: smooth;
}
:root {
  --darkgray: #273841;
  --white: #ffffff;
  --siteMainOrange: #e89123;
  --lightblue: #002c7e;
  --gray: #9ba7b0;
  --extragray: #a9adae;
  --darkpurple: #08021c;
  --lightOrange: #f6c364;

  --back-to-top-offset: 200px;
  --back-to-top-button-size: 2.8em;

  --base-font-size: 120%;
  --base-line-height: 170%;
  --base-font-family: Poppins, system-ui, sans-serif;

  --heading-font-family: Montserrat, system-ui, sans-serif;
  --heading-padding-start: 1em;
  --h1-font-size: 320%;
  --h1-line-height: 120%;
  --h1-padding-end: 0.4em;

  --main-padding-inline: 2em;
  --main-padding-block: 3em;
  --main-max-width: 1000px;

  --paragraph-margin-block: 1em;
  --list-margin-inline: 2em;
  --list-item-padding-block: 0.2em;

  --color-background: #efefff;
  --color-heading: hsl(210, 100%, 7%);
  --color-paragraph: rgba(0, 0, 0, 0.8);
  --color-accent: hsl(210, 100%, 39%);
  --color-accent-bright: hsl(210, 100%, 49%);
  --color-accent-alpha: hsla(210, 100%, 39%, 0.4);
  --color-img-shadow: rgba(0, 0, 0, 0.2);
}

.bg-black::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.25);
}
/* .........Login................ */

.login-page {
  /* height: auto; */
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

.form {
  position: relative;
  filter: drop-shadow(0 0 2px var(--siteMainOrange));
  border-radius: 5px;
  width: 360px;
  height: 420px;
  background-color: #ffffff;
  padding: 40px;
}

.form img {
  position: absolute;
  height: 20px;
  top: 191px;
  right: 60px;
  cursor: pointer;
}

.form input {
  outline: 0;
  background: #f2f2f2;
  border-radius: 4px;
  width: 100%;
  border: 0;
  margin: 15px 0;
  padding: 15px;
  font-size: 14px;
}

.form input:focus {
  box-shadow: 0 0 5px 0 var(--darkgray);
}

.form span {
  color: #c9251e;
  margin: 10px 0;
  font-size: 14px;
}

.form button {
  outline: 0;
  background: var(--siteMainOrange);
  width: 100%;
  border: 0;
  margin-top: 10px;
  border-radius: 3px;
  padding: 15px;
  color: #ffffff;
  font-size: 15px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.form button:hover,
.form button:active,
.form button:focus {
  background: var(--darkgray);
  color: #fff;
}

.message {
  margin: 15px 0;
  text-align: center;
}
.form .message a {
  font-size: 14px;
  color: #5f2529;
  text-decoration: none;
}

/* ...................... */
/* Preloader CSS */
.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 100;
}

.wrapper {
  /*  width: 100px;
    height: 100px;*/
  background: white;
  display: flex;
  flex-flow: row wrap;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3px;
}

.box {
  width: 50%;
  height: 50%;
  border-radius: 50%;
  flex: 50%;
  transition: 0.5s;
  border: 2px solid white;
}

.box:nth-child(1) {
  animation: load 1s infinite;
}

.box:nth-child(2) {
  animation: load2 1s infinite;
  animation-delay: 0.2s;
}

.box:nth-child(3) {
  animation: load3 1s infinite;
  animation-delay: 0.7s;
}

.box:nth-child(4) {
  animation: load4 1s infinite;
  animation-delay: 0.5s;
}

@keyframes load {
  0% {
    background: rgba(231, 76, 60, 0);
  }
  30% {
    background: var(--gray);
  }

  100% {
    background: rgba(231, 76, 60, 0);
  }
}

@keyframes load2 {
  0% {
    background: rgba(46, 204, 113, 0);
  }
  30% {
    background: var(--siteMainOrange);
  }

  100% {
    background: rgba(46, 204, 113, 0);
  }
}

@keyframes load3 {
  0% {
    background: rgba(230, 126, 34, 0);
  }
  30% {
    background: var(--lightOrange);
  }

  100% {
    background: rgba(230, 126, 34, 0);
  }
}

@keyframes load4 {
  0% {
    background: rgba(241, 196, 15, 0);
  }
  30% {
    background: var(--extragray);
  }

  100% {
    background: rgba(241, 196, 15, 0);
  }
}

@media (max-width: 1200px) {
  .header-img {
    width: 100vw;
  }
}

.dropdown-menu-right[data-bs-popper] {
  left: -150px !important;
}

#wrapper {
  padding-left: 0;
  transition: all 0.5s ease;
  position: relative;
}

#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  left: 250px;
  width: 0;
  height: 100%;
  margin-left: -250px;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--white);
  transition: all 0.5s ease;
  border-right: 1px solid var(--darkpurple);
}

#wrapper.toggled #sidebar-wrapper {
  width: 250px;
}

.sidebar-brand {
  /* position: absolute; */
  /* top: 0; */
  height: auto;
  width: 250px;
  text-align: center;
  padding: 20px 0;
}

.sidebar-nav {
  position: absolute;
  /* top: 75px; */
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-nav > li {
  text-indent: 10px;
  line-height: 52px;
  margin-bottom: 20px;
}
.sidebar-nav > li a {
  display: block;
  text-decoration: none;
  color: var(--darkgray);
  font-weight: 600;
  font-size: 18px;
}
.sidebar-nav > li > a:hover,
.sidebar-nav > li.active > a {
  text-decoration: none;
  color: var(--white);
  background: var(--siteMainOrange);
}
.sidebar-nav > li > a i.fa {
  font-size: 24px;
  width: 60px;
}

img#sidebar-img {
  width: 100%;
}

#navbar-wrapper {
  width: 100%;
  position: absolute;
  z-index: 2;
}
#wrapper.toggled #navbar-wrapper {
  position: absolute;
  margin-right: -250px;
}
#navbar-wrapper .navbar {
  border-width: 0 0 0 0;
  background-color: #eee;
  font-size: 24px;
  margin-bottom: 0;
  border-radius: 0;
}
#navbar-wrapper .navbar a {
  color: var(--siteMainOrange);
}
#navbar-wrapper .navbar a:hover {
  color: var(--darkgray);
}

#content-wrapper {
  width: 100%;
  position: absolute;
  padding: 15px;
  top: 100px;
}
#wrapper.toggled #content-wrapper {
  position: absolute;
  margin-right: -250px;
}

@media (min-width: 992px) {
  #wrapper {
    padding-left: 250px;
  }

  #wrapper.toggled {
    padding-left: 60px;
  }

  #sidebar-wrapper {
    width: 250px;
  }

  #wrapper.toggled #sidebar-wrapper {
    width: 60px;
  }

  #wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -190px;
  }

  #wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -190px;
  }

  #navbar-wrapper {
    position: relative;
  }

  #wrapper.toggled {
    padding-left: 60px;
  }

  #content-wrapper {
    position: relative;
    top: 0;
  }

  #wrapper.toggled #navbar-wrapper,
  #wrapper.toggled #content-wrapper {
    position: relative;
    margin-right: 60px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #wrapper {
    padding-left: 60px;
  }

  #sidebar-wrapper {
    width: 60px;
  }

  #wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -250px;
  }

  #wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -250px;
  }

  #navbar-wrapper {
    position: relative;
  }

  #wrapper.toggled {
    padding-left: 250px;
  }

  #content-wrapper {
    position: relative;
    top: 0;
  }

  @media (max-width: 1200px) {
    .header-img {
      width: 100vw;
    }
  }

  #wrapper.toggled #navbar-wrapper,
  #wrapper.toggled #content-wrapper {
    position: relative;
    margin-right: 250px;
  }
}

@media (max-width: 767px) {
  #wrapper {
    padding-left: 0;
  }

  #sidebar-wrapper {
    width: 0;
  }

  #wrapper.toggled #sidebar-wrapper {
    width: 250px;
  }

  #wrapper.toggled #sidebar-toggle2 {
    display: unset !important;
    left: 200px;
    padding: 0;
    text-align: end;
    transition: all 0.5s ease;
  }
  #wrapper.toggled #sidebar-toggle2 a {
    color: #08021c !important;
  }
  #wrapper.toggled #sidebar-wrapper {
    transition: all 0.5s ease;
  }
  #wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -250px;
  }

  .fa-xmark:before {
    padding: 5px;
    background: #bab9be;
  }

  #wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -250px;
  }

  #navbar-wrapper {
    position: relative;
  }

  /* #wrapper.toggled {
      padding-left: 250px;
    } */

  #content-wrapper {
    position: relative;
    top: 0;
  }

  #wrapper.toggled #navbar-wrapper,
  #wrapper.toggled #content-wrapper {
    position: relative;
    margin-right: 250px;
  }
}

.mb-t-b-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.pd-60px {
  padding: 60px;
}

.pd-40px {
  padding: 10px 40px;
  text-align: justify;
}

.width-50 {
  width: 50% !important;
}

.width-51 {
  width: 51% !important;
}

@media (max-width: 1200px) {
  .pd-60px {
    padding: 30px;
  }
  .width-50 {
    width: 100% !important;
  }
}
/* ....................................... */
#back-to-top {
  place-self: end;
  position: sticky;
  margin-top: -90px;
  /* margin-top: calc(100vh + var(--back-to-top-offset)); */
  bottom: 2.7em;
  right: 2em;
  float: right;
}

#back-to-top {
  width: var(--back-to-top-button-size);
  height: var(--back-to-top-button-size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  background-color: var(--lightblue);
  box-shadow: 0 0.6em 1em 0.2em var(--color-accent-alpha);
  transform: translateY(0%);
  transition: ease-out 200ms;
  transition-property: transform, background-color;
}

#back-to-top:hover {
  transform: translateY(-22%);
  background-color: var(--gray);
}

#back-to-top::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 200%;
  transform: translateY(-30%);
  background-color: rgba(0, 0, 0, 0);
  display: block;
}

.card:hover .detail {
  opacity: 1 !important;
}
img.card-img-top {
  height: 300px;
  /* width: 300px !important; */
}

.detail {
  position: absolute;
  opacity: 0;
  height: 120px;
  width: 100%;
  bottom: 0;
  background-color: rgba(24, 3, 97, 0.422) !important;
  font-size: 20px !important;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
/* ..........Header.................. */

.dropdown-menu[data-bs-popper] {
  left: -161px !important;
}

/*nav.navbar.navbar-expand-lg.navbar-light {
    background: var(--darkgray) !important;
}*/
.navbar-light .navbar-nav .nav-link {
  color: var(--white) !important;
  font-size: 20px;
}
.bg-footer {
  background: var(--darkgray) !important;
}
.bg-footer a {
  text-decoration: none;
}
.bg-footer a:hover {
  text-decoration: none;
  border-bottom: 1px solid var(--siteMainOrange);
}
.card-body {
  height: 100px;
  border-bottom: 1px solid black;
}
.bg-details {
  background: var(--siteMainOrange);
  color: var(--white);
}
div#navbarNav {
  margin-left: 60% !important;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
  text-align: center;
  font-family: arial;
}

.card .title {
  color: grey;
  font-size: 18px;
}

.card button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: var(--siteMainOrange);
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

.card button:hover,
.card a:hover {
  background-color: var(--lightblue);
}
.card h2 {
  font-family: calibri;
}

/* ............................Client Slider....................... */
.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ..........................Client Slider End............................ */

a.nav-link {
  font-size: 16px !important;
}

footer.text-center.p-4 {
  font-size: 14px !important;
}

.header,
.sticky-header {
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  /*  background-color: #00000017;*/
  height: 125px !important;
}

/*.content {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 2em;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,.15), 0 1px 1px 0 rgba(0,0,0,.05);
  z-index: 10;
}*/

.stucked {
  /*  height: 80px;*/
  position: fixed;
  background-color: var(--darkgray);
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-name: showStickyHeader;
}

@keyframes showStickyHeader {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
    height: $header-height-sticky;
  }
}

video {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
/*..................................*/

#scrollDown {
  /*  width: 50vw;*/
  /* margin-right: auto !important;
  margin-left: auto !important;*/
}

.pakages {
  margin: 0 auto;
  position: relative;
  width: 80%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pakages .card {
  position: relative;
  width: 100%;
  height: 450px;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.pakages .poster {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pakages .poster::before {
  content: "";
  position: absolute;
  bottom: -45%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.3s;
}

.pakages .card:hover .poster::before {
  bottom: 0;
}

.pakages .poster img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.pakages .card:hover .poster img {
  transform: scale(1.1);
}

.pakages .details {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1.5em 1.5em 2em;
  background: #000a;
  backdrop-filter: blur(16px) saturate(120%);
  transition: 0.3s;
  color: #fff;
  z-index: 2;
}

.pakages .details2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1.5em 1.5em 2em;
  background: #000a;
  backdrop-filter: blur(16px) saturate(120%);
  transition: 0.3s;
  color: #fff;
  z-index: 2;
}

.details2 .rating i {
  color: #e3c414;
}

.pakages .card:hover .details {
  bottom: 0;
}

.pakages .details h1,
.pakages .details h2 {
  font-weight: 700;
}

.pakages .details h1 {
  font-size: 1.5em;
  margin-bottom: 5px;
}

.pakages .details h2 {
  font-weight: 400;
  font-size: 1em;
  margin-bottom: 10px;
  opacity: 0.8;
}

.pakages .details .rating {
  position: relative;
  margin-bottom: 15px;
  /*    display: flex;*/
  gap: 0.25em;
}

.pakages .details .rating i {
  color: #e3c414;
}

.pakages .details .rating span {
  margin-left: 0.25em;
}

.pakages .details .tags {
  display: flex;
  gap: 0.375em;
  margin-bottom: 0.875em;
  font-size: 0.85em;
}

.pakages .details .tags span {
  padding: 0.35rem 0.65rem;
  color: #fff;
  border: 1.5px solid rgba(255 255 255 / 0.4);
  border-radius: 4px;
  border-radius: 50px;
}

.pakages .details .desc {
  color: #fff;
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 1em;
}

.pakages .details .cast h3 {
  margin-bottom: 0.5em;
}

.pakages .details .cast ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  width: 100%;
}

.pakages .details .cast ul li {
  list-style: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid #fff;
}

.pakages .details .cast ul li img {
  width: 100%;
  height: 100%;
}

.pakages .card button:hover {
  background-color: #feffff00;
  border: 2px solid white;
}
.pakages .card button {
  border-radius: 20px;
}
.pakages .card a:hover {
  background-color: #feffff00;
}

/*......................................*/

#wrap {
  position: relative;
}

.progress {
  position: fixed;
  z-index: 2;
  bottom: 0px;
  left: 0;
  height: 3px !important;
  overflow: hidden;
  width: 100%;
}
.progress .bar {
  display: block;
  width: 0;
  /*  height: 5px;*/
  background-color: #fa9419;
  transition: width 0.3s ease;
}
.progress .bar > span {
  font-size: 0;
}

/*..............................................*/

.cs-slide-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
[data-card-slide] {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  transition: transform 0.5s ease;
  cursor: pointer;
}
.cs-slide-content {
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.cs-indicator-container {
  text-align: center;
}
.cs-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: 30px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 150ms ease;
}
.rotator__slide-0 {
  transform: translate(0) scale(1);
  position: relative;
  cursor: default;
}
.rotator__slide-1 {
  transform: translate(100px) scale(0.85);
}
.rotator__slide-common {
  transform: translate(210px) scale(0.65);
}
.packages-btn {
  border-radius: 27px;
  font-size: 20px !important;
  background: #e89123;
  padding: 8px 39px;
  color: white;
  border: none;
}

.packages-btn:hover {
  background: #e8912300;
  color: #e89123;
  border: 1px solid #e89123;
  transition: 0.8s;
}

.newsletter input[type="email"]:focus-visible {
  outline: unset !important;
}

/*..............No data Found CSS..................*/

.body {
  font-family: "Poppins", sans-serif;
}
.empty-state {
  margin: 40px auto;
  background: #fff;
  box-shadow: 1px 2px 10px #e1e3ec;
  border-radius: 4px;
}
.empty-state__content {
  padding: 48px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.empty-state__content .empty-state__icon {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  border-radius: 200px;
  justify-content: center;
  background-color: #f7fafc;
  box-shadow: 0px 2px 1px #e1e3ec;
}
.empty-state__content .empty-state__icon img {
  width: 170px;
}
.empty-state__content .empty-state__message {
  color: #38a169;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0.85rem;
  text-align: center;
}
.empty-state__content .empty-state__help {
  color: #a2a5b9;
  font-size: 0.875rem;
}
.credit {
  color: #a2a5b9;
  font-size: 0.75rem;
  text-align: center;
}
.credit a {
  color: #444;
}
