/* mulish-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Mulish";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/mulish-v13-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* oswald-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/oswald-v53-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
  scroll-behavior: smooth;
}

/* ------------------------------------ Default css start ----------------------------------------- */

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

.container {
  max-width: 1140px;
  margin: auto;
}

:root {
  --theme: #0b0c2a;
  --dark: #1c1c1c;
  --white: #fff;
  --Mulish: "Mulish";
  --Oswald: "Oswald";
}

body {
  color: #fff;
  background-color: var(--theme);
  font-family: var(--Mulish);
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--Oswald);
  color: var(--white);
  font-weight: 400;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.spacer {
  padding: 80px 0 50px 0;
}

.slider-spacer {
  padding: 80px 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="button"],
textarea {
  width: 100%;
  padding: 7px;
  margin: 8px 0;
  border-radius: 8px;
  outline: none;
  border: 1px solid rgba(128, 128, 128, 0.5);
  color: var(--white);
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: white;
}

input[type="submit"],
input[type="reset"],
input[type="checkbox"] {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
}

select {
  width: 40%;
  height: 35px;
  padding: 0px 10px;
  margin: 0;
  font-size: 16px;
  outline: none;
  border: 1px solid rgba(128, 128, 128, 0.5);
  color: var(--dark);
  box-sizing: border-box;
}

button[type="submit"] {
  color: var(--white);
  background-color: #e53637;
  padding: 10px 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ----------------------------------------- header section start --------------------------------------------- */

#home {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
}

.bottom_header {
  background-color: #070720;
  box-shadow: 0 5px 5px rgba(7, 7, 32, 0.2);
  color: var(--white);
  padding: 0px 25px;
}

.bottom_header ul li {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.main_menu li {
  position: relative;
  padding: 21px 28px;
  transition: .2s ease-in-out;
}

.main_menu li.active {
  background-color: orangered;
  color: var(--white);
}

.main_menu li:hover {
  color: var(--white);
  cursor: pointer;
  background-color: orangered;
}

.main_menu .sub_menu {
  position: absolute;
  background-color: white;
  width: 170px;
  top: 100%;
  left: 0;
  transform: translateY(45px);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
}

.main_menu .sub_menu li {
  padding: 8px 25px;
  color: var(--dark);
  transition: 0.3s ease-in-out;
}

.main_menu .sub_menu li:hover {
  background-color: rgba(128, 128, 128, 0.1);
  cursor: pointer;
}

.main_menu li:hover .sub_menu {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.bottom_header .header-icon .fa-magnifying-glass {
  font-size: 18px;
  transform: rotate(90deg);
}

.bottom_header .header-icon .fa-user {
  font-size: 18px;
}

.toggle_icon {
  border: 2px solid var(--white);
  padding: 7px 10px;
  border-radius: 8px;
  display: none;
  cursor: pointer;
}

.toggle_icon i {
  color: var(--white);
}

.mob_main_menu {
  display: none;
}

.mob_main_menu li a {
  font-size: 14px;
  color: var(--dark);
}

.mob_main_menu .mob_sub_menu {
  padding-left: 20px;
}

/* ----------------------------------------- header section end --------------------------------------------- */

/* ----------------------------------------- slider section start --------------------------------------------- */

#slider .item {
  position: relative;
}

.owl-prev {
  height: 70px;
  width: 70px;
  background: #1a1a36 !important;
  border: 8px solid var(--theme);
  transform: rotate(45deg);
  position: absolute;
  top: 41%;
  left: -41px;
  z-index: 9999;
}
.owl-prev i {
  color: var(--white);
  font-size: 23px;
  transform: rotate(313deg);
  line-height: 45px;
}

.owl-next {
  height: 70px;
  width: 70px;
  background: #1a1a36 !important;
  border: 8px solid var(--theme);
  transform: rotate(45deg);
  position: absolute;
  top: 41%;
  right: -41px;
  z-index: 9999;
}
.owl-next i {
  color: var(--white);
  font-size: 23px;
  transform: rotate(317deg);
  line-height: 45px;
}

.owl-dots {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.owl-theme .owl-dots .owl-dot span {
  background: #fff !important;
}
.owl-theme .owl-dots .owl-dot.active span {
  background-color: orangered !important;
}

#slider .slider-text-content {
  max-width: 500px;
  position: absolute;
  top: 30%;
  left: 80px;
}

#slider .slider-text-content .label {
  font-size: 13px;
  color: #e53637;
  width: 95px;
  background: #ffffff;
  padding: 5px 14px 3px;
}

#slider .slider-text-content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-top: 30px;
}

#slider .slider-text-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

#slider .slider-text-content a span {
  font-size: 13px;
  color: #ffffff;
  background: #e53637;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 4px;
}

#slider .slider-text-content a i {
  font-size: 18px;
  background: #e53637;
  padding: 12px 5px 14px 8px;
  color: #ffffff;
  border-radius: 0 4px 4px 0;
  margin: 0;
}

/* ----------------------------------------- slider section end --------------------------------------------- */

/* ----------------------------------------- movie section start --------------------------------------------- */

.trending_now {
  margin-bottom: 50px;
}

.section_title {
  margin-bottom: 30px;
}

.section_title h3 {
  font-weight: 600;
  line-height: 21px;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 1.3px;
  padding-left: 20px;
}

.section_title h3::after {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  height: 32px;
  width: 4px;
  background: #e53637;
}

.btn_all {
  margin-bottom: 30px;
}

.btn_all .view_btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn_all .view_btn .fa-arrow-right-long {
  font-size: 17px;
  position: relative;
  top: 1px;
}

.movie-item {
  margin-bottom: 30px;
}

.movie-item .movie-img .ep {
  font-size: 13px;
  color: #ffffff;
  display: block;
  padding: 2px 12px;
  background: #e53637;
  border-radius: 4px;
  position: absolute;
  left: 10px;
  top: 10px;
}

.movie-item .movie-img .comment {
  font-size: 13px;
  color: #ffffff;
  display: block;
  padding: 2px 10px;
  background: #3d3d3d;
  border-radius: 4px;
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.movie-item .movie-img .view {
  font-size: 13px;
  color: #ffffff;
  display: block;
  padding: 2px 10px;
  background: #3d3d3d;
  border-radius: 4px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.movie-item .movie-content {
  padding-top: 20px;
}

.movie-item .movie-content ul li {
  font-size: 10px;
  color: #ffffff;
  font-weight: 700;
  padding: 1px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  display: inline-block;
}

.movie-item .movie-content h5 {
  font-family: var(--Mulish);
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
  margin-top: 10px;
  /* letter-spacing: 1.3px; */
  /* word-spacing: 2px; */
}

.nav {
  margin-top: -3px;
}

.nav .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.nav .nav-item .nav-link.active {
  background-color: inherit;
  color: #fff;
}

.fitter-gallery .tab-content .movie-img .ep,
.movie-img .ep {
  font-size: 13px;
  color: #ffffff;
  display: block;
  padding: 2px 12px;
  background: #e53637;
  border-radius: 4px;
  position: absolute;
  left: 10px;
  top: 10px;
}

.fitter-gallery .tab-content .movie-img .view,
.movie-img .view.sec {
  font-size: 13px;
  color: #ffffff;
  display: block;
  padding: 2px 10px;
  background: #3d3d3d;
  border-radius: 4px;
  position: absolute;
  right: 10px;
  top: 10px;
}

.fitter-gallery .tab-content .movie-img h5,
.movie-img h5 {
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 100%;
  padding: 0 30px 0 20px;
  font-family: var(--Mulish);
  font-weight: 600;
}

.fitter-gallery-comment .movie-content ul li {
  font-size: 10px;
  color: #ffffff;
  font-weight: 700;
  padding: 1px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  display: inline-block;
}

.fitter-gallery-comment .movie-content h5 {
  font-family: var(--Mulish);
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  margin-top: 8px;
}

.sticky {
  position: sticky;
  top: 80px;
  left: 0;
}

/* ----------------------------------------- movie section end --------------------------------------------- */

/* ----------------------------------------- footer section start --------------------------------------------- */

footer {
  background: #070720;
  position: relative;
}

.page-up-icon {
  position: absolute;
  left: 50%;
  top: -25px;
  margin-left: -25px;
  cursor: pointer;
}

.page-up-icon i {
  display: block;
  font-size: 16px;
  color: #fff;
  height: 50px;
  width: 50px;
  background-color: #e53637;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
}

.footer-logo img {
  width: 93px;
}

.footer-nav ul li {
  color: rgba(255, 255, 255, 0.6);
}

footer p {
  color: rgba(255, 255, 255, 0.2);
  font-size: 15px;
}

.footer-nav ul li:hover a {
  color: var(--white);
}

/* ----------------------------------------- footer section end --------------------------------------------- */

/* categories page css */

/* ----------------------------------------- categories section start ------------------------------------------- */

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--white);
  content: ">";
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}

.select-order-p {
  margin-top: 3px;
  margin-left: 45px;
}

.romance-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}

.movie-pagination a {
  display: inline-block;
  font-size: 15px;
  color: #b7b7b7;
  font-weight: 600;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 48px;
  text-align: center;
}

.movie-pagination a:hover {
  color: var(--white);
  border: 1px solid #fff;
}

.movie-pagination .current-page {
  border: 1px solid #fff;
  color: var(--white);
}

.anime-details-content .anime-details-text .title {
  margin-bottom: 20px;
}

.anime-details-content .anime-details-text .title h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--Mulish);
  letter-spacing: 1.5px;
  margin-bottom: 13px;
}

.anime-details-content .anime-details-text .title span {
  font-size: 15px;
  color: #b7b7b7;
  display: block;
}

.anime-details-content .anime-details-text .rating .rating-icon i {
  font-size: 24px;
  color: #e89f12;
}

.anime-details-content .anime-details-text .rating span {
  display: block;
  font-size: 18px;
  color: #b7b7b7;
}

.anime-details-content .anime-details-text p {
  font-size: 18px;
  color: #b7b7b7;
  line-height: 30px;
  margin-bottom: 15px;
}

.anime-details-content .anime-details-text .widget {
  margin-bottom: 15px;
}

.anime-details-content .anime-details-text .widget ul li {
  font-size: 15px;
  line-height: 30px;
  position: relative;
  padding-left: 18px;
}

.anime-details-content .anime-details-text .widget ul li::before {
  position: absolute;
  left: 0;
  top: 12px;
  height: 6px;
  width: 6px;
  background-color: #b7b7b7;
  content: "";
}

.anime-details-content .anime-details-text .widget ul li span {
  width: 115px;
  display: inline-block;
  color: #b7b7b7;
}

.anime-details-content .anime-details-text .button .follow-btn {
  font-size: 13px;
  background-color: #e53637;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 4px;
  margin-right: 11px;
}

.anime-details-content .anime-details-text .button .watch-btn span {
  font-size: 13px;
  background-color: #e53637;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 4px 0 0 4px;
  margin-right: 1px;
}

.anime-details-content .anime-details-text .button .watch-btn i {
  font-size: 16px;
  display: inline-block;
  background-color: #e53637;
  padding: 15px 5px 16px 8px;
  border-radius: 0 4px 4px 0px;
}

.anime-review .anime-review-item .review-text {
  overflow: hidden;
  background-color: #1d1e39;
  padding: 18px 30px 16px 20px;
  border-radius: 10px;
}

.anime-review .anime-review-item .review-img::before {
  content: "";
  position: absolute;
  top: 15px;
  right: -25px;
  border-top: 15px solid transparent;
  border-left: 15px solid #1d1e39;
  transform: rotate(45deg);
}

.anime-review .anime-review-item .review-text h6 {
  margin-bottom: 10px;
  font-size: 16px;
  font-family: var(--Mulish);
  font-weight: 700;
}

.anime-review .anime-review-item .review-text h6 span {
  color: #b7b7b7;
}

.anime-review .anime-review-item .review-text p {
  color: #b7b7b7;
  line-height: 23px;
  margin-bottom: 0;
}

.anime-video-player {
  margin-bottom: 70px;
}

.anime-video-player .video .circle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  padding: 20px 30px;
  border: 1px solid white;
  border-radius: 50%;
  color: var(--white);
  animation: grow 1s ease-in-out infinite;
  opacity: 0;
}

@keyframes grow {
  to {
     opacity: 1;
  }
}

.anime-ep-details a {
   display: inline-block;
   font-size: 15px;
   background: rgba(255, 255, 255, 0.2);
   padding: 10px 25px;
   border-radius: 4px;
   margin-right: 15px;
   margin-bottom: 20px;
   transition: .3s ease-in-out;
}

.anime-ep-details a:hover {
   background-color: var(--white);
   color: var(--dark);
}

/* ----------------------------------------- categories section end --------------------------------------------- */


/* categories page end */


/* blog page start */

/* --------------------------------------- blog section css start -------------------------------------------- */

.blog-bg {
   background-image: url(../assets/blog-bg.jpg);
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
}

.normal-breadcrumb-text h2 {
   font-size: 48px;
   font-family: var(--Oswald);
   font-weight: 700;
   margin-bottom: 20px;
}

.normal-breadcrumb-text p {
   font-size: 24px;
}

.main-blog{
   position: relative;
}
.blog-img-content {
   position: absolute;
   width: 100%;
   padding: 0 105px;
   bottom: -25px;
   left: 50%;
   transform: translate(-50% , -50%);
}

.blog-img-content-small {
   position: absolute;
   width: 100%;
   padding: 0 30px;
   bottom: -25px;
   left: 50%;
   transform: translate(-50% , -50%);
}

.blog-img-content h4{
  font-size: 20px;
  font-family: var(--Mulish);
}

.blog-img-content-small h4 {
  font-size: 18px;
  font-family: var(--Mulish);
}

/* --------------------------------------- blog section css end -------------------------------------------- */


/* blog page end */


/* login page start */

/* ---------------------------------- login section css start ------------------------------------------  */

.login .rel .ps-md-10 {
   padding-left: 100px !important;
}

.rel {
   position: relative;
}

.login .login-form h3 {
   margin-bottom: 30px;
   font-weight: 700;
   font-size: 30px;
}

.login-form .input-item {
   position: relative;
   min-width: 370px;
}

.login-form .input-item::before {
   content: '';
   position: absolute;
   left: 55px;
   top: 18px;
   height: 30px;
   width: 1px;
   background-color: #b7b7b7;
}

.login-form .input-item input {
   height: 50px;
   width: 100%;
   font-size: 15px;
   color: #070720;
   background-color: var(--white);
   border: none;
   padding-left: 76px;
   border-radius: 0;
}

.login-form .input-item span {
   font-size: 20px;
   position: absolute;
   left: 20px;
   top: 17px;
   color: #b7b7b7;
}

.login-form .site-btn {
   padding: 12px 30px;
   letter-spacing: 2px;
   text-transform: uppercase;
   font-size: 13px;
}

.login-form::after {
   position: absolute;
   right: -14px;
   top: -40px;
   height: 330px;
   width: 1px;
   background-color: rgba(255, 255, 255, 0.2);
   content: '';
}

.register-now h3 {
   font-size: 30px;
   margin-bottom: 30px;
   font-weight: 700;
}

.register-now .register-btn {
   background-color: #e53637;
   padding: 12px 42px;
   font-size: 13px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 2px;
}

.login .social-login {
   padding-top: 55px;
}

.login .social-login ul li {
  margin: 15px 0;
}

.login .social-login ul li a {
   color: var(--white);
   display: block;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
   width: 460px;
   padding: 14px 0;
   position: relative;
   margin: 0 auto;
}

.login .social-login ul li a.facebook {
  background: #4267b2;
}
.login .social-login ul li a.google {
  background: #ff4343;
}
.login .social-login ul li a.twitter {
  background: #1da1f2;
}

/* ---------------------------------- login section css end ------------------------------------------  */


/* login page end */


.page-loader {
   position: fixed;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   width: 100%;
   height: 100vh;
   z-index: 99999;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #000;
}

.loader {
  position: relative;
  width: 96px;
  height: 96px;
  background: transparent;
  border-radius: 100%;
  border: 1px solid #dbdfe3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: transparent;
  border: 0.5px dashed #d7dce2;
  border-radius: 100%;
  box-shadow: inset -2px -2px 12px #e1e3eb, inset 2px 2px 12px #e1e3eb;
}

.loader::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  border: 0.5px dashed #d7dce2;
  box-shadow: inset -2px -2px 12px #e1e3eb, inset 2px 2px 12px #e1e3eb;
}

.loader span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 100%;
  background: transparent;
  transform-origin: top left;
  animation: radar81 2s linear infinite;
  border-top: 1px dashed #6e8298;
}

.loader span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #86b1e6;
  transform-origin: top left;
  transform: rotate(-55deg);
  filter: blur(20px);
}

@keyframes radar81 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
