/*---------------------------
 CSS Index  
****************************

01. Variables
02. Typography
03. Spacing
04. Reset
05. Forms
06. Shortcode
07. Common
08. Animations
09. Text Animation
10. Header
11. Nav
12. Mobilemenu
13. Button
14. Banner
----------------------------*/
/*=========================
    Variables 
==========================*/
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap");
@import url("../webfonts/lowball-neue/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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Gothic&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;
}

h5 {
  font-size: 25px;
  line-height: 1.338;
}

h6 {
  font-size: 16px;
  line-height: 1.238;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  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-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

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

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

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

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

.pb-50 {
  padding-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .pb-50 {
    padding-bottom: 30px;
  }
}

.pb-60 {
  padding-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .pb-60 {
    padding-bottom: 30px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .pb-70 {
    padding-bottom: 30px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}
@media only screen and (max-width: 1199px) {
  .pb-110 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 911px) {
  .pb-110 {
    padding-bottom: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 911px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

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

.mt-03 {
  margin-top: 3px;
}

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

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

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

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

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

.mb-03 {
  margin-bottom: 3px;
}

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

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

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

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

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

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

.my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.bg-primary {
  background: var(--bg-primary) !important;
}

.bg-body {
  background: var(--body-bg) !important;
}

.bg-black-2 {
  background-color: #000000;
}

.bg-gray {
  background-color: #dddddd;
}

.color-paragraph {
  color: var(--paragraph-color);
}

.radius-100 {
  border-radius: 100px !important;
}

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

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

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

.pt-03 {
  padding-top: 3px;
}

.ls-1 {
  letter-spacing: 1px;
}

.border-radius-50 {
  border-radius: 50px !important;
}

.bg-cover {
  background-size: cover;
}

.categories-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.trending-slider-two .swiper-wrapper {
  transition-timing-function: linear;
}

.newest-release-slider3 .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-slider-smooth-swcroll .swiper-wrapper {
  transition-timing-function: linear;
}

.bg-gradient-black {
  background: var(--Bg-background, linear-gradient(95deg, #181818 7.27%, #151515 99.21%));
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-grid-container {
    max-width: 90%;
  }
}

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

.visibility-visible {
  visibility: visible !important;
  opacity: 1 !important;
}

.radius-60 {
  border-radius: 60px !important;
}

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;
}

pre {
  word-break: normal;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

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

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

/*input and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
  outline: none;
  box-shadow: none;
}

code {
  color: #faa603;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.comment-navigation .nav-previous > a,
.posts-navigation .nav-previous > a,
.post-navigation .nav-previous > a,
.comment-navigation .nav-next > a,
.posts-navigation .nav-next > a,
.post-navigation .nav-next > a {
  transition: 0.3s ease-in;
}

.comment-navigation .nav-previous:hover > a,
.posts-navigation .nav-previous:hover > a,
.post-navigation .nav-previous:hover > a,
.comment-navigation .nav-next:hover > a,
.posts-navigation .nav-next:hover > a,
.post-navigation .nav-next:hover > a {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  float: left;
  clear: both;
  margin-right: 20px;
}

.alignright {
  float: right;
  clear: both;
  margin-left: 20px;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

.alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.alignwide {
  max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  clear: both;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/
.post-password-form input {
  display: block;
  border: 1px solid #e2e2e2;
  height: 50px;
  border-radius: 3px;
  padding: 0 20px;
}

.post-password-form label {
  font-weight: 600;
  color: #333;
}

.post-password-form input[type=submit] {
  width: 100px;
  height: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.post-password-form input[type=submit]:hover {
  background-color: #121a2f;
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.footer-widget .table td,
.footer-widget .table th {
  padding: 0.5rem !important;
}

.hl-input-field {
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 10px;
  background-color: transparent;
  transition: var(--transition);
  color: var(--paragraph-color);
  caret-color: #e2e2e2;
}
.hl-input-field:focus {
  border-color: #6d33dd;
  outline: none;
}
.hl-input-field::placeholder {
  font-family: var(--body-font);
  line-height: 1;
  font-size: 16px;
}

.cmnt-reply-form {
  border-radius: 30px;
  background: var(--bg-primary);
  padding: 30px;
}
.cmnt-reply-form label {
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}
.cmnt-reply-form .cmnt-reply-field {
  padding: 15px 20px;
  height: 65px;
}
@media only screen and (max-width: 991px) {
  .cmnt-reply-form .cmnt-reply-field {
    height: 50px;
  }
}
.cmnt-reply-form textarea.cmnt-reply-field {
  height: 160px;
}
@media only screen and (max-width: 991px) {
  .cmnt-reply-form textarea.cmnt-reply-field {
    height: 150px;
  }
}

.widget_search .form-control {
  height: 55px;
  color: var(--heading-color);
  border: none;
  border: 0;
  padding: 0 57px 0 22px;
  border-radius: 10px;
  border: 1px solid var(--Linear, rgba(255, 255, 255, 0.27));
  background: transparent;
}

.widget_search .submit-btn {
  position: absolute;
  height: 45px;
  width: 45px;
  right: 5px;
  top: 5px;
  transition: 0.3s ease-in;
  border: none;
  background-image: linear-gradient(to right, #5A0DFF 0%, #FF29B8 36.6%, #FF581C 74.73%, #FF29B8, #5A0DFF);
  cursor: pointer;
  color: #fff;
  border-radius: 10px;
  background-size: 130% 100%;
  transition: all 0.4s ease-in-out;
}

.single-input-field {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  position: relative;
}
.single-input-field span {
  display: block;
  margin-bottom: 10px;
}
.single-input-field input {
  height: 55px;
  width: 100%;
  padding: 0 20px;
  border-radius: 8px;
  color: var(--paragraph-color);
}
@media only screen and (max-width: 575px) {
  .single-input-field input {
    padding: 0 16px;
  }
}
.single-input-field textarea {
  height: 130px;
  width: 100%;
  padding: 16px 20px 20px 30px;
  border-radius: 8px;
  color: var(--paragraph-color);
}
.single-input-field .input-icon {
  position: absolute;
  right: 18px;
  bottom: 18px;
}
.single-input-field .left-icon {
  position: absolute;
  left: 18px;
  top: 22px;
}
.single-input-field.style-border input {
  border: 1px solid #3F3F3F;
  background-color: transparent;
}
.single-input-field.style-border textarea {
  border: 1px solid #3F3F3F;
  background-color: transparent;
}

.holaa-form-wrapper {
  background: linear-gradient(95.04deg, #181818 7.27%, #151515 99.21%);
  box-shadow: 0 0 0 2px #1d1d1d inset;
  border-radius: 30px;
}

.registration-wrap {
  padding: 53px 60px 60px;
}
@media only screen and (max-width: 1199px) {
  .registration-wrap {
    padding: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .registration-wrap {
    padding: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .registration-wrap {
    border-radius: 15px;
  }
}
.registration-wrap button.hl-btn.medium-btn {
  padding-left: 50px;
  padding-right: 50px;
}

.checkbox-wrap span {
  position: relative;
  cursor: pointer;
}

.checkbox-wrap input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox-wrap span:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(to right, #5A0DFF, #FF29B8, #FF29B8) 1;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 9px;
  margin-top: -4px;
}

.checkbox-wrap input:checked + span:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 10px;
  width: 5px;
  height: 13px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/*--------------------------------------------
* 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.style-two {
  gap: 20px;
}
@media only screen and (max-width: 575px) {
  .section-header.style-two svg {
    display: none;
  }
}
.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;
}
.section-title--two {
  font-family: var(--bigShoulder-font);
  font-weight: 900;
}
.section-title.large {
  font-size: 70px;
}
@media only screen and (max-width: 575px) {
  .section-title.large {
    font-size: 40px;
  }
}
.section-title.small {
  font-size: 35px;
}
@media only screen and (max-width: 575px) {
  .section-title.small {
    font-size: 24px;
  }
}
@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;
}

.large-width-section {
  max-width: 1725px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 575px) {
  .large-width-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section-heading-2 {
  background: var(--Text-Linear-Effect, linear-gradient(180deg, #f5f5f5 0%, #c5c5c5 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .section-heading-2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .section-heading-2 {
    font-size: 30px;
  }
}

.movie-info-list {
  color: var(--paragraph-color);
  font-weight: 500;
  margin-bottom: 20px;
  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;
  }
}
.movie-info-list--item.style-two {
  border: 1px solid rgba(255, 255, 255, 0.27);
  background: linear-gradient(133deg, rgba(255, 255, 255, 0.27) 12.14%, rgba(255, 255, 255, 0.09) 86.99%);
}

.movie-production-info-list .movie-info-list--item.style-two {
  border: 0;
}

.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%;
}

.home-one-icon-box {
  max-width: 340px !important;
  transition: 0.4s;
}
.home-one-icon-box .elementor-widget-container {
  display: flex;
  align-items: center;
  transition: 0.4s;
}
.home-one-icon-box h3 {
  font-family: var(--heading-font) !important;
  letter-spacing: 1px;
  letter-spacing: 1px !important;
}
.home-one-icon-box p {
  font-family: var(--body-font) !important;
  word-break: auto-phrase;
  font-size: 17px;
}
.home-one-icon-box:hover .elementor-widget-container {
  box-shadow: 0px 7px 15px rgba(255, 255, 255, 0.07);
}
.home-one-icon-box:hover .elementor-image-box-img img {
  transform: scale(1.2);
}

@media only screen and (max-width: 575px) {
  .faq_accordion__header {
    font-size: 20px;
  }
}
.faq_accordion__header span {
  float: right;
}
@media only screen and (max-width: 575px) {
  .faq_accordion__header span svg {
    width: 14px;
  }
}

.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;
  }
}

.section-title-5 {
  font-family: var(--gothic-font);
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 0%, #9c9c9c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1599px) {
  .section-title-5 {
    font-size: 85px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-title-5 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-5 {
    font-size: 40px;
  }
}

.no-text-fill {
  -webkit-text-fill-color: unset;
}

.circle-badge {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 5px;
  background: var(--Primary-colors, linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%));
}
@media only screen and (max-width: 1599px) {
  .circle-badge {
    width: 150px;
    height: 150px;
  }
}
.circle-badge .circle-badge-arrow-icon {
  width: 105px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 100%;
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
@media only screen and (max-width: 1599px) {
  .circle-badge .circle-badge-arrow-icon {
    width: 90px;
    height: 90px;
  }
}
.circle-badge .circle-badge-arrow-icon .img-1 {
  transform: translate(15px, 0px);
  transition: 0.6s;
  width: 35px;
}
.circle-badge .circle-badge-arrow-icon .img-2 {
  transform: translate(-86px, 35px);
  transition: 0.6s;
  width: 35px;
}
.circle-badge .spin-text {
  transform-origin: center;
  animation: spin-btn 6s linear infinite;
}
.circle-badge .spin-text text {
  text-transform: capitalize;
  letter-spacing: 4.3px;
  font-weight: 700;
}
.circle-badge:hover .circle-badge-arrow-icon .img-1 {
  transform: translate(85px, -58px);
}
.circle-badge:hover .circle-badge-arrow-icon .img-2 {
  transform: translate(-20px, 0px);
}

/************ animate style ************/
.top-image-bounce {
  animation: top-image-bounce 3s infinite ease-in-out;
}

.top-image-bounce-2 {
  animation: top-image-bounce-2 6s infinite ease-in-out;
}

.left-image-bounce {
  animation: left-image-bounce 3s infinite ease-in-out;
}

.right-image-bounce {
  animation: right-image-bounce 3s infinite ease-in-out;
}

.spin-image {
  animation: spin 3s infinite ease-in-out;
}

@keyframes top-image-bounce {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(-8px);
  }
}
@keyframes top-image-bounce-2 {
  0% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(-4px);
  }
}
@keyframes left-image-bounce {
  0% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-5px);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
    transform-origin: 50%;
  }
}
@keyframes ripple-white3 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
  }
}
@keyframes spin-btn {
  100% {
    transform: rotate(360deg);
  }
}
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background-color: #151515;
  width: 51%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}

.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.9s 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.9s 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s 1s ease-out;
}

.loader {
  position: absolute;
  top: 40%;
  left: 45%;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transform: perspective(500px) rotateX(45deg);
  z-index: 99999;
}
@media only screen and (max-width: 991px) {
  .loader {
    top: 35%;
    left: 30%;
    width: 150px;
    height: 150px;
  }
}

.loader span {
  position: absolute;
  display: block;
  border: 15px solid #fff;
  box-sizing: border-box;
  border-radius: 50%;
  box-shadow: 0 10px 0 #e0e0e0, inset 0 10px 0 #e0e0e0;
  animation: animate 4.5s ease-in-out infinite;
}

.loader span:nth-child(1) {
  animation-delay: 0s;
}

.loader span:nth-child(2) {
  animation-delay: -1.5s;
}

.loader span:nth-child(3) {
  animation-delay: -3s;
}

@keyframes animate {
  0% {
    transform: translateZ(-100px);
    width: 100%;
    height: 100%;
  }
  25% {
    transform: translateZ(100px);
    width: 100%;
    height: 100%;
  }
  50% {
    transform: translateZ(100px);
    width: 35%;
    height: 35%;
  }
  75% {
    transform: translateZ(-100px);
    width: 35%;
    height: 35%;
  }
  100% {
    transform: translateZ(-100px);
    width: 100%;
    height: 100%;
  }
}
/* Header */
.nav-right-part .header_search_box {
  top: 60%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  margin-top: 34px;
}
.nav-right-part .header_search_box .header_search_form {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0px 1px 30px rgba(17, 17, 17, 0.1);
}
.nav-right-part .header_search_box .header_search_form input {
  width: 320px;
  color: #999;
  padding: 18px 12px 18px 18px;
  background-color: transparent;
  border: none;
}
@media only screen and (max-width: 575px) {
  .nav-right-part .header_search_box .header_search_form input {
    width: 215px;
  }
}
.nav-right-part .header_search_box .header_search_form button {
  box-shadow: none;
  border: 0;
  background-color: transparent;
  padding-right: 15px;
}
.nav-right-part .header_search_box.show_box {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 479px) {
  .nav-right-part .header_search_box.show_box {
    margin-right: -35px;
  }
}

.navbar-area-3 {
  position: absolute;
  top: 0;
  width: 100%;
}

.header-area-4 {
  z-index: 2;
  position: relative;
}

.navbar-area {
  position: relative;
  z-index: 99;
}
.navbar-area .navbar-shape {
  position: absolute;
  left: 0;
  top: 0;
}
.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-container.navbar-bg {
  position: relative;
  padding-left: 40px;
}
.navbar-area .nav-container.navbar-bg:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  height: 100%;
  width: 95%;
  background: #fff;
  z-index: -1;
}
.navbar-area .nav-container .logo {
  line-height: 0.9;
}
.navbar-area .nav-container .logo a {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}
.navbar-area .nav-container .logo a img {
  height: auto;
  max-width: 150px;
}
.navbar-area .nav-container .btn-transparent {
  font-size: 13px;
  font-weight: 700;
}
.navbar-area .nav-container .main-menu {
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 600;
}
.navbar-area .nav-container .main-menu .menu-item {
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}
.navbar-area .nav-container .main-menu .menu-item .menu-link {
  font-family: var(--body-font);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
}
.navbar-area .nav-container .main-menu .menu-item .menu-link:hover, .navbar-area .nav-container .main-menu .menu-item .menu-link.active {
  color: #ff6f3f;
}
.navbar-area .nav-container .main-menu .menu-item:not(:first-child) {
  margin-left: 30px;
}
.navbar-area .nav-container .main-menu .menu-item.menu-item-has-children {
  position: relative;
  z-index: 0;
}
.navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  margin: 0;
  padding: 0;
  border-radius: 20px;
  border: 2px solid rgba(72, 72, 72, 0.2);
  background: var(--bg-primary);
  z-index: 99;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 300ms ease;
}
.navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu--item {
  display: block;
  margin-left: 0;
  line-height: 22px;
  font-size: 15px;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(64, 64, 64, 0.2);
}
.navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu--item:last-child {
  border-bottom: none;
}
.navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu--link {
  display: block;
  padding: 12px 20px;
  white-space: nowrap;
  transition: all 0.3s;
  color: var(--paragraph-color);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s ease;
}
.navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu--link:hover, .navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu--link.active {
  color: #e2e2e2;
}
.navbar-area .nav-container .main-menu .menu-item.menu-item-has-children:hover > .sub-menu {
  transform: scaleY(1);
}
.navbar-area .nav-right-part .nav-search-btn {
  line-height: 59px;
}
.navbar-area .nav-right-part .nav-hamburger-btn {
  line-height: 59px;
  border-left: 1px solid #ededed;
}
.navbar-area .nav-right-part.nav-right-part-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-nav {
  margin-right: 67px;
  padding: 17px 0;
}
.primary-nav::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: auto;
  right: -17px;
  border-radius: 100px;
  transform: translateY(-50%);
  width: 99px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.49) -0.89%, rgba(255, 255, 255, 0.1) 0.12%, rgba(255, 255, 255, 0.11) 99.89%);
  backdrop-filter: blur(10px);
}
.primary-nav--item:not(:last-child) {
  margin-bottom: 18px;
}
@media only screen and (max-width: 1599px) {
  .primary-nav--item:not(:last-child) {
    margin-bottom: 7px;
  }
}
.primary-nav--link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22.5px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 2px 4px 5px 0px rgba(31, 31, 31, 0.05) inset, -4px -5px 5px 0px rgba(31, 31, 31, 0.05) inset, inset 0 0 0 1.2px rgba(240, 240, 240, 0.1);
  backdrop-filter: blur(10px);
  padding: 20.5px;
  width: 65px;
  overflow: hidden;
}
.primary-nav--link .link-text {
  font-family: var(--bigShoulder-font);
  font-size: 18px;
  flex-shrink: 0;
}
.primary-nav--link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.primary-nav--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1.5px solid transparent;
  border-radius: 100px;
  background-color: #ff581c;
  background: linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%) border-box;
  -webkit-mask: linear-gradient(#fff 0%, #fff 0%) padding-box, linear-gradient(#fff 0%, #fff 0%);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 300ms ease;
}
.primary-nav--link img {
  width: 18px;
  height: 18px;
}
.primary-nav--link:hover {
  width: 100%;
}
.primary-nav--link:hover::before {
  opacity: 1;
}

.secondary-nav {
  padding: 20px 0;
}
.secondary-nav--left, .secondary-nav--right {
  display: flex;
  align-items: center;
}
.secondary-nav--right {
  gap: 18px;
  justify-content: flex-end;
}
.secondary-nav--right .hl-btn {
  font-family: var(--bigShoulder-font);
}
.secondary-nav--right .profile-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.2px rgba(240, 240, 240, 0.4);
}
@media only screen and (max-width: 575px) {
  .secondary-nav--right .profile-btn {
    width: 40px;
    height: 40px;
  }
}

.menu-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1.2px rgba(255, 255, 255, 0.4);
}
.menu-btn svg {
  overflow: hidden;
}

.navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu .sub-menu {
  left: 228px;
  top: -2px;
}

.navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu .menu-item-has-children > a:first-child:after {
  content: "";
  position: absolute;
  background: url("../../assets/images/icons/downarrow.webp");
  right: 10px;
  top: 16px;
  display: inline-block;
  z-index: 9999;
  filter: brightness(0.5);
  height: 13px;
  width: 12px;
  background-size: 100%;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
}

.breadcrumb-wrap {
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background: #f8f9fc;
}
.breadcrumb-wrap .breadcrumb-content {
  padding: 155px 0 155px 0;
}
.breadcrumb-wrap .page-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--heading-color);
  text-transform: capitalize;
  margin-bottom: 12px;
  word-wrap: break-word;
}
.breadcrumb-wrap p {
  display: inline-block;
  padding: 5px 20px;
  background-color: var(--primary-color);
  font-size: 14px;
  line-height: 20px;
  max-width: 600px;
  color: #585858;
  margin-bottom: 20px;
}
.breadcrumb-wrap .page-list {
  margin: 0;
  padding-left: 0;
}
.breadcrumb-wrap .page-list li {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  padding-right: 12px;
  font-size: 16px;
  color: #8b8b8b;
  font-weight: 500;
}
.breadcrumb-wrap .page-list li a {
  color: #8b8b8b;
  transition: 0.4s;
}
.breadcrumb-wrap .page-list li a:hover {
  color: var(--primary-color);
}
.breadcrumb-wrap .page-list li:first-child {
  padding-left: 3px;
}
.breadcrumb-wrap .page-list li:first-child::after {
  display: none;
}
.breadcrumb-wrap .page-list li:after {
  position: absolute;
  left: 2px;
  top: 13px;
  content: "";
  height: 2px;
  width: 10px;
  background-color: #b5b5b5;
  font-weight: 600;
}

/*----------------------------
    15. Mobile Menu Styles  
------------------------------*/
.popup_mobile_menu {
  z-index: 9999;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(1px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.popup_mobile_menu .menu {
  padding: 50px 40px 25px 40px;
  width: 425px;
  z-index: 999;
  position: absolute;
  right: -150px;
  background: var(--Bg-background, linear-gradient(95deg, #181818 7.27%, #151515 99.21%));
  height: 100vh;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-out;
  border-left: 2px solid #222;
  border-radius: 20px 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .popup_mobile_menu .menu {
    width: 375px;
  }
}
@media only screen and (max-width: 575px) {
  .popup_mobile_menu .menu {
    width: 310px;
  }
}
@media only screen and (max-width: 479px) {
  .popup_mobile_menu .menu {
    padding: 25px 30px;
  }
}
.popup_mobile_menu .menu__top .menu_header {
  padding-bottom: 50px;
  padding-top: 10px;
}
.popup_mobile_menu .menu__top .menu_header .close_button {
  width: 30px;
  height: 30px;
  border: 1px solid #676767;
  border-radius: 50%;
}
.popup_mobile_menu .menu__top .menu_header .close_button .close {
  padding: 0;
  opacity: 1;
  width: max-content;
  position: relative;
  color: var(--color-white);
  background-color: transparent;
  border: 0;
  line-height: 1;
}
.popup_mobile_menu .menu__top p.menu_discription {
  font-size: 18px;
  margin-top: 20px;
  color: var(--color-white);
}
@media only screen and (max-width: 575px) {
  .popup_mobile_menu .menu__top p {
    display: none;
  }
}
.popup_mobile_menu .menu__content {
  display: flex;
  flex-direction: column;
}
.popup_mobile_menu .menu__content .menu_list__item {
  display: block;
}
.popup_mobile_menu .menu__content .menu_list__link {
  font-weight: 500;
  color: var(--color-white);
  position: relative;
  text-transform: capitalize;
  margin: 0;
  display: inline;
  transition: 0.4s;
}
.popup_mobile_menu .menu__content .menu_list__link:hover, .popup_mobile_menu .menu__content .menu_list__link.active {
  color: var(--primary-color);
}
.popup_mobile_menu .menu__content .menu_list__link.active {
  border-bottom: 1px solid var(--primary-color);
}
@media only screen and (max-width: 479px) {
  .popup_mobile_menu .menu__content .menu_list {
    padding: 30px 0;
  }
}
.popup_mobile_menu .menu__content .address {
  padding: 70px 0;
  border-top: 1px solid rgba(186, 151, 120, 0.16);
  border-bottom: 1px solid rgba(186, 151, 120, 0.16);
}
.popup_mobile_menu .menu__content .address li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.popup_mobile_menu .menu__content .address li div:first-child {
  border: 1px solid #a9a9a9;
  line-height: 0;
  padding: 13.5px;
  color: #fff;
  border-radius: 8px;
}
.popup_mobile_menu .menu__content .address li:not(:last-child) {
  margin-bottom: 16px;
}
.popup_mobile_menu .menu__content .address li svg {
  fill: var(--color-white);
  stroke: var(--heading-color);
  stroke-width: 2;
  line-height: 0;
  width: 20px;
  height: 20px;
}
.popup_mobile_menu .menu__content .address li a {
  color: var(--color-white);
}
.popup_mobile_menu .menu .social_share {
  padding-top: 22px;
  border-top: 1px solid #222;
}
@media only screen and (max-width: 991px) {
  .popup_mobile_menu .menu .social_share {
    padding-top: 25px;
  }
}
.popup_mobile_menu .menu .social_share__title {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--color-white);
  display: inline-block;
  margin-bottom: 20px;
}
.popup_mobile_menu .menu .social_share__list li:not(:last-child) {
  margin-right: 10px;
}
.popup_mobile_menu .menu .social_share__list_link {
  background: var(--Another-Bg, #1D1D1D);
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: #cfcfcf;
  transition: 0.4s;
  border-radius: 50%;
}
.popup_mobile_menu .menu .social_share__list_link svg {
  width: 18px;
  fill: #fff;
}
.popup_mobile_menu .menu .social_share__list_link:hover {
  background-image: linear-gradient(to right, #5a0dff -5%, #FF29B8 31%, #FF581C);
}
.popup_mobile_menu.show_menu {
  visibility: visible;
  opacity: 1;
}
.popup_mobile_menu.show_menu .menu {
  opacity: 1;
  right: 0;
  overflow-y: auto;
}

.mobile_menu_nav ul.menu_list {
  padding: 0;
}
.mobile_menu_nav ul.menu_list li {
  list-style: none;
  margin-bottom: 15px;
}
.mobile_menu_nav ul.menu_list li a {
  font-family: var(--bigShoulder-font);
  font-size: 35px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  margin: 0;
  display: block;
  transition: 0.4s;
  z-index: 2;
}
@media only screen and (max-width: 575px) {
  .mobile_menu_nav ul.menu_list li a {
    font-size: 28px;
  }
}
.mobile_menu_nav ul.menu_list li:last-child {
  margin-bottom: 0;
}
.mobile_menu_nav ul.menu_list li.show > a {
  background: var(--Primary-colors, linear-gradient(92deg, #5A0DFF 0%, #FF29B8 14.6%, #FF581C 97.73%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mobile_menu_nav .menu-item-has-children {
  position: relative;
  overflow: hidden;
}
.mobile_menu_nav .menu-item-has-children:after {
  content: " ";
  position: absolute;
  right: 0;
  top: 21px;
  font-weight: 700;
  font-size: 20px;
  height: 20px;
  width: 20px;
  background: url("../../assets/images/icons/downarrow.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.4s;
}
@media only screen and (max-width: 575px) {
  .mobile_menu_nav .menu-item-has-children:after {
    top: 14px;
  }
}
.mobile_menu_nav .menu-item-has-children .sub-menu {
  text-align: left;
  display: none;
  padding-left: 15px;
}
.mobile_menu_nav .menu-item-has-children .sub-menu li {
  border-bottom: 0;
  margin-bottom: 0;
  margin-top: 10px;
}
.mobile_menu_nav .menu-item-has-children .sub-menu li a {
  display: block;
  color: #999;
  font-size: 16px;
  position: relative;
  transition: 0.4s;
  font-weight: 600;
  padding-left: 0;
  padding-right: 18px;
  color: #999;
  font-family: Dosis;
}
.mobile_menu_nav .menu-item-has-children .sub-menu li a.current {
  background: var(--Primary-colors, linear-gradient(92deg, #5A0DFF 0%, #FF29B8 14.6%, #FF581C 97.73%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mobile_menu_nav .menu-item-has-children.show:after {
  content: " ";
  position: absolute;
  right: 0;
  top: 21px;
  font-weight: 700;
  font-size: 20px;
  height: 20px;
  width: 20px;
  background: url("../../assets/images/icons/uparrow.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.4s;
}

.mobile_menu_nav .menu-item-has-children .menu-item-has-children:after {
  top: 8px;
}

/* Elements */
.breadcrumb-area {
  background-image: url(../../assets/images/breadcrumb/breadcrumb-bg.webp);
  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%;
  }
}

.hl-pagination {
  font-family: var(--heading-font);
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hl-pagination--button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  border-radius: 15px;
  background: var(--bg-primary);
  color: var(--paragraph-color);
}
@media only screen and (max-width: 575px) {
  .hl-pagination--button {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
.hl-pagination--button:hover, .hl-pagination--button.current {
  background: var(--bg-gradient);
  color: var(--primary-color);
}

.movie-wrapper-one {
  border-radius: 50px;
  background: var(--bg-primary);
  margin-top: -40px;
  margin-left: calc(3vw + 2.4px);
  margin-right: calc(3vw + 2.4px);
  position: relative;
  z-index: 99;
  padding: 60px 70px;
}
@media only screen and (max-width: 991px) {
  .movie-wrapper-one {
    padding: 30px;
  }
}
.movie-wrapper-one .movie-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-12%);
}

.rotate-movie-slider {
  background-image: url(../../assets/images/background/rotate-movie-area-bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.trending-slider-two {
  background: var(--bg-primary);
}

.privacy-policy .table-content {
  border-radius: 20px;
  background: var(--bg-primary);
  padding: 40px 30px;
  position: sticky;
  top: 40px;
}
.privacy-policy .table-content .content-item {
  color: #e2e2e2;
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  border-top: 1px dashed #272727;
  padding: 10px 0;
}
.privacy-policy .table-content .content-item:last-child {
  padding-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .privacy-policy .table-content .content-item {
    font-size: 16px;
  }
}
.privacy-policy .content-block .terms .description {
  font-size: 18px;
  margin-bottom: 0;
  color: #e2e2e2;
}
@media only screen and (max-width: 991px) {
  .privacy-policy .content-block .terms .description {
    font-size: 16px;
  }
}
.privacy-policy .content-block .terms .description:not(:last-child) {
  margin-bottom: 20px;
}
.privacy-policy .content-block .terms:not(:first-child) {
  padding-top: 40px;
}

.about-us p {
  color: #e2e2e2;
}

.enjoy-favourite-device .responsive--title {
  font-family: var(--bigShoulder-font);
  font-size: 70px;
  font-weight: 900;
  line-height: 80px;
}
@media only screen and (max-width: 1199px) {
  .enjoy-favourite-device .responsive--title {
    font-size: 50px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  .enjoy-favourite-device .responsive--title {
    font-size: 30px;
    line-height: 1.2;
  }
}
.enjoy-favourite-device .responsive--description {
  font-family: var(--jost-font);
  line-height: 25px;
}

.hl-container {
  padding: 0 70px;
}
@media only screen and (max-width: 1199px) {
  .hl-container {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .hl-container {
    padding: 0 15px;
  }
}

.sports-nav-tab {
  margin-bottom: 50px;
  border: 0;
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .sports-nav-tab {
    margin-bottom: 30px;
  }
}
.sports-nav-tab .nav-item {
  display: inline-block;
  margin-bottom: 10px;
}
.sports-nav-tab .nav-item .nav-link {
  color: #C2C2C2;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  height: 42px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #484848;
  background: transparent;
  position: relative;
}
.sports-nav-tab .nav-item .nav-link.active {
  color: #fff;
  border-color: transparent;
}
.sports-nav-tab .nav-item .nav-link.active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 102%;
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #ff581c;
  background: linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%) border-box;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.sports-nav-tab .nav-item + .nav-item {
  margin-left: 8px;
}

.sports-nav-tab-content {
  position: relative;
  padding-bottom: 150px;
}
@media only screen and (max-width: 991px) {
  .sports-nav-tab-content {
    text-align: center;
    padding-bottom: 70px;
  }
}
.sports-nav-tab-content .title {
  background: var(--Text-Linear-Effect, linear-gradient(180deg, #F5F5F5 0%, #C5C5C5 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 470px;
  font-weight: 600;
  font-size: 170px;
  line-height: 0.8;
}
@media only screen and (max-width: 1199px) {
  .sports-nav-tab-content .title {
    font-size: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .sports-nav-tab-content .title {
    font-size: 70px;
    margin: 0 auto;
  }
}
.sports-nav-tab-content .description {
  color: #C1C1C1;
  font-family: var(--jost-font);
  font-size: 20px;
  max-width: 470px;
}
@media only screen and (max-width: 991px) {
  .sports-nav-tab-content .description {
    margin: 0 auto;
  }
}
.sports-nav-tab-content .popup_video {
  margin-top: 30px;
}
.sports-nav-tab-content .main-image {
  position: absolute;
  bottom: 0;
  left: -100%;
  margin-left: -50px;
}
@media only screen and (max-width: 1199px) {
  .sports-nav-tab-content .main-image {
    margin-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .sports-nav-tab-content .main-image {
    display: none;
  }
}

.sports-tab-area {
  position: relative;
  padding: 120px 0 0;
  background: #151515;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .sports-tab-area {
    padding: 70px 0 0;
  }
}
.sports-tab-area .left-shape-image {
  position: absolute;
  left: -50px;
  width: 43%;
  top: 200px;
  height: 580px;
}
@media only screen and (min-width: 2399px) {
  .sports-tab-area .left-shape-image {
    left: 0;
    width: auto;
    top: 200px;
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  .sports-tab-area .left-shape-image {
    display: none;
  }
}

.movie-list-area {
  background-color: #151515;
}

a.hl-btn,
button.hl-btn,
a.hl-btn:link,
button.hl-btn:link,
a.hl-btn:active,
button.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,
button.hl-btn.fs-18,
a.hl-btn:link.fs-18,
button.hl-btn:link.fs-18,
a.hl-btn:active.fs-18,
button.hl-btn:active.fs-18 {
  font-size: 18px;
}
@media only screen and (max-width: 991px) {
  a.hl-btn.fs-18,
  button.hl-btn.fs-18,
  a.hl-btn:link.fs-18,
  button.hl-btn:link.fs-18,
  a.hl-btn:active.fs-18,
  button.hl-btn:active.fs-18 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  a.hl-btn.fs-18,
  button.hl-btn.fs-18,
  a.hl-btn:link.fs-18,
  button.hl-btn:link.fs-18,
  a.hl-btn:active.fs-18,
  button.hl-btn:active.fs-18 {
    font-size: 15px;
  }
}
a.hl-btn.radius-20,
button.hl-btn.radius-20,
a.hl-btn:link.radius-20,
button.hl-btn:link.radius-20,
a.hl-btn:active.radius-20,
button.hl-btn:active.radius-20 {
  border-radius: 20px;
}
a.hl-btn.gradient-btn,
button.hl-btn.gradient-btn,
a.hl-btn:link.gradient-btn,
button.hl-btn:link.gradient-btn,
a.hl-btn:active.gradient-btn,
button.hl-btn:active.gradient-btn {
  background: linear-gradient(139deg, rgba(255, 255, 255, 0.18) 19.65%, rgba(255, 255, 255, 0.03) 50.98%), linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%);
  box-shadow: 5px 2px 10px 0px rgba(45, 23, 70, 0.2) inset, -5px -3px 8px 0px rgba(71, 23, 11, 0.2) inset;
}
a.hl-btn.trans-btn,
button.hl-btn.trans-btn,
a.hl-btn:link.trans-btn,
button.hl-btn:link.trans-btn,
a.hl-btn:active.trans-btn,
button.hl-btn:active.trans-btn {
  box-shadow: inset 0 0 0 1px #818181;
}
a.hl-btn.small-btn,
button.hl-btn.small-btn,
a.hl-btn:link.small-btn,
button.hl-btn:link.small-btn,
a.hl-btn:active.small-btn,
button.hl-btn:active.small-btn {
  padding: 15px 25px;
}
@media only screen and (max-width: 575px) {
  a.hl-btn.small-btn,
  button.hl-btn.small-btn,
  a.hl-btn:link.small-btn,
  button.hl-btn:link.small-btn,
  a.hl-btn:active.small-btn,
  button.hl-btn:active.small-btn {
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 15px;
  }
  a.hl-btn.small-btn svg,
  button.hl-btn.small-btn svg,
  a.hl-btn:link.small-btn svg,
  button.hl-btn:link.small-btn svg,
  a.hl-btn:active.small-btn svg,
  button.hl-btn:active.small-btn svg {
    width: 14px;
  }
}
a.hl-btn.medium-btn,
button.hl-btn.medium-btn,
a.hl-btn:link.medium-btn,
button.hl-btn:link.medium-btn,
a.hl-btn:active.medium-btn,
button.hl-btn:active.medium-btn {
  padding: 24px 36px 22px;
}
a.hl-btn.big-btn,
button.hl-btn.big-btn,
a.hl-btn:link.big-btn,
button.hl-btn:link.big-btn,
a.hl-btn:active.big-btn,
button.hl-btn:active.big-btn {
  padding: 26px 36px;
  font-weight: 500 !important;
}
@media only screen and (max-width: 1199px) {
  a.hl-btn.big-btn,
  button.hl-btn.big-btn,
  a.hl-btn:link.big-btn,
  button.hl-btn:link.big-btn,
  a.hl-btn:active.big-btn,
  button.hl-btn:active.big-btn {
    padding: 22px 30px;
  }
}
@media only screen and (max-width: 575px) {
  a.hl-btn.big-btn,
  button.hl-btn.big-btn,
  a.hl-btn:link.big-btn,
  button.hl-btn:link.big-btn,
  a.hl-btn:active.big-btn,
  button.hl-btn:active.big-btn {
    padding: 20px 25px 17px;
  }
}
a.hl-btn.circle-btn,
button.hl-btn.circle-btn,
a.hl-btn:link.circle-btn,
button.hl-btn:link.circle-btn,
a.hl-btn:active.circle-btn,
button.hl-btn:active.circle-btn {
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  padding: 0;
  background: transparent;
}
a.hl-btn span,
button.hl-btn span,
a.hl-btn:link span,
button.hl-btn:link span,
a.hl-btn:active span,
button.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--sm {
  width: 55px;
  height: 55px;
}
.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;
}
.slider-btn.next-slide svg:nth-child(2n) circle {
  fill: none;
  stroke: url(#bg_gradient);
  stroke-width: 3px;
  stroke-dasharray: 248;
  stroke-dashoffset: 0;
}

.circle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  background: transparent;
}
.circle-btn.md-btn {
  width: 55px;
  height: 55px;
}
.circle-btn.b-white {
  border: 2.8px solid #fff;
}
.circle-btn.fill {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(15px);
}

.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-border-base {
  background: linear-gradient(#181818, #151515) padding-box, linear-gradient(to right, #5a0dff -5%, #ff29b8 31%, #ff581c) border-box;
  border-radius: 50em;
  border: 1px solid transparent;
}

.btn-border-base:hover {
  background: linear-gradient(transparent, transparent) padding-box, linear-gradient(to right, #5a0dff -5%, #ff29b8 31%, #ff581c) border-box;
  color: #fff;
}

.gradient-border-button {
  background-color: transparent;
  position: relative;
  z-index: 0;
  font-size: 18px;
  font-weight: 700;
}
.gradient-border-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  background-color: #ff581c;
  background: linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%) border-box;
  -webkit-mask: linear-gradient(#fff 0%, #fff 0%) padding-box, linear-gradient(#fff 0%, #fff 0%);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
  transition: all 300ms ease;
}
.gradient-border-button:hover::after {
  -webkit-mask-composite: unset;
}

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

.view-style-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 10px !important;
  background: transparent;
  box-shadow: none !important;
}
.view-style-btn.active, .view-style-btn:hover {
  background: var(--bg-primary);
}
.view-style-btn.active img, .view-style-btn:hover img {
  filter: contrast(10);
}
.view-style-btn.active svg path, .view-style-btn:hover svg path {
  fill: #fff;
}

.btn-load-more {
  padding: 27px 46px 25px !important;
}
.btn-load-more .less-more {
  display: none;
}
.btn-load-more.showLess .load-more {
  display: none;
}
.btn-load-more.showLess .less-more {
  display: block;
}

.gradient-border {
  background-color: transparent;
  color: #C2C2C2;
  font-family: var(--gothic-font);
  font-size: 18px;
  font-weight: 400;
  border-color: transparent;
  text-transform: uppercase;
  position: relative;
  padding: 9px 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
}
@media only screen and (max-width: 767px) {
  .gradient-border {
    font-size: 16px;
  }
}
.gradient-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 102%;
  border: 1px solid transparent;
  border-radius: 30px;
  background-color: #ff581c;
  background: linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%) border-box;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.gradient-border.radius-100 {
  border-radius: 100px;
}
.gradient-border.radius-100:after {
  border-radius: 100px;
}

/*
================================
    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 .details.details-two {
  font-family: var(--jost-font);
}
@media only screen and (max-width: 575px) {
  .movie-card-small .details.details-two {
    padding: 20px 0;
  }
}
.movie-card-small .details.details-two .movie-info li img {
  filter: brightness(1);
}
.movie-card-small .details.details-two .movie-name {
  font-family: var(--bigShoulder-font);
  font-size: 35px;
  font-weight: bold;
}
@media only screen and (max-width: 575px) {
  .movie-card-small .details.details-two .movie-name {
    font-size: 24px;
  }
}
.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 .options {
  width: max-content;
  position: absolute;
}
.movie-card-small .options .option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #f0f0f0;
  box-shadow: 2px 4px 5px 0px rgba(31, 31, 31, 0.2) inset, -4px -5px 5px 0px rgba(31, 31, 31, 0.2) inset;
  backdrop-filter: blur(10px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 300ms ease;
}
.movie-card-small .options .option-btn:hover {
  background: linear-gradient(139deg, rgba(255, 255, 255, 0.18) 19.65%, rgba(255, 255, 255, 0.03) 50.98%), linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%);
  box-shadow: 5px 2px 10px 0px rgba(45, 23, 70, 0.2) inset, -5px -3px 8px 0px rgba(71, 23, 11, 0.2) inset;
  border: transparent;
}
.movie-card-small .options .option-btn:not(:last-child) {
  margin-bottom: 5px;
}
.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.style-two {
  border-radius: 0;
  width: 100%;
}
.movie-card-small.style-two::before {
  content: unset;
}
.movie-card-small.style-two .thumb {
  overflow: hidden;
  width: 100%;
}
.movie-card-small.style-two .thumb img {
  width: 100%;
}
.movie-card-small.style-two .details {
  background: none;
  backdrop-filter: unset;
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .movie-card-small.style-two .details {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1199px) {
  .movie-card-small.style-two .details {
    font-size: 12px;
  }
}
.movie-card-small.style-two .details .movie-name,
.movie-card-small.style-two .details .movie-info {
  margin-bottom: 10px;
}
.movie-card-small.style-three {
  border-radius: 25px;
  overflow: visible;
}
.movie-card-small.style-three .thumb {
  border-radius: 25px;
  overflow: hidden;
  transition: transform 300ms ease;
}
.movie-card-small.style-three .thumb .video-play-btn {
  top: 50%;
}
.movie-card-small.style-three .thumb::before {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.5) 0.4%, #1f1f1f 91.78%);
  mix-blend-mode: color-burn;
  transform-origin: center;
  transition: all 300ms ease;
}
.movie-card-small.style-three::before {
  content: unset;
}
.movie-card-small.style-three .video-play-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
}
.movie-card-small.style-three .video-play-btn svg {
  margin-left: 4px;
}
.movie-card-small.style-three .details {
  background: none;
  backdrop-filter: none;
  margin-left: -6%;
  margin-bottom: -6%;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: rotateZ(10deg);
  transform-origin: top left;
  transition: all 250ms ease;
  width: max-content;
}
.movie-card-small.style-three .details .movie-name,
.movie-card-small.style-three .details .movie-info {
  margin-bottom: 8px;
}
.movie-card-small.style-three .details .movie-info li:not(:last-child) {
  margin-right: 5px;
}
.movie-card-small.style-three .options {
  top: -10%;
  right: -10%;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.movie-card-small.style-three .options--1 {
  transform: translateX(10px);
  transition-delay: 50ms;
}
.movie-card-small.style-three .options--2 {
  transform: translateX(20px);
  transition-delay: 100ms;
}
.movie-card-small.style-three .options--3 {
  transform: translateX(30px);
  transition-delay: 150ms;
}
.movie-card-small.style-three .options--4 {
  transform: translateX(40px);
  transition-delay: 200ms;
}
.movie-card-small.style-three:hover {
  z-index: 1;
}
.movie-card-small.style-three:hover .thumb {
  transform: scale(1.31);
}
.movie-card-small.style-three:hover .thumb::before {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.movie-card-small.style-three:hover .details {
  margin-left: -6%;
  margin-bottom: -6%;
  transform: rotateZ(0deg);
  opacity: 1;
  visibility: visible;
}
.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;
}
.movie-card-small:hover .options {
  top: -10%;
  right: -10%;
  opacity: 1;
  visibility: visible;
}
.movie-card-small:hover .options--1 {
  transform: translateX(0);
}
.movie-card-small:hover .options--2 {
  transform: translateX(0);
}
.movie-card-small:hover .options--3 {
  transform: translateX(0);
}
.movie-card-small:hover .options--4 {
  transform: translateX(0);
}
.movie-card-small.style-four {
  border-radius: 20px;
}
.movie-card-small.style-four .details {
  border-radius: 30px 30px 20px 20px;
  opacity: 0.95;
  background: linear-gradient(156deg, rgba(24, 24, 24, 0.95) 17.71%, #151515 87.12%);
  backdrop-filter: blur(10px);
}
.movie-card-small.style-four .details .movie-info li img {
  filter: brightness(1);
  max-width: 16px;
}
.movie-card-small.style-five {
  border-radius: 30px;
}
.movie-card-small.style-five .details {
  border-radius: 30px;
  background: var(--Primary-colors, linear-gradient(92deg, #5A0DFF 0%, #FF29B8 38.6%, #FF581C 97.73%));
  backdrop-filter: blur(10px);
}
.movie-card-small.style-five .details .movie-name {
  max-width: 180px;
  margin-bottom: 0;
}
.movie-card-small.style-five .details .right-arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.category-slider-rotate {
  transform: rotate(-5deg);
  padding-bottom: 80px;
  width: 110%;
  margin-left: -5%;
}
@media only screen and (max-width: 991px) {
  .category-slider-rotate {
    padding-bottom: 30px;
    padding-top: 20px;
  }
}
.category-slider-rotate .swiper-wrapper {
  transition-timing-function: linear;
}

/*
================================
    Fluid Movie Cards 
================================
*/
.movie-card-fluid {
  border-radius: 40px;
  overflow: hidden;
  max-width: 90%;
}
@media only screen and (max-width: 575px) {
  .movie-card-fluid {
    border-radius: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .movie-card-fluid {
    border-radius: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .movie-card-fluid {
    border-radius: 25px;
  }
}
.movie-card-fluid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(127deg, rgba(5, 5, 5, 0) 0.64%, rgba(5, 5, 5, 0.2) 43.98%, rgba(4, 4, 4, 0.83) 88.19%);
}
.movie-card-fluid .content-inner {
  width: 70%;
  height: 100%;
  background-image: url(../../assets/images/icons/brush.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 575px) {
  .movie-card-fluid .content-inner {
    width: 100%;
    text-align: center;
  }
  .movie-card-fluid .content-inner .hl-btn.big-btn {
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 5px;
  }
  .movie-card-fluid .content-inner .hl-btn.big-btn svg {
    display: none;
  }
  .movie-card-fluid .content-inner .hl-btn.big-btn span {
    padding-top: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .movie-card-fluid .content-inner {
    width: 100%;
    text-align: center;
  }
  .movie-card-fluid .content-inner .hl-btn.big-btn {
    font-size: 12px;
    padding: 10px 15px;
    border-radius: 5px;
  }
  .movie-card-fluid .content-inner .hl-btn.big-btn svg {
    display: none;
  }
  .movie-card-fluid .content-inner .hl-btn.big-btn span {
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .movie-card-fluid .content-inner {
    width: 83%;
  }
  .movie-card-fluid .content-inner .hl-btn.big-btn {
    font-size: 14px;
    padding: 15px 25px;
    border-radius: 8px;
  }
  .movie-card-fluid .content-inner .hl-btn.big-btn span {
    padding-top: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .movie-card-fluid .content-inner .hl-btn.big-btn {
    font-size: 14px;
    padding: 25px 35px;
  }
  .movie-card-fluid .content-inner .hl-btn.big-btn span {
    padding-top: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .movie-card-fluid .content-inner .hl-btn.big-btn {
    font-size: 14px;
    padding: 25px 35px;
  }
  .movie-card-fluid .content-inner .hl-btn.big-btn span {
    padding-top: 0;
  }
}
.movie-card-fluid .content-inner .content {
  left: 60%;
  width: 60%;
}
@media only screen and (max-width: 575px) {
  .movie-card-fluid .content-inner .content {
    left: 50%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .movie-card-fluid .content-inner .content {
    left: 50%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .movie-card-fluid .content-inner .content {
    width: 62%;
    left: 50%;
  }
}
.movie-card-fluid .content-inner .content .certificates {
  margin-bottom: 40px;
}
.movie-card-fluid .content-inner .content .certificates li {
  display: inline-block;
}
.movie-card-fluid .content-inner .content .certificates li:not(:last-child) {
  margin-right: 27px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .movie-card-fluid .content-inner .content .certificates li:not(:last-child) {
    margin-right: 0;
  }
  .movie-card-fluid .content-inner .content .certificates li img {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .movie-card-fluid .content-inner .content .certificates li:not(:last-child) {
    margin-right: 0;
  }
  .movie-card-fluid .content-inner .content .certificates li img {
    width: 60%;
  }
}
@media only screen and (max-width: 575px) {
  .movie-card-fluid .content-inner .content .certificates {
    display: none;
  }
}
@media only screen and (max-width: 1399px) {
  .movie-card-fluid .content-inner .content .certificates {
    margin-bottom: 20px;
  }
}
.movie-card-fluid .content-inner .content .card-title {
  font-size: 140px;
  font-weight: 600;
  line-height: 120px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (max-width: 575px) {
  .movie-card-fluid .content-inner .content .card-title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .movie-card-fluid .content-inner .content .card-title {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .movie-card-fluid .content-inner .content .card-title {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .movie-card-fluid .content-inner .content .card-title {
    font-size: 81px;
    line-height: 1;
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .movie-card-fluid .content-inner .content .card-title {
    font-size: 104px;
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .movie-card-fluid .content-inner .content .card-title {
    font-size: 104px;
    margin-bottom: 5px;
  }
}
.movie-card-fluid .content-inner .content .card-description {
  color: #e2e2e2;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 575px) {
  .movie-card-fluid .content-inner .content .card-description {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .movie-card-fluid .content-inner .content .card-description {
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1399px) {
  .movie-card-fluid .content-inner .content .card-description {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 15px;
  }
}

.rotate-movie-card {
  width: max-content;
  margin-right: auto;
  border-radius: 30px;
  overflow: hidden;
  transition: all 300ms ease;
  width: 695px;
  height: 680px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rotate-movie-card {
    width: 580px;
    height: 580px;
  }
}
@media only screen and (max-width: 1199px) {
  .rotate-movie-card {
    width: 60%;
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  .rotate-movie-card {
    width: 60%;
  }
}
@media only screen and (max-width: 575px) {
  .rotate-movie-card {
    width: 90%;
  }
}
@media only screen and (max-width: 479px) {
  .rotate-movie-card {
    width: 88%;
  }
}
.rotate-movie-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0) 0%, rgba(14, 14, 14, 0.73) 63.5%, #090909 100%);
  mix-blend-mode: multiply;
  transition: all 1000ms ease;
}
.rotate-movie-card .content {
  margin-bottom: 40px;
  transition: all 1000ms ease;
}
@media only screen and (max-width: 1199px) {
  .rotate-movie-card .content {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .rotate-movie-card .content {
    margin-bottom: 0;
  }
}
.rotate-movie-card .video-play-btn {
  opacity: 1;
  visibility: visible;
  width: 110px;
  height: 110px;
  line-height: 110px;
  margin-top: -120px;
}
@media only screen and (max-width: 991px) {
  .rotate-movie-card .video-play-btn {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .rotate-movie-card .video-play-btn {
    margin-top: -50px;
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}
.rotate-movie-card .video-play-btn svg {
  width: 25px;
  margin-top: -2px;
}
@media only screen and (max-width: 991px) {
  .rotate-movie-card .video-play-btn svg {
    width: 18px;
  }
}
.rotate-movie-card .certificates {
  margin-bottom: 32px;
}
@media only screen and (max-width: 575px) {
  .rotate-movie-card .certificates {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .rotate-movie-card .certificates img {
    width: 40px;
  }
}
.rotate-movie-card .card-title {
  font-family: var(--bigShoulder-font);
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 22px;
}
@media only screen and (max-width: 1199px) {
  .rotate-movie-card .card-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .rotate-movie-card .card-title {
    font-size: 30px;
  }
}
.rotate-movie-card .movie-info-list {
  margin-bottom: 22px;
}
.rotate-movie-card .movie-info-list--item {
  color: #e2e2e2;
}
.rotate-movie-card .card-description {
  font-family: var(--jost-font);
  font-size: 20px;
  line-height: 34px;
  padding: 0 100px;
}
@media only screen and (max-width: 1199px) {
  .rotate-movie-card .card-description {
    font-size: 16px;
    padding: 0 70px;
  }
}
@media only screen and (max-width: 575px) {
  .rotate-movie-card .card-description {
    display: none;
  }
}
.rotate-movie-card.swiper-slide-prev {
  transform: translateY(45px) rotate(-11deg) scale(0.92) skewX(2deg) !important;
}
.rotate-movie-card.swiper-slide-prev .content, .rotate-movie-card.swiper-slide-prev::before {
  transform: rotateY(90deg);
  transform-origin: left;
}
.rotate-movie-card:not(.swiper-slide-active) {
  border-radius: 70px;
}
.rotate-movie-card:not(.swiper-slide-active) .video-play-btn {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.rotate-movie-card.swiper-slide-next {
  transform: translateY(45px) rotate(11deg) scale(0.92) skewX(-2deg) !important;
}
.rotate-movie-card.swiper-slide-next .content, .rotate-movie-card.swiper-slide-next::before {
  transform: rotateY(-90deg);
  transform-origin: right;
}

@media only screen and (max-width: 991px) {
  .movie-wrapper-one {
    margin-top: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .home-two-slider .movie-info-list--item {
    font-size: 12px;
  }
}

@media only screen and (max-width: 991px) {
  .home-two-slider .content .banner-description {
    font-size: 14px !important;
  }
}

.enjoy-favourite-img {
  margin-bottom: -48px;
}
@media only screen and (max-width: 1199px) {
  .enjoy-favourite-img {
    margin-bottom: -26px;
  }
}
@media only screen and (max-width: 479px) {
  .enjoy-favourite-img {
    margin-bottom: -20px;
  }
}

.newest-release-slider .slider-btn {
  transition: 0.4s;
}
.newest-release-slider .slider-btn:hover {
  border-color: #939393;
}

.playlist-area .play-list-tab button {
  border-color: #999999;
  color: #999999;
  border-radius: 15px !important;
  padding: 22px 30px 20px;
}
.playlist-area .play-list-tab button.active {
  background-image: var(--gradient-color);
  border: 0;
  color: #fff;
  box-shadow: none;
}

.album-list-area {
  background-color: #101010;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}
.album-list-area .follow-title {
  transform: rotate(90deg);
  position: absolute;
  left: 26px;
  bottom: 100;
  margin-top: -80px;
  font-weight: 500;
  letter-spacing: 3px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .album-list-area .follow-title {
    display: none;
  }
}
@media only screen and (max-width: 1599px) {
  .album-list-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .album-list-area .mt-30 {
    margin-top: 0px;
  }
}
.album-list-area .big-btn {
  padding: 26px 54px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .social-list {
    justify-content: center;
  }
}

.album-list {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 1599px) {
  .album-list {
    gap: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .album-list {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .album-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px 0px;
  }
}

.album-text {
  color: #C2C2C2;
  font-family: var(--jost-font);
  font-size: 20px;
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  .album-feature {
    justify-content: center;
  }
}

.album-link {
  color: #C2C2C2;
  font-family: var(--jost-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .album-link {
    display: block;
  }
  .album-link img {
    margin-right: 5px;
  }
}
.album-link span {
  font-weight: 600;
}

.album-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  padding: 14px 0px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .album-wrap {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}
.album-wrap::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #111 0%, #2B2B2B 50.5%, #111 100%);
  content: "";
}
.album-wrap::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #111 0%, #2B2B2B 50.5%, #111 100%);
  content: "";
}

.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.swiper-slide-next .thumb img {
  margin-left: -48%;
}
.home-one-slider.swiper-slide-active .video-autoplay {
  visibility: visible;
  opacity: 1;
}
.home-one-slider.swiper-slide-active::after {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 991px) {
  .home-one-slider.swiper-slide-active::after {
    display: none;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .home-one-slider.swiper-slide-active .container {
    padding: 0 20px;
  }
}
.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 .gallery-img img {
    width: 40px;
  }
}
@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 .slider-counter {
  top: 55%;
  padding: 50px;
  z-index: 1;
  position: relative;
}
.home-one-slider .slider-counter .count {
  font-family: var(--heading-font);
  font-size: 60px;
  color: #fff;
  line-height: 1;
}
.home-one-slider .slider-counter .count.small {
  font-size: 25px;
  color: #e2e2e2;
}
.home-one-slider .slider-counter::after {
  content: "/";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(-5deg) translate(0%, -50%);
  font-size: 70px;
  font-weight: lighter;
  bottom: 0;
}
.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;
  }
}

.hero-slider-one.style-two .home-one-slider.swiper-slide-active::after {
  display: none;
}

.home-two-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(252deg, #1f1f1f -0.55%, #0b0b0b 99.23%);
  mix-blend-mode: multiply;
}
.home-two-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28vw;
  height: 100%;
  background-image: linear-gradient(92deg, #080018 0%, #ff2929 45.93%, #ffb21c 97.73%);
}

@media only screen and (max-width: 767px) {
  .home-two-slider {
    height: 62vh;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .home-two-slider {
    height: 450px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 575px) {
  .home-two-slider {
    height: 400px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .home-two-slider .translate-middle-x {
    transform: translate(-50%, -76%) !important;
  }
}
@media only screen and (max-width: 575px) {
  .home-two-slider .translate-middle-x {
    transform: translate(-50%, -56%) !important;
  }
}
@media only screen and (max-width: 767px) {
  .home-two-slider .thumb {
    height: 100vh;
  }
}
@media only screen and (max-width: 767px) {
  .home-two-slider .thumb img {
    height: 100vh;
  }
}
.home-two-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(252deg, #1f1f1f -0.55%, #0b0b0b 99.23%);
  mix-blend-mode: multiply;
  z-index: 1;
  opacity: 0.9;
}
.home-two-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28vw;
  height: 100%;
  background-image: linear-gradient(92deg, #080018 0%, #ff2929 45.93%, #ffb21c 97.73%);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .home-two-slider::after {
    display: none;
  }
}
.home-two-slider .ht-banner-img {
  position: relative;
  left: 18%;
}
@media only screen and (max-width: 1199px) {
  .home-two-slider .ht-banner-img {
    margin-bottom: -130px;
  }
}
@media only screen and (max-width: 991px) {
  .home-two-slider .ht-banner-img {
    margin-bottom: -95px;
  }
}
.home-two-slider .content {
  padding-right: 28%;
  margin-top: -100px;
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .home-two-slider .content {
    margin-top: -20px;
  }
}
@media only screen and (max-width: 1199px) {
  .home-two-slider .content {
    padding-right: 0;
    margin-top: -20px;
  }
}
@media only screen and (max-width: 991px) {
  .home-two-slider .content {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 767px) {
  .home-two-slider .content {
    text-align: center;
    margin-top: -120px;
  }
}
.home-two-slider .content .banner-title {
  font-family: var(--bigShoulder-font);
  font-size: 150px;
  font-weight: 900;
  line-height: 155px;
}
@media only screen and (max-width: 1599px) {
  .home-two-slider .content .banner-title {
    font-size: 85px;
    line-height: 1;
  }
}
@media only screen and (max-width: 991px) {
  .home-two-slider .content .banner-title {
    font-size: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .home-two-slider .content .banner-title {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1199px) {
  .home-two-slider .content .banner-title {
    font-size: 43px;
  }
}
@media only screen and (max-width: 575px) {
  .home-two-slider .content .banner-title {
    font-size: 35px;
  }
}
.home-two-slider .content .banner-description {
  font-family: var(--jost-font);
  font-size: 22px;
  line-height: 34px;
}
@media only screen and (max-width: 1599px) {
  .home-two-slider .content .banner-description {
    font-size: 18px;
    line-height: 1;
  }
}
@media only screen and (max-width: 991px) {
  .home-two-slider .content .banner-description {
    margin-top: -8px;
    line-height: 1.3;
    font-size: 16px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .home-two-slider .content .banner-description {
    color: #fff;
    font-size: 16px;
    padding: 0 52px;
    font-weight: 400;
  }
}
@media only screen and (max-width: 575px) {
  .home-two-slider .content .banner-description {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 479px) {
  .home-two-slider .content .banner-description {
    padding: 0 30px;
  }
}
.home-two-slider .content .movie-info-list {
  font-family: var(--jost-font);
}
.home-two-slider .content .movie-info-list--item {
  color: #e2e2e2;
  border-radius: 70px;
  border: 1px solid var(--Linear, rgba(255, 255, 255, 0.08));
  background: var(--Linear, linear-gradient(133deg, rgba(255, 255, 255, 0.1) 12.14%, rgba(255, 255, 255, 0.03) 86.99%));
}
@media only screen and (max-width: 767px) {
  .home-two-slider .content .movie-info-list {
    display: inline-block !important;
  }
}
.home-two-slider .content .hl-btn {
  font-family: var(--bigShoulder-font);
  letter-spacing: 0.9px;
}
.home-two-slider .content .hl-btn span {
  font-weight: 700;
}
@media only screen and (max-width: 1199px) {
  .home-two-slider .content .hl-btn {
    padding: 18px 25px !important;
  }
}

.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;
}
.slider-counter-two .swiper-pagination .swiper-pagination-current {
  font-size: 60px;
  color: #fff;
  padding-left: 27px;
  position: relative;
}
.slider-counter-two .swiper-pagination .swiper-pagination-current:before {
  content: "0";
  position: absolute;
  left: 0;
  bottom: 35px;
  background-color: rgba(255, 255, 255, 0.2);
}
.slider-counter-two .swiper-pagination .swiper-pagination-current:after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 13px;
  height: 30px;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate(17deg);
}
.slider-counter-two .swiper-pagination .swiper-pagination-total {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.2);
  bottom: unset;
  margin-left: 21px;
  position: relative;
}
.slider-counter-two .swiper-pagination .swiper-pagination-total:before {
  content: "0";
  position: absolute;
  left: -14px;
  bottom: 18px;
  background-color: rgba(255, 255, 255, 0.2);
}

.scroll-down {
  display: flex;
  width: max-content;
  flex-direction: column;
  align-items: center;
}
.scroll-down .text {
  font-family: var(--jost-font);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 16px;
}

.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 .swiper-slide-shadow {
  display: none;
}
.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;
}

@media only screen and (max-width: 1199px) {
  .lg-device-mt--0 {
    margin-top: 0 !important;
  }
}

.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/images/background/brush.webp") !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-slider-one.style-two .home-one-slider a.hl-btn.trans-btn {
  box-shadow: inset 0 0 0 1px #E2E2E2;
  color: #fff;
}

.fixed-video-autoplay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform: scale(1);
}
@media only screen and (max-width: 991px) {
  .fixed-video-autoplay {
    transform: scale(2);
  }
}
@media only screen and (max-width: 575px) {
  .fixed-video-autoplay {
    transform: scale(2.5);
  }
}

.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;
  }
}
.hero-card-slider .hero-card-slider-control .swiper-pagination .swiper-pagination-current {
  font-family: var(--heading-font);
  font-size: 60px;
}
.hero-card-slider .hero-card-slider-control .swiper-pagination .swiper-pagination-current:before {
  left: -2px;
  bottom: 26px;
}
.hero-card-slider .hero-card-slider-control .swiper-pagination .swiper-pagination-current:after {
  bottom: -13px;
  height: 54px;
  background-color: #fff;
  font-family: var(--heading-font);
}
.hero-card-slider .hero-card-slider-control .swiper-pagination .swiper-pagination-total {
  font-family: var(--heading-font);
  font-weight: 500;
}
.hero-card-slider .hero-card-slider-control .swiper-pagination .swiper-pagination-total {
  margin-top: 37px;
  float: inline-end;
  color: #fff;
  font-weight: 400;
}
.hero-card-slider .hero-card-slider-control .swiper-pagination .swiper-pagination-total:before {
  bottom: 0px;
  background-color: #fff;
}

.hero-area-3 {
  padding: 210px 0 190px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1599px) {
  .hero-area-3 {
    padding: 190px 0 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-area-3 {
    padding: 160px 0 120px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-area-3 {
    padding: 140px 0 80px;
  }
}
.hero-area-3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 320px;
  width: 100%;
  background: linear-gradient(180deg, #101010 0%, rgba(16, 16, 16, 0.94) 27%, rgba(23, 23, 23, 0) 100%);
  mix-blend-mode: hard-light;
  z-index: 2;
}
.hero-area-3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.9;
  background: linear-gradient(95deg, #121212 7.27%, #1F1F1F 99.21%);
  mix-blend-mode: hard-light;
}
.hero-area-3 .container-fluid {
  padding: 0 100px;
}
@media only screen and (max-width: 1599px) {
  .hero-area-3 .container-fluid {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-area-3 .container-fluid {
    padding: 0 15px;
  }
}
.hero-area-3 .banner-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
@media only screen and (max-width: 1599px) {
  .hero-area-3 .banner-inner {
    max-width: 700px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-area-3 .banner-inner {
    max-width: 450px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-area-3 .banner-inner {
    text-align: center;
  }
}
.hero-area-3 .award-img {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .hero-area-3 .award-img {
    max-width: 70px;
    margin-bottom: 25px;
  }
}
.hero-area-3 .title {
  font-size: 130px;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 1599px) {
  .hero-area-3 .title {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-area-3 .title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-area-3 .title {
    font-size: 40px;
    line-height: 1.1;
  }
}
.hero-area-3 .title span {
  background: linear-gradient(93deg, #5A0DFF 48.4%, #FF29B8 66.94%, #FF581C 95.34%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-area-3 .content {
  max-width: 500px;
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 40px;
}
@media only screen and (max-width: 575px) {
  .hero-area-3 .content {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.banner-3-varticle-slider-wrapper {
  position: absolute;
  display: inline-flex;
  right: -100px;
  top: -180px;
  transform: rotate(-15deg);
  z-index: 1;
}
@media only screen and (max-width: 1599px) {
  .banner-3-varticle-slider-wrapper {
    right: -150px;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-3-varticle-slider-wrapper {
    max-width: 500px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-3-varticle-slider-wrapper {
    max-width: 400px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-3-varticle-slider-wrapper {
    display: none;
  }
}

.banner-3-varticle-slider {
  height: 1200px;
}
.banner-3-varticle-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.banner-3-varticle-slider .thumb {
  padding: 8px;
}

.banner-3-varticle-slider-two {
  height: 1200px;
}
.banner-3-varticle-slider-two .swiper-wrapper {
  transition-timing-function: linear;
}
.banner-3-varticle-slider-two .thumb {
  padding: 8px;
}

.hero-4-area {
  position: relative;
  margin-top: -108px;
}

.header-left-menu {
  border-radius: 0px 0px 30px 0px;
  background: linear-gradient(101deg, #202020 6.63%, #111 100.13%);
  width: 90px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  bottom: 0;
}
@media only screen and (max-width: 991px) {
  .header-left-menu {
    display: none;
  }
}
.header-left-menu ul li + li a {
  border-top: 1px solid rgba(67, 67, 67, 0.3);
}
.header-left-menu ul li + li a:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-image: var(--gradient-color);
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
.header-left-menu ul li + li a:hover:after {
  height: 70px;
  width: 70px;
  visibility: visible;
  opacity: 1;
}
.header-left-menu ul li a {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header-left-menu ul li a img {
  z-index: 2;
  position: relative;
}
.header-left-menu ul .scroll-down {
  height: auto;
  width: 100%;
  border-top: 1px solid rgba(67, 67, 67, 0.3);
}
.header-left-menu ul .scroll-down a {
  transform: rotate(90deg);
  border: 0;
  height: 230px;
  width: 230px;
}
@media only screen and (max-width: 1599px) {
  .header-left-menu ul .scroll-down a {
    height: 170px;
  }
}
.header-left-menu ul .scroll-down a:after {
  display: none;
}
.header-left-menu ul .scroll-down a svg {
  margin-top: 5px;
  margin-left: 6px;
}
@media only screen and (max-width: 1599px) {
  .header-left-menu ul .scroll-down a svg {
    width: 30px;
  }
}

.hero-4-slider-control {
  position: absolute;
  right: 0;
  bottom: 290px;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 440px;
}
@media only screen and (max-width: 991px) {
  .hero-4-slider-control {
    display: none;
  }
}
.hero-4-slider-control .slider-btn--big {
  width: 75px;
  height: 75px;
  margin-top: -22px;
}
.hero-4-slider-control .linear-circle {
  width: 75px;
  height: 75px;
  transform: scale(1.83);
  right: -27px;
  top: 23px;
}
.hero-4-slider-control .hero-4-pagination {
  position: relative;
  color: transparent;
  width: auto;
  font-family: var(--heading-font);
  line-height: 0.9;
  margin-left: 40px;
}
.hero-4-slider-control .hero-4-pagination .swiper-pagination-current {
  font-size: 100px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  padding-left: 40px;
  position: relative;
}
.hero-4-slider-control .hero-4-pagination .swiper-pagination-current:before {
  content: "0";
  position: absolute;
  left: 0;
  top: -2px;
}
.hero-4-slider-control .hero-4-pagination .swiper-pagination-current:after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: 16px;
  height: 2px;
  width: 40px;
  background-color: #999;
}
.hero-4-slider-control .hero-4-pagination .swiper-pagination-total {
  font-size: 30px;
  color: #999;
  bottom: unset;
  margin-left: 72px;
  position: relative;
  font-weight: 300;
}
.hero-4-slider-control .hero-4-pagination .swiper-pagination-total:before {
  content: "0";
  position: absolute;
  left: -14px;
  bottom: -1px;
}

.hero-4-inner {
  padding: 120px 100px 0;
  text-align: center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .hero-4-inner {
    padding: 120px 70px 0;
  }
}
.hero-4-inner .subtitle {
  color: #C8CD12;
  font-family: var(--jost-font);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}
.hero-4-inner .title {
  font-size: 270px;
  font-weight: 600;
  background: linear-gradient(180deg, #F5F5F5 0%, #C5C5C5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.85;
  max-width: 1900px;
  margin: 0 auto;
  background: linear-gradient(180deg, #F5F5F5 0%, #C5C5C5 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1599px) {
  .hero-4-inner .title {
    font-size: 180px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-4-inner .title {
    font-size: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-4-inner .title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-4-inner .title {
    font-size: 60px;
  }
}
.hero-4-inner .main-img {
  margin-top: -390px;
}
@media only screen and (max-width: 1599px) {
  .hero-4-inner .main-img {
    width: 700px;
    margin-top: -250px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-4-inner .main-img {
    width: 370px;
    margin-top: -148px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-4-inner .main-img {
    margin-top: -90px;
  }
}

.hero-4-thumbnail-area {
  border-radius: 30px 0px 0px 0px;
  background: linear-gradient(95deg, #121212 7.27%, #1F1F1F 99.21%);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 445px;
  padding: 30px;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .hero-4-thumbnail-area {
    width: 275px;
    bottom: -1px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-4-thumbnail-area {
    display: none;
  }
}
.hero-4-thumbnail-area h4 {
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-4-thumbnail-area .hero-4-thumbnail {
  height: 180px;
  width: 180px;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.5s;
}
.hero-4-thumbnail-area .hero-4-thumbnail img {
  border-radius: 15px;
  height: 100%;
  width: 100%;
  transition: 0.5s;
}
@media only screen and (max-width: 991px) {
  .hero-4-thumbnail-area .hero-4-thumbnail {
    height: 100px;
    width: 100px;
  }
}
.hero-4-thumbnail-area .swiper-slide-thumb-active .hero-4-thumbnail {
  background-image: var(--gradient-color);
  padding: 3px;
}

.video-card-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  border-radius: 20px;
  border: 2px solid #212121;
  opacity: 0.95;
  background: linear-gradient(94deg, rgba(38, 38, 38, 0.57) 2.1%, rgba(32, 32, 32, 0.79) 99.33%);
  backdrop-filter: blur(10px);
  padding: 16px;
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -400px;
}
@media only screen and (max-width: 1599px) {
  .video-card-inner {
    margin-left: -300px;
  }
}
@media only screen and (max-width: 1199px) {
  .video-card-inner {
    display: none;
  }
}
.video-card-inner .thumb img {
  max-width: 200px;
}
@media only screen and (max-width: 1599px) {
  .video-card-inner .thumb img {
    max-width: 150px;
  }
}
.video-card-inner .details {
  padding-left: 25px;
  padding-right: 10px;
}
@media only screen and (max-width: 1599px) {
  .video-card-inner .details {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1599px) {
  .video-card-inner .details {
    padding-left: 18px;
  }
}
.video-card-inner .details .video-title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1599px) {
  .video-card-inner .details .video-title {
    font-size: 30px;
  }
}
.video-card-inner .details .desc {
  margin-bottom: 5px;
  font-weight: 600;
  font-family: var(--jost-font);
  max-width: 220px;
  line-height: 1.2;
  color: #E2E2E2;
}
@media only screen and (max-width: 1599px) {
  .video-card-inner .details .desc {
    font-size: 14px;
  }
}
.video-card-inner .details .rating {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.video-card-inner .details .rating span {
  margin-left: 5px;
  font-size: 15px;
  padding-top: 2px;
}
@media only screen and (max-width: 1599px) {
  .video-card-inner .details .hl-btn {
    font-size: 14px;
  }
}

.hero-slide-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 290px 0 70px;
  transition: 0.7s ease;
}
@media only screen and (max-width: 767px) {
  .hero-slide-5 {
    padding: 180px 30px 40px 30px;
  }
}
.hero-slide-5 .hero-slide-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  width: 1200px;
  transition: 0.5s;
  font-family: var(--gothic-font);
}
@media only screen and (max-width: 1199px) {
  .hero-slide-5 .hero-slide-title {
    width: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slide-5 .hero-slide-title {
    width: 100%;
  }
}
.hero-slide-5 .hero-slide-title span {
  margin-bottom: -40px;
  transition: 2s ease-in-out;
}
.hero-slide-5 .hero-slide-title .slide-title {
  text-align: center;
  font-family: var(--gothic-font);
  font-size: 250px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -9px;
  text-transform: uppercase;
  display: block;
  background: linear-gradient(180deg, #FFF 0%, #9C9C9C 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  z-index: 99;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .hero-slide-5 .hero-slide-title .slide-title {
    font-size: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slide-5 .hero-slide-title .slide-title {
    font-size: 60px;
    letter-spacing: 0.8px;
  }
}
.hero-slide-5 .hero-slide-title .slide-title-2 {
  text-align: right;
  padding-right: 30px;
}
.hero-slide-5 .hero-slide-title .hero-slide-title-stroke {
  font-family: var(--gothic-font);
  font-size: 280px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -8.4px;
  text-transform: uppercase;
  display: block;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: var(--white);
  z-index: -2;
  position: relative;
  margin-left: 130px;
}
@media only screen and (max-width: 1199px) {
  .hero-slide-5 .hero-slide-title .hero-slide-title-stroke {
    font-size: 100px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slide-5 .hero-slide-title .hero-slide-title-stroke {
    font-size: 60px;
    letter-spacing: 0.8px;
  }
}
.hero-slide-5 .hero-slide-img {
  text-align: center;
  position: relative;
}
.hero-slide-5 .hero-slide-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(149deg, #DA1111 13.52%, #2F0000 88.64%);
  opacity: 0.2;
  mix-blend-mode: hard-light;
  border-radius: 50%;
  z-index: 1;
}
.hero-slide-5 .hero-slide-img .slide-bg-image {
  max-width: 780px;
  height: 780px;
  border-radius: 50%;
  transition: 0.7s ease-in-out;
  filter: brightness(0.3);
  opacity: 0.2;
  transform: scale(1);
  z-index: 9;
}
@media only screen and (max-width: 1199px) {
  .hero-slide-5 .hero-slide-img .slide-bg-image {
    max-width: 480px;
    height: 480px;
  }
}
.hero-slide-5 .hero-slide-img .active-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-40%);
  bottom: -32px;
  border-radius: 0;
  visibility: hidden;
  opacity: 0;
  width: 75%;
  border-radius: 0 0 45% 45%;
  z-index: 2;
  transition: 1.2s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .hero-slide-5 .hero-slide-img .active-image {
    width: 60%;
    bottom: -20px;
  }
}
.hero-slide-5 .hero-slide-img .hero-popup-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .hero-slide-5 .hero-slide-img .hero-popup-btn {
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
  }
  .hero-slide-5 .hero-slide-img .hero-popup-btn img {
    width: 20px;
  }
}
.hero-slide-5.swiper-slide-active {
  z-index: 9;
}
.hero-slide-5.swiper-slide-active .hero-slide-title {
  visibility: visible;
  opacity: 1;
}
.hero-slide-5.swiper-slide-active .hero-slide-title span {
  margin-bottom: 0;
}
.hero-slide-5.swiper-slide-active .hero-slide-img:before {
  opacity: 1;
  transform: scale(1.1);
}
.hero-slide-5.swiper-slide-active .hero-slide-img .slide-bg-image {
  max-width: 650px;
  height: 650px;
  filter: brightness(0.9);
  opacity: 0;
  transform: scale(1.1);
}
@media only screen and (max-width: 1199px) {
  .hero-slide-5.swiper-slide-active .hero-slide-img .slide-bg-image {
    max-width: 480px;
    height: 480px;
  }
}
.hero-slide-5.swiper-slide-active .hero-slide-img .active-image {
  visibility: visible;
  opacity: 1;
}
.hero-slide-5.swiper-slide-active .hero-slide-img .hero-popup-btn {
  visibility: visible;
  opacity: 1;
}

.hero-slide-box {
  position: relative;
  width: 738.962px;
  height: 740.807px;
  background: linear-gradient(149deg, #DA1111 13.52%, #2F0000 88.64%);
  border-radius: 100%;
}

.hero-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(149deg, #DA1111 13.52%, #2F0000 88.64%);
  width: 140px;
  height: 140px;
  border-radius: 100%;
}
@media only screen and (max-width: 767px) {
  .hero-popup-btn {
    width: 100px;
    height: 100px;
  }
}

.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;
  }
}

.artist-area .section-title-5 {
  font-size: 200px;
}

.artist-slider-active {
  padding-bottom: 60px;
}

.artist-card-box {
  width: 471px;
  height: 469px;
  border-radius: 471px;
  position: relative;
  border-radius: 50em;
}

.artist-title {
  color: var(--primary-color);
  text-align: center;
  font-family: var(--gothic-font);
  font-size: 45px;
  font-weight: 400;
  text-transform: uppercase;
  padding-top: 20px;
}

.stream-area {
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (max-width: 767px) {
  .stream-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 2399px) {
  .stream-area {
    max-width: 1920px;
    margin: 0 auto;
  }
}

.stream-right {
  background-image: url(../images/home-5/shapes/circle-two-shape.png);
  background-repeat: no-repeat;
  background-position: center right;
}
@media only screen and (max-width: 1199px) {
  .stream-right {
    background-image: none;
  }
}

.stream-text {
  max-width: 485px;
  padding: 10px 0px 20px;
}

.stream-img {
  margin: 0 90px auto auto;
  display: block;
}

.artist-area .section-title-5 {
  font-size: 200px;
}
@media only screen and (max-width: 1199px) {
  .artist-area .section-title-5 {
    font-size: 150px;
  }
}
@media only screen and (max-width: 991px) {
  .artist-area .section-title-5 {
    font-size: 80px;
  }
}

.artist-slider-active {
  padding-bottom: 70px;
}
@media only screen and (max-width: 1599px) {
  .artist-slider-active {
    padding-bottom: 0px;
  }
}

.artist-card-box {
  width: 471px;
  height: 469px;
  border-radius: 471px;
  position: relative;
  border-radius: 100%;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .artist-card-box {
    height: auto;
  }
}

.artist-img {
  position: relative;
  border-color: transparent;
}
.artist-img:before {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 479.4px;
  background: linear-gradient(149deg, #da1111 13.52%, #2f0000 88.64%);
  z-index: 99;
  mix-blend-mode: multiply;
}
.artist-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid transparent;
  border-radius: 479.4px;
  background: linear-gradient(149deg, #da1111 13.52%, #2f0000 88.64%) border-box;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.artist-title {
  color: var(--primary-color);
  text-align: center;
  font-family: var(--gothic-font);
  font-size: 45px;
  font-weight: 400;
  text-transform: uppercase;
  padding-top: 28px;
}
@media only screen and (max-width: 1199px) {
  .artist-title {
    font-size: 30px;
  }
}

.category-list-area .header {
  padding-bottom: 20px;
  border-bottom: 1px solid #201f1f;
}
.category-list-area .category-list--item {
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #201f1f;
}
.category-list-area .category-list--item .thumb {
  border-radius: 40px;
  overflow: hidden;
}
.category-list-area .category-list--item .thumb img {
  transition: transform 300ms ease-out;
}
@media only screen and (max-width: 991px) {
  .category-list-area .category-list--item .thumb img {
    width: 100%;
  }
}
.category-list-area .category-list--item .movie-name {
  font-size: 70px;
}
@media only screen and (max-width: 991px) {
  .category-list-area .category-list--item .movie-name {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .category-list-area .category-list--item p {
    font-size: 15px !important;
  }
}
.category-list-area .category-list--item:hover .thumb img {
  transform: scale(1.1);
}

.category-two .category-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  .category-two .category-inner {
    margin: 10px;
    display: inline-block;
  }
}
.category-two .category-inner .category-card--two:nth-child(even) .thumbnail {
  order: 1;
}

.category-card {
  border-radius: 30px;
  box-shadow: 0 0 0 2px #1d1d1d inset;
  background: linear-gradient(134deg, #151515 0.83%, #101010 100%);
  backdrop-filter: blur(10px);
  padding: 30px;
  padding-bottom: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 575px) {
  .category-card {
    padding: 20px;
  }
}
.category-card .thumbnail {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}
.category-card .thumbnail .thumb-img {
  transition: transform 300ms ease;
}
.category-card .details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 55px;
}
.category-card .details .title {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 3px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .category-card .details .title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .category-card .details .title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .category-card .details .title {
    font-size: 22px;
  }
}
.category-card .details .circle-btn {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.27);
  transition: background-image 300ms ease;
}
.category-card .details .circle-btn:hover {
  background-image: linear-gradient(139deg, rgba(255, 255, 255, 0.18) 19.65%, rgba(255, 255, 255, 0.03) 50.98%), linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%);
}
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 30px;
  background-color: #ff581c;
  background: linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%) border-box;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.category-card--two {
  width: 320px;
  aspect-ratio: 1;
  padding: 13px;
  border-radius: 20px;
  background: var(--bg-primary);
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  .category-card--two {
    width: 47%;
    margin: 10px;
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .category-card--two {
    width: 46%;
    margin: 10px;
    display: inline-block;
  }
}
@media only screen and (max-width: 575px) {
  .category-card--two {
    width: 95%;
    max-width: 95%;
    margin: 10px;
  }
}
.category-card--two .thumbnail {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 3px;
}
.category-card--two .thumbnail .thumb {
  border-radius: 10px;
  overflow: hidden;
}
.category-card--two .thumbnail .thumb--one {
  grid-column: 1/span 2;
  grid-row: 1/span 1;
  margin-right: 6px;
  margin-bottom: 4.5px;
  position: relative;
  z-index: 1;
}
.category-card--two .thumbnail .thumb--two {
  -webkit-mask-image: url(../../assets/images/mask/category.svg);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-clip: border-box;
  mask-image: url(../../assets/images/mask/category.svg);
  mask-size: 100% 100%;
  mask-clip: border-box;
  grid-column: 2/span 3;
  grid-row: 1/span 2;
}
.category-card--two .thumbnail .thumb--three {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
  margin-top: -4px;
}
.category-card--two .thumbnail .thumb .card-img {
  width: 100%;
  height: 100%;
}
.category-card--two .details {
  gap: 0;
}
@media only screen and (max-width: 991px) {
  .category-card--two .details {
    padding-top: 11px;
  }
}
.category-card--two .details .title {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 6px;
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .category-card--two .details .title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .category-card--two .details .title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .category-card--two .details .title {
    font-size: 20px;
  }
}
.category-card--two .details .circle-btn,
.category-card--two .details .circle-btn:active {
  width: 45px !important;
  height: 45px !important;
}
.category-card--two .details .circle-btn svg,
.category-card--two .details .circle-btn:active svg {
  width: 20px;
}
.category-card--two .details .circle-btn::before {
  border-radius: 50%;
}
.category-card--two::before {
  border-radius: 20px;
}
.category-card:hover::before {
  opacity: 1;
}
.category-card:hover .thumbnail .thumb-img {
  transform: scale(1.1);
}
.category-card:hover .details .circle-btn {
  background-image: linear-gradient(139deg, rgba(255, 255, 255, 0.18) 19.65%, rgba(255, 255, 255, 0.03) 50.98%), linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%);
}

.home-4-category .circle-badge {
  position: absolute;
  right: 112px;
  bottom: 140px;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .home-4-category .circle-badge {
    right: 40px;
    bottom: 45px;
  }
}

.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: 35px;
  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: 45px;
  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;
  }
}
.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/images/icons/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/images/price-btn2.webp") !important;
}
.pricing-card .note {
  color: var(--paragraph-color);
  font-family: var(--jost-font);
  font-size: 14px;
  font-weight: 300;
}

.pricing-inner {
  border-radius: 30px;
  background: linear-gradient(160deg, #1B1B1B 0.76%, #171717 98.36%);
  padding: 40px 60px;
}
@media only screen and (max-width: 991px) {
  .pricing-inner {
    padding: 40px 30px;
  }
}

.price-heading-2 {
  max-width: 430px;
}
.price-heading-2 .section-heading-2 {
  font-size: 80px;
}
@media only screen and (max-width: 991px) {
  .price-heading-2 .section-heading-2 {
    font-size: 50px;
  }
}

.price-topbar-tab {
  border: 0;
}
.price-topbar-tab .nav-item {
  width: 50%;
  padding: 10px;
}
@media only screen and (max-width: 575px) {
  .price-topbar-tab .nav-item {
    width: 100%;
    padding: 10px 0;
  }
}
.price-topbar-tab .nav-item .nav-link {
  background: transparent;
  position: relative;
  border: 0;
}
.price-topbar-tab .nav-item .nav-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 102%;
  border: 2px solid transparent;
  border-radius: 30px;
  background-color: #ff581c;
  background: linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%) border-box;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.price-topbar-tab .nav-item .nav-link.active .hl-btn {
  background: linear-gradient(to right, #5a0dff -5%, #FF29B8 31%, #FF581C);
}
.price-topbar-tab .price-topbar {
  padding: 30px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 991px) {
  .price-topbar-tab .price-topbar {
    padding: 30px 10px;
  }
}
.price-topbar-tab .price-topbar .title {
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  position: relative;
  margin-bottom: 15px;
}
.price-topbar-tab .price-topbar .title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 102%;
  border: 2px solid transparent;
  border-radius: 30px;
  background-color: #ff581c;
  background: linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%) border-box;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.price-topbar-tab .price-topbar .title .title-highligth {
  background: var(--Primary-colors, linear-gradient(92deg, #5A0DFF 0%, #FF29B8 38.6%, #FF581C 97.73%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 5px;
  line-height: 1;
}
.price-topbar-tab .price-topbar .title .title-highligth span {
  margin-bottom: -4px;
}
.price-topbar-tab .price-topbar .amount {
  background: linear-gradient(97deg, #FFF -14.29%, #505050 34.57%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 120px;
  font-weight: 600;
  margin-bottom: 0;
}
@media only screen and (max-width: 1599px) {
  .price-topbar-tab .price-topbar .amount {
    font-size: 90px;
  }
}
@media only screen and (max-width: 991px) {
  .price-topbar-tab .price-topbar .amount {
    font-size: 40px;
  }
}
.price-topbar-tab .price-topbar .amount .amount-note {
  font-size: 25px;
  font-weight: 300;
  margin-left: -15px;
  font-style: italic;
}
.price-topbar-tab .price-topbar .description {
  color: #999;
  font-family: var(--jost-font);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
}
.price-topbar-tab .price-topbar .hl-btn {
  position: relative;
}
.price-topbar-tab .price-topbar .hl-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 102%;
  border: 2px solid transparent;
  border-radius: 30px;
  background-color: #ff581c;
  background: linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%) border-box;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.price-list-inner {
  padding-top: 40px;
}
@media only screen and (max-width: 575px) {
  .price-list-inner {
    width: auto;
    overflow-x: scroll;
  }
}
.price-list-inner .single-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-top: 1px solid #222222;
}
.price-list-inner .single-list:last-child {
  padding-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .price-list-inner .single-list {
    padding: 15px 0;
    font-size: 14px;
  }
  .price-list-inner .single-list img {
    width: 16px;
  }
}
.price-list-inner .single-list li {
  width: 33%;
  text-align: center;
}
.price-list-inner .single-list li:first-child {
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .price-list-inner .single-list li:first-child {
    width: 90%;
  }
}

.restriction-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  border-radius: 30px;
  background: rgba(31, 31, 31, 0.95);
  backdrop-filter: blur(20px);
  z-index: 4;
}
.restriction-overlay .title {
  font-size: 60px;
}
.restriction-overlay .description {
  font-size: 18px;
}
.restriction-overlay a.hl-btn {
  padding: 26px 53px !important;
}

.movie-details-banner {
  background-image: url(../../assets/images/hero/video-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding-top: 920px;
}
@media only screen and (max-width: 1199px) {
  .movie-details-banner {
    height: auto;
    padding-top: 650px;
  }
}
@media only screen and (max-width: 991px) {
  .movie-details-banner {
    padding-top: 550px;
  }
}
@media only screen and (max-width: 575px) {
  .movie-details-banner {
    padding-top: 500px;
  }
}
.movie-details-banner .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
@media only screen and (min-width: 1699px) {
  .movie-details-banner .thumb video {
    transform: scale(1.5);
  }
}
@media only screen and (min-width: 2399px) {
  .movie-details-banner .thumb video {
    transform: scale(3);
  }
}
.movie-details-banner .content {
  padding-top: 27.5vw;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 575px) {
  .movie-details-banner .content .hl-btn {
    padding: 14px 13px 12px;
    font-size: 12px !important;
  }
}
.movie-details-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(149deg, rgb(24, 24, 24) -27.98%, rgba(21, 21, 21, 0.5) 66.5%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.movie-details-banner .banner-title {
  font-size: 110px;
  font-weight: 600;
  line-height: 100px;
}
@media only screen and (max-width: 991px) {
  .movie-details-banner .banner-title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .movie-details-banner .banner-title {
    font-size: 40px;
  }
}

.movie-details .description {
  font-family: Dosis;
  font-size: 20px;
  line-height: 27px;
}
@media only screen and (max-width: 575px) {
  .movie-details .description {
    font-size: 16px;
  }
}
.movie-details .movie-production .list {
  font-family: var(--heading-font);
  font-size: 25px;
  text-transform: uppercase;
}
@media only screen and (max-width: 575px) {
  .movie-details .movie-production .list {
    font-size: 18px;
  }
}
.movie-details .movie-production .list:not(:last-child) {
  margin-bottom: 10px;
}
.movie-details .movie-production .value {
  color: var(--paragraph-color);
  text-transform: uppercase;
  font-weight: 300;
}

.movie-casting {
  background: var(--bg-primary);
}
.movie-casting .cast {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}
.movie-casting .cast--item {
  padding: 27px 30px;
  display: inline-block;
  position: relative;
  max-width: 210px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .movie-casting .cast--item {
    max-width: 180px;
  }
}
.movie-casting .cast--item:not(:last-child)::after {
  content: url(../../assets/images/cast/cast-left-line.svg);
  position: absolute;
  top: -1px;
  right: -7.5px;
  bottom: -1px;
}
@media only screen and (max-width: 1199px) {
  .movie-casting .cast--item:not(:last-child)::after {
    display: none;
  }
}
.movie-casting .cast--item:hover .person {
  transform: scale(1.1);
}
.movie-casting .cast--thumb {
  margin-bottom: 16px;
  -webkit-mask-image: url(../../assets/images/mask/round-star.svg);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-clip: border-box;
  mask-image: url(../../assets/images/mask/round-star.svg);
  mask-size: 100% 100%;
  mask-clip: border-box;
}
.movie-casting .cast--thumb img {
  transition: transform 300ms ease-out;
}
.movie-casting .cast--name {
  font-size: 25px;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .movie-casting .cast--name {
    font-size: 20px;
  }
}

.playlist--item {
  border-radius: 30px;
  border: 1px solid rgba(240, 240, 240, 0.2);
  background: var(--bg-primary);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .playlist--item {
    display: block;
  }
}
.playlist--item h3 {
  font-size: 50px;
  font-weight: 300 !important;
}
@media only screen and (max-width: 991px) {
  .playlist--item h3 {
    font-size: 30px;
  }
}
.playlist--item .thumb {
  border-radius: 15px;
  overflow: hidden;
  width: 200px;
}
@media only screen and (max-width: 575px) {
  .playlist--item .thumb {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .playlist--item .thumb {
    margin-bottom: 20px;
  }
}
.playlist--item .thumb img {
  transition: transform 300ms ease-out;
}
@media only screen and (max-width: 991px) {
  .playlist--item .thumb img {
    border-radius: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .playlist--item .thumb img {
    width: 100%;
  }
}
.playlist--item .remove-btn {
  font-family: var(--heading-font);
  display: flex;
  align-items: center;
  padding: 17.5px 31px;
  min-width: 170px;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .playlist--item .remove-btn {
    margin-top: 20px;
  }
}
.playlist--item .remove-btn::after {
  border-radius: 15px;
}
@media only screen and (max-width: 991px) {
  .playlist--item .remove-btn {
    display: inline-block;
    padding: 18px 25px 15px;
    min-width: 150px;
  }
}
.playlist--item:not(:last-child) {
  margin-bottom: 30px;
}
.playlist--item:hover .thumb img {
  transform: scale(1.05);
}

.playlist-area {
  background-color: #151515;
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (max-width: 767px) {
  .playlist-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.playlist-area .section-title-5 {
  font-size: 150px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1599px) {
  .playlist-area .section-title-5 {
    font-size: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .playlist-area .section-title-5 {
    font-size: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .playlist-area .section-title-5 {
    font-size: 50px;
  }
}

.about-us .thumb {
  -webkit-mask-image: url(../../assets/images/mask/circle3.svg);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-clip: border-box;
  mask-image: url(../../assets/images/mask/circle3.svg);
  mask-size: 100% 100%;
  mask-clip: border-box;
}

.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 .indicator {
  position: relative;
  margin-top: -7px;
}
.faq-accordion--button .indicator::before, .faq-accordion--button .indicator::after {
  position: absolute;
  background-color: var(--paragraph-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-accordion--button .indicator::before {
  content: "";
  width: 1.5px;
  height: 15px;
}
.faq-accordion--button .indicator::after {
  content: "";
  width: 15px;
  height: 1.5px;
}
.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:not(.collapsed) .indicator {
  transform: rotate(90deg);
}
.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;
  }
}

.blog-area .type,
.blog-details-area .type {
  background: var(--bg-gradient);
  border-radius: 5px;
}

.blog-wrapper .blog:not(:last-child) {
  margin-bottom: 40px;
}

.blog {
  font-family: var(--heading-font);
  border-radius: 30px;
  overflow: hidden;
}
.blog .thumb {
  overflow: hidden;
}
.blog .thumb img {
  transition: transform 300ms ease-in-out;
}
.blog .thumb .badge {
  left: 3%;
  border-radius: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.blog .thumb .badge .type {
  border-radius: 10px;
}
@media only screen and (max-width: 575px) {
  .blog .thumb .badge .type {
    font-size: 14px;
  }
}
.blog .thumb .badge::before, .blog .thumb .badge::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 18px;
  height: 20px;
  background: transparent;
}
.blog .thumb .badge::before {
  right: 100%;
  border-bottom-right-radius: 100px;
  box-shadow: 5px 5px 0 0 #171717;
}
.blog .thumb .badge::after {
  left: 100%;
  border-bottom-left-radius: 100px;
  box-shadow: -5px 5px 0 0 #171717;
}
.blog .thumb .badge.detalis::before {
  box-shadow: 5px 5px 0 0 #101010;
}
.blog .thumb .badge.detalis::after {
  box-shadow: -5px 5px 0 0 #101010;
}
.blog .thumb:hover img {
  transform: scale(1.1);
}
@media only screen and (max-width: 1599px) {
  .blog .blog-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .blog .blog-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .blog .blog-title {
    font-size: 24px;
    padding: 0;
  }
}
@media only screen and (max-width: 479px) {
  .blog .blog-title {
    font-size: 20px;
  }
}
.blog .content {
  padding: 30px;
}
@media only screen and (max-width: 575px) {
  .blog .content {
    padding: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .blog .content .author-name {
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .blog .content .time {
    font-size: 15px;
  }
}
.blog .content .gradient-border-button {
  color: var(--paragraph-color);
  padding: 18px 24px;
}
.blog .content .gradient-border-button::after {
  border-radius: 10px;
}
.blog .content .gradient-border-button:hover {
  color: var(--primary-color);
}
.blog.style-2 .thumb img {
  height: 200px;
}
.blog.style-2 .thumb .badge .type {
  font-size: 14px;
}
.blog.style-2 .content {
  padding: 22px;
}
.blog.style-2 .content .blog-title {
  font-size: 20px;
}
.blog.style-2 .content .author-name {
  font-size: 16px;
}
.blog.style-2 .content .gradient-border-button {
  padding: 13px 18px;
  font-size: 15px;
}

.blog-details .text-block {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.9px;
  color: #e2e2e2;
}
@media only screen and (max-width: 991px) {
  .blog-details .text-block {
    font-size: 16px;
  }
}
.blog-details .text-block.has-dropcap:first-letter {
  font-size: 30px;
  line-height: 1;
  color: #e2e2e2;
  font-family: var(--heading-font);
}
.blog-details .quotation {
  padding: 40px;
  border-radius: 30px;
}
@media only screen and (max-width: 575px) {
  .blog-details .quotation {
    padding: 25px;
  }
}
.blog-details .quotation--quote {
  font-family: var(--heading-font);
  font-size: 45px;
  line-height: 1.1;
}
@media only screen and (max-width: 1599px) {
  .blog-details .quotation--quote {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details .quotation--quote {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  .blog-details .quotation--quote {
    font-size: 18px;
  }
}
.blog-details .quotation--author {
  font-size: 20px;
}
@media only screen and (max-width: 575px) {
  .blog-details .quotation--author {
    font-size: 16px;
  }
}

.blog-sidebar {
  font-family: var(--heading-font);
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 20px;
  position: sticky;
  top: 40px;
}
.blog-sidebar .blog-search-input {
  height: 55px;
  color: var(--heading-color);
  border: none;
  border: 0;
  padding: 0 57px 0 22px;
  border-radius: 10px;
  border: 1px solid var(--Linear, rgba(255, 255, 255, 0.27));
  background: transparent;
}
.blog-sidebar .blog-search-btn {
  position: absolute;
  height: 45px;
  width: 45px;
  right: 5px;
  top: 5px;
  transition: 0.3s ease-in;
  border: none;
  background-image: linear-gradient(to right, #5A0DFF 0%, #FF29B8 36.6%, #FF581C 74.73%, #FF29B8, #5A0DFF);
  cursor: pointer;
  color: #fff;
  border-radius: 10px;
  background-size: 130% 100%;
  transition: all 0.4s ease-in-out;
}
.blog-sidebar .blog-search-btn:hover {
  background-position: 90% 0;
  transition: all 0.4s ease-in-out;
}
.blog-sidebar .title {
  font-size: 25px;
}
.blog-sidebar .divider {
  width: 100%;
  height: 1px;
  background-color: #1e1e1e;
  margin: 20px 0;
}
.blog-sidebar .recent-post {
  font-family: var(--heading-font);
}
.blog-sidebar .recent-post .thumb {
  border-radius: 10px;
  overflow: hidden;
}
.blog-sidebar .recent-post .post-title {
  text-transform: uppercase;
}
.blog-sidebar .recent-post-list .recent-post:not(:last-child) {
  margin-bottom: 15px;
}
.blog-sidebar .category-list li {
  border-radius: 5px;
  background: #141414;
}
.blog-sidebar .category-list li:not(:last-child) {
  margin-bottom: 5px;
}
.blog-sidebar .category-list .category-link {
  font-family: var(--body-font);
  color: var(--paragraph-color);
  display: inline-block;
  padding: 12px 12px;
  display: block;
}
.blog-sidebar .category-list .category-link:hover {
  color: #e2e2e2;
}
.blog-sidebar .tag-list {
  gap: 3px;
}
.blog-sidebar .tag-list .tag-link {
  border-radius: 9px;
  border: 1px solid #1e1e1e;
  padding: 8px 10px 7px;
  color: var(--paragraph-color);
  display: inline-block;
}
.blog-sidebar .tag-list .tag-link:hover {
  color: #e2e2e2;
}

.comment-area .comment-list.reply-list {
  margin-left: calc(12% + 3px);
}
.comment-area .comment-list .comment-item:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #1e1e1e;
}
.comment-area .comment-list .comment-item .comment {
  position: relative;
}
@media only screen and (max-width: 575px) {
  .comment-area .comment-list .comment-item .comment {
    padding-bottom: 60px !important;
  }
}
.comment-area .comment-list .comment-item .comment:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #1e1e1e;
}
.comment-area .comment-list .comment-item .comment .thumb {
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .comment-area .comment-list .comment-item .comment .thumb img {
    border-radius: 20px;
  }
}
.comment-area .comment-list .comment-item .comment .comment-reply-btn {
  padding: 6px 16px;
}
@media only screen and (max-width: 575px) {
  .comment-area .comment-list .comment-item .comment .comment-reply-btn {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.comment-area .comment-list .comment-item .comment p {
  padding-right: 100px;
}
@media only screen and (max-width: 767px) {
  .comment-area .comment-list .comment-item .comment p {
    padding-right: 0;
  }
}

.reel-platform-blog-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 100px;
}
.reel-platform-blog-inner .section-title {
  max-width: 300px;
}
@media only screen and (max-width: 575px) {
  .reel-platform-blog-inner .section-title {
    width: 100%;
    text-align: center;
  }
}
.reel-platform-blog-inner .slider-btn {
  border-color: var(--paragraph-color);
  transition: 0.4s;
}
.reel-platform-blog-inner .slider-btn svg path {
  fill: var(--paragraph-color);
}
.reel-platform-blog-inner .slider-btn:hover {
  background-image: var(--gradient-color);
  border: 0;
}
.reel-platform-blog-inner .slider-btn:hover svg path {
  fill: #fff;
}
.reel-platform-blog-inner .blog .thumb img {
  width: 100%;
}
.reel-platform-blog-inner .blog-title {
  font-size: 60px;
}
@media only screen and (max-width: 1599px) {
  .reel-platform-blog-inner .blog-title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .reel-platform-blog-inner .blog-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1599px) {
  .reel-platform-blog-inner {
    padding: 0 20px;
  }
}

/*-----------------------
    Error 404 Page
-----------------------*/
.error-404 {
  text-align: center;
}
.error-404 .thumb {
  margin-bottom: 40px;
}
@media only screen and (max-width: 575px) {
  .error-404 .thumb svg {
    width: 50%;
    height: 50%;
  }
}
.error-404 .title {
  font-size: 300px;
  line-height: 0.8;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.error-404 .title .main-title {
  background: var(--bg-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error-404 .title .hover-title {
  color: #fff;
  position: absolute;
  left: -16px;
  top: 0;
}
@media only screen and (max-width: 575px) {
  .error-404 .title {
    font-size: 130px;
  }
}
.error-404 .sub-title {
  font-size: 35px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media only screen and (max-width: 575px) {
  .error-404 .sub-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .error-404 .sub-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .error-404 a.hl-btn.big-btn {
    padding: 15px 25px;
  }
}

.artist-single-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.artist-single-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 24px;
  background-color: #ff581c;
  background: linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%) border-box;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.artist-single-card:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(196, 196, 196, 0) 48.65%, rgba(0, 0, 0, 0.367017) 72.49%, #000000 97.9%);
}
.artist-single-card .thumb img {
  transform: scale(1.1);
  transition: 0.7s;
  width: 100%;
}
.artist-single-card .details {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 25px;
  z-index: 2;
}
.artist-single-card .details .name {
  font-size: 25px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.artist-single-card .details span {
  color: var(--paragraph-color);
}
.artist-single-card:hover .thumb img {
  transform: scale(1.2);
}
.artist-single-card:hover:before {
  opacity: 1;
}

.coming-soon-area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100vh;
  display: flex;
  align-items: center;
}
.coming-soon-area .thumb {
  margin-right: -70px;
}
@media only screen and (max-width: 1199px) {
  .coming-soon-area .thumb {
    margin-right: 0;
  }
}

.coming-soon-inner .sub-title {
  font-size: 16px;
  font-family: var(--body-font);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 20px;
}
@media only screen and (max-width: 479px) {
  .coming-soon-inner .sub-title {
    font-size: 14px;
  }
}
@media only screen and (max-width: 479px) {
  .coming-soon-inner .sub-title {
    margin-top: 10px;
  }
}
.coming-soon-inner .title {
  background: linear-gradient(92.28deg, #5A0DFF 0%, #FF29B8 38.6%, #FF581C 97.73%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 80px;
  list-style: 1.2;
  text-transform: uppercase;
  margin-top: 38px;
  margin-bottom: 38px;
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .coming-soon-inner .title {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1199px) {
  .coming-soon-inner .title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 575px) {
  .coming-soon-inner .title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 479px) {
  .coming-soon-inner .title {
    font-size: 30px;
    margin-top: 28px;
    margin-bottom: 28px;
  }
}
.coming-soon-inner .subscribe-from {
  position: relative;
  border: 1px solid #404040;
  display: inline-flex;
  border-radius: 50px;
  margin-bottom: 38px;
}
@media only screen and (max-width: 575px) {
  .coming-soon-inner .subscribe-from {
    display: block;
    border: 0;
  }
}
.coming-soon-inner .subscribe-from input {
  height: 60px;
  padding: 0 20px;
  width: 300px;
  border-radius: 50px;
  border: 0;
  background: transparent;
  color: var(--paragraph-color);
}
@media only screen and (max-width: 575px) {
  .coming-soon-inner .subscribe-from input {
    width: 100%;
    border: 1px solid #404040;
    margin-bottom: 10px;
    height: 50px;
  }
}
.coming-soon-inner .subscribe-from button {
  height: 60px;
  padding: 0 35px;
  border-radius: 50px;
  line-height: 51px;
}
@media only screen and (max-width: 575px) {
  .coming-soon-inner .subscribe-from button {
    width: 100%;
    height: 50px;
  }
}

.clock-wrap .countdown-item {
  display: inline-block;
  text-align: center;
}
.clock-wrap .countdown-item .countdown-text {
  font-size: 11px;
  text-transform: uppercase;
  font-family: var(--body-font);
  margin-bottom: 9px;
  display: block;
}
.clock-wrap .countdown-item .countdown-number {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 12px;
  background-color: #303030;
  font-size: 30px;
}
@media only screen and (max-width: 479px) {
  .clock-wrap .countdown-item .countdown-number {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}
.clock-wrap .countdown-item + .countdown-item {
  margin-left: 11px;
}
@media only screen and (max-width: 575px) {
  .clock-wrap .countdown-item + .countdown-item {
    margin-left: 3px;
  }
}

.subscription-tab-list {
  margin-bottom: 40px;
}
.subscription-tab-list ul {
  margin: 0;
  padding: 0;
  display: inline-block;
}
.subscription-tab-list ul li {
  display: inline-block;
  position: relative;
}
.subscription-tab-list ul li + li {
  margin-left: 30px;
}
.subscription-tab-list ul li + li:before {
  content: "";
  position: absolute;
  left: -23px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #5F5F5F;
  width: 14px;
  height: 1px;
}
.subscription-tab-list ul li a {
  border-radius: 60px;
  padding: 10px 27px;
  display: inline-block;
  position: relative;
}
.subscription-tab-list ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #5F5F5F;
  border-radius: 60px;
}
.subscription-tab-list ul li a:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 98%;
  width: 98%;
  transform: translate(-50%, -50%);
  background-color: #101010;
  border-radius: 60px;
  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;
}
.subscription-tab-list ul li a span {
  position: relative;
  z-index: 2;
}
.subscription-tab-list ul li a.active-list:before {
  background-image: var(--gradient-color);
}

.single-input-inner {
  height: 55px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.checkbox-inner {
  color: var(--paragraph-color);
  position: relative;
}
.checkbox-inner input {
  margin-right: 7px;
  opacity: 0;
}
.checkbox-inner span {
  margin-left: -18px;
}
.checkbox-inner span:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 4px;
  left: -4px;
  top: -2px;
  border: 3px solid;
  border-image-slice: 1;
  border-width: 3px;
  border-image-source: linear-gradient(to left, #743ad5, #d53a9d);
}
.checkbox-inner input:checked + span:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 11px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.social-btn-inner {
  border-radius: 15px;
  background: #fff;
  height: 65px;
  color: #555;
  font-family: var(--jost-font);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-btn-inner:hover, .social-btn-inner:active, .social-btn-inner:focus {
  color: #555;
}
.social-btn-inner svg {
  margin-right: 8px;
}
.social-btn-inner:hover {
  background-image: linear-gradient(to right, #5a0dff -5%, #ff29b8 31%, #ff581c, #ff29b8, #5a0dff);
  color: #fff;
}

.btn-payment {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  background: linear-gradient(91deg, #242424 0%, #2C2C2C 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.btn-payment .amount {
  background: var(--bg-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-transform: uppercase;
}

.form-card-inner {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--Bg-background, linear-gradient(95deg, #181818 7.27%, #151515 99.21%));
  backdrop-filter: blur(10px);
  padding: 60px;
}
.form-card-inner .quote-line {
  font-weight: 500;
  color: var(--white);
  font-family: var(--jost-font);
}
.form-card-inner .quote-line a {
  background: var(--bg-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* v 1.0.2 */
.product-cart-wrap {
  padding: 53px 35px 60px;
}
@media only screen and (max-width: 767px) {
  .product-cart-wrap {
    width: 760px;
    overflow-x: scroll;
  }
}
.product-cart-wrap .cart-header ul {
  margin-bottom: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.product-cart-wrap .cart-header ul li {
  font-size: 18px;
  font-family: var(--heading-font);
  line-height: 1;
}
.product-cart-wrap .cart-header ul li:first-child {
  min-width: 235px;
}
@media only screen and (max-width: 1199px) {
  .product-cart-wrap .cart-header ul li:first-child {
    min-width: 187px;
  }
}
.product-cart-wrap .card-body ul {
  margin-bottom: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  border-top: 1px solid #1E1E1E;
  padding-top: 28px;
  margin-top: 28px;
}
.product-cart-wrap .card-body ul li:first-child {
  min-width: 320px;
}
@media only screen and (max-width: 1199px) {
  .product-cart-wrap .card-body ul li:first-child {
    min-width: 260px;
  }
}
.product-cart-wrap .card-body .product {
  display: flex;
  align-items: center;
}
.product-cart-wrap .card-body .product img {
  border-radius: 16px;
  margin-right: 24px;
  height: 110px;
  width: 110px;
}
@media only screen and (max-width: 1199px) {
  .product-cart-wrap .card-body .product img {
    height: 70px;
    width: 70px;
    margin-right: 15px;
  }
}
.product-cart-wrap .card-body .product h6 {
  font-size: 24px;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .product-cart-wrap .card-body .product h6 {
    font-size: 18px;
  }
}
.product-cart-wrap .card-body .product span {
  color: #e2e2e2;
}
@media only screen and (max-width: 1199px) {
  .product-cart-wrap .card-body .product span {
    font-size: 14px;
  }
}

.quantity {
  position: relative;
  display: inline-block;
  border: 1px solid #424242;
  border-radius: 8px;
}

.quantity input {
  height: 40px;
  width: 50px;
  border: 0;
  background: transparent;
  font-size: 18px;
  letter-spacing: 0.2px;
  color: #999999;
  font-family: var(--raleway-font);
  text-align: center;
  margin: 0 40px;
  border-left: 1px solid #424242;
  border-right: 1px solid #424242;
  font-weight: 500;
}

.quantity .qty-button {
  height: 40px;
  width: 40px;
  border: 0;
  background: transparent;
  font-size: 30px;
  letter-spacing: 0.2px;
  color: #999999;
  font-family: var(--raleway-font);
  text-align: center;
  display: inline-block;
  cursor: pointer;
}

.quantity .qty-button.inc {
  position: absolute;
  right: 0;
  border-radius: 0 6px 6px 0;
  line-height: 33px;
}

.quantity .qty-button.dec {
  position: absolute;
  left: 0;
  border-radius: 6px 0 0 6px;
  line-height: 33px;
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
  display: none;
}

.cart-right-form {
  padding: 50px 35px;
}
@media only screen and (max-width: 1199px) {
  .cart-right-form {
    padding: 30px 25px;
  }
}
.cart-right-form .title {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.cart-right-form .cupon-wrap {
  border: 1px solid #2F2F2F;
  border-radius: 12px;
}
.cart-right-form .cupon-wrap input {
  background: transparent;
  height: 48px;
  border: 0;
  color: #fff;
  padding: 0 18px;
}
.cart-right-form .cupon-wrap input::placeholder {
  color: #e2e2e2;
}
.cart-right-form .cupon-wrap span {
  padding: 0 28px;
  background: #161616;
  border: 0;
  border: 1px solid #2F2F2F;
  border-radius: 11px !important;
  color: #e2e2e2;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.4s;
}
.cart-right-form .cupon-wrap span:hover {
  background: #2F2F2F;
}
.cart-right-form .price-list ul {
  margin: 0;
  padding: 0;
}
.cart-right-form .price-list ul li {
  border-bottom: 1px solid #1E1E1E;
  padding: 17px 0;
  font-size: 18px;
  color: #999999;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .cart-right-form .price-list ul li {
    font-size: 16px;
    padding: 13px 0;
  }
}
.cart-right-form .price-list ul li:last-child {
  border-bottom: 0;
  margin-bottom: 15px;
}
.cart-right-form .price-list ul li span {
  color: #fff;
  font-size: 20px;
}
@media only screen and (max-width: 1199px) {
  .cart-right-form .price-list ul li span {
    font-size: 18px;
  }
}
.cart-right-form .price-list ul li strong {
  color: #fff;
  font-weight: 500;
}
.cart-right-form .price-list ul li .subtotal {
  background-image: linear-gradient(92deg, #5a0dff 0%, #ff29b8 70.6%, #ff581c 99%, #fff 55%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-repeat: no-repeat;
  font-weight: 600;
}
.cart-right-form .price-list ul .quantity-list {
  padding: 22px 0;
}
.cart-right-form .btn-wrap .medium-btn {
  padding: 24px 36px 20px !important;
}
@media only screen and (max-width: 1199px) {
  .cart-right-form .btn-wrap .medium-btn {
    padding: 21px 36px 17px !important;
  }
}
.cart-right-form .product-checkout {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1E1E1E;
  padding: 20px 0;
}
.cart-right-form .product-checkout .product {
  display: flex;
  align-items: center;
}
.cart-right-form .product-checkout .product img {
  border-radius: 9px;
  margin-right: 15px;
  height: 70px;
  width: 70px;
}
@media only screen and (max-width: 1199px) {
  .cart-right-form .product-checkout .product img {
    height: 60px;
    width: 60px;
    margin-right: 15px;
  }
}
.cart-right-form .product-checkout .product h6 {
  font-size: 20px;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .cart-right-form .product-checkout .product h6 {
    font-size: 18px;
  }
}
.cart-right-form .product-checkout .product span {
  color: #999999;
  font-size: 15px;
}
@media only screen and (max-width: 1199px) {
  .cart-right-form .product-checkout .product span {
    font-size: 14px;
  }
}

.shop-shorting-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.shop-shorting-area .select-inner {
  position: relative;
  padding: 12px 15px;
}
.shop-shorting-area .select-inner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #1E1E1E;
  border-radius: 15px;
}
.shop-shorting-area select {
  background: transparent;
  color: #e2e2e2;
  border: 0;
  font-size: 20px;
  position: relative;
  z-index: 2;
  padding-right: 15px;
}
.shop-shorting-area select option {
  background: transparent;
  font-size: 18px;
  color: #424242;
  padding: 3px 10px;
}
@media only screen and (max-width: 575px) {
  .shop-shorting-area {
    display: block;
    text-align: center;
  }
}

.registration-checkout-wrap {
  padding: 45px 50px 45px;
}
@media only screen and (max-width: 575px) {
  .registration-checkout-wrap {
    padding: 35px 30px 35px;
  }
}

.single-shop-card {
  text-align: center;
}
.single-shop-card .thumb {
  position: relative;
}
.single-shop-card .thumb .image {
  mask-size: 100% 100%;
  background-color: #1E1E1E;
  height: 420px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-shop-card .thumb img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: -15px;
}
.single-shop-card .details {
  margin-top: -24px;
}
.single-shop-card .details .btn {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #999;
  font-size: 14px;
  font-weight: 400;
}
.single-shop-card .details .btn svg {
  margin-right: 5px;
}
.single-shop-card .details .btn:after {
  border-radius: 10px;
  transition: 0.4s;
}
.single-shop-card .details .btn:hover {
  color: #fff;
}
.single-shop-card .details .btn:hover svg path {
  fill: #fff;
}
.single-shop-card .details .btn:active {
  border: transparent;
}
.single-shop-card .details .title {
  background: var(--Text-Linear-Effect, linear-gradient(180deg, #F5F5F5 0%, #C5C5C5 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 45px;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 575px) {
  .single-shop-card .details .title {
    font-size: 30px;
  }
}
.single-shop-card:hover .btn {
  color: #fff;
}
.single-shop-card:hover .btn svg path {
  fill: #fff;
}

.shop-details-left-card {
  position: relative;
}

.shop-details-left-tab {
  width: 118px;
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  z-index: 3;
}
@media only screen and (max-width: 1599px) {
  .shop-details-left-tab {
    left: -26px;
  }
}
@media only screen and (max-width: 575px) {
  .shop-details-left-tab {
    top: auto;
    width: max-content;
    left: 50%;
    bottom: -26px;
    transform: translate(-50%, 0);
  }
}
.shop-details-left-tab .nav-item {
  border: 0;
}
.shop-details-left-tab .nav-item + .nav-item {
  margin-top: 10px;
}
@media only screen and (max-width: 575px) {
  .shop-details-left-tab .nav-item + .nav-item {
    margin-top: 0;
    margin-left: 6px;
  }
}
.shop-details-left-tab .nav-item .nav-link {
  border: 0 !important;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.shop-details-left-tab .nav-item .nav-link img {
  border-radius: 12px;
}
@media only screen and (max-width: 575px) {
  .shop-details-left-tab .nav-item .nav-link img {
    height: 60px;
    width: 60px;
  }
}

.shop-details-left-tab-content {
  border-radius: 32px;
  background: var(--Gradient, linear-gradient(95deg, rgba(41, 41, 41, 0.5) 7.27%, rgba(30, 30, 30, 0.65) 99.21%));
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 575px) {
  .shop-details-left-tab-content {
    min-height: 400px;
  }
}

.product-right-bar-details-info {
  padding-left: 90px;
}
@media only screen and (max-width: 1599px) {
  .product-right-bar-details-info {
    padding-left: 70px;
  }
}
@media only screen and (max-width: 1599px) {
  .product-right-bar-details-info {
    padding-left: 30px;
  }
}
.product-right-bar-details-info .title {
  font-size: 90px;
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .product-right-bar-details-info .title {
    font-size: 60px;
  }
}
.product-right-bar-details-info .ratting-inner {
  border-bottom: 1px solid #262626;
  margin-bottom: 22px;
  padding-bottom: 22px;
}
.product-right-bar-details-info .ratting-inner svg {
  margin-right: 3px;
}
.product-right-bar-details-info .amount {
  font-size: 36px;
  line-height: 0.9;
  margin-bottom: 28px;
}
.product-right-bar-details-info .amount span {
  color: #999999;
  border-left: 1px solid #262626;
  padding-left: 20px;
  margin-left: 20px;
}
@media only screen and (max-width: 575px) {
  .product-right-bar-details-info .amount {
    font-size: 24px;
  }
}
.product-right-bar-details-info .content {
  color: #999999;
  margin-bottom: 32px;
}
.product-right-bar-details-info .color-select {
  border: 1px solid #262626;
  padding: 8px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.product-right-bar-details-info .color-select svg {
  margin-right: 5px;
}
.product-right-bar-details-info .color-select select {
  background: transparent;
  color: #fff;
  border: 0;
}
.product-right-bar-details-info .product-list-info {
  margin: 0;
  padding: 0;
}
.product-right-bar-details-info .product-list-info .title {
  margin-bottom: 20px;
  font-size: 24px;
  margin-top: 38px;
}
.product-right-bar-details-info .product-list-info li {
  display: flex;
  align-self: center;
  justify-content: space-between;
}
.product-right-bar-details-info .product-list-info li + li {
  border-top: 1px solid #222121;
  padding: 10px 0;
}
.product-right-bar-details-info .product-list-info li span {
  color: #999999;
}
.product-right-bar-details-info .product-list-info li:last-child {
  padding-bottom: 0;
}

.product-information-area {
  background: linear-gradient(95deg, #181818 7.27%, #151515 99.21%), linear-gradient(95deg, #121212 7.27%, #1F1F1F 99.21%);
  margin-top: 60px;
}

.product-information-tab {
  border-radius: 300px;
  background: linear-gradient(122deg, #4F4F4F -65.81%, #282323 117.04%);
  border: 0;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px;
}
@media only screen and (max-width: 767px) {
  .product-information-tab {
    padding: 20px;
    margin-top: -40px;
  }
}
@media only screen and (max-width: 575px) {
  .product-information-tab {
    margin-top: -28px;
  }
}
@media only screen and (max-width: 575px) {
  .product-information-tab {
    padding: 10px;
  }
}
.product-information-tab .nav-item {
  position: relative;
}
.product-information-tab .nav-item .nav-link {
  border: 0;
  padding: 0;
  height: 48px;
  padding: 0 25px;
  border: 1px solid #999999;
  color: #999999;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
@media only screen and (max-width: 575px) {
  .product-information-tab .nav-item .nav-link {
    height: 35px;
    padding: 0 15px;
    font-size: 14px;
  }
}
.product-information-tab .nav-item .nav-link.active {
  color: #fff;
}
.product-information-tab .nav-item .nav-link.active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 102%;
  border: 1px solid transparent;
  border-radius: 30px;
  background-color: #ff581c;
  background: linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%) border-box;
  -webkit-mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.product-information-tab .nav-item + .nav-item {
  margin-left: 110px;
}
.product-information-tab .nav-item + .nav-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 14px;
  background: #5F5F5F;
  margin-left: -60px;
}
@media only screen and (max-width: 767px) {
  .product-information-tab .nav-item + .nav-item {
    margin-left: 15px;
  }
  .product-information-tab .nav-item + .nav-item:before {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .product-information-tab .nav-item + .nav-item {
    margin-left: 8px;
  }
}

.product-info-details {
  max-width: 650px;
  margin: 0 auto;
  padding-top: 50px;
}
.product-info-details .title {
  font-size: 60px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1599px) {
  .product-info-details .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .product-info-details .title {
    font-size: 40px;
  }
}
.product-info-details .content {
  font-size: 18px;
}
@media only screen and (max-width: 575px) {
  .product-info-details .content {
    font-size: 16px;
  }
}

.review-form-wrap {
  padding: 60px;
}
@media only screen and (max-width: 1199px) {
  .review-form-wrap {
    padding: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .review-form-wrap {
    padding: 30px;
  }
}
.review-form-wrap .inner-small-title {
  font-size: 50px;
}
@media only screen and (max-width: 575px) {
  .review-form-wrap .inner-small-title {
    font-size: 35px;
  }
}
.review-form-wrap .description {
  color: #818181;
}

.review-item img {
  height: 64px;
  width: 64px;
  border-radius: 64px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.review-item .rating-inner {
  margin-bottom: 30px;
}

.review-slider-area {
  position: relative;
}
.review-slider-area .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border-color: #999;
}
@media only screen and (max-width: 991px) {
  .review-slider-area .slider-btn {
    display: none;
  }
}
.review-slider-area .review-prev {
  left: -100px;
}
.review-slider-area .review-next {
  right: -100px;
}

.content-creator {
  position: relative;
  padding: 290px 0 320px;
}
@media only screen and (max-width: 1199px) {
  .content-creator {
    padding: 150px 0 150px;
  }
}
@media only screen and (max-width: 575px) {
  .content-creator {
    padding: 100px 0 100px;
  }
}
.content-creator .content-creator-inner {
  max-width: 900px;
}
.content-creator .title {
  font-size: 130px;
  text-transform: capitalize;
  font-weight: 500;
}
@media only screen and (max-width: 1599px) {
  .content-creator .title {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1199px) {
  .content-creator .title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .content-creator .title {
    font-size: 40px;
  }
}
.content-creator .title span {
  display: block;
}
.content-creator .title span span {
  background: var(--Primary-colors, linear-gradient(92deg, #5A0DFF -104%, #FF29B8 -100.4%, #FF581C 97.73%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.content-creator .content {
  max-width: 700px;
  margin: 0 auto;
}
.content-creator a.hl-btn.big-btn {
  padding-left: 60px;
  padding-right: 60px;
  margin-top: 44px;
}
@media only screen and (max-width: 575px) {
  .content-creator a.hl-btn.big-btn {
    padding-left: 30px;
    padding-right: 30px;
    padding: 14px 25px 17px;
    margin-top: 25px;
  }
}
.content-creator .animate-img-1 {
  left: 150px;
  top: 115px;
}
@media only screen and (max-width: 1599px) {
  .content-creator .animate-img-1 {
    left: 100px;
    max-width: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .content-creator .animate-img-1 {
    max-width: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .content-creator .animate-img-1 {
    max-width: 30px;
    left: 50px;
    top: 50px;
  }
}
.content-creator .animate-img-2 {
  right: 150px;
  top: 115px;
}
@media only screen and (max-width: 1599px) {
  .content-creator .animate-img-2 {
    right: 100px;
    max-width: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .content-creator .animate-img-2 {
    max-width: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .content-creator .animate-img-2 {
    max-width: 30px;
    right: 50px;
    top: 50px;
  }
}
.content-creator .animate-img-3 {
  left: 150px;
  bottom: 115px;
}
@media only screen and (max-width: 1599px) {
  .content-creator .animate-img-3 {
    left: 100px;
    max-width: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .content-creator .animate-img-3 {
    max-width: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .content-creator .animate-img-3 {
    max-width: 30px;
    left: 50px;
    bottom: 50px;
  }
}
.content-creator .animate-img-4 {
  right: 150px;
  bottom: 115px;
}
@media only screen and (max-width: 1599px) {
  .content-creator .animate-img-4 {
    right: 100px;
    max-width: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .content-creator .animate-img-4 {
    max-width: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .content-creator .animate-img-4 {
    max-width: 30px;
    right: 50px;
    bottom: 50px;
  }
}

.cross-platform {
  padding: 0 100px;
  background-color: #161616;
  padding-top: 340px;
}
@media only screen and (max-width: 1599px) {
  .cross-platform {
    padding: 0 50px;
    padding-top: 240px;
  }
}
@media only screen and (max-width: 991px) {
  .cross-platform {
    padding-top: 70px;
  }
}
.cross-platform .title {
  text-transform: capitalize;
  font-size: 110px;
  font-weight: 500;
  max-width: 800px;
}
@media only screen and (max-width: 1199px) {
  .cross-platform .title {
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1599px) {
  .cross-platform .title {
    font-size: 90px;
    margin-top: -70px;
  }
}
@media only screen and (max-width: 1199px) {
  .cross-platform .title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .cross-platform .title {
    margin-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .cross-platform .title {
    font-size: 40px;
  }
}
.cross-platform .radius-20 {
  border-radius: 60px !important;
}
.cross-platform .thumb-wrap {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .cross-platform .thumb-wrap {
    margin-top: 40px;
  }
}
.cross-platform .thumb-wrap .right-img-1 {
  min-width: 280px;
}
.cross-platform .thumb-wrap .right-img-2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -90px;
}
@media only screen and (max-width: 1599px) {
  .cross-platform .thumb-wrap .right-img-2 {
    max-width: 330px;
  }
}
@media only screen and (max-width: 1599px) {
  .cross-platform .thumb-wrap .right-img-2 {
    max-width: 220px;
    bottom: -30px;
  }
}
@media only screen and (max-width: 575px) {
  .cross-platform .thumb-wrap .right-img-2 {
    max-width: 125px;
  }
}
.cross-platform .thumb-wrap .right-img-3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -180px;
  bottom: 40px;
}
@media only screen and (max-width: 1599px) {
  .cross-platform .thumb-wrap .right-img-3 {
    margin-left: -135px;
    max-width: 200px;
  }
}
@media only screen and (max-width: 1199px) {
  .cross-platform .thumb-wrap .right-img-3 {
    margin-left: -83px;
    max-width: 150px;
  }
}
@media only screen and (max-width: 575px) {
  .cross-platform .thumb-wrap .right-img-3 {
    margin-left: -50px;
    max-width: 80px;
  }
}

.reel-platform-video {
  padding: 350px 0;
  text-align: center;
}
@media only screen and (max-width: 1599px) {
  .reel-platform-video {
    padding: 250px 0;
  }
}
@media only screen and (max-width: 991px) {
  .reel-platform-video {
    padding: 160px 0;
  }
}
@media only screen and (max-width: 575px) {
  .reel-platform-video {
    padding: 120px 0;
  }
}
.reel-platform-video a.hl-btn.big-btn {
  height: 140px;
  width: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media only screen and (max-width: 1599px) {
  .reel-platform-video a.hl-btn.big-btn {
    height: 110px;
    width: 110px;
  }
}
@media only screen and (max-width: 575px) {
  .reel-platform-video a.hl-btn.big-btn {
    height: 90px;
    width: 90px;
  }
  .reel-platform-video a.hl-btn.big-btn svg {
    width: 20px;
  }
}

.single-contact-card {
  background: linear-gradient(95.04deg, #181818 7.27%, #151515 99.21%);
  box-shadow: 0 0 0 2px #1d1d1d inset;
  border-radius: 30px;
  padding: 40px 30px;
  margin-bottom: 25px;
}
.single-contact-card .icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(95.04deg, rgba(41, 41, 41, 0.5) 7.27%, rgba(30, 30, 30, 0.65) 99.21%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 24px;
  transition: 0.4s;
}
.single-contact-card .details .title {
  color: #818181;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.single-contact-card .details .desc {
  font-family: var(--jost-font);
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
}
@media only screen and (max-width: 1199px) {
  .single-contact-card .details .desc {
    font-size: 20px;
  }
}
.single-contact-card:hover .icon-box {
  background: rgba(255, 255, 255, 0.9);
}

.contact-form-wrap {
  padding: 60px 90px;
}
@media only screen and (max-width: 1199px) {
  .contact-form-wrap {
    padding: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-form-wrap {
    padding: 30px;
  }
}
.contact-form-wrap .inner-small-title {
  font-size: 50px;
}
@media only screen and (max-width: 575px) {
  .contact-form-wrap .inner-small-title {
    font-size: 35px;
  }
}
.contact-form-wrap .checkbox-wrap span {
  color: #818181;
}

.scroll-slider-area {
  background: #151515;
  padding: 50px 0 40px;
}

.home-4-scroll-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.home-4-scroll-slider .scroll-slide-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.home-4-scroll-slider .scroll-slide-item img {
  border-radius: 100px;
  margin-top: -5px;
  margin-right: 20px;
}
@media only screen and (max-width: 1199px) {
  .home-4-scroll-slider .scroll-slide-item img {
    width: 90px;
  }
}
@media only screen and (max-width: 575px) {
  .home-4-scroll-slider .scroll-slide-item img {
    width: 70px;
    margin-right: 10px;
  }
}
.home-4-scroll-slider .scroll-slide-item .title {
  font-size: 90px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 0.8;
  background: var(--Text-Linear-Effect, linear-gradient(180deg, #F5F5F5 0%, #C5C5C5 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1199px) {
  .home-4-scroll-slider .scroll-slide-item .title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .home-4-scroll-slider .scroll-slide-item .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .home-4-scroll-slider .scroll-slide-item .title {
    font-size: 35px;
  }
}
.home-4-scroll-slider .scroll-slide-item span {
  background: var(--Primary-colors, linear-gradient(92deg, #5A0DFF 0%, #FF29B8 38.6%, #FF581C 97.73%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-top: -46px;
  margin-left: 10px;
}
@media only screen and (max-width: 1199px) {
  .home-4-scroll-slider .scroll-slide-item span {
    margin-top: -29px;
  }
}
@media only screen and (max-width: 575px) {
  .home-4-scroll-slider .scroll-slide-item span {
    margin-top: -19px;
    font-size: 15px;
  }
}

.swiper-3d-slider {
  position: relative;
  height: 900px !important;
  width: 3200px !important;
  margin-left: -1050px;
}
@media only screen and (max-width: 1599px) {
  .swiper-3d-slider {
    width: 2900px !important;
  }
}
@media only screen and (max-width: 1599px) {
  .swiper-3d-slider {
    height: 869px !important;
    width: 2987px !important;
    margin-left: -1178px;
  }
}
@media only screen and (max-width: 1199px) {
  .swiper-3d-slider {
    margin-left: -920px;
  }
}
@media only screen and (max-width: 991px) {
  .swiper-3d-slider {
    margin-left: -750px;
    height: auto !important;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .swiper-3d-slider {
    width: 100% !important;
    margin-left: 0;
  }
}
.swiper-3d-slider .swiper-slide {
  opacity: 0;
  transition: 0.5s;
}
.swiper-3d-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-3d-slider .swiper-slide img {
  height: 780px;
  border-radius: 40px;
}
@media only screen and (max-width: 1199px) {
  .swiper-3d-slider .swiper-slide img {
    height: 530px;
  }
}
@media only screen and (max-width: 767px) {
  .swiper-3d-slider .swiper-slide img {
    height: auto;
  }
}
.swiper-3d-slider .swiper-slide.swiper-slide-active ~ .swiper-slide {
  opacity: 1;
}
.swiper-3d-slider .swiper-slide.swiper-slide-active ~ .swiper-slide ~ .swiper-slide ~ .swiper-slide ~ .swiper-slide {
  opacity: 0;
}
.swiper-3d-slider .section-description-2 {
  font-size: 20px;
  color: #c1c1c1;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.home-4-3d-slider-control {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .home-4-3d-slider-control {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
  }
}
.home-4-3d-slider-control .slider-btn--big {
  width: 75px;
  height: 75px;
  margin-top: -22px;
}
@media only screen and (max-width: 1199px) {
  .home-4-3d-slider-control .slider-btn--big {
    width: 50px;
    height: 50px;
    margin-top: -34px;
  }
}
.home-4-3d-slider-control .linear-circle {
  width: 75px;
  height: 75px;
  transform: scale(1.83);
  right: -27px;
  top: 23px;
}
.home-4-3d-slider-control .hero-4-3d-slider-pagination {
  position: relative;
  color: transparent;
  width: auto;
  font-family: var(--heading-font);
  line-height: 0.9;
  transform: translate(270px, -5px);
}
@media only screen and (max-width: 1599px) {
  .home-4-3d-slider-control .hero-4-3d-slider-pagination {
    transform: translate(80px, -5px);
  }
}
@media only screen and (max-width: 991px) {
  .home-4-3d-slider-control .hero-4-3d-slider-pagination {
    transform: translate(150px, -5px);
  }
}
@media only screen and (max-width: 767px) {
  .home-4-3d-slider-control .hero-4-3d-slider-pagination {
    transform: translate(10px, 7px);
  }
}
.home-4-3d-slider-control .hero-4-3d-slider-pagination .swiper-pagination-current {
  font-size: 100px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  padding-left: 40px;
  position: relative;
}
@media only screen and (max-width: 479px) {
  .home-4-3d-slider-control .hero-4-3d-slider-pagination .swiper-pagination-current {
    font-size: 75px;
  }
}
.home-4-3d-slider-control .hero-4-3d-slider-pagination .swiper-pagination-current:after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: 16px;
  height: 2px;
  width: 40px;
  background-color: #999;
}
.home-4-3d-slider-control .hero-4-3d-slider-pagination .swiper-pagination-total {
  font-size: 30px;
  color: #999;
  bottom: unset;
  margin-left: 72px;
  position: relative;
  font-weight: 300;
}

@media only screen and (max-width: 1199px) {
  .award-winner-area .mt-80 {
    margin-top: 0px;
  }
}
.award-winner-area .section-description-2 {
  max-width: 400px;
}
.award-winner-area .home-4-3d-slider-control {
  margin-top: 200px;
}
@media only screen and (max-width: 1199px) {
  .award-winner-area .home-4-3d-slider-control {
    margin-top: 60px;
  }
}

.swiper-3d-slider-2 {
  position: relative;
  height: 900px !important;
  width: 3200px !important;
  margin-left: -1050px;
}
@media only screen and (max-width: 1599px) {
  .swiper-3d-slider-2 {
    width: 2900px !important;
  }
}
@media only screen and (max-width: 1599px) {
  .swiper-3d-slider-2 {
    height: 869px !important;
    width: 2987px !important;
    margin-left: -1178px;
  }
}
@media only screen and (max-width: 1199px) {
  .swiper-3d-slider-2 {
    margin-left: -920px;
  }
}
@media only screen and (max-width: 991px) {
  .swiper-3d-slider-2 {
    margin-left: -750px;
    height: auto !important;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .swiper-3d-slider-2 {
    width: 100% !important;
    margin-left: 0;
  }
}
.swiper-3d-slider-2 .swiper-slide {
  opacity: 0;
  transition: 0.5s;
}
.swiper-3d-slider-2 .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-3d-slider-2 .swiper-slide img {
  height: 780px;
  border-radius: 40px;
}
@media only screen and (max-width: 1199px) {
  .swiper-3d-slider-2 .swiper-slide img {
    height: 530px;
  }
}
@media only screen and (max-width: 767px) {
  .swiper-3d-slider-2 .swiper-slide img {
    height: auto;
  }
}
.swiper-3d-slider-2 .swiper-slide.swiper-slide-active ~ .swiper-slide {
  opacity: 1;
}
.swiper-3d-slider-2 .swiper-slide.swiper-slide-active ~ .swiper-slide ~ .swiper-slide ~ .swiper-slide ~ .swiper-slide {
  opacity: 0;
}
.swiper-3d-slider-2 .section-description-2 {
  font-size: 20px;
  color: #c1c1c1;
}

.swiper-3d-slider-2 {
  width: 3000px !important;
}
@media only screen and (max-width: 991px) {
  .swiper-3d-slider-2 {
    margin-left: -700px;
  }
}
@media only screen and (max-width: 767px) {
  .swiper-3d-slider-2 {
    margin-left: 0;
    margin-top: -70px;
  }
}

.swiper-3d-slider-2 .swiper-slide {
  transition: transform 0.7s;
}

.swiper-3d-slider-2 .swiper-slide img {
  height: 680px;
  transform: translate3d(-300px, 80px, 0) rotateX(-4deg) rotateY(-52deg) scale(1);
  transition: scale 0.7s;
}
@media only screen and (max-width: 991px) {
  .swiper-3d-slider-2 .swiper-slide img {
    transform: translate3d(-200px, 80px, 0) rotateX(-4deg) rotateY(-42deg) scale(1);
  }
}
@media only screen and (max-width: 767px) {
  .swiper-3d-slider-2 .swiper-slide img {
    transform: translate3d(-100px, 80px, 0) rotateX(0deg) rotateY(0deg) scale(1);
  }
}

.swiper-3d-slider-2 .swiper-slide.swiper-slide-active ~ .swiper-slide,
.swiper-3d-slider-2 .swiper-slide.swiper-slide-active ~ .swiper-slide ~ .swiper-slide ~ .swiper-slide ~ .swiper-slide {
  opacity: 1;
}

.swiper-3d-slider-2 .swiper-slide.swiper-slide-active ~ .swiper-slide ~ .swiper-slide ~ .swiper-slide ~ .swiper-slide ~ .swiper-slide {
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  .play-list-area .section-heading {
    text-align: center;
  }
}
.play-list-area .section-title-5 {
  max-width: 350px;
}
@media only screen and (max-width: 767px) {
  .play-list-area .home-4-3d-slider-control {
    justify-content: center;
  }
}

/* Footer */
.footer-area {
  border-radius: 4.3vw 4.3vw 0px 0px;
  background-image: linear-gradient(95deg, #121212 7.27%, #1f1f1f 99.21%);
}
.footer-area.radius-0 {
  border-radius: 0;
}
.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.inline-style:not(:last-child) {
  margin-right: 25px;
  position: relative;
}
.footer-area .footer-widget--item.inline-style:not(:last-child)::after {
  content: "/";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-40%);
  line-height: 1;
  width: max-content;
  height: auto;
}
.footer-area .footer-widget--item:not(:last-child) {
  margin-bottom: 18px;
}
.footer-area .footer-widget--link:hover {
  color: #e2e2e2;
}
.footer-area .footer-widget.widget-more .widget-title {
  line-height: 1.16;
}
@media only screen and (max-width: 575px) {
  .footer-area .footer-widget .hl-btn.small-btn {
    padding: 10px 20px;
    border-radius: 10px;
  }
}
.footer-area .footer-bottom {
  padding: 25px 0;
  margin-top: 50px;
  border-top: 1px solid #1e1d1d;
}
.footer-area--two {
  background-image: url(../../assets/images/background/footer-bg.webp);
  background-size: 100% 100%;
  border-radius: unset;
}
.footer-area--two .footer-bottom ul li:not(:last-child) {
  margin-right: 25px;
  position: relative;
}
.footer-area--two .footer-bottom ul li:not(:last-child)::after {
  content: "/";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-40%);
  line-height: 1;
  width: max-content;
  height: auto;
}
.footer-area--two .footer-bottom ul:not(:last-child) {
  margin-bottom: 18px;
}

.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;
  }
}

body.rtl {
  direction: rtl;
  unicode-bidi: embed;
}

.rtl {
  /*home 4 */
}
.rtl .text-sm-start {
  text-align: right !important;
}
.rtl .text-lg-start {
  text-align: right !important;
}
.rtl .pe-xl-5 {
  padding-right: 0 !important;
  padding-left: 3rem !important;
}
.rtl .me-xl-5 {
  margin-right: 0 !important;
  margin-let: 3rem !important;
}
.rtl .breadcrumb-area--item:not(:last-child) {
  margin-right: 0;
  margin-left: 12px;
}
.rtl .breadcrumb-area--item:not(:first-child)::before {
  left: auto;
  right: -12px;
}
.rtl .hero-card-slider {
  right: auto;
  left: 15%;
}
.rtl .hero-card-slider .hero-card-slider-control {
  right: auto;
  left: -190px;
}
.rtl .hero-card-slider .hero-card-slider-control .swiper-pagination .swiper-pagination-total {
  float: inline-start;
}
.rtl .slider-counter-two .swiper-pagination .swiper-pagination-total {
  margin-left: 36px;
}
.rtl .category-card .details .circle-btn {
  transform: rotate(180deg);
}
.rtl .btn-base svg {
  transform: rotate(180deg);
  transform: rotateY(180deg);
}
.rtl .navbar-area .nav-container .main-menu > .menu-item:not(:first-child) {
  margin-left: 0;
  margin-right: 30px;
}
.rtl .navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu {
  left: auto;
  right: 0;
}
.rtl .navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu--link {
  text-align: right;
}
.rtl .navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu .menu-item-has-children > a:first-child:after {
  right: auto;
  left: 10px;
}
.rtl .navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu .menu-item-has-children > a:first-child:after {
  transform: rotate(-267deg);
}
.rtl .navbar-area .nav-container .main-menu .menu-item.menu-item-has-children .sub-menu .sub-menu {
  left: -228px;
  right: auto;
}
.rtl .nav-right-part .header_search_box .header_search_form button {
  padding-right: 0;
  padding-left: 15px;
}
.rtl .pricing-card--header .price-badge {
  right: auto;
  top: -18px;
  left: -15px;
}
.rtl .pricing-card--header .price-badge .duration {
  text-align: left;
}
.rtl .section-header.style-two svg {
  transform: rotate(180deg);
}
.rtl .category-card--two .thumbnail .thumb--two {
  transform: rotateY(180deg);
}
.rtl .category-card--two .thumbnail .thumb--one {
  margin-right: 0;
  margin-left: 6px;
}
.rtl .home-two-slider::after {
  left: auto;
  right: 0px;
  transform: rotate(180deg);
}
.rtl .home-two-slider .content {
  padding-right: 0;
  padding-left: 28%;
}
.rtl .primary-nav {
  right: auto !important;
  left: 60px;
  margin-right: 0;
  text-align: left !important;
}
.rtl .home-two-slider .ht-banner-img {
  left: auto;
  right: 18%;
}
.rtl .scroll-down {
  right: 0;
  padding-left: 0;
  padding-right: 35px;
}
.rtl .primary-nav::before {
  left: -17px;
  right: auto;
}
.rtl .hero-slider-one .slider-btn svg {
  transform: rotate(180deg);
}
.rtl .banner-area.position-absolute.start-0.ms-5.top-50 {
  right: 45px;
}
.rtl .mobile_menu_nav .menu-item-has-children::after {
  right: auto;
  left: 0;
}
.rtl .mobile_menu_nav .menu-item-has-children.show::after {
  right: auto;
  left: 0;
}
.rtl .mobile_menu_nav .menu-item-has-children .sub-menu {
  text-align: right;
  padding-left: 0;
}
.rtl .banner-3-varticle-slider-wrapper {
  right: auto;
  left: -100px;
  top: -180px;
  transform: rotate(15deg);
}
.rtl .price-list-inner .single-list li:first-child {
  text-align: right;
}
.rtl .category-slider-rotate {
  transform: rotate(5deg);
}
.rtl .circle-badge {
  display: none;
}
.rtl .swiper-3d-slider {
  margin-left: 0;
  margin-right: -1050px;
}
.rtl .product-cart-wrap .card-body .product img {
  margin-right: 0;
  margin-left: 24px;
}
.rtl .artist-single-card .details {
  width: 100%;
}
.rtl .hl-pagination--button svg {
  transform: rotate(180deg);
}
.rtl .checkbox-wrap span:before {
  margin-right: 0;
  margin-left: 9px;
}
.rtl .checkbox-inner span:before {
  margin-right: 0;
  margin-left: 7px;
}
.rtl .checkbox-inner input:checked + span:after {
  left: auto;
  right: 0;
}
.rtl .checkbox-inner span:before {
  left: auto;
  right: -4px;
}
.rtl .subscription-tab-list ul li + li {
  margin-left: 0;
  margin-right: 30px;
}
.rtl .subscription-tab-list ul li + li:before {
  left: auto;
  right: -23px;
}
.rtl .checkbox-wrap input:checked + span:after {
  left: auto;
  right: 10px;
}
.rtl .shop-shorting-area select {
  padding-right: 0;
  padding-left: 15px;
}
.rtl .shop-details-left-tab {
  left: auto;
  right: -36px;
}
.rtl .product-right-bar-details-info .color-select {
  margin-right: 0;
  margin-left: 20px;
}
.rtl .product-right-bar-details-info .color-select svg {
  margin-right: 0;
  margin-left: 5px;
}
.rtl .product-information-tab .nav-item + .nav-item {
  margin-left: 0;
  margin-right: 110px;
}
.rtl .product-information-tab .nav-item + .nav-item:before {
  left: auto;
  right: 0;
  margin-left: 0;
  margin-right: -60px;
}
.rtl .cart-right-form .product-checkout .product img {
  margin-right: 0;
  margin-left: 15px;
}
.rtl .comment-area .comment-list .comment-item .comment p {
  padding-right: 0;
  padding-left: 100px;
}
.rtl .blog-sidebar .recent-post-list .time {
  padding-right: 5px;
  padding-left: 0;
}
.rtl .header-left-menu {
  left: auto;
  right: 0;
}
.rtl .hero-4-thumbnail-area {
  right: auto;
  left: 0;
  border-radius: 0 30px 0 0;
}
.rtl .video-card-inner {
  left: auto;
  right: 25%;
  transform: translateX(-50%);
  margin-left: auto;
  margin-right: -400px;
}
.rtl .video-card-inner .details {
  text-align: right;
}
.rtl .hero-4-slider-control {
  right: auto;
  left: 0;
}
.rtl .hero-4-slider-control .hero-4-pagination {
  margin-left: 0;
  margin-right: 40px;
}
.rtl .hero-4-slider-control .slider-btn--big {
  margin: 10px;
}
.rtl .hero-4-slider-control .hero-4-pagination .swiper-pagination-current:after {
  right: auto;
  left: -58px;
}
.rtl .hero-4-slider-control .hero-4-pagination .swiper-pagination-total {
  margin-left: 0;
  margin-right: 72px;
}
.rtl .header-left-menu ul .scroll-down {
  padding-right: 0;
}
.rtl .header-left-menu ul .scroll-down a svg {
  margin-top: 0;
  margin-bottom: 5px;
  margin-left: 0;
  margin-right: 6px;
}
.rtl .home-4-3d-slider-control .hero-4-3d-slider-pagination {
  transform: translate(-270px, -5px);
}
.rtl .home-4-3d-slider-control .hero-4-3d-slider-pagination .swiper-pagination-total {
  margin-0: 72px;
  margin-right: 72px;
}
.rtl .home-4-3d-slider-control .hero-4-3d-slider-pagination .swiper-pagination-current:after {
  right: auto;
  left: -58px;
}
.rtl .home-4-3d-slider-control {
  margin-right: 0;
  margin-left: 15px !important;
}
@media (min-width: 1200px) {
  .rtl .text-xl-start {
    text-align: right !important;
  }
}
@media (min-width: 992px) {
  .rtl .text-lg-end {
    text-align: left !important;
  }
}
@media (min-width: 992px) {
  .rtl .me-lg-5 {
    margin-left: 3rem !important;
  }
}
@media (min-width: 576px) {
  .rtl .text-sm-end {
    text-align: left !important;
  }
}

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