/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
: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;
  --transition: all 0.4s ease-out;
  --border-color: #202020;
  --gradient-color: linear-gradient(
    to right,
    #5a0dff -5%,
    #ff29b8 31%,
    #ff581c
  );
  --bg-primary: linear-gradient(95deg, #181818 7.27%, #151515 99.21%);
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  /* Firefox */
  -moz-osx-font-smoothing: grayscale;
  /* WebKit  */
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--body-font);
  font-weight: 500;
  background-color: var(--body-bg);
  font-size: 17px;
}

h1 {
  font-size: 75px;
  line-height: 1.083;
}

h2 {
  font-size: 52px;
  line-height: 1.244;
}

h3 {
  font-size: 32px;
  line-height: 1.383;
}

h4 {
  font-size: 24px;
  line-height: 1.238;
}

h5 {
  font-size: 20px;
  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);
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
  line-height: 1.7;
}

a {
  text-decoration: none;
  transition: 0.4s;
  font-weight: 400;
  color: inherit;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
  height: auto;
}

/*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;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #404040;
}

code {
  color: #faa603;
}

.dark-bg {
  background-color: #111d5c;
}

.section-bg-1 {
  background-color: #f4f7fc;
}

.check-list-02 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list-02 li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}
.check-list-02 li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  content: "\f00c";
  color: var(--primary-color);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}
.check-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  content: "\f105";
  color: var(--primary-color);
}

.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;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  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);
  clip: auto !important;
  clip-path: none;
  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;
}

.overflow-hidden {
  overflow: hidden;
}

/*--------------------------------------------------------------
# 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;
}

.blog-pagination ul li {
  display: inline-block;
}

.blog-pagination ul li + li {
  margin: 0 5px;
}

.blog-pagination ul li {
  display: inline-block;
}

.blog-pagination ul li + li {
  margin: 0 5px;
}

.blog-pagination {
  display: block;
  width: 100%;
}

.blog-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
  display: block;
  padding: 3px 25px;
  border: 1px solid #e2e2e2;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/*--------------------------------------------------------------
# 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
------------------------------------------*/
.wp-link-pages a {
  margin: 0 5px;
  transition: 0.3s ease-in;
}

.wp-link-pages {
  margin-bottom: 30px;
  margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
  background-color: var(--primary-color);
  color: #111;
  border-color: var(--primary-color);
}

.wp-link-pages span:first-child {
  margin-right: 5px;
}

dl,
ol,
ul {
  padding-left: 15px;
}

.post-password-form input {
  display: block;
  border: 1px solid var(--border-color);
  height: 50px;
  border-radius: 3px;
  padding: 0 20px;
  background: transparent;
  color: #999;
}

.post-password-form label {
  font-weight: 600;
  color: #999;
  margin-bottom: 8px;
}

.post-password-form input[type="submit"] {
  width: 100px;
  height: 50px;
  background-color: var(--primary-color);
  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;
}

.footer-widget .table td,
.footer-widget .table th {
  padding: 0.5rem !important;
}

/************ 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;
}

.scroll_animate {
  animation: slide_her 35s linear infinite;
}

@-webkit-keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes top-image-bounce-2 {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}
@keyframes top-image-bounce-2 {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(54x);
    transform: translateY(-4px);
  }
}
@-webkit-keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: 50%;
    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 slide_her {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-80%);
  }
  to {
    transform: translateY(0);
  }
}
.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mt-03 {
  margin-top: 3px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.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-80 {
  margin-bottom: 80px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-80 {
  margin-right: 80px;
}

.my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.movie-info-list {
  color: var(--paragraph-color);
  font-weight: 500;
  margin-bottom: 30px;
  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%
  );
}

.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;
  }
}

/*-------------------------
    ## Preloader Css
---------------------------*/
.preloader {
  z-index: 99;
  position: relative;
}

.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.95);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-inner .preloader-grid {
  margin-right: 1px;
  width: 50px;
  height: 50px;
  display: grid;
  gap: 0px;
  grid-template-columns: auto auto;
  animation: rotate 2s linear 0s infinite;
}
.preloader-inner .item1 {
  margin: auto;
  width: 15px;
  height: 15px;
  border-radius: 0%;
  background-color: var(--primary-color);
}
.preloader-inner .item2 {
  margin: auto;
  width: 15px;
  height: 15px;
  border-radius: 0%;
  background-color: var(--primary-color);
}
.preloader-inner .item3 {
  margin: auto;
  width: 15px;
  height: 15px;
  border-radius: 0%;
  background-color: var(--primary-color);
}
.preloader-inner .item4 {
  margin: auto;
  width: 15px;
  height: 15px;
  border-radius: 0%;
  background-color: var(--primary-color);
}
@keyframes rotate {
  0% {
    rotate: 0deg;
    transform: scale(0.6);
  }
  50% {
    rotate: 100deg;
    transform: scale(0.4);
  }
  100% {
    rotate: 360deg;
    transform: scale(0.6);
  }
}
.preloader-inner .preloader-title {
  margin-left: 5px;
  margin-bottom: 0;
}

.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;
  }
}

.bg-primary-color {
  background-color: var(--bg-primary);
}

.bg-black {
  background-color: #111111 !important;
}

.bg-black-2 {
  background-color: #000000;
}

.bg-gray {
  background-color: #dddddd;
}

.radius-100 {
  border-radius: 100px !important;
}

.fs-20 {
  font-size: 20px;
}

.list-style-none li {
  list-style: none;
}

.bg-paragraph {
  color: var(--paragraph-color);
}

.lowball-font {
  font-family: "Lowball", sans-serif;
}

.dosis-font {
  font-family: "Dosis", sans-serif;
}

.categories-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.trending-slider-two .swiper-wrapper {
  transition-timing-function: linear;
}

.bg-primary {
  background: var(--bg-primary) !important;
}

.nav-right-part .header_search_btn svg {
  position: relative;
  z-index: -2;
}
.nav-right-part .nav-hamburger-btn {
  line-height: 59px;
  border-left: 1px solid #ededed;
}
.nav-right-part.nav-right-part-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-nav {
  margin-right: 67px;
  padding: 17px 0;
}
@media only screen and (max-width: 1199px) {
  .primary-nav {
    display: none;
  }
}
.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 {
  list-style: none;
}
.primary-nav--item:not(:last-child) {
  margin-bottom: 18px;
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .primary-nav--item:not(:last-child) {
    margin-bottom: 6px;
  }
}
.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 0) padding-box, linear-gradient(#fff 0 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--left .logo-text {
  line-height: 1;
}
.secondary-nav--left .logo-text a {
  margin-bottom: -3px;
}
.secondary-nav--left .menu-button {
  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);
  border: 0;
  background: transparent;
}
@media only screen and (max-width: 991px) {
  .secondary-nav--left .menu-button {
    width: 45px;
    height: 45px;
  }
}
.secondary-nav--left .menu-button svg {
  overflow: hidden;
}
.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: 991px) {
  .secondary-nav--right .profile-btn {
    width: 45px;
    height: 45px;
  }
}

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.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 {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(15px);
  border-color: #a5a0a0;
}
.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;
}
@media only screen and (max-width: 1199px) {
  .slider-btn.next-slide svg:nth-child(2n) circle {
    display: none;
  }
}

.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: 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;
  background-size: 200% 100%;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  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;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 0px 20px rgba(255, 53, 144, 0.5);
}

.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 !important;
  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 0) padding-box, linear-gradient(#fff 0 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 svg path {
  stroke: var(--paragraph-color);
}
.btn-inactive:hover {
  color: #fff;
}
.btn-inactive:hover svg path {
  stroke: #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;
}

.section-header span {
  margin-top: 2px;
  margin-right: 10px;
}
.section-header span img {
  max-width: 50px;
}

.section-title {
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
}
@media only screen and (max-width: 575px) {
  .section-title {
    font-size: 35px;
  }
}

.cs-section-title .btn.icon-left svg {
  float: left;
  margin-top: -4px;
  margin-right: 7px;
  width: 20px;
  color: #fff;
  fill: #fff;
}

.movie-container {
  border-radius: 50px;
  background: linear-gradient(95deg, #181818 7.27%, #151515 99.21%);
}

/*
================================
    Movie Card Small 
================================
*/
.movie-card-small {
  border-radius: 40px;
  overflow: hidden;
}
.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 {
  font-weight: 600;
  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;
}
.movie-card-small .details .movie-name:hover {
  background-position: 0% 50%;
}
.movie-card-small .details .movie-name,
.movie-card-small .details .movie-info {
  margin-bottom: 6px;
}
.movie-card-small .details ul {
  color: #e2e2e2;
  line-height: 1;
}
.movie-card-small .details ul li {
  display: inline-block;
}
.movie-card-small .details .movie-info li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.movie-card-small .details .movie-info li:not(:last-child) {
  margin-right: 12px;
}
.movie-card-small .details .movie-info li img {
  margin-top: -3px;
  filter: brightness(1.4);
}
@media only screen and (max-width: 575px) {
  .movie-card-small .details .movie-info li {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 360px) {
  .movie-card-small .details .movie-info li {
    font-size: 13px;
  }
}
@media only screen and (max-width: 575px) {
  .movie-card-small .details .movie-type li {
    font-size: 14px;
  }
}
@media only screen and (max-width: 360px) {
  .movie-card-small .details .movie-type li {
    font-size: 13px;
  }
}
.movie-card-small .details.details-two {
  font-family: var(--jost-font);
  text-align: center;
}
.movie-card-small .details.details-two .movie-name {
  font-family: var(--bigShoulder-font);
  font-size: 30px;
}
@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;
}
.movie-card-small.style-two::before {
  content: unset;
}
.movie-card-small.style-two .thumb {
  background-size: 100% 100%;
  padding: 4px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .movie-card-small.style-two .thumb {
    padding: 3px;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .movie-card-small.style-two .thumb {
    padding: 3px;
  }
}
.movie-card-small.style-two .thumb .img-thumb {
  overflow: hidden;
  border-radius: 50px;
}
@media only screen and (max-width: 767px) {
  .movie-card-small.style-two .thumb .img-thumb {
    border-radius: 35px;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .movie-card-small.style-two .thumb .img-thumb {
    border-radius: 25px;
  }
}
.movie-card-small.style-two .thumb .img-thumb img {
  -webkit-mask-image: url("../images/card.png");
  mask-image: url("../images/card.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  transition: transform 300ms ease-out;
  border-radius: 50px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .movie-card-small.style-two .thumb .img-thumb img {
    border-radius: 35px;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .movie-card-small.style-two .thumb .img-thumb img {
    border-radius: 25px;
  }
}
.movie-card-small.style-two .details {
  background: none;
  backdrop-filter: unset;
}
.movie-card-small.style-two .details .movie-name,
.movie-card-small.style-two .details .movie-info {
  margin-bottom: 10px;
}
.movie-card-small.style-two .details .movie-name a {
  font-weight: 600;
}
.movie-card-small.style-three {
  border-radius: 25px;
  transition: transform 300ms ease;
  overflow: visible;
}
.movie-card-small.style-three .thumb {
  border-radius: 25px;
  overflow: hidden;
  transition: transform 300ms ease;
}
.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: 0;
}
.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: -9%;
  right: -9%;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
  z-index: 2;
}
.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 .thumb {
  transform: scale(1.31);
  position: relative;
  z-index: 1;
}
.movie-card-small.style-three:hover .thumb::before {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 575px) {
  .movie-card-small.style-three:hover .thumb {
    transform: scale(1);
  }
}
.movie-card-small.style-three:hover .video-play-btn {
  margin-top: -50px;
}
.movie-card-small.style-three:hover .details {
  margin-left: -6%;
  margin-bottom: -11%;
  transform: rotateZ(0deg);
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
@media only screen and (max-width: 575px) {
  .movie-card-small.style-three:hover .details {
    margin-left: 20px;
    margin-bottom: 20px;
  }
}
.movie-card-small:hover::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.movie-card-small:hover .video-play-btn {
  top: 50%;
  visibility: visible;
  opacity: 1;
  margin-top: -65px;
}
.movie-card-small:hover .details {
  margin-bottom: 0;
}
.movie-card-small:hover .options {
  top: -9%;
  right: -9%;
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 575px) {
  .movie-card-small:hover .options {
    top: 20px;
    right: 20px;
  }
}
.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);
}

/*
================================
    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 (max-width: 767px) {
  .movie-card-fluid {
    border-radius: 20px;
  }
}
@media only screen 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(../images/icons/brush.html);
  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 (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 (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 (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: 1199px) and (max-width: 1599px) {
  .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 (max-width: 767px) {
  .movie-card-fluid .content-inner .content {
    left: 50%;
  }
}
@media only screen 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 (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 (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 (max-width: 767px) {
  .movie-card-fluid .content-inner .content .card-title {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 5px;
  }
}
@media only screen 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 (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: 1199px) and (max-width: 1599px) {
  .movie-card-fluid .content-inner .content .card-title {
    font-size: 104px;
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 1199px) 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 (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;
  }
}

.movie-card-medium {
  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: 1199px) and (max-width: 1599px) {
  .movie-card-medium {
    width: 580px;
    height: 580px;
  }
}
@media only screen and (max-width: 1199px) {
  .movie-card-medium {
    width: 60%;
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  .movie-card-medium {
    width: 60%;
  }
}
@media only screen and (max-width: 575px) {
  .movie-card-medium {
    width: 90%;
  }
}
@media only screen and (max-width: 360px) {
  .movie-card-medium {
    width: 88%;
  }
}
.movie-card-medium::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;
}
.movie-card-medium .content {
  margin-bottom: 60px;
  transition: all 1000ms ease;
}
@media only screen and (max-width: 575px) {
  .movie-card-medium .content {
    margin-bottom: 20px;
  }
}
.movie-card-medium .video-play-btn {
  opacity: 1;
  visibility: visible;
  width: 110px;
  height: 110px;
  line-height: 110px;
  margin-top: -120px;
}
@media only screen and (max-width: 991px) {
  .movie-card-medium .video-play-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .movie-card-medium .video-play-btn {
    margin-top: -62px;
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
.movie-card-medium .video-play-btn svg {
  width: 25px;
  margin-top: -2px;
}
@media only screen and (max-width: 991px) {
  .movie-card-medium .video-play-btn svg {
    width: 18px;
  }
}
.movie-card-medium .certificates {
  margin-bottom: 32px;
}
@media only screen and (max-width: 575px) {
  .movie-card-medium .certificates {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .movie-card-medium .certificates li img {
    width: 50px;
  }
}
.movie-card-medium .card-title {
  font-family: var(--bigShoulder-font);
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 22px;
}
@media only screen and (max-width: 1199px) {
  .movie-card-medium .card-title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .movie-card-medium .card-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .movie-card-medium .card-title {
    font-size: 24px;
  }
}
.movie-card-medium .movie-info-list {
  margin-bottom: 22px;
}
@media only screen and (max-width: 575px) {
  .movie-card-medium .movie-info-list {
    margin-bottom: 12px;
  }
}
.movie-card-medium .movie-info-list--item {
  color: #e2e2e2;
}
.movie-card-medium .card-description {
  font-family: var(--jost-font);
  font-size: 22px;
  line-height: 34px;
}
@media only screen and (max-width: 991px) {
  .movie-card-medium .card-description {
    padding: 0 40px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .movie-card-medium .card-description {
    display: none;
  }
}
.movie-card-medium.swiper-slide-prev {
  transform: translateY(45px) rotate(-11deg) scale(0.92) skewX(2deg) !important;
}
.movie-card-medium.swiper-slide-prev .content,
.movie-card-medium.swiper-slide-prev::before {
  transform: rotateY(90deg);
  transform-origin: left;
}
.movie-card-medium:not(.swiper-slide-active) {
  border-radius: 70px;
}
.movie-card-medium:not(.swiper-slide-active) .video-play-btn {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.movie-card-medium.swiper-slide-next {
  transform: translateY(45px) rotate(11deg) scale(0.92) skewX(-2deg) !important;
}
.movie-card-medium.swiper-slide-next .content,
.movie-card-medium.swiper-slide-next::before {
  transform: rotateY(-90deg);
  transform-origin: right;
}

.newest-release-slider {
  overflow: visible;
}
.newest-release-slider .hl-container {
  margin-right: 70px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 575px) {
  .newest-release-slider .hl-container {
    display: none !important;
  }
}

.movie-card-small.style-two .details ul {
  color: #999;
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .movie-card-small.style-two .details ul {
    font-size: 11px;
  }
}

.trending-slider .swiper-wrapper {
  animation: line-slide 60s forwards infinite linear;
}

@keyframes line-slide {
  0% {
    background-position: -5% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.newest-release-slider .slider-btn {
  transition: 0.4s;
  border-color: #fff;
  background: transparent;
}
.newest-release-slider .slider-btn:hover {
  border-color: #939393;
}
.newest-release-slider .movie-card-small.style-three .video-play-btn svg {
  margin-left: 3px;
  margin-top: -2px;
}

@media only screen and (max-width: 1199px) {
  .home-two-slider {
    overflow: hidden;
  }
}

.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: 74vh;
  }
  .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.4;
}
.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.4;
}
@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: 360px) {
  .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: 15px;
  }
}
@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: 360px) {
  .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;
  }
}

.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: 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 {
    hheight: 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 !important;
  }
}
@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: 45px;
  }
}
@media only screen and (max-width: 575px) {
  .home-two-slider .content .banner-title {
    font-size: 35px !important;
  }
}
.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: 360px) {
  .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;
}
@media only screen and (max-width: 1199px) {
  .home-two-slider .content .hl-btn {
    padding: 20px 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;
}

.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("../images/brush.png") !important;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
  display: block !important;
  transform: translate(0) !important;
  border-radius: 0;
  background-size: 104% 112%;
}
.hero-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;
}

.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 (max-width: 767px) {
  .live-stream {
    margin-left: 2%;
    margin-right: 2%;
  }
}
@media only screen and (max-width: 991px) {
  .live-stream {
    margin-left: 3%;
    margin-right: 3%;
  }
}
@media only screen and (max-width: 1199px) {
  .live-stream {
    margin-left: 4%;
    margin-right: 4%;
  }
}
@media only screen and (min-width: 1199px) and (max-width: 1599px) {
  .live-stream {
    margin-left: 5%;
    margin-right: 5%;
  }
}

.feathur-card {
  padding: 45px 30px;
  border-radius: 30px;
  background: linear-gradient(136deg, #1b1b1b 2.27%, #101010 100%);
}
.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;
  }
}

.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;
}
@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;
  min-width: 230px;
}
.category-card .details .title {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 6px;
  width: 123px;
}
@media only screen and (max-width: 575px) {
  .category-card .details .title {
    font-size: 20px;
  }
}
.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 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.category-card--two {
  width: 330px;
  aspect-ratio: 1;
  padding: 13px;
  border-radius: 20px;
  background: var(--bg-primary);
  gap: 10px;
}
@media only screen and (max-width: 1199px) {
  .category-card--two {
    width: 47%;
    margin: 10px;
    display: inline-block;
  }
}
@media only screen and (max-width: 575px) {
  .category-card--two {
    width: 94%;
    margin: 10px;
    display: inline-block;
  }
}
.category-card--two .thumbnail {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 4px;
}
.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(../images/shape-cat.png);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-clip: border-box;
  mask-image: url(../images/shape-cat.png);
  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;
}
.category-card--two .details .title {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 6px;
}
@media only screen and (max-width: 575px) {
  .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-two .category-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media only screen and (max-width: 1199px) {
  .category-two .category-inner {
    justify-content: center;
    gap: 0;
    display: flex;
    flex-wrap: wrap;
  }
}

.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;
}
.category-list-area .category-list--item .movie-name {
  font-size: 70px;
}
@media only screen and (max-width: 1199px) {
  .category-list-area .category-list--item .movie-name {
    font-size: 40px;
  }
}
.category-list-area .category-list--item p {
  word-break: auto-phrase;
}
@media only screen and (max-width: 991px) {
  .category-list-area .category-list--item p {
    font-size: 16px;
  }
}
.category-list-area .category-list--item:hover .thumb img {
  transform: scale(1.1);
}

.category-btn-bar {
  border-bottom: 1px solid #201f1f !important;
  margin-top: -30px;
  padding-bottom: 30px;
}
.category-btn-bar button {
  border: 0 !important;
}

.category-card.category-card--two .details .title {
  width: 125px;
}

.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: 360px) {
  .pricing-card--header {
    padding: 30px 20px;
  }
}
.pricing-card--header .title {
  font-family: var(--bigShoulder-font);
  font-weight: 700;
}
.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: 575px) {
  .pricing-card--header .price-badge .price {
    font-size: 35px;
  }
}
.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: 360px) {
  .pricing-card--body {
    padding: 30px 20px;
  }
}
.pricing-card--list {
  list-style-image: url(../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;
}
.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("../images/price-btn2.png") !important;
}
.pricing-card .note {
  color: var(--paragraph-color);
  font-family: var(--jost-font);
  font-size: 14px;
  font-weight: 300;
}

.enjoy-avourite-device {
  padding: 200px 0;
  margin: 0 calc(4vw + 10px);
}
.enjoy-avourite-device .responsive--title {
  font-family: var(----bigShoulder-font);
  font-size: 70px;
  font-weight: 900;
  line-height: 80px;
}
.enjoy-avourite-device .responsive--description {
  font-family: var(--jost-font);
  line-height: 25px;
}

.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);
}
.restriction-overlay .title {
  font-size: 60px;
}
.restriction-overlay .description {
  font-size: 18px;
}
.restriction-overlay a.hl-btn {
  padding: 29px 49px !important;
}

.video-banner {
  padding-top: 430px;
  background-size: cover;
}
@media only screen and (max-width: 991px) {
  .video-banner {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .video-banner {
    padding-top: 120px;
  }
}
.video-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    149deg,
    rgba(24, 24, 24, 0.6) 11.02%,
    #151515 73.5%
  );
  mix-blend-mode: multiply;
}
.video-banner .banner-title {
  font-size: 110px;
  font-weight: 600;
  line-height: 100px;
}
@media only screen and (max-width: 991px) {
  .video-banner .banner-title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .video-banner .banner-title {
    font-size: 40px;
    font-weight: 400;
  }
}
@media only screen and (max-width: 767px) {
  .video-banner a.hl-btn:link {
    padding: 13px 14px 9px;
  }
}
@media only screen and (max-width: 575px) {
  .video-banner a.hl-btn:link {
    font-size: 12px;
  }
}

.movie-details .description {
  font-family: Dosis;
  font-size: 20px;
  line-height: 27px;
}
.movie-details .movie-production .list {
  font-family: var(--heading-font);
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 300;
}
.movie-details .movie-production .list:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (max-width: 575px) {
  .movie-details .movie-production .list {
    font-size: 20px;
  }
}
.movie-details .movie-production .value {
  color: var(--paragraph-color);
  text-transform: capitalize;
  font-weight: 300;
}

.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 25px;
  display: inline-block;
  position: relative;
  max-width: 200px;
  border-left: 1px solid #1e1e1e;
}
@media only screen and (max-width: 575px) {
  .movie-casting .cast--item {
    border-left: 0;
  }
}
.movie-casting .cast--item:not(:last-child)::after {
  content: url(../images/cast/cast-left-line.html);
  position: absolute;
  top: -1px;
  right: -7.5px;
  bottom: -1px;
}
.movie-casting .cast--item:hover .person {
  transform: scale(1.1);
}
.movie-casting .cast--item:first-child {
  border-left: 0;
}
.movie-casting .cast--thumb {
  margin-bottom: 16px;
  -webkit-mask-image: url(../images/round-star.png);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-clip: border-box;
  mask-image: url(../images/round-star.png);
  mask-size: 100% 100%;
  mask-clip: border-box;
}
.movie-casting .cast--thumb img {
  transition: transform 300ms ease-out;
}
.movie-casting .cast--name {
  font-size: 24px;
  font-weight: 300;
}

.blog-main-item-01 {
  position: relative;
  background: var(
    --Bg-background,
    linear-gradient(95deg, #181818 7.27%, #151515 99.21%)
  );
  border-radius: 30px;
}
.blog-main-item-01 + .blog-main-item-01 {
  margin-top: 40px;
}
.blog-main-item-01 .thumbnail {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}
.blog-main-item-01 .thumbnail img {
  transition: all 300ms ease-in-out;
  height: auto;
}
.blog-main-item-01 .content {
  padding: 22px 30px 30px;
}
@media only screen and (max-width: 575px) {
  .blog-main-item-01 .content {
    padding: 22px 15px 30px;
  }
}
.blog-main-item-01 .content .post-meta-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1px;
  flex-wrap: wrap;
  align-items: center;
}
.blog-main-item-01 .content .post-meta-wrap .social-icon li {
  padding-left: 0;
  margin-top: 0;
}
.blog-main-item-01 .content .title {
  font-size: 45px;
  line-height: 1;
  margin-top: 0;
  transition: all 300ms;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-family: var(--heading-font);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .blog-main-item-01 .content .title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 360px) {
  .blog-main-item-01 .content .title {
    font-size: 24px;
  }
}
.blog-main-item-01 .content .title:hover {
  color: var(--primary-color);
}
.blog-main-item-01 .content p {
  margin-bottom: 26px;
}
.blog-main-item-01 .content .post-author {
  display: flex;
  align-items: center;
}
.blog-main-item-01 .content .post-author .author-image {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 15px;
}
.blog-main-item-01 .content .post-author a {
  color: #001b61;
  font-size: 16px;
  font-weight: 700;
}
.blog-main-item-01 .blog-bottom .btn {
  padding: 11px 18px 8px 18px;
  color: #999;
  border-radius: 10px;
  font-family: var(--heading-font);
  text-transform: uppercase;
}
.blog-main-item-01 .blog-bottom .btn svg {
  margin-top: -2px;
}
.blog-main-item-01 .blog-bottom .btn:hover {
  color: #fff;
}
.blog-main-item-01 .blog-bottom .btn:hover svg path {
  fill: #fff;
}
.blog-main-item-01 .blog-bottom .read-btn-text {
  font-weight: 500;
  color: var(--primary-color);
}

.post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 5px;
}
.post-meta li {
  display: inline-block;
  line-height: 1.6;
  font-family: var(--heading-font);
  font-weight: 400;
  position: relative;
  z-index: 0;
  padding-left: 0;
  text-transform: capitalize;
  color: #fff;
  list-style: none !important;
  text-transform: uppercase;
  padding-left: 0 !important;
}
@media only screen and (max-width: 575px) {
  .post-meta li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 360px) {
  .post-meta li {
    font-size: 13px;
  }
}
.post-meta li:before {
  display: none !important;
}
.post-meta li + li {
  margin-top: 0;
  margin-bottom: 5px;
  margin-left: 22px;
}
.post-meta li + li:after {
  content: "/";
  position: absolute;
  left: -17px;
  top: 0;
  color: #c3c3c3;
}
.post-meta li svg {
  margin-top: -3px;
  margin-right: 4px;
  color: var(--primary-color);
}
@media only screen and (max-width: 360px) {
  .post-meta li svg {
    width: 13px;
  }
}
.post-meta li.white {
  color: #ffffff;
}
.post-meta li.white span {
  color: #ffffff;
}
.post-meta li span {
  color: var(--heading-color);
}
.post-meta li span.white {
  color: #ffffff;
}
.post-meta li a {
  transition: all 300ms;
  margin-right: 1px;
}
.post-meta li .posted-on .entry-date.white {
  color: #ffffff;
}
.post-meta li .posted-on i {
  margin-right: 10px;
  color: var(--primary-color);
}

blockquote {
  background: var(
    --Bg-background,
    linear-gradient(95deg, #181818 7.27%, #151515 99.21%)
  );
  border-radius: 30px;
  padding: 40px 100px;
  margin-top: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  font-style: italic;
  font-size: 18px;
}
blockquote p {
  color: var(--heading-color);
  text-transform: capitalize;
  font-weight: 700;
}
blockquote .name {
  text-decoration: underline;
}

blockquote svg {
  position: absolute;
  z-index: -1;
  top: 50px;
  left: 40px;
  color: var(--primary-color);
  font-size: 30px !important;
  line-height: 0.8;
}

.blog-content-page .thumbnail {
  margin-bottom: 10px;
}
.blog-content-page .thumbnail img {
  border-radius: 30px;
}
@media only screen and (max-width: 575px) {
  .blog-content-page .thumbnail img {
    font-size: 15px;
  }
}

.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: 360px) {
  .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 .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;
}

.col-lg-12 .blog.style-2 .thumb img {
  width: 100%;
}
.col-lg-12 .blog.style-2 .content .blog-title {
  font-size: 60px;
  line-height: 1.1;
}

.col-lg-6 .blog.style-2 .content .blog-title {
  font-size: 35px;
  line-height: 1.1;
}

.col-lg-4 .blog.style-2 .thumb img {
  min-height: 210px;
}

.col-lg-3 .blog.style-2 .thumb img {
  min-height: 190px;
}

.privacy-policy .table-content {
  border-radius: 20px;
  background: var(--bg-primary);
  padding: 40px 30px;
  position: sticky;
  top: 40px;
}
.privacy-policy .table-content .section-title {
  font-size: 35px;
}
@media only screen and (max-width: 575px) {
  .privacy-policy .table-content .section-title {
    font-size: 30px;
  }
}
.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;
  list-style: none;
}
.privacy-policy .table-content .content-item a {
  font-weight: 400;
}
.privacy-policy .content-block .terms .section-title {
  font-size: 35px;
}
@media only screen and (max-width: 575px) {
  .privacy-policy .content-block .terms .section-title {
    font-size: 24px;
  }
}
.privacy-policy .content-block .terms .description {
  font-size: 18px;
  margin-bottom: 0;
}
.privacy-policy .content-block .terms .description:not(:last-child) {
  margin-bottom: 20px;
}
.privacy-policy .content-block .terms:not(:first-child) {
  padding-top: 40px;
}

.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: 575px) {
  .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%;
  }
}
.playlist--item .thumb img {
  transition: transform 300ms ease-out;
}
.playlist--item .remove-btn {
  font-family: var(--heading-font);
  display: flex;
  align-items: center;
  padding: 17.5px 31px;
  min-width: 170px;
}
.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);
}

.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-area .social-media {
  margin: 0;
  padding: 0;
}
.coming-soon-area .social-media li {
  list-style: none;
}
.coming-soon-area .social-media--link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1d1d1d;
  color: #e2e2e2;
}
.coming-soon-area .social-media--link:hover {
  background: linear-gradient(92deg, #5a0dff 0%, #ff29b8 38.6%, #ff581c 97.73%);
}

.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: 360px) {
  .coming-soon-inner .sub-title {
    font-size: 14px;
  }
}
@media only screen and (max-width: 360px) {
  .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: 28px;
  margin-bottom: 28px;
}
@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: 360px) {
  .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 p {
  margin: 0;
}
.coming-soon-inner .subscribe-from br {
  display: none;
}
.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: 360px) {
  .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;
  }
}

.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;
}

/*---------------------
    ## Breadcumb
----------------------*/
.breadcrumb-wrap.navbar- .breadcrumb-content {
  padding: 120px 0 125px 0;
}

.breadcrumb-wrap.navbar- .breadcrumb-content .page-list li:not(:first-child) {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-left: 0px !important;
}
.breadcrumb-wrap.navbar-
  .breadcrumb-content
  .page-list
  li:not(:last-child)::after {
  content: unset;
}
.breadcrumb-wrap.navbar-
  .breadcrumb-content
  .page-list
  li:not(:first-child)::before {
  content: "/";
}

@media only screen and (max-width: 575px) {
  .breadcrumb-wrap.navbar- .breadcrumb-content {
    padding: 60px 0 75px 0;
  }
}

.breadcrumb-wrap {
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.breadcrumb-wrap:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  font-weight: 600;
}
.breadcrumb-wrap .breadcrumb-content {
  padding: 155px 0 155px 0;
  position: relative;
  z-index: 2;
}
.breadcrumb-wrap .page-title {
  font-size: 60px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.1;
}
@media only screen and (max-width: 991px) {
  .breadcrumb-wrap .page-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .breadcrumb-wrap .page-title {
    font-size: 30px;
  }
}
.breadcrumb-wrap p {
  display: inline-block;
  padding: 5px 20px;
  text-transform: uppercase;
  background-color: var(--primary-color);
  font-size: 14px;
  line-height: 20px;
  max-width: 600px;
  color: #c5c5c5;
  margin-bottom: 20px;
}
.breadcrumb-wrap .page-list {
  margin: 0;
  padding-left: 0;
}
.breadcrumb-wrap .page-list li {
  display: inline-block;
  position: relative;
  font-size: 18px;
  color: #999;
  padding-left: 5px;
  text-transform: uppercase;
  font-family: var(--heading-font);
  padding-right: 21px;
}
@media only screen and (max-width: 575px) {
  .breadcrumb-wrap .page-list li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 360px) {
  .breadcrumb-wrap .page-list li {
    font-size: 14px;
  }
}
.breadcrumb-wrap .page-list li:after {
  position: absolute;
  right: 4px;
  top: -1px;
  content: "/";
  font-family: "Font Awesome 5 Free";
  color: #999;
  font-weight: 600;
}
.breadcrumb-wrap .page-list li:last-child {
  padding-right: 0;
}
.breadcrumb-wrap .page-list li:last-child:after {
  display: none;
}
.breadcrumb-wrap .page-list li a {
  color: #999;
  transition: 0.4s;
}
.breadcrumb-wrap .page-list li a:hover {
  color: var(--primary-color);
}

.breadcrumb-wrap-bg {
  width: 100%;
  height: 100%;
  background-image: url(../images/breadcrumb.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.navbar-area.navbar-area-2 {
  position: absolute;
  top: 0;
  width: 100%;
}
.navbar-area.navbar-area-2 .custom-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: 7px 40px;
}
.navbar-area.navbar-area-2 .custom-container.container {
  max-width: 1400px;
}
@media only screen and (max-width: 1199px) {
  .navbar-area.navbar-area-2 .custom-container {
    padding: 20px;
  }
}
.navbar-area.navbar-area-2
  .custom-container
  .navbar-collapse
  .navbar-nav
  > li
  > a {
  position: relative;
  padding-left: 27px;
  text-transform: uppercase;
}
.navbar-area.navbar-area-2
  .custom-container
  .navbar-collapse
  .navbar-nav
  > li
  > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 18px;
  width: 18px;
  background-size: 100% 100% !important;
  transform: translateY(-50%);
  margin-top: -2px;
}
.navbar-area.navbar-area-2
  .custom-container
  .navbar-collapse
  .navbar-nav
  > li.nav-home
  a:before {
  background: url("../images/icons/home.png");
}
.navbar-area.navbar-area-2
  .custom-container
  .navbar-collapse
  .navbar-nav
  > li.nav-movie
  a:before {
  background: url("../images/icons/movie.png");
}
.navbar-area.navbar-area-2
  .custom-container
  .navbar-collapse
  .navbar-nav
  > li.nav-show
  a:before {
  background: url("../images/icons/show.png");
}
.navbar-area.navbar-area-2
  .custom-container
  .navbar-collapse
  .navbar-nav
  > li.nav-pages
  a:before {
  background: url("../images/icons/pages.png");
}
.navbar-area.navbar-area-2
  .custom-container
  .navbar-collapse
  .navbar-nav
  > li.nav-faq
  a:before {
  background: url("../images/icons/faq.png");
}
.navbar-area.navbar-area-2
  .custom-container
  .navbar-collapse
  .navbar-nav
  > li.menu-item-has-children
  > a {
  padding-right: 25px;
}
.navbar-area.navbar-area-2
  .custom-container
  .navbar-collapse
  .navbar-nav
  > li.menu-item-has-children
  > a:after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  height: 18px;
  width: 18px;
  background-size: cover;
  transform: translateY(-50%);
  margin-top: 5px;
  background: url("../images/icons/arrow.png");
  background-repeat: no-repeat;
}

.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: 360px) {
  .nav-right-part .header_search_box.show_box {
    margin-right: -35px;
  }
}

.logged-in.admin-bar .navbar-area.navbar-area-2 {
  top: 32px;
}
.logged-in.admin-bar .navbar-area.navbar-area-2.navber-style-2 {
  top: 0px;
}

/*----------------------------
    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: 360px) {
  .popup_mobile_menu .menu {
    padding: 25px 30px;
  }
}
.popup_mobile_menu .menu__top .menu_header {
  padding-bottom: 50px;
  padding-top: 30px;
}
.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: 360px) {
  .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("../images/icons/downarrow.png");
  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:hover,
.mobile_menu_nav .menu-item-has-children .sub-menu li a.current {
  padding-left: 7px;
  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("../images/icons/uparrow.png");
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.4s;
}

/*-----------------------
    Error 404 Page
-----------------------*/
.error-404 {
  text-align: center;
}
.error-404 .thumb {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .error-404 .thumb svg {
    height: 180px;
    width: 180px;
  }
}
@media only screen and (max-width: 575px) {
  .error-404 .thumb svg {
    height: 150px;
    width: 150px;
  }
}
.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(
    --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;
}
.error-404 .title .hover-title {
  color: #fff;
  position: absolute;
  left: -16px;
  top: 0;
}
@media only screen and (max-width: 991px) {
  .error-404 .title .hover-title {
    left: -10px;
  }
}
@media only screen and (max-width: 575px) {
  .error-404 .title .hover-title {
    left: -4px;
  }
}
@media only screen and (max-width: 991px) {
  .error-404 .title {
    font-size: 150px;
  }
}
@media only screen and (max-width: 575px) {
  .error-404 .title {
    font-size: 100px;
  }
}
.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: 24px;
  }
}
.error-404 .search-form {
  position: relative;
  z-index: 0;
  margin-top: 36px;
}
.error-404 .search-form .form-control {
  height: 56px;
  padding: 0 20px;
  border-radius: 30px;
}
.error-404 .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  text-align: center;
  padding: 0;
  height: 55px;
  background-color: var(--primary-color);
  border: 0;
  font-size: 18px;
  border-radius: 0 30px 30px 0;
  color: #fff;
  cursor: pointer;
  outline: 0;
  box-shadow: none;
}
.error-404 .btn-wrap .hl-btn {
  font-weight: 400;
}

/*-----------------------
    No Result
-----------------------*/
.no-results.not-found .page-title {
  font-size: 50px;
  text-transform: capitalize;
  line-height: 46px;
}
@media only screen and (max-width: 575px) {
  .no-results.not-found .page-title {
    font-size: 35px;
  }
}

.no-results.not-found .search-form {
  position: relative;
  margin-top: 40px;
}

.no-results.not-found .search-form .form-control {
  height: 60px;
  padding: 0 80px 0 25px;
  font-size: 14px;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--Linear, rgba(255, 255, 255, 0.27));
  border-radius: 10px;
  color: #fff;
}

.no-results.not-found .search-form .form-control::placeholder {
  color: #999;
}

.no-results.not-found .search-form .submit-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 50px;
  height: 50px;
  color: #fff;
  border: 0;
  font-size: 18px;
  border-radius: 10px;
  padding: 0;
  text-align: center;
  transition: 0.3s ease-in;
  cursor: pointer;
  outline: 0 !important;
}

/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/
aside {
  background: var(
    --Bg-background,
    linear-gradient(95deg, #181818 7.27%, #151515 99.21%)
  );
  border-radius: 30px;
  padding: 30px;
}
aside .widget {
  margin-bottom: 30px;
}
aside .widget + .widget {
  border-top: 1px solid #1e1e1e;
  padding-top: 30px;
}
@media only screen and (max-width: 991px) {
  aside {
    margin-top: 70px;
  }
}

.widget {
  margin-bottom: 40px;
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget ul li {
  margin: 8px 0;
  display: block;
  -ms-word-wrap: break-word;
  word-break: break-word;
  color: #999;
}
.widget ul li + li {
  margin-top: 10px;
}
.widget ul li:before {
  display: none;
}
.widget ul li:last-child {
  margin-bottom: 0;
}
.widget ul li:first-child {
  margin-top: 0;
}
.widget ul li a {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.widget ul li ul {
  margin-left: 20px;
  margin-top: 10px;
}
.widget ul li ul.sub-menu {
  position: initial;
  visibility: visible;
  opacity: 1;
  background-color: transparent;
  border-top: none;
  box-shadow: none;
  margin-top: 10px;
}
.widget ul li ul.sub-menu li a {
  padding: 0 0 0 10px;
}
.widget ul li ul.sub-menu li a:hover {
  background-color: transparent;
}
.widget > h1,
.widget > h2,
.widget > h3,
.widget > h4,
.widget > h5,
.widget > h6,
.widget .widget-headline {
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  z-index: 0;
  margin-bottom: 6px;
  padding-bottom: 8px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.widget select {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid #404040;
  position: relative;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>");
  background-repeat: no-repeat;
  background-position-y: 55%;
  background-position-x: 92%;
  color: var(--paragraph-color);
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .footer-widget {
  background-color: transparent !important;
  padding: 0;
  margin-bottom: 40px;
}

.widget.widget_nav_menu ul li.menu-item-has-children:after {
  display: none;
}

.widget ul li,
.comments-area .comment-list li,
.comments-area .comment-list li.comment {
  padding-left: 0;
}

.widget_recent_comments ul li .comment-author-link {
  font-weight: 600;
  display: block;
  color: #fff;
}

.widget_recent_comments ul li + li {
  border-top: 1px dashed var(--border-color);
  padding-top: 15px;
  margin-top: 15px !important;
}

.widget_meta ul li + li {
  border-top: 1px dashed var(--border-color);
  padding-top: 15px;
  margin-top: 15px !important;
}

.comments-area .comment-list li:before,
.comments-area .comment-list li.comment:before {
  display: none;
}

.widget-nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget-nav-menu ul li + li {
  border-top: 1px solid #2c3e88;
}

.footer-widget .widget_search .search-form .form-group .form-control {
  color: #fff;
}

.widget_search .post-inside-wrapper {
  position: relative;
}
.widget_search .search-form {
  position: relative;
}
.widget_search .search-form .form-group {
  margin-bottom: 0;
}
.widget_search .search-form .form-group .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 .search-form .form-group .form-control::placeholder {
  color: #999;
}
.widget_search .search-form .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%;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.widget_search .search-form .submit-btn:hover {
  background-position: 90% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.widget_author_meta ul {
  margin-top: 25px;
}
.widget_author_meta ul li {
  display: inline-block;
}
.widget_author_meta ul li .content .title {
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.widget_author_meta ul li .content .post-meta a {
  font-size: 14px;
  font-weight: 500;
  color: #707070;
  text-transform: uppercase;
}
.widget_author_meta ul li .content .post-meta a + a {
  margin-left: 15px;
}
.widget_author_meta ul li .content .post-meta span {
  color: #fff;
}

.widget_tag_cloud .tagcloud a {
  display: inline-flex;
  justify-content: center;
  padding: 7px 15px 5px;
  text-transform: uppercase;
  font-size: 15px !important;
  margin-right: 7px;
  margin-bottom: 10px;
  transition: all 300ms;
  color: #999;
  font-weight: 400;
  border-radius: 10px;
  border: 1px solid #1e1e1e;
  font-family: var(--heading-font);
}
.widget_tag_cloud .tagcloud a:hover {
  background: var(--gradient-color);
  color: #fff;
}

.widget_subscribe .subscibe-wrapper {
  display: flex;
  padding-top: 120px;
  border-bottom: 1px solid #404040;
  padding-bottom: 50px;
}
.widget_subscribe .subscibe-wrapper .content .title {
  font-size: 28px;
  line-height: 1.6;
  font-family: var(--heading-font);
  color: #fff;
}
.widget_subscribe .subscibe-wrapper .subscribe-forms {
  flex: 1;
  margin-left: 85px;
  position: relative;
  z-index: 0;
}
.widget_subscribe .subscibe-wrapper .subscribe-forms .form-group {
  margin-bottom: 0;
}
.widget_subscribe .subscibe-wrapper .subscribe-forms .form-group .form-control {
  font-size: 18px;
  font-family: var(--body-font);
  font-weight: 400;
  width: 100%;
  padding: 0px 165px 0px 25px;
  border-radius: 6px;
  background: #ffffff;
  height: 80px;
}
.widget_subscribe
  .subscibe-wrapper
  .subscribe-forms
  .form-group
  .form-control::placeholder {
  color: #b9b9b9;
}
.widget_subscribe .subscibe-wrapper .subscribe-forms .form-group .btn-wrap {
  position: absolute;
  top: 31px;
  right: 28px;
}
.widget_subscribe
  .subscibe-wrapper
  .subscribe-forms
  .form-group
  .btn-wrap
  .subscribe-btn {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  font-family: var(--body-font);
  color: var(--primary-color);
  text-transform: uppercase;
  border-left: 2px solid #b9b9b9;
  padding-left: 10px;
  border: 0;
  background: transparent;
  outline: 0;
}

.widget_nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget_nav_menu ul li {
  margin: 10px 0;
}
.widget_nav_menu ul li:last-child {
  margin-bottom: 0;
}
.widget_nav_menu ul li:first-child {
  margin-top: 0;
}
.widget_nav_menu ul li a {
  border: none;
  position: relative;
}
.widget_nav_menu ul li a:hover:after {
  color: var(--primary-color);
}
.widget_nav_menu ul li > ul {
  margin-left: 15px;
}

.widget_rss li + li {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px dashed var(--border-color);
}

.widget.widget_archive ul li:first-child {
  padding-top: 0;
}
.widget.widget_archive ul li + li {
  margin-top: 10px;
}
.widget.widget_archive ul li:last-child {
  border-bottom: none;
}
.widget.widget_archive ul li a i {
  color: var(--primary-color);
  margin-right: 5px;
}

.widget ul.widget_categories li + li {
  margin-top: 10px;
}

.widget_archive ul li a {
  font-size: 16px;
  line-height: 28px;
  font-family: var(--body-font);
  font-weight: 400;
}
.widget_archive ul li svg {
  margin-right: 10px;
  margin-top: -5px;
}

.widget.footer-widget.widget_calendar table {
  margin-bottom: 0;
}

.widget.elementor-widget-wp-widget-flynext_request_form_widget,
.widget.flynext-request-form-widget {
  padding: 0;
}
.widget .request-form-widget {
  padding: 25px 25px 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  position: relative;
  z-index: 0;
}
.widget .request-form-widget:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  position: absolute;
  z-index: -1;
  background-color: rgba(17, 13, 14, 0.85);
}
.widget .request-form-widget .widget-headline {
  color: #fff;
}

.widget.footer-widget {
  background-color: transparent !important;
  padding: 0;
  margin-bottom: 40px;
  box-shadow: initial;
}
.widget.footer-widget select {
  color: #e2e2e2;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='16' height='16' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='white'/></g></svg>");
}
.widget.footer-widget select option {
  color: var(--heading-color);
}
.widget.footer-widget .widget-headline {
  color: #fff;
  position: relative;
  margin-bottom: 15px;
  font-size: 30px;
  font-family: var(--heading-font);
  line-height: 28px;
  padding-left: 0;
  z-index: 0;
}
.widget.footer-widget .widget-headline:after {
  display: none;
}
.widget.footer-widget .widget-headline:before {
  display: none;
}
.widget.footer-widget .widget-headline p {
  color: #fff;
  font-size: 14px;
}
.widget.footer-widget ul li {
  color: #e2e2e2;
  position: relative;
}
.widget.footer-widget ul li a {
  color: #e2e2e2;
  position: relative;
}
.widget.footer-widget ul li a:hover {
  transition: 0.5s all;
  color: var(--primary-color);
}
.widget.footer-widget.widget_tag_cloud .tagcloud {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_tag_cloud .tagcloud a {
  font-size: 14px;
}
.widget.footer-widget.widget_recent_comments ul li a:after {
  display: none;
}
.widget.footer-widget.widget_recent_comments ul li a:hover {
  padding-left: 0;
}
.widget.footer-widget.widget_calendar table th {
  border: 1px solid #404040;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_calendar table th a {
  font-weight: 600;
  text-decoration: underline;
}
.widget.footer-widget.widget_calendar table td {
  border: 1px solid #404040;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_calendar table td a {
  font-weight: 600;
  text-decoration: underline;
}
.widget.footer-widget .subscribe-form .form-group .form-control {
  background-color: #515457;
  color: #fff;
}
.widget.footer-widget
  .subscribe-form
  .form-group
  .form-control::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(255, 255, 255, 0.6);
}
.widget.footer-widget
  .subscribe-form
  .form-group
  .form-control:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 255, 255, 0.6);
}
.widget.footer-widget
  .subscribe-form
  .form-group
  .form-control::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 255, 255, 0.6);
}
.widget.footer-widget
  .subscribe-form
  .form-group
  .form-control:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 255, 255, 0.6);
}
.widget.footer-widget .subscribe-form .submit-btn:hover {
  background-color: #fff;
  color: var(--primary-color);
}
.widget.footer-widget .wp-calendar-nav {
  padding: 8px 0;
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-prev {
  color: #fff;
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-prev:hover {
  color: var(--primary-color);
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-next {
  color: #fff;
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-next:hover {
  color: var(--primary-color);
}

.widget ul > li:last-child {
  padding-bottom: 0;
}
.widget img {
  height: auto;
}

.footer-widget.widget_nav_menu ul li a {
  position: relative;
  color: #999;
}

.footer-widget.widget.widget_nav_menu ul li {
  margin: 0;
}

.footer-style .footer-wrap {
  background-color: var(--heading-color);
}

.footer-wrap .footer-top .footer-widget .menu li ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget_tag_cloud.footer-widget .tagcloud a {
  color: v #999;
}
.widget_tag_cloud.footer-widget .tagcloud a:hover {
  color: #fff;
}

.wp-block-calendar caption {
  caption-side: top;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  color: var(--heading-color);
  background-color: #404040;
}

.widget_calendar caption {
  caption-side: top;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  color: var(--heading-color);
  background-color: #404040;
}

.wp-block-calendar table th {
  background-color: transparent;
}

.widget_recent_comments ul li {
  position: relative;
}

.widget .widget_calendar caption {
  color: var(--paragraph-color);
}

.widget_calendar table td {
  border: 1px solid #404040;
  padding: 8px;
  color: #999;
}
.widget_calendar table th {
  border: 1px solid #404040;
  padding: 8px;
  color: #999;
}

#wp-calendar {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}
#wp-calendar th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  color: #999;
}

.footer-widget .theme-recent-post-wrap li.theme-recent-post-item + li {
  border-top: initial;
  padding-top: 0;
}

.theme-recent-post-wrap {
  margin: 0;
  padding: 0;
  list-style: none;
}
.theme-recent-post-wrap li.theme-recent-post-item {
  display: flex;
  align-self: flex-start;
  align-items: center;
  margin-bottom: 0;
}
.theme-recent-post-wrap li.theme-recent-post-item + .theme-recent-post-item {
  margin-top: 15px;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb {
  width: 80px;
  height: 80px;
  margin-right: 12px;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb a:before {
  display: none;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb a:hover {
  padding-left: 0;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb a:after {
  display: none;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb img {
  border-radius: 7px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content {
  flex: 1;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .cat {
  background-image: linear-gradient(
    to right,
    #5a0dff -5%,
    #ff29b8 31%,
    #ff581c
  );
  font-family: var(--heading-font);
  font-weight: 400;
  height: 28px;
  line-height: 28px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 10px;
  font-size: 14px;
  border-radius: 6px;
  margin-right: 15px;
  color: #fff;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 8px;
  font-size: 18px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title:hover a {
  color: var(--primary-color) !important;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a {
  padding-left: 0;
  color: var(--heading-color);
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a:hover {
  color: var(--primary-color);
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a:before {
  display: none;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a:after {
  display: none;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .author a {
  font-size: 14px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .time {
  font-size: 13px;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 5px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .time svg,
.theme-recent-post-wrap li.theme-recent-post-item .content .time i {
  color: var(--primary-color);
  padding-right: 5px;
  margin-top: -2px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .time svg {
  font-size: 20px;
}
.theme-recent-post-wrap li.theme-recent-post-item .post-meta {
  margin: 0;
  padding: 0;
}
.theme-recent-post-wrap li.theme-recent-post-item .post-meta li {
  display: inline-block;
}
.theme-recent-post-wrap li.theme-recent-post-item .post-meta li + li {
  padding-left: 10px;
  margin-left: 10px;
}

.widget.footer-widget ul.theme-recent-post-wrap li a {
  font-size: 14px !important;
}

.footer-nav-widget .widget-headline {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-nav-widget p {
  color: #fff;
  margin-bottom: 0;
}

.about_us_widget .footer-logo {
  margin-bottom: 22px;
  display: block;
}
.about_us_widget p {
  margin-bottom: 0;
  color: #fff;
}
.about_us_widget p svg {
  color: var(--primary-color);
  margin-right: 10px;
}
.about_us_widget p + p {
  font-weight: 500;
}
.about_us_widget p span {
  color: #f8f8f8;
}
.about_us_widget .email {
  margin-bottom: 8px;
}
.about_us_widget .fax {
  margin-bottom: 0;
}
.about_us_widget .contact_info_list {
  margin-top: 20px;
}
.about_us_widget .contact_info_list li {
  display: inline-block;
  margin-right: 8px;
}
.about_us_widget .contact_info_list li a {
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  background: #333f4d;
  color: #fff;
  font-size: 13px !important;
}
.about_us_widget .contact_info_list li a:hover {
  background: var(--primary-color);
  color: #fff !important;
}
.about_us_widget .subscribe {
  position: relative;
}
.about_us_widget .subscribe input {
  width: 100%;
  height: 44px;
  padding: 0 50px 0 15px;
  border-radius: 5px;
  border: 1px solid #404040;
  box-shadow: none;
  outline: 0;
}
.about_us_widget .subscribe button {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 5px 5px 0;
  height: 44px;
  width: 40px;
  border: 0;
  background: var(--primary-color);
  color: #fff;
  font-size: 15px;
  transition: 0.4s;
}
.about_us_widget .subscribe button:hover {
  background: var(--heading-color);
}

/******** widget-contact *********/
.widget_contact .details {
  padding: 0;
}
.widget_contact .details li {
  margin-bottom: 15px;
  position: relative;
  list-style: none;
  font-size: 16px !important;
  color: var(--paragraph-color) !important;
}
.widget_contact .details li span {
  color: var(--paragraph-color);
}
.widget_contact .details li i {
  margin-right: 14px;
  color: var(--primary-color);
}
.widget_contact .details li svg {
  margin-right: 14px;
  color: var(--primary-color);
}
.widget_contact .details li:last-child {
  margin-bottom: 0;
}
.widget_contact .details li .time {
  font-size: 12px;
  margin-top: 3px;
}
.widget_contact .social-media li {
  display: inline-block;
}
.widget_contact .social-media li a {
  border: 1px solid var(--paragraph-color);
  background: transparent;
  height: 30px;
  width: 30px;
  line-height: 28px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  margin-right: 6px;
}
.widget_contact .social-media li a svg {
  margin-right: 0;
  transition: 0.4s;
  font-size: 14px;
}
.widget_contact .social-media li a:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.widget_contact .social-media li a:hover svg {
  color: #fff !important;
}

.widget-testimonial .icon {
  font-size: 70px;
  line-height: 60px;
  color: var(--primary-color);
  margin-bottom: 16px;
}
.widget-testimonial p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.widget-testimonial .author-meta {
  display: flex;
  align-self: flex-start;
  margin-top: 24px;
}
.widget-testimonial .author-meta .thumb {
  margin-right: 20px;
}
.widget-testimonial .author-meta .thumb img {
  max-width: 80px;
  height: 80px;
  border-radius: 50%;
}
.widget-testimonial .author-meta .content {
  flex: 1;
  margin-top: 15px;
}
.widget-testimonial .author-meta .content .name {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 0;
}
.widget-testimonial .author-meta .content .designation {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.widget.widget_media_gallery .gallery {
  margin: 0;
  padding: 0;
}
.widget.widget_media_gallery .gallery li {
  display: inline-block;
  margin-bottom: 10px;
}
.widget.widget_media_gallery .gallery li + li {
  margin-left: 10px;
}

.about_me_widget .content {
  text-align: center;
}
.about_me_widget .content .thumb {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: auto;
}
.about_me_widget .content .thumb img {
  border-radius: 50%;
}
.about_me_widget .content .title {
  font-size: 18px;
  margin-top: 30px;
}
.about_me_widget .content p {
  padding-top: 10px;
}

.about-us-widget img {
  margin-bottom: 20px;
}
.about-us-widget p {
  color: #fff;
  max-width: 340px;
}

.about_me_two_widget p {
  font-size: 16px;
  line-height: 26px;
}
.about_me_two_widget .content-wrap {
  display: flex;
  margin-top: 20px;
}
.about_me_two_widget .thumb {
  width: 60px;
  margin-right: 20px;
}
.about_me_two_widget .title {
  font-size: 20px;
  font-weight: 600;
}
.about_me_two_widget .designation {
  color: var(--primary-color);
}

.widget.widget_media_image ul li {
  display: inline-block;
  position: relative;
  z-index: 0;
}
.widget.widget_media_image ul li:hover::after {
  opacity: 1;
  visibility: visible;
}
.widget.widget_media_image ul li:hover i {
  opacity: 1;
  visibility: visible;
}
.widget.widget_media_image ul li::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 5px;
  top: 0;
  right: 5px;
  bottom: 0;
  background: rgba(221, 19, 26, 0.43);
  border-radius: 4px;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
}
.widget.widget_media_image ul li img {
  max-width: 94px;
  padding: 0px 5px;
}
.widget.widget_media_image ul li i {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
}

.custom-logo-link img,
.site-logo img,
.footer-logo img {
  max-width: 150px !important;
}

.widget .elementor-widget-container > h1,
.widget .elementor-widget-container > h2,
.widget .elementor-widget-container > h3,
.widget .elementor-widget-container > h4,
.widget .elementor-widget-container > h5,
.widget .elementor-widget-container > h6 {
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  font-family: var(--body-font);
}
.widget .elementor-widget-container > h1:after,
.widget .elementor-widget-container > h2:after,
.widget .elementor-widget-container > h3:after,
.widget .elementor-widget-container > h4:after,
.widget .elementor-widget-container > h5:after,
.widget .elementor-widget-container > h6:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 18px;
  width: 4px;
  background-color: var(--primary-color);
}

.wp-block-group__inner-container > h1,
.wp-block-group__inner-container > h2,
.wp-block-group__inner-container > h3,
.wp-block-group__inner-container > h4,
.wp-block-group__inner-container > h5,
.wp-block-group__inner-container > h6 {
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  z-index: 0;
  margin-bottom: 6px;
  padding-bottom: 8px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.wp-block-search__label {
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  z-index: 0;
  margin-bottom: 13px;
  padding-bottom: 8px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin-top: 10px;
}

.wp-block-search .wp-block-search__label {
  font-weight: 400;
}

aside .widget_holaa_category ul li svg {
  font-size: 13px;
}
aside .widget_holaa_category ul li a {
  color: #999;
  padding: 12px 20px 12px 20px;
  border-radius: 5px;
  background: #141414;
  width: 100%;
  display: block;
  transition: 0.4s;
}
aside .widget_holaa_category ul li a span {
  float: right;
  margin-top: -2px;
}
aside .widget_holaa_category ul li a:hover {
  color: #fff;
}

.widget_author .author-wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 460px;
  position: relative;
  z-index: 0;
  padding: 40px;
}
.widget_author .author-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--heading-color);
  mix-blend-mode: multiply;
}
.widget_author .author-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 100%;
  border: 10px solid var(--primary-color);
}
.widget_author .author-wrap .thumbnail {
  text-align: center;
  margin-bottom: 25px;
}
.widget_author .author-wrap .content {
  text-align: center;
}
.widget_author .author-wrap .content .author-name {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.widget_author .author-wrap .content p {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #d5d5d5;
  margin-bottom: 0;
}

.theme-recent-post-wrap-title {
  border-top: 1px solid #e5e5e5;
}
.theme-recent-post-wrap-title li {
  border-bottom: 1px solid #e5e5e5;
  margin: 0 !important;
}
.theme-recent-post-wrap-title li a {
  position: relative;
  padding: 15px 10px;
  display: block;
  padding-right: 60px;
  border-radius: 6px;
}
.theme-recent-post-wrap-title li a i {
  float: right;
  padding-top: 3px;
}
.theme-recent-post-wrap-title li a:hover {
  color: var(--primary-color) !important;
}

.widget-info-inner h6 {
  margin-bottom: 4px;
}
.widget-info-inner p {
  margin-bottom: 15px;
  color: var(--paragraph-color) !important;
}
.widget-info-inner p:last-child {
  margin-bottom: 0;
}

.service-sidebar {
  margin-bottom: 110px;
}
.service-sidebar .widget {
  background: #f8f9fc;
  border: 0;
  border-radius: 7px;
}
.service-sidebar .widget .widget-title {
  padding-bottom: 0;
}
.service-sidebar .widget .widget-title svg {
  margin-top: 6px;
  float: left;
  margin-right: 10px;
  font-size: 15px;
}
.service-sidebar .widget .widget-title:before,
.service-sidebar .widget .widget-title:after {
  display: none;
}
.service-sidebar .widget_info {
  padding: 30px;
}
.service-sidebar .widget {
  background: #f8f9fc;
  border: 0;
}
.service-sidebar .widget .widget-headline {
  padding-bottom: 0;
  color: var(--primary-color) !important;
  position: relative;
  font-size: 20px;
  padding-left: 25px;
}
.service-sidebar .widget .widget-headline:before {
  content: "\f061";
  position: absolute;
  left: 2px;
  top: 2px;
  background: transparent;
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
}
.service-sidebar .widget .widget-headline:after {
  display: none;
}
.service-sidebar .widget_catagory .catagory-items {
  border-top: 1px solid #e5e5e5;
}
.service-sidebar .widget_catagory .catagory-items li {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0;
}
.service-sidebar .widget_author {
  padding: 0 !important;
  background: transparent;
}
.service-sidebar .widget_author .thumb img {
  border-radius: 5px;
  max-width: 100%;
  max-height: 100%;
}
.service-sidebar .widget_author .details {
  margin-top: -30px;
  padding: 0;
}
.service-sidebar .holaa-widget-discover-company {
  padding: 0;
}
.service-sidebar .widget_download ul {
  padding: 8px 0 !important;
  background: #fff;
  border-radius: 5px;
}
.service-sidebar .widget_download ul li {
  list-style: none;
}
.service-sidebar .widget_download ul li a {
  padding: 10px 18px;
  display: block;
}
.service-sidebar .widget_download ul li a svg {
  height: 30px;
  width: 30px;
  background: rgba(36, 107, 253, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  padding: 8px;
  float: right;
  transition: 0.4s;
}
.service-sidebar .widget_download ul li a:hover svg {
  background: var(--primary-color);
  color: #fff;
}

.social-media-list {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}
.social-media-list li {
  display: inline-block !important;
  margin: 0 3px !important;
}
.social-media-list li a {
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  background: #333f4d;
  color: #fff;
  font-size: 13px;
}
.social-media-list li a:hover {
  background: var(--primary-color);
  color: #fff;
}
.social-media-list li:first-child {
  margin-left: 0;
}
.social-media-list li:last-child {
  margin-right: 0;
}

.widget_author {
  padding: 20px 0 !important;
}
.widget_author .thumb {
  margin-bottom: 20px;
}
.widget_author .thumb img {
  border-radius: 50%;
  max-width: 180px;
  max-height: 180px;
}
.widget_author .details h5 {
  margin-bottom: 15px;
}
.widget_author .details h6 {
  margin-bottom: 30px;
}
.widget_author .details .social-media-list li a {
  background: #f8f9fc;
  color: var(--primary-color);
  height: 45px;
  width: 45px;
  line-height: 45px;
  font-size: 15px;
}
.widget_author .details .social-media-list li a:hover {
  background: var(--primary-color);
  color: #fff;
}

/*--------------------------------------------------------------
	## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comments-area {
  margin-top: 30px;
}
.comments-area .comments-title {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 38px;
}
.comments-area .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
.comments-area .comment-list .comment-respond {
  margin-bottom: 57px;
}
.comments-area .comment-list .comment-respond {
  margin-top: 37px;
}
.comments-area .comment-list .comment-reply-title {
  font-size: 17px;
  margin-bottom: 15px;
}
.comments-area .comment-list .comment-reply-title small {
  font-size: 16px;
  line-height: 1;
  top: 0;
  margin-bottom: 0;
}
.comments-area .comment-list li:last-child {
  margin-bottom: 0;
}
.comments-area .comment-list li:last-child .single-comment-wrap .thumb .date {
  margin-bottom: 0;
}
.comments-area .comment-list li ul.children {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
}
.comments-area .comment-list li ul.children li {
  margin-left: 50px;
  list-style: none;
}
.comments-area .comment-list li .single-comment-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  --ms-flex-item-align: start;
  align-self: flex-start;
}
.comments-area .comment-list li .single-comment-wrap .thumb {
  margin-right: 20px;
  min-width: 80px;
  border-radius: 50%;
}
.comments-area .comment-list li .single-comment-wrap .thumb img {
  margin-bottom: 10px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.02);
}
.comments-area .comment-list li .single-comment-wrap .date {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 15px;
}
.comments-area .comment-list li .single-comment-wrap .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  max-width: 730px;
}
.comments-area .comment-list li .single-comment-wrap .content .title {
  font-size: 18px;
  line-height: 28px;
  padding-right: 70px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin-bottom: 5px;
}
.comments-area .comment-list li .single-comment-wrap .content .comment-content {
  max-width: 630px;
}
.comments-area .comment-list li .single-comment-wrap .content p {
  word-break: break-word;
}
.comments-area .comment-list li .single-comment-wrap .content p:last-child {
  margin-bottom: 0;
}
.comments-area .comment-list li .single-comment-wrap .content .reply {
  color: var(--primary-color);
}
.comments-area .comment-list li .single-comment-wrap .content .reply:hover {
  color: var(--primary-color);
}
.comments-area
  .comment-list
  li
  .single-comment-wrap
  .content
  .dco-image-attachment {
  position: absolute;
  left: -100px;
  top: 0;
  border-radius: 50%;
  overflow: hidden;
  height: 80px;
  width: 80px;
}
.comments-area
  .comment-list
  li
  .single-comment-wrap
  .content
  .comment-reply-link {
  font-family: var(--heading-font);
  background-image: linear-gradient(
    to right,
    #5a0dff -5%,
    #ff29b8 31%,
    #ff581c,
    #ff29b8,
    #5a0dff
  );
  background-size: 200% 100%;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: var(--primary-color);
  font-size: 13px;
  padding: 4px 13px 3px 13px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}
.comments-area
  .comment-list
  li
  .single-comment-wrap
  .content
  .comment-reply-link:hover {
  color: var(--heading-color);
  background-position: 90% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.comments-area .comment-list li.comment {
  margin-bottom: 30px;
}
.comments-area .comment-list .has-children {
  padding-left: 80px;
}
.comments-area .comment-list ol:not([class]) {
  margin-bottom: 20px;
}
.comments-area .comment-list ol:not([class]) li ol {
  margin-bottom: 0;
}
.comments-area .comment-list .children li:last-child {
  margin-bottom: 30px;
}
.comments-area .comment-list ul:not([class]) {
  margin-bottom: 20px;
}
.comments-area .comment-list ul:not([class]) ul {
  margin-bottom: 0px;
}
.comments-area .reply-title {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 25px;
}
.comments-area .comment-reply-title {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 25px;
}
.comments-area .comment-reply-title small {
  font-size: 26px;
  line-height: 34px;
  color: var(--secondary-color);
  margin-left: 10px;
  display: inline-block;
  position: relative;
  top: 4px;
  margin-bottom: 0;
}
.comments-area .comment-form-wrap {
  padding: 65px 95px 70px;
}
.comments-area .form-submit {
  margin-bottom: 0;
  margin-top: 20px;
}

.blog-content-page-content-area
  .comments-area
  .comment-list
  li
  .single-comment-wrap
  .time {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.comment-form .form-group.textarea .form-control {
  min-height: 150px;
  resize: none;
  line-height: 26px;
}
.comment-form .form-group.textarea .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.comment-form .form-group {
  margin-bottom: 15px;
  position: relative;
}
.comment-form .form-group .form-control {
  height: 60px;
  line-height: 60px;
  border-radius: 10px;
  border: 0;
  border: 1px solid var(--Linear, rgba(255, 255, 255, 0.27));
  padding: 10px 20px;
  padding-right: 35px;
  background: transparent;
  color: #fff;
}
.comment-form .form-group .form-control::placeholder {
  color: #999;
}
.comment-form .btn-wrap .boxed-btn {
  font-size: 14px;
}
.comment-form .submit-btn {
  height: 60px;
  line-height: 62px;
  width: auto;
  border-radius: 10px;
  font-weight: 400;
  background-color: var(--primary-color);
  font-family: var(--heading-font);
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: #fff;
  padding: 0 35px;
  letter-spacing: 1px;
}
.comment-form .submit-btn:hover {
  background-color: var(--heading-color);
  color: #fff;
}
.comment-form .comment-form-attachment span {
  display: none !important;
}

.comment-form-cookies-consent input[type="checkbox"] {
  margin-right: 5px;
}

label[for="wp-comment-cookies-consent"] {
  font-size: 14px;
}

.comment-respond {
  margin-top: 42px;
  border-radius: 30px;
  background: var(
    --Bg-background,
    linear-gradient(95deg, #181818 7.27%, #151515 99.21%)
  );
  padding: 35px;
}

.form-group.textarea {
  width: 100% !important;
  margin-left: 0 !important;
}

.full-width-content
  .comments-area
  .comment-list
  li
  .single-comment-wrap
  .content {
  max-width: 100%;
}

@media only screen and (max-width: 991px) {
  .comments-area .comment-list li .single-comment-wrap .content {
    max-width: calc(100% - 100px);
  }
}
@media only screen and (max-width: 384px) {
  .comments-area .comment-list li .single-comment-wrap {
    display: block;
  }
  .comments-area .comment-list li .single-comment-wrap .content {
    max-width: 100%;
  }
  .comments-area
    .comment-list
    li
    .single-comment-wrap
    .content
    .dco-image-attachment {
    left: 0;
    top: -89px;
  }
}
.footer-area-one {
  border-radius: 80px 80px 0px 0px;
  background: var(
    --Background,
    linear-gradient(95deg, #121212 7.27%, #1f1f1f 99.21%)
  );
}
.footer-area-one .footer-widget-area {
  border-bottom: 1px solid #1e1d1d;
}
@media only screen and (max-width: 360px) {
  .footer-area-one {
    border-radius: 40px 40px 0px 0px;
    background: var(
      --Background,
      linear-gradient(95deg, #181818 7.27%, #1f1f1f 99.21%)
    );
  }
}

.copyright-inner {
  padding: 22px 0 18px;
  color: #999;
}

.footer-area .social-media--item {
  display: inline-block;
}
.footer-area .social-media--item:not(:last-child) {
  margin-right: 5px;
}
.footer-area .social-media--link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1d1d1d;
  color: #e2e2e2;
}
.footer-area .social-media--link:hover {
  background-image: linear-gradient(
    to right,
    #5a0dff -5%,
    #ff29b8 31%,
    #ff581c
  );
}
.footer-area .footer-widget .thumb {
  margin-bottom: 25px;
}
.footer-area .footer-widget .widget-title {
  margin-bottom: 20px;
  font-size: 25px;
}
.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: 12px;
}
.footer-area .footer-widget.widget-more .widget-title {
  line-height: 1.16;
}
.footer-area .widget_holaa_category ul li {
  width: 50%;
  display: inline-block;
  margin-bottom: 0;
}
.footer-area .widget_holaa_category ul li a {
  color: #999;
}
.footer-area .widget_holaa_category ul li a:hover {
  color: #fff;
}
.footer-area .widget_nav_menu {
  padding-left: 60px;
}
@media only screen and (max-width: 1199px) {
  .footer-area .widget_nav_menu {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area .widget_nav_menu {
    padding-left: 0;
  }
}

.footer-top-link ul li:after {
  transform: rotate(17deg);
}

.menu-footer-bottom-menu ul {
  margin: 0;
  padding: 0;
}
.menu-footer-bottom-menu ul li {
  display: inline-block;
  position: relative;
}
.menu-footer-bottom-menu ul li + li {
  padding-left: 15px;
}
.menu-footer-bottom-menu ul li + li:before {
  content: "/";
  position: absolute;
  left: 2px;
  bottom: -1px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home2-app-store-section {
    max-width: 70%;
    margin: 0 auto !important;
  }
}

/*navbar-default*/
.logo-wrapper .site-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #111;
}

.navbar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navbar-nav ul li {
  color: #fff;
  font-size: 14px;
  line-height: 70px;
  display: inline-block;
}
.navbar-nav ul li + li {
  margin-left: 20px;
}

.default-navbar {
  border-bottom: 1px solid rgba(34, 34, 34, 0.7215686275);
  position: absolute;
  width: 100%;
}
.default-navbar .navbar-nav {
  text-align: right;
}

.navbar-area {
  padding: 0;
  z-index: 99;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li {
  display: inline-block;
  text-transform: capitalize;
  line-height: 80px;
  font-weight: 400;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li + li {
  margin-left: 30px;
}
/* .rtl .navbar-area .custom-container .navbar-collapse .navbar-nav li + li {
  margin-left: 0px;
  margin-right: 30px;
} */
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children {
  position: relative;
  z-index: 0;
}
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children:hover
  > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 230px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  border-radius: 20px;
  border: 2px solid rgba(72, 72, 72, 0.2);
  background: var(--bg-primary);
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.rtl
  .navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu {
  text-align: right;
  left: auto;
  right: 0;
}
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  li {
  display: block;
  margin-left: 0;
  line-height: 22px;
  color: #111;
}
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  li
  + li {
  border-top: 1px solid rgba(64, 64, 64, 0.2);
}
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  li
  a {
  display: block;
  padding: 12px 20px;
  white-space: nowrap;
  font-family: var(--body-font);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 14px;
  font-weight: 500;
  color: var(--paragraph-color);
}
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  li
  a:hover {
  color: #e2e2e2;
}
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  li
  a:before {
  display: none;
}
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children
  > .sub-menu {
  left: 100%;
  top: -2px;
  margin-bottom: 0;
  margin-left: 1px;
}
.rtl
  .navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children
  > .sub-menu {
  left: auto;
  right: 100%;
}
.rtl
  .navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children
  > .sub-menu
  .menu-item-has-children
  > .sub-menu {
  left: auto;
  right: 100%;
}
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children
  > .sub-menu
  .sub-menu
  .sub-menu {
  left: auto;
  right: 100%;
}
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children:hover
  > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children:hover
  > .sub-menu
  li:hover:before {
  color: #fff;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li a {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: block;
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 400;
}

.menu-set-up .btn {
  height: 53px;
  line-height: 54px;
  border-radius: 10px;
  padding: 0 25px;
  font-family: var(--heading-font);
  color: #fff;
}

.navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  .menu-item-has-children
  .sub-menu
  .menu-item-has-children
  > a:first-child:after {
  content: "";
  position: absolute;
  background: url("../images/icons/arrow.png");
  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);
}

.rtl
  .navbar-area
  .custom-container
  .navbar-collapse
  .navbar-nav
  .menu-item-has-children
  .sub-menu
  .menu-item-has-children
  > a:first-child:after {
  left: 10px;
  right: auto;
  transform: rotate(90deg);
}

.wp-block-image .alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}

.wp-block-image .alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}

.wp-block-gallery.alignleft {
  margin-right: 20px !important;
  margin-top: 0 !important;
}

.wp-block-button__link {
  margin-bottom: 20px;
}

.wp-block-cover {
  margin-bottom: 20px;
  color: #fff;
}

.wp-block-cover.alignleft {
  margin-top: 0;
}

.wp-block-archives-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}

.wp-block-archives-list li + li {
  margin-top: 10px;
}

.blog-single-content-wrap .thumbnail {
  margin-bottom: 20px;
}
.blog-single-content-wrap .thumbnail img {
  height: auto;
  border-radius: 6px;
}

.blog-single-content-wrap .wp-block-archives-list li:before {
  display: none;
}

.blog-single-content-wrap .wp-block-archives-list li {
  padding-left: 20px;
}

.widget select,
.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
  width: 100%;
  height: 50px;
  background-position-x: 97%;
  border: 1px solid #404040;
  background-position-y: 58%;
  background-color: transparent;
  margin-bottom: 5px;
  color: var(--paragraph-color);
}

.blog-single-content-wrap .wp-block-search .wp-block-search__label:after {
  display: none;
}

.wp-block-latest-comments {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wp-block-latest-comments__comment {
  line-height: 1.6;
}

.wp-block-latest-comments__comment + li {
  border-top: 1px dashed var(--border-color);
  padding-top: 15px;
}

.wp-block-latest-comments__comment:last-child {
  margin-bottom: 0;
}

.wp-block-latest-comments__comment-meta {
  color: #999;
}

.wp-block-latest-comments__comment-meta
  .wp-block-latest-comments__comment-author {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.wp-block-latest-comments__comment-meta a:hover {
  color: var(--primary-color);
}

.wp-block-latest-posts.wp-block-latest-posts__list {
  margin: 0;
  padding: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
  padding-left: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li:before {
  display: none;
}

.wp-block-button.is-style-squared .wp-block-button__link,
.wp-block-button__link.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li + li {
  margin-top: 10px;
  padding-top: 10px;
}

.widget .wp-block-latest-posts.wp-block-latest-posts__list li + li {
  border-top: 1px dashed var(--border-color);
}

.wp-block-latest-posts.wp-block-latest-posts__list li a {
  font-size: 18px;
  font-weight: 400;
  color: var(--heading-color);
  line-height: 20px;
  font-family: var(--heading-font);
}

.wp-block-search .wp-block-search__input {
  border: none;
  height: 50px;
  padding: 0 20px;
  border-radius: 30px;
  border: 0 !important;
  color: #999;
  background: transparent;
}

input:-webkit-autofill,
.wp-block-search .wp-block-search__input:-webkit-autofill:hover,
.wp-block-search .wp-block-search__input:-webkit-autofill:focus,
.wp-block-search .wp-block-search__input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.wp-block-search.wp-block-search__button-inside
  .wp-block-search__inside-wrapper {
  border-radius: 10px;
  border-radius: 30px;
}

.wp-block-search__inside-wrapper {
  border-radius: 10px;
  border: 1px solid var(--Linear, rgba(255, 255, 255, 0.27));
}

.wp-block-search button[type="submit"] {
  margin-left: 0;
  border: none;
  color: #fff;
  padding: 0 15px;
  margin: 5px;
  font-size: 15px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  cursor: pointer;
  border-radius: 10px;
  line-height: 0.5;
  background-image: linear-gradient(
    to right,
    #5a0dff -5%,
    #ff29b8 31%,
    #ff581c,
    #ff29b8,
    #5a0dff
  );
  background-size: 200% 100%;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.wp-block-search button[type="submit"]:focus {
  outline: none;
  box-shadow: none;
  background-position: 90% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.wp-block-search button[type="submit"]:hover {
  background-color: var(--heading-color);
  color: #fff;
  background-position: 90% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.wp-block-tag-cloud a {
  display: inline-flex;
  justify-content: center;
  padding: 7px 15px 5px;
  text-transform: uppercase;
  font-size: 15px !important;
  margin-right: 7px;
  margin-bottom: 10px;
  transition: all 300ms;
  color: #999;
  font-weight: 400;
  border-radius: 10px;
  border: 1px solid #1e1e1e;
  font-family: var(--heading-font);
}

.wp-block-tag-cloud a:hover {
  background: var(--gradient-color);
  color: #fff;
}

.wp-block-rss {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}

.wp-block-rss li + li {
  margin-top: 10px;
}

.wp-block-rss li a:hover {
  color: var(--primary-color);
}

.wp-block-rss li a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: underline;
  transition: all 200ms;
}

.wp-block-group.has-background {
  padding: 30px;
  padding-bottom: 1px;
}

.wp-block-calendar {
  margin-bottom: 30px;
}

ul.wp-block-latest-posts__list li,
.blog-single-content-wrap .wp-block-rss li {
  padding-left: 0;
}

ul.wp-block-latest-posts__list li:before,
.blog-single-content-wrap .wp-block-rss li:before {
  display: none;
}

.wp-block-quote.is-style-large {
  padding: 30px;
  padding-left: 90px;
  position: relative;
}

.wp-block-quote.is-style-large:after {
  position: absolute;
  left: 0;
  top: -5px;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-size: 60px;
  color: var(--primary-color);
  font-weight: 700;
  opacity: 0.1;
}

.wp-block-quote.has-text-align-right:after {
  left: auto;
  right: 30px;
  transform: translate(0);
}

.wp-block-quote.has-text-align-right {
  padding-left: 30px;
  padding-right: 90px;
}

.wp-block-calendar .wp-calendar-nav {
  text-align: left;
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
  text-align: center;
}

.wp-block-image {
  margin-bottom: 1em;
}

.wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td,
.wp-block-table th {
  padding: 0.5em;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote > p:first-child {
  margin-top: 0;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

.wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td,
.wp-block-table th {
  padding: 0.5em;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-column blockquote.wp-block-quote {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 20px !important;
}
.wp-block-column blockquote.wp-block-quote:before {
  top: 30px;
  left: 20px;
  opacity: 0.2;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote > p:first-child {
  margin-top: 0;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

.wp-block-pullquote {
  border-top: 4px solid #555d66;
  border-bottom: 4px solid #555d66;
  color: #40464d;
  margin: 30px 0;
}

.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid #404040;
  position: relative;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>");
  background-repeat: no-repeat;
  background-position-y: 55%;
  background-position-x: 92%;
  color: var(--paragraph-color);
}

.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
  width: 100%;
  height: 50px;
  background-position-x: 97%;
  border: 1px solid #e2e2e2;
  background-color: transparent;
  margin-bottom: 30px;
  color: var(--paragraph-color);
}

.widget_text .textwidget form select,
.widget_categories form select,
.widget_archive select {
  margin-bottom: 0 !important;
}

.widget_text .textwidget p img {
  margin: 8px 0;
}

.widget_text .textwidget form {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  clear: both;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
  opacity: 0.7;
  font-weight: 600;
}
.wp-caption .wp-caption-text a {
  color: var(--secondary-color);
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption-text {
  text-align: center;
}

figcaption {
  opacity: 0.7;
  font-weight: 600;
}
figcaption a {
  color: var(--secondary-color);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--paragraph-color) !important;
  border-color: var(--primary-color);
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  color: #fff !important;
}

.has-pale-cyan-blue-background-color,
.has-light-green-cyan-background-color,
.has-pale-pink-background-color {
  background-color: #181818 !important;
}

.wp-block-post-comments-form
  .comment-form
  input:not([type="submit"]):not([type="checkbox"]):not([type="hidden"]),
.wp-block-post-comments-form .comment-form textarea {
  background: transparent;
  border-radius: 10px;
  border: 1px solid var(--Linear, rgba(255, 255, 255, 0.27));
  color: #999;
}

/* --------------------------
    Post Navigation
---------------------------- */
.post-navigation-area {
  margin: 40px 0 0px 0;
}
.post-navigation-area
  .post-navigation-inner
  .content-area.style-01.no-line
  .content {
  text-align: left;
}

.post-navigation-inner {
  display: flex;
  position: relative;
  z-index: 0;
  border-radius: 3px;
}
.post-navigation-inner .content-area {
  width: 50%;
}
.post-navigation-inner div .title {
  font-size: 18px;
  line-height: 25px;
  transition: all 300ms;
  margin-bottom: 0px;
}
.post-navigation-inner div .title a {
  transition: all 300ms;
}
.post-navigation-inner div .title:hover > a {
  color: var(--primary-color);
}
.post-navigation-inner div:first-child {
  text-align: left;
}
.post-navigation-inner .content-area.no-line {
  width: 100%;
}
.post-navigation-inner .prev-post {
  transition: all 300ms;
  font-size: 14px;
  display: block;
  font-family: var(--body-font);
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.post-navigation-inner .next-post {
  transition: all 300ms;
  font-size: 14px;
  display: block;
  font-family: var(--body-font);
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.blog-comment-navigation .comment-navigation {
  min-height: 50px;
  margin-bottom: 30px;
}

/*---------------------------
    SINGLE POST NAVGATION
-----------------------------*/
.single-post-navigation {
  word-break: break-word;
  display: flex;
  border-top: 1px solid #e1e6ff;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ededed;
  padding: 25px;
}
.single-post-navigation h3 {
  font-size: 18px;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}
.single-post-navigation .single-post-navigation-center-grid {
  font-size: 25px;
}
.single-post-navigation .single-post-navigation-center-grid a {
  color: var(--primary-color);
}
.single-post-navigation .single-post-navigation-center-grid a:hover,
.single-post-navigation .single-post-navigation-center-grid a:focus {
  color: var(--secondary-color);
}
.single-post-navigation .prev-post a {
  display: flex;
  position: relative;
  align-items: center;
  gap: 10px;
  color: #8e8e8e;
  transition: all 300ms;
}
.single-post-navigation .prev-post a i {
  height: 45px;
  width: 45px;
  border-radius: 45px;
  line-height: 45px;
  background: #f4f4f4;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
  transition: 0.4s;
}
.single-post-navigation .prev-post a:hover {
  color: var(--heading-color);
}
.single-post-navigation .prev-post a:hover i {
  background: var(--primary-color);
  color: #fff;
}
.single-post-navigation .next-post a {
  display: flex;
  position: relative;
  align-items: center;
  gap: 10px;
  color: #8e8e8e;
  transition: all 300ms;
}
.single-post-navigation .next-post a i {
  height: 45px;
  width: 45px;
  border-radius: 45px;
  line-height: 45px;
  background: #f4f4f4;
  display: inline-block;
  text-align: center;
  margin-left: 5px;
  transition: 0.4s;
}
.single-post-navigation .next-post a:hover {
  color: var(--heading-color);
}
.single-post-navigation .next-post a:hover i {
  background: var(--primary-color);
  color: #fff;
}
.single-post-navigation .title-with-link {
  transition: 0.3s;
  overflow: hidden;
}
.single-post-navigation .title-with-link i {
  margin-top: 3px;
}
.single-post-navigation .title-with-link span {
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 600;
}

/*--------------------------------------------------------------
## Block Color Palette Colors
--------------------------------------------------------------*/
.has-strong-blue-color {
  color: #0073aa;
}

.has-strong-blue-background-color {
  background-color: #0073aa;
}

.has-lighter-blue-color {
  color: #229fd8;
}

.has-lighter-blue-background-color {
  background-color: #229fd8;
}

.has-very-light-gray-color {
  color: #eee;
}

.has-very-light-gray-background-color {
  background-color: #eee;
}

.has-very-dark-gray-color {
  color: #444;
}

.has-very-dark-gray-background-color {
  background-color: #444;
}

.has-large-font-size {
  font-size: 36px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
## 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;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# WP Table
--------------------------------------------------------------*/
.blog-single-content-wrap table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.blog-single-content-wrap table td {
  border: 1px solid #404040;
  padding: 8px;
}
.blog-single-content-wrap table td a {
  text-decoration: underline;
  color: var(--primary-color);
  font-weight: 400;
}
.blog-single-content-wrap table th {
  border: 1px solid #404040;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}
.blog-single-content-wrap table th a {
  text-decoration: underline;
  font-weight: 600;
}

.page-content table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.page-content table td {
  border: 1px solid #404040;
  padding: 8px;
}
.page-content table td a {
  text-decoration: underline;
  color: var(--primary-color);
  font-weight: 400;
}
.page-content table th {
  border: 1px solid #404040;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}
.page-content table th a {
  text-decoration: underline;
  font-weight: 600;
}

.single-comment-wrap table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.single-comment-wrap table td {
  border: 1px solid #404040;
  padding: 8px;
}
.single-comment-wrap table td a {
  text-decoration: underline;
  color: var(--primary-color);
  font-weight: 400;
}
.single-comment-wrap table th {
  border: 1px solid #404040;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}
.single-comment-wrap table th a {
  text-decoration: underline;
  font-weight: 600;
}

.content-area table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.content-area table th {
  border: 1px solid #404040;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}
.content-area table th a {
  text-decoration: underline;
  color: var(--primary-color);
  font-weight: 400;
}
.content-area table td {
  border: 1px solid #404040;
  padding: 8px;
}
.content-area table td a {
  text-decoration: underline;
  color: var(--primary-color);
  font-weight: 400;
}

.calendar_wrap table td {
  text-align: center;
}

.widget_calendar table td a,
.widget_calendar table th a {
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: underline;
}

.footer-widget.widget_calendar table td a,
.footer-widget.widget_calendar table th a {
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# WP List
--------------------------------------------------------------*/
.content-area ul {
  list-style: none;
}
.content-area ul li {
  position: relative;
  padding-left: 15px;
}
.content-area ul li + li {
  margin-top: 10px;
}
.content-area ul li:before {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--paragraph-color);
  content: "";
  display: inline-block;
  margin-right: 5px;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
.content-area ul li > ul li:before {
  background-color: transparent;
  border: 1px solid;
}
.content-area ol li {
  padding-left: 0;
}
.content-area ol li:before {
  display: none;
}
.content-area ol li + li {
  margin-top: 10px;
}
.content-area .widget ul li {
  padding-left: 0;
}
.content-area .widget ul li:before {
  display: none;
}

.blog-single-content-wrap .entry-content .cats a {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
}
.blog-single-content-wrap ol li + li {
  margin-top: 10px;
}
.blog-single-content-wrap .post-meta {
  margin-bottom: 15px;
}
.blog-single-content-wrap .post-meta li a {
  margin-left: 2px;
}
.blog-single-content-wrap ul {
  list-style: none;
}
.blog-single-content-wrap ul li {
  position: relative;
  padding-left: 15px;
}
.blog-single-content-wrap ul li + li {
  margin-top: 8px;
}
.blog-single-content-wrap ul li ol > li {
  padding-left: 0;
}
.blog-single-content-wrap ul li ol > li:before {
  display: none;
}
.blog-single-content-wrap ul li:before {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--paragraph-color);
  content: "";
  display: inline-block;
  margin-right: 5px;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
.blog-single-content-wrap ul li > ul li:before {
  background-color: transparent;
  border: 1px solid;
}
.blog-single-content-wrap .post-meta li {
  padding-left: 0;
}
.blog-single-content-wrap .post-meta li:before {
  display: none;
}

.page-content ol li + li {
  margin-top: 10px;
}
.page-content ul li + li {
  margin-top: 10px;
}

.single-comment-wrap ol li + li {
  margin-top: 10px;
}
.single-comment-wrap ul li + li {
  margin-top: 10px;
}

.comments-area .comment-list li .single-comment-wrap ul {
  list-style: none;
}
.comments-area .comment-list li .single-comment-wrap ul li {
  position: relative;
  padding-left: 15px;
}
.comments-area .comment-list li .single-comment-wrap ul li:before {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--paragraph-color);
  content: "";
  display: inline-block;
  margin-right: 5px;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
.comments-area .comment-list li .single-comment-wrap ul li > ul li:before {
  background-color: transparent;
  border: 1px solid;
}
.comments-area .comment-list .trackback {
  margin-bottom: 30px;
}
.comments-area .comment-list .pingback {
  margin-bottom: 30px;
}

.carousel-indicators li + li {
  margin-top: 0 !important;
}

.footer-widget.widget.widget_nav_menu ul li {
  margin-top: 10px;
}

ul.blocks-gallery-grid li {
  padding-left: 0;
}
ul.blocks-gallery-grid li:before {
  display: none;
}

.blog-details-footer {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #2d2d2d;
  margin-bottom: 40px;
}
.blog-details-footer .social-icon {
  padding-bottom: 30px !important;
}
.blog-details-footer .social-icon li {
  list-style: none;
  padding-left: 0;
  font-size: 15px;
  background: transparent !important;
}
.blog-details-footer .social-icon li a:hover {
  color: var(--primary-color);
}
.blog-details-footer .social-icon li:before {
  display: none;
}
.blog-details-footer .right .social-share li {
  padding-left: 0;
}
.blog-details-footer .right .social-share li:before {
  display: none;
}
.blog-details-footer .left .title {
  font-size: 18px;
  min-width: 40px;
}
.blog-details-footer .left .tags {
  padding-left: 0;
  margin-bottom: 7px;
}
.blog-details-footer .left .tags li {
  padding-left: 0;
}
.blog-details-footer .left .tags li a {
  color: #e2e2e2;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  padding: 5px 13px;
  font-size: 14px;
  margin-left: 1px;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 2px;
}
.blog-details-footer .left .tags li a:hover {
  background-color: #e2e2e2;
  color: #111;
}
.blog-details-footer .left .tags li:before {
  display: none;
}

.blog-pagination {
  display: block;
  width: 100%;
  margin-top: 50px;
}
.blog-pagination .nav-links .page-numbers {
  display: inline-block;
  height: 55px;
  width: 55px;
  line-height: 57px;
  padding: 0;
  border: 0;
  text-align: center;
  font-weight: 400;
  border-radius: 15%;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: #999;
  background: var(
    --Bg-background,
    linear-gradient(95deg, #181818 7.27%, #151515 99.21%)
  );
  font-size: 20px;
  text-transform: uppercase;
  font-family: var(--heading-font);
  margin-bottom: 5px;
}
.blog-pagination .nav-links .page-numbers + .page-numbers {
  margin-left: 5px;
}
.blog-pagination .nav-links .page-numbers.current,
.blog-pagination .nav-links .page-numbers:hover {
  color: #fff;
  background: linear-gradient(to right, #5a0dff -5%, #ff29b8 31%, #ff581c);
}
.blog-pagination .nav-links .page-numbers.prev,
.blog-pagination .nav-links .page-numbers.next {
  width: auto;
  padding: 0 20px;
  font-size: 16px;
}
@media only screen and (max-width: 575px) {
  .blog-pagination .nav-links .page-numbers {
    height: 40px;
    width: 40px;
    line-height: 42px;
    font-size: 15px;
  }
}

/* WooCommerce */
.woocommerce .woocommerce-ordering {
  margin: 0 !important;
}

/*--------------------------------------------------------------
Custom Button CSS
--------------------------------------------------------------*/
.eb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 30px;
  overflow: hidden;
  position: relative;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  z-index: 1;
  width: max-content;
  height: 60px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}

.eb-btn.eb-btn-default.icon-left {
  flex-direction: row-reverse;
}

.eb-btn.eb-btn-default.icon-right {
  flex-direction: row;
}

.eb-btn.eb-btn-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
}

.eb-btn.eb-btn-circle.icon-top {
  flex-direction: column-reverse;
}

.eb-btn.eb-btn-circle.icon-bottom {
  flex-direction: column;
}

.eb-btn svg {
  flex-shrink: 0;
}

.eb-btn.eb-btn-primary {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  font-family: var(--heading-font);
  letter-spacing: 1px;
  background: 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;
  background-size: 200% 100%;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  border-radius: 10px;
}

.eb-btn.eb-btn-primary:hover {
  background-position: 90% 0;
  box-shadow: 0px 0px 20px rgba(255, 53, 144, 0.5);
}

.eb-btn.eb-btn-outline-gradient {
  overflow: hidden;
}

.eb-btn.eb-btn-outline-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    #5a0dff -5%,
    #ff29b8 31%,
    #ff581c,
    #ff29b8,
    #5a0dff
  );
  -webkit-mask: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(#fff, #fff);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.eb-btn.eb-btn-outline-gradient::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0%;
  height: 100%;
  background: linear-gradient(
    to right,
    #5a0dff -5%,
    #ff29b8 31%,
    #ff581c,
    #ff29b8,
    #5a0dff
  );
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: -1;
  border-radius: 10px;
}

.eb-btn.eb-btn-outline-gradient:hover:after {
  width: 100%;
}

/* == DEFAULT BUTTON HOVER EFFECT ONE == */
.eb-btn.eb-btn-default.hover-effect-one::before {
  position: absolute;
  content: "";
  background: linear-gradient(125deg, #d89a26 14.31%, #ffcd70 86.5%);
  transition: all 900ms ease;
  z-index: -1;
  width: 0;
  height: 100%;
  top: 0;
  left: -100%;
  transform: skew(30deg);
  transform-origin: top left;
}

.eb-btn.eb-btn-default.hover-effect-one:hover::before {
  height: 100%;
  width: 200%;
}

/* == DEFAULT BUTTON HOVER EFFECT TWO == */
.eb-btn.eb-btn-default.hover-effect-two::before,
.eb-btn.eb-btn-default.hover-effect-two::after {
  position: absolute;
  content: "";
  background: linear-gradient(125deg, #d89a26 14.31%, #ffcd70 86.5%);
  transition: all 900ms ease;
  z-index: -1;
  width: 0;
  height: 100%;
  top: 0;
  bottom: 0;
}

.eb-btn.eb-btn-default.hover-effect-two::before {
  left: 0;
}
.eb-btn.eb-btn-default.hover-effect-two::after {
  right: 0;
}

.eb-btn.eb-btn-default.hover-effect-two:hover::before,
.eb-btn.eb-btn-default.hover-effect-two:hover::after {
  width: 50%;
}

/* == DEFAULT BUTTON HOVER EFFECT THREE == */
.eb-btn.eb-btn-default.hover-effect-three::before,
.eb-btn.eb-btn-default.hover-effect-three::after {
  position: absolute;
  content: "";
  background: linear-gradient(125deg, #d89a26 14.31%, #ffcd70 86.5%);
  transition: all 900ms ease;
  z-index: -1;
  width: 50%;
  height: 0;
}
.eb-btn.eb-btn-default.hover-effect-three::before {
  top: 0;
  left: 0;
}
.eb-btn.eb-btn-default.hover-effect-three::after {
  bottom: 0;
  right: 0;
}

.eb-btn.eb-btn-default.hover-effect-three:hover::before,
.eb-btn.eb-btn-default.hover-effect-three:hover::after {
  width: 100%;
  height: 100%;
}

/* == CIRCLE BUTTON HOVER EFFECT ONE == */
.eb-btn.eb-btn-circle.hover-effect-one::before {
  position: absolute;
  content: "";
  background: linear-gradient(125deg, #d89a26 14.31%, #ffcd70 86.5%);
  transition: all 900ms ease;
  z-index: -1;
  width: 0;
  height: 0;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: top left;
}

.eb-btn.eb-btn-circle.hover-effect-one:hover::before {
  height: 105%;
  width: 105%;
}
/*# sourceMappingURL=style.css.map */
