
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&amp;display=swap");
@import url("stylesheet.css");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100..900display=swap");
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Gothic&amp;display=swap");
:root {
  --primary-color: #fff;
  --secondary-color: #e2e2e2;
  --heading-color: #fff;
  --paragraph-color: #999;
  --body-bg: #101010;
  --heading-font: "Lowball", sans-serif;
  --secondary-font: "Dosis", sans-serif;
  --body-font: "Dosis", sans-serif;
  --jost-font: "Jost", sans-serif;
  --bigShoulder-font: "Big Shoulders Display", sans-serif;
  --gothic-font: "League Gothic", sans-serif;
  --transition: all 300ms ease-out;
  --bg-primary: linear-gradient(95deg, #181818 7.27%, #151515 99.21%);
  --gradient-color: linear-gradient(to right, #5a0dff -5%, #FF29B8 31.0%, #FF581C);
  --bg-gradient: linear-gradient(
    92deg,
    #5a0dff 0%,
    #ff29b8 38.6%,
    #ff581c 97.73%
  );
}

html {
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
  outline: none;
}

body {
  margin: 0;
  color: var(--primary-color);
  background-color: var(--body-bg);
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 17px;
  margin: 0 auto;
}

h1 {
  font-size: 160px;
  line-height: 0.87;
}

h2 {
  font-size: 140px;
  line-height: 1;
}

h3 {
  font-size: 50px;
  line-height: 1;
}

h4 {
  font-size: 30px;
  line-height: 1;
}

h1,
h2,
h3,
h4 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

p {
  color: var(--paragraph-color);
  margin-bottom: 10px;
  line-height: 1.7;
}

.pt-80 {
  padding-top: 80px;
}
@media only screen and (max-width: 575px) {
  .pt-80 {
    padding-top: 40px;
  }
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 575px) {
  .py-80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.mt-30 {
  margin-top: 30px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.fs-18 {
  font-size: 18px;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--primary-color);
  transition: 0.4s;
}

a,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

img {
  max-width: 100%;
}

button {
  border: none;
  background-color: transparent;
  color: inherit;
  padding: 0;
  margin: 0;
  line-height: 1;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*input and button type focus outline disable*/

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */

/* Do not show the outline on the skip link target. */

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

/* Make sure embeds and iframes fit their containers. */

/* Make sure logo link wraps around logo image. */

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

/*----------------------------------------
    # Unit test
------------------------------------------*/

/*--------------------------------------------
* Utilities
--------------------------------------------*/
.section-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 50px;
}
@media only screen and (max-width: 767px) {
  .section-header {
    font-size: 40px;
  }
}
.section-header span {
  font-size: inherit;
  line-height: 1;
}
.section-header .section-title {
  line-height: 55px;
}
@media only screen and (max-width: 575px) {
  .section-header {
    font-size: 24px;
  }
}

.section-title {
  font-weight: 400;
  line-height: 55px;
  text-transform: uppercase;
  font-size: 50px;
}
@media only screen and (max-width: 575px) {
  .section-title {
    font-size: 30px;
    line-height: 35px;
  }
}

.section-description {
  color: #e2e2e2;
  font-family: var(--jost-font);
  line-height: 24px;
}

.movie-info-list {
  color: var(--paragraph-color);
  font-weight: 500;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding-left: 0;
}
.movie-info-list--item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 10px;
  background: var(--Gradient, linear-gradient(95deg, rgba(41, 41, 41, 0.5) 7.27%, rgba(30, 30, 30, 0.65) 99.21%));
  padding: 10px 12px;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .movie-info-list--item {
    padding: 10px 9px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 575px) {
  .movie-info-list--item {
    padding: 7px;
    font-size: 15px;
    font-size: 12px;
  }
}

.gradient-link {
  background-image: linear-gradient(92deg, #5a0dff 0%, #ff29b8 20.6%, #ff581c 45%, #fff 55%);
  background-size: 220% 100%;
  background-position: 100% 50%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-repeat: no-repeat;
  transition: all 300ms ease-out;
}
.gradient-link:hover {
  background-position: 0% 50%;
}

.linear-circle {
  --progress: 0;
  position: absolute;
  left: auto;
  right: -49px;
  top: 44px;
  z-index: 10;
  width: 90px;
  height: 90px;
  stroke-width: 1.5px;
  /* stroke: url(#bg_gradient); */
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
  transform: scale(2.2);
}
@media only screen and (max-width: 1599px) {
  .linear-circle {
    right: -48px;
    top: 24px;
    transform: scale(1.7);
  }
}
@media only screen and (max-width: 1199px) {
  .linear-circle {
    right: -48px;
    top: 13px;
    transform: scale(1.45);
  }
}
@media only screen and (max-width: 991px) {
  .linear-circle {
    display: none;
  }
}

/************ animate style ************/

/* Loaded Styles */
/* Header */

.navbar-area {
  position: relative;
  z-index: 99;
}
.navbar-area .nav-container {
  transition: all 0.4s;
  z-index: 999;
  border-radius: 0px 0px 35px 35px;
  background: linear-gradient(180deg, rgba(44, 44, 44, 0.8) 0%, rgba(52, 51, 51, 0) 100%);
  backdrop-filter: blur(10px);
  padding: 20px 40px;
  max-width: 1400px;
}
@media only screen and (max-width: 575px) {
  .navbar-area .nav-container {
    padding: 10px 15px;
  }
}
.navbar-area .nav-right-part.nav-right-part-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

/*----------------------------
    15. Mobile Menu Styles  
------------------------------*/

/* Elements */
.breadcrumb-area {
  background-image: url(../assets/breadcrumb-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
  height: 410px;
}
.breadcrumb-area .top-50 {
  top: 64% !important;
}
.breadcrumb-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  mix-blend-mode: hard-light;
}
.breadcrumb-area .page-name {
  font-size: 60px;
}
@media only screen and (max-width: 575px) {
  .breadcrumb-area .page-name {
    font-size: 40px;
  }
}
.breadcrumb-area--item {
  color: var(--paragraph-color);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .breadcrumb-area--item {
    font-size: 14px;
  }
}
.breadcrumb-area--item:not(:last-child) {
  margin-right: 12px;
}
.breadcrumb-area--item:not(:first-child)::before {
  content: "/";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -12px;
}
.breadcrumb-area--link:hover {
  color: #e2e2e2;
}
@media only screen and (max-width: 575px) {
  .breadcrumb-area {
    height: 350px;
  }
}
@media only screen and (max-width: 575px) {
  .breadcrumb-area .top-50 {
    top: 64% !important;
    width: 100%;
  }
}

a.hl-btn,
a.hl-btn:link,
a.hl-btn:active {
  font-family: var(--heading-font);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 26px;
  border-radius: 15px;
  letter-spacing: 1px;
  font-weight: bold;
  line-height: 1;
}
a.hl-btn.fs-18,
a.hl-btn:link.fs-18,
a.hl-btn:active.fs-18 {
  font-size: 18px;
}
@media only screen and (max-width: 991px) {
  a.hl-btn.fs-18,
  a.hl-btn:link.fs-18,
  a.hl-btn:active.fs-18 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  a.hl-btn.fs-18,
  a.hl-btn:link.fs-18,
  a.hl-btn:active.fs-18 {
    font-size: 15px;
  }
}
a.hl-btn.radius-20,
a.hl-btn:link.radius-20,
a.hl-btn:active.radius-20 {
  border-radius: 20px;
}
a.hl-btn.trans-btn,
a.hl-btn:link.trans-btn,
a.hl-btn:active.trans-btn {
  box-shadow: inset 0 0 0 1px #818181;
}
a.hl-btn.small-btn,
a.hl-btn:link.small-btn,
a.hl-btn:active.small-btn {
  padding: 15px 25px;
}
@media only screen and (max-width: 575px) {
  a.hl-btn.small-btn,
  a.hl-btn:link.small-btn,
  a.hl-btn:active.small-btn {
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 15px;
  }
  a.hl-btn.small-btn svg,
  a.hl-btn:link.small-btn svg,
  a.hl-btn:active.small-btn svg {
    width: 14px;
  }
}
a.hl-btn.big-btn,
a.hl-btn:link.big-btn,
a.hl-btn:active.big-btn {
  padding: 26px 36px;
  font-weight: 500 !important;
}
@media only screen and (max-width: 1199px) {
  a.hl-btn.big-btn,
  a.hl-btn:link.big-btn,
  a.hl-btn:active.big-btn {
    padding: 22px 30px;
  }
}
@media only screen and (max-width: 575px) {
  a.hl-btn.big-btn,
  a.hl-btn:link.big-btn,
  a.hl-btn:active.big-btn {
    padding: 20px 25px 17px;
  }
}
a.hl-btn span,
a.hl-btn:link span,
a.hl-btn:active span {
  padding-top: 3px;
}

.slider-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2.8px solid #fff;
  background: transparent;
}
.slider-btn--big {
  width: 90px;
  height: 90px;
}
@media only screen and (max-width: 1599px) {
  .slider-btn--big {
    width: 70px;
    height: 70px;
  }
  .slider-btn--big svg {
    width: 26px;
  }
  .slider-btn--big .linear-circle {
    width: 90px;
  }
}
@media only screen and (max-width: 1199px) {
  .slider-btn--big {
    width: 60px;
    height: 60px;
  }
  .slider-btn--big svg {
    width: 20px;
  }
}
.slider-btn.next-slide {
  backdrop-filter: blur(15px);
}
.slider-btn.next-slide svg:nth-child(2n) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
}

.video-play-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  display: inline-block;
  background: linear-gradient(133deg, rgba(255, 255, 255, 0.27) 12.14%, rgba(255, 255, 255, 0.09) 86.99%);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(7.5px);
  transition: all 500ms;
  visibility: hidden;
  opacity: 0;
  text-align: center;
}
.video-play-btn svg {
  margin-left: 5px;
}

.btn-base {
  font-weight: 600;
  position: relative;
  font-family: var(--heading-font);
  letter-spacing: 1px;
  background-image: linear-gradient(to right, #5a0dff -5%, #ff29b8 31%, #ff581c, #ff29b8, #5a0dff);
  box-shadow: 5px 2px 10px 0px rgba(45, 23, 70, 0.2) inset, -5px -3px 8px 0px rgba(71, 23, 11, 0.2) inset !important;
  background-size: 200% 100%;
  transition: all 0.4s ease-in-out;
}
.btn-base svg {
  margin-top: -2px;
}
.btn-base:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(92deg, rgba(90, 13, 255, 0.3) -7.26%, rgba(255, 41, 184, 0.3) 31.34%, rgba(255, 88, 28, 0.3) 90.47%);
  filter: blur(20px);
  z-index: -1;
  border-radius: 15px;
}

.btn-base:hover {
  background-position: 90% 0;
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 0px 20px rgba(255, 53, 144, 0.5) !important;
}

.btn-inactive {
  color: var(--paragraph-color);
}
.btn-inactive:hover {
  color: #fff;
}

/*
================================
    Movie Card Small 
================================
*/
.movie-card-small {
  border-radius: 40px;
  overflow: hidden;
}
@media only screen and (max-width: 575px) {
  .movie-card-small {
    max-width: 90%;
  }
}
.movie-card-small .details {
  width: 100%;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(50px);
  border-radius: 40px;
  padding: 20px;
  margin-bottom: -100%;
  transition: margin 500ms;
}
.movie-card-small .details .movie-name,
.movie-card-small .details .movie-info {
  margin-bottom: 6px;
}
@media only screen and (max-width: 575px) {
  .movie-card-small .details .movie-name,
  .movie-card-small .details .movie-info {
    font-size: 24px;
  }
}
.movie-card-small .details ul {
  color: #e2e2e2;
  line-height: 1;
}
.movie-card-small .details ul li {
  display: inline-block;
}
@media only screen and (max-width: 575px) {
  .movie-card-small .details ul li {
    font-size: 14px;
  }
}
.movie-card-small .details .movie-info li {
  display: inline-flex;
  align-items: center;
  color: #e2e2e2;
  gap: 7px;
}
.movie-card-small .details .movie-info li img {
  filter: brightness(100);
}
@media only screen and (max-width: 575px) {
  .movie-card-small .details .movie-info li {
    font-size: 14px;
  }
}
.movie-card-small .details .movie-info li:not(:last-child) {
  margin-right: 12px;
}
@media only screen and (max-width: 575px) {
  .movie-card-small .details .movie-info li:not(:last-child) {
    margin-right: 8px;
  }
}
.movie-card-small .movie-badge {
  top: 10%;
  left: -1px;
  background-color: var(--body-bg);
  text-align: center;
  font-family: var(--heading-font);
  font-size: 45px;
  font-weight: 600;
  line-height: 1;
  padding: 10px;
  border-radius: 0 20px 20px 0;
  letter-spacing: 0.8px;
}
.movie-card-small .movie-badge span {
  position: relative;
  background: linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%), var(--body-bg);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.movie-card-small .movie-badge::before, .movie-card-small .movie-badge::after {
  content: "";
  position: absolute;
  left: -1px;
  width: 35px;
  height: 35px;
  background-color: transparent;
}
.movie-card-small .movie-badge::before {
  top: 100%;
  border-top-left-radius: 50%;
  box-shadow: -5px -5px 0 0 var(--body-bg);
}
.movie-card-small .movie-badge::after {
  bottom: 100%;
  border-bottom-left-radius: 50%;
  box-shadow: -5px 5px 0 0 var(--body-bg);
}
.movie-card-small::before {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  width: 0;
  height: 0;
  background-image: linear-gradient(180deg, rgba(17, 17, 17, 0.8) 0%, rgba(24, 24, 24, 0.8) 100%);
  transition: all 300ms ease;
  mix-blend-mode: soft-light;
}
.movie-card-small:hover::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.movie-card-small:hover .video-play-btn {
  visibility: visible;
  opacity: 1;
  margin-top: -41px;
}
.movie-card-small:hover .details {
  margin-bottom: 0;
}

/*
================================
    Fluid Movie Cards 
================================
*/

.home-one-slider {
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  max-width: 90%;
  transition: transform 1000ms ease-out;
}
@media only screen and (max-width: 1199px) {
  .home-one-slider {
    max-width: 100%;
  }
}
.home-one-slider .thumb {
  height: 95vh;
}
.home-one-slider .thumb img {
  height: 100%;
}
@media only screen and (max-width: 1199px) {
  .home-one-slider .thumb {
    height: 80vh;
  }
  .home-one-slider .thumb img {
    height: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .home-one-slider .thumb {
    height: 68vh;
  }
}
.home-one-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(31, 31, 31, 0.5) 0%, #1f1f1f 100%);
  mix-blend-mode: hard-light;
  z-index: 1;
}
.home-one-slider::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(50%) rotate(-90deg);
  width: calc(32vw - 4.39px);
  height: calc(32vw - 4.39px);
  border-radius: 50%;
  background: linear-gradient(92deg, #ff640d 0%, rgba(13, 13, 13, 0.51) 97.73%);
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
.home-one-slider .video-autoplay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform: scale(1.16);
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
@media only screen and (min-width: 1699px) {
  .home-one-slider .video-autoplay {
    transform: scale(2);
  }
}
@media only screen and (max-width: 1199px) {
  .home-one-slider .video-autoplay {
    transform: scale(2);
  }
}
@media only screen and (max-width: 575px) {
  .home-one-slider .video-autoplay {
    transform: scale(3);
  }
}
.home-one-slider .container {
  z-index: 4;
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .home-one-slider .container {
    padding: 0 80px;
  }
}
.home-one-slider .banner-title {
  font-size: 160px;
  line-height: 140px;
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .home-one-slider .banner-title {
    font-size: 130px;
    line-height: 1;
  }
}
@media only screen and (max-width: 1199px) {
  .home-one-slider .banner-title {
    font-size: 55px;
    line-height: 1;
  }
}
@media only screen and (max-width: 991px) {
  .home-one-slider .banner-title {
    font-size: 68px;
  }
}
@media only screen and (max-width: 575px) {
  .home-one-slider .banner-title {
    font-size: 40px;
    line-height: 1;
  }
}
@media only screen and (max-width: 479px) {
  .home-one-slider .banner-title {
    font-size: 30px;
  }
}
.home-one-slider .banner-description {
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 30px;
  font-family: var(--body-font);
  word-break: auto-phrase;
  color: #e2e2e2;
}
@media only screen and (max-width: 1199px) {
  .home-one-slider .banner-description {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .home-one-slider .banner-description {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .home-one-slider a.hl-btn.big-btn {
    padding: 18px 25px;
  }
}
@media only screen and (max-width: 479px) {
  .home-one-slider a.hl-btn.big-btn {
    padding: 16px 19px;
  }
}
.home-one-slider:not(.swiper-slide-active) {
  transform: scale(0.88) !important;
}
@media only screen and (max-width: 1199px) {
  .home-one-slider:not(.swiper-slide-active) {
    transform: scale(0) !important;
  }
}

@media only screen and (max-width: 575px) {
  .hero-slider-one.style-two .thumb {
    height: 58vh;
  }
}
.hero-slider-one.style-two .banner-title {
  font-size: 130px;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .hero-slider-one.style-two .banner-title {
    font-size: 98px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slider-one.style-two .banner-title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-slider-one.style-two .banner-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-slider-one.style-two .movie-info-list img {
    max-width: 40px;
  }
}

.slider-counter-two {
  font-family: var(--bigShoulder-font);
  line-height: 0;
  display: inline-flex;
  align-items: baseline;
}
.slider-counter-two .swiper-pagination {
  position: relative;
  color: transparent;
}

.hero-card-slider {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 380px;
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-40%);
  z-index: 1;
}
.hero-card-slider .hero-card-slider-wrap {
  flex-direction: column;
  gap: 35px;
  max-width: 380px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .hero-card-slider .hero-card-slider-wrap {
    max-width: 200px;
    right: 10%;
    gap: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-card-slider {
    max-width: 200px;
    right: 10%;
    gap: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-card-slider {
    display: none;
  }
}
.hero-card-slider .hero-movie-card .thumb img {
  border-radius: 30px;
  overflow: hidden;
}
.hero-card-slider .hero-movie-card .card-title {
  font-size: 35px;
  line-height: 40px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .hero-card-slider .hero-movie-card .card-title {
    font-size: 24px;
  }
}
.hero-card-slider .hero-movie-card .card-description {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.hero-card-slider .hero-movie-card:not(.swiper-slide-active) {
  transform: rotate(0);
}
.hero-card-slider .hero-movie-card:not(.swiper-slide-active) .content {
  visibility: hidden;
}

.hero-slider-one.style-two {
  position: relative;
}
.hero-slider-one.style-two .container {
  margin-top: 0 !important;
}
.hero-slider-one.style-two .banner-description {
  color: #E2E2E2;
}
.hero-slider-one.style-two .home-one-slider {
  border-radius: 40px;
}
.hero-slider-one.style-two .home-one-slider:before {
  display: none;
}
.hero-slider-one.style-two .home-one-slider:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0 !important;
  width: 72%;
  height: 100%;
  background-image: url("../assets/brush.png") !important;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
  display: block !important;
  transform: translate(0) !important;
  border-radius: 0;
  background-size: 104% 112%;
}

.hero-card-slider .hero-card-slider-control {
  right: -130px;
}
@media only screen and (max-width: 1199px) {
  .hero-card-slider .hero-card-slider-control {
    right: -90px;
  }
}

.live-stream {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  margin-left: 6%;
  margin-right: 6%;
  border-radius: 40px;
}
@media only screen and (max-width: 575px) {
  .live-stream {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .live-stream {
    margin-left: 2%;
    margin-right: 2%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .live-stream {
    margin-left: 3%;
    margin-right: 3%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .live-stream {
    margin-left: 4%;
    margin-right: 4%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .live-stream {
    margin-left: 5%;
    margin-right: 5%;
  }
}

.feathur-card {
  padding: 48px 30px 40px;
  border-radius: 30px;
  background: linear-gradient(136deg, #1b1b1b 2.27%, #101010 100%);
  transition: 0.4s;
}
.feathur-card img {
  transition: 0.4s;
}
.feathur-card:hover {
  box-shadow: 0px 7px 15px rgba(255, 255, 255, 0.07);
}
.feathur-card:hover img {
  transform: scale(1.2);
}
.feathur-card h4 {
  font-size: 25px;
}
.feathur-card p {
  margin-bottom: 0;
  line-height: 25px;
  margin-top: 12px;
}
@media only screen and (max-width: 575px) {
  .feathur-card .feature-title {
    font-size: 20px;
  }
}

.pricing-card {
  color: #fff;
  font-family: var(--bigShoulder-font);
  background-size: 100% 100%;
  padding: 0 3px;
}
.pricing-card--header {
  border-radius: 30px;
  background: linear-gradient(95deg, #121212 7.27%, #1f1f1f 99.21%);
  padding: 30px 40px;
  overflow: hidden;
}
@media only screen and (max-width: 479px) {
  .pricing-card--header {
    padding: 30px 20px;
  }
}
.pricing-card--header .title {
  font-family: var(--bigShoulder-font);
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .pricing-card--header .title {
    font-size: 24px;
  }
}
.pricing-card--header .price-badge {
  width: max-content;
  padding: 25px;
  background: linear-gradient(108deg, #740000 13.18%, #ffd029 94.16%);
  box-shadow: 5px 5px 10px 0px rgba(90, 17, 6, 0.6) inset, -5px -5px 20px 0px rgba(112, 79, 0, 0.4) inset, 0 0 0 1.5px rgba(240, 240, 240, 0.35) inset;
  border-radius: 47% 53% 50% 50%/50% 47% 53% 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 1/0.92;
  top: -15px;
  right: -10px;
  transform: rotate(-18deg);
}
.pricing-card--header .price-badge .price {
  font-size: 25px;
  font-weight: 700;
  color: inherit;
  transform: rotate(18deg);
}
@media only screen and (max-width: 991px) {
  .pricing-card--header .price-badge .price {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .pricing-card--header .price-badge .price {
    padding-top: 11px;
  }
}
.pricing-card--header .price-badge .duration {
  color: #e2e2e2;
  font-family: var(--jost-font);
  font-size: 14px;
  transform: rotate(18deg);
}
@media only screen and (max-width: 767px) {
  .pricing-card {
    max-width: 500px;
    margin: 0 auto;
  }
  a.main-logo img {
    width: 150px;
}
.navbar-area .nav-right-part.nav-right-part-desktop span {
    font-size: 12px;
}
.navbar-are a.hl-btn, a.hl-btn:link, a.hl-btn:active {
    padding: 20px 9px;
}
.movie-card-small {
    max-width: 90%;
    margin: auto;
}
}
.pricing-card--body {
  padding: 20px 40px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 479px) {
  .pricing-card--body {
    padding: 30px 20px;
  }
}
.pricing-card--list {
  list-style-image: url(../assets/list-marker-graident.svg);
  list-style-position: inside;
  margin-bottom: 30px;
}
.pricing-card--list .service-item {
  color: #e2e2e2;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 9px 0;
}
@media only screen and (max-width: 991px) {
  .pricing-card--list .service-item {
    font-size: 16px;
  }
}
.pricing-card--list .service-item:first-child {
  padding-top: 0;
}
.pricing-card--list .service-item:last-child {
  padding-bottom: 0;
}
.pricing-card--list .service-item:not(:last-child) {
  border-bottom: 1px dashed #262626;
}
.pricing-card--button {
  padding: 25px 0;
}
.pricing-card--button::after {
  border-radius: 100px;
}
.pricing-card .pricing-card--button {
  background-size: 100% 100%;
}
.pricing-card .pricing-card--button:hover {
  background-image: url("../assets/price-btn2.png") !important;
}
.pricing-card .note {
  color: var(--paragraph-color);
  font-family: var(--jost-font);
  font-size: 14px;
  font-weight: 300;
}

.faq-accordion--item {
  background-color: #181818;
  border: unset;
  border-radius: 20px !important;
  background: var(--bg-primary);
}
.faq-accordion--item:not(:last-child) {
  margin-bottom: 10px;
}
.faq-accordion--header {
  font-size: 35px;
  line-height: 1;
}
@media only screen and (max-width: 1199px) {
  .faq-accordion--header {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .faq-accordion--header {
    font-size: 16px;
  }
}
.faq-accordion--button {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  text-transform: uppercase;
  background: transparent;
  border-radius: 20px !important;
  padding: 30px;
}
@media only screen and (max-width: 991px) {
  .faq-accordion--button {
    padding: 15px 20px;
  }
}
.faq-accordion--button span {
  margin-top: 7px;
}
.faq-accordion--button:not(.collapsed), .faq-accordion--button:focus {
  box-shadow: none;
  color: var(--primary-color);
  background: transparent;
}
.faq-accordion--button::after {
  content: unset;
}
.faq-accordion--body {
  padding: 30px;
  padding-top: 0;
}
@media only screen and (max-width: 1199px) {
  .faq-accordion--body {
    padding: 0 20px 20px;
  }
}

/*-----------------------
    Error 404 Page
-----------------------*/

/* v 1.0.2 */

/* Footer */
.footer-area {
  border-radius: 4.3vw 4.3vw 0px 0px;
  background-image: linear-gradient(95deg, #121212 7.27%, #1f1f1f 99.21%);
}
.footer-area .footer-widget .thumb {
  margin-bottom: 25px;
}
.footer-area .footer-widget .widget-title {
  margin-bottom: 20px;
  font-size: 30px;
}
@media only screen and (max-width: 575px) {
  .footer-area .footer-widget .widget-title {
    font-size: 24px;
  }
}
.footer-area .footer-widget--list {
  color: var(--paragraph-color);
}
.footer-area .footer-widget--item {
  line-height: 1;
}
.footer-area .footer-widget--item:not(:last-child) {
  margin-bottom: 18px;
}
.footer-area .footer-widget--link:hover {
  color: #e2e2e2;
}
.footer-area .footer-bottom {
  padding: 25px 0;
  margin-top: 50px;
  border-top: 1px solid #1e1d1d;
}

.social-media--item {
  display: inline-block;
}
.social-media--item:not(:last-child) {
  margin-right: 5px;
}
.social-media--link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1d1d1d;
  color: #e2e2e2;
}
.social-media--link:hover {
  background: var(--bg-gradient);
}
@media only screen and (max-width: 575px) {
  .social-media--link {
    width: 40px;
    height: 40px;
  }
}

/*# sourceMappingURL=style.css.map */
.mfp-container {
    text-align: center;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}


.pricing-popup-wrapper {
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
  padding: 40px;
  border-radius: 20px;
      margin: auto;
      background-color: #101010;
}

.pricing-box {
  text-align: center;
}

.price {
  font-size: 28px;
  font-weight: bold;
}



.home-one-slider.swiper-slide-active .video-autoplay {
  visibility: visible;
  opacity: 1;
}
 h3.banner-title.sbititle.fw-bold.text-uppercase {
    font-size: 60px;
}



/* popup */



/* -------- Subscription Modal -------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #101010;
  border: 1px solid var(--body-bg);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), var(--shadow-glow);
  transform: translateY(30px) scale(0.96);
  transition: transform var(--transition-med);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast), transform var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  color: #fff;
  transform: scale(1.15) rotate(90deg);
}

.modal-box h2 {
  text-align: center;
  margin-bottom: 8px;
  color:#fff;
  font-size: 40px;
}

.modal-box .modal-subtitle {
  text-align: center;
  color: #ff3888;
  font-size: 0.94rem;
  margin-bottom: 36px;
}


/* -------- Registration Modal -------- */
.reg-modal-box {
  max-width: 520px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input {
	width: 100%;
	background: #131722;
border: 1px solid #5a5a5a;
	border-radius: 10px;
	padding: 10px 10px;
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 0.95rem;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	outline: none;
}

.form-group input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px #29b5f68a;
}

.form-group input::placeholder { color: rgba(255,255,255,0.3); }

.form-group input.error { border-color: #e74c3c; }
.form-group .error-msg {
  color: #e74c3c;
  font-size: 0.78rem;
  margin-top: 5px;
  display: none;
}
.form-group .error-msg.visible { display: block; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card-divider {
  border: none;
  border-top: 1px solid rgba(131,72,255,0.18);
  margin: 2px 0;
}

.reg-modal-box .btn-subscribe {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  font-size: 1rem;
    border-radius: 10px;
        background-image: linear-gradient(to right, #5a0dff -5%, #ff29b8 31%, #ff581c, #ff29b8, #5a0dff);
    box-shadow: 5px 2px 10px 0px rgba(45, 23, 70, 0.2) inset, -5px -3px 8px 0px rgba(71, 23, 11, 0.2) inset !important;
    background-size: 200% 100%;
    transition: all 0.4s ease-in-out;

}

/* Success Message */
.success-overlay {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.success-overlay.visible {
  display: flex;
}

.success-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(to right, #5a0dff -5%, #ff29b8 31%, #ff581c, #ff29b8, #5a0dff);
  border: 2px solid #ff29b8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: pulse-icon 1.2s ease infinite alternate;
}

@keyframes pulse-icon {
  from { box-shadow: 0 0 0 0 rgba(131,72,255,0.35); }
  to   { box-shadow: 0 0 24px 8px rgba(131,72,255,0); }
}

.success-icon i {
  font-size: 2.4rem;
  color: var(--color-primary-light);
}

.success-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color:#fd29b5;
}

.success-overlay p {
  color: #fff;
  max-width: 380px;
  font-size: 0.95rem;
}

.movie-item:hover {
    box-shadow: 0 8px 10px #03a8f5; 
    transform: translateY(-5px);    
}

 
.pricing-card--header img {
    width: 54px;
}
.mfp-close-btn-in .mfp-close {
    color: #ffffff;
    font-size: 47px;
    opacity: 1;
}

.pricing-popup-wrapper.active{
      display: block !important;
   }
   .pricing-popup-wrapper{
      position: fixed;
  inset: 0;
  z-index: 2000;
  transition: opacity var(--transition-med);
  overflow-y: auto;
   }
   #regModal{
      display: none !important;
   }
   #regModal.active{
      display: flex !important;
   }
   .main-logo img {
  max-width: 200px;
}