@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Fonts */
:root {
  --default-font: "Josefin Sans", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #2a2a2a;
  --accent-color: #980000;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #d1d1d1;
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #000;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #5c9f24;
}

/* Color Presets */

.light-background {
  --background-color: #000;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: #000;
  font-family: var(--default-font);
  overflow-x: hidden !important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

p {
  color: #fff;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 30px;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.5);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  position: relative;
}

.header .logo img {
  max-height: 70px;
  margin-left: 50px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
}

.header span {
  filter: brightness(10);
}

.header button {
  float: right;
}

#navbarOffcanvas ul {
  list-style: none;
  padding: 0;
}

#navbarOffcanvas ul a {
  color: #fff;
  line-height: 30px;
  font-size: 14px;
}

.btn-cart {
  float: right;
  color: #fff;
}

.btn-cart i {
  margin-left: 10px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #000000;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid #98000070;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 15px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: #980000;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Best Movies Section
--------------------------------------------------------------*/
.section-title1 {
  width: 58%;
  padding: 25px 35px;
  background: linear-gradient(0deg,
      rgba(152, 0, 0, 1) 0%,
      rgba(76, 0, 0, 1) 100%);
  position: relative;
  top: -45px;
  z-index: 5;
}

.section-title1 h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.section-title1 img {
  position: absolute;
  width: 119px;
  right: 36px;
  top: -36px;
  z-index: 5;
}

.section-title1 p {
  color: #fff;
}

.Sec2 {
  background-color: #000000;
  margin-top: 60px;
  margin-bottom: 60px;
}

.TopAir {
  color: white;
  font-size: 25px;
}

.cc {
  background-color: #980000;
  border: transparent;
  font-size: 11px;
  margin-bottom: 20px;
}

.mic {
  background-color: white;
  border: transparent;
  font-size: 11px;
  margin-bottom: 20px;
}

.TP i {
  padding-right: 5px;
}

.smhead {
  font-size: 18px;
}

.text {
  font-weight: 100;
  font-size: 13px;
}

.card1 {
  border-bottom: 1px solid #cccccc21;
  padding: 8px 0;
}

.Sec5 {
  background-color: #000000;
  padding-top: 60px;
  color: white;
  padding-bottom: 80px;
}

.LE {
  color: white;
}

.LE img {
  width: 100%;
}

.Genres li {
  font-size: 15px;
  line-height: 52px;
  list-style: none;
  padding-left: 20px;
}

.Genres li span {
  color: #980000;
}

.Genres {
  background: transparent linear-gradient(90deg, #1d1d1d 0%, #00000000 100%) 0% 0% no-repeat padding-box;
  padding: 10px;
}

.t {
  font-weight: 300;
  margin-top: -10px;
  margin-bottom: 25px;
}

h1 {
  color: #fff;
}

.Sec6 {
  background-color: #000000;
  padding-top: 30px;
  color: white;
  padding-bottom: 80px;
}

.Genres h3 {
  color: #fff;
}

.Sec7 {
  background-color: #000000;
  padding-top: 30px;
  color: white;
  padding-bottom: 80px;
}

.t1 {
  font-weight: 300;
  margin-top: 2px;
  font-size: 14px;
}

.card1 h5 {
  color: #980000;
  font-size: 16px;
}

.logo10 {
  display: flex;
  justify-content: center;
}

.foot-link a {
  color: #fff;
  font-size: 17px;
  font-weight: 300;
}

.foot-link a:hover {
  color: #980000;
}

.sec8 .container {
  border-top: 1px solid #9800008f;
  padding: 55px 0;
}

.sec8 h3 {
  color: #fff;
}

.sec8 .link10 a {
  color: #fff;
  font-size: 20px;
  padding-left: 10px;
}

.sec8 .link10 a:hover {
  color: #980000;
}

/*Trending Carousel*/
.carousel {
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.carousel__prev,
.carousel__next {
  position: absolute;
  bottom: -15%;
  transition: transform 0.25s ease;
}

.carousel__prev i,
.carousel__next i {
  font-size: 60px;
  color: var(--box-border);
  cursor: pointer;
}

.carousel__prev:hover,
.carousel__next:hover {
  transform: scale(1.25);
}

.carousel__prev {
  left: 40%;
}

.carousel__next {
  right: 40%;
}

.carousel__body {
  width: 100%;
  padding: 65px 0 50px 0;
  overflow: hidden;
  background: transparent radial-gradient(closest-side at 50% 50%, #980000 0%, #98000000 100%) 0% 0% no-repeat padding-box;
  margin-top: -20px;
}

.carousel__body .carousel__slider {
  position: relative;
  transition: transform 1s ease-in-out;
  background: var(--crsl-bg);
}

.carousel__body .carousel__slider__item {
  position: relative;
  display: block;
  float: left;
  box-sizing: border-box;
  margin-left: 20px;
  margin-right: 20px;
}

.carousel__body .carousel__slider__item .item__3d-frame {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.carousel__body .carousel__slider__item .item__3d-frame:after {
  content: "";
  position: absolute;
  bottom: -15%;
  width: 100%;
  height: 40px;
  background: var(--box-shadow);
  box-shadow: 0px 0px 5px 5px var(--box-shadow);
  transform: rotateX(90deg) translate3d(0px, -20px, 0px);
  opacity: 0.85;
}

.carousel__body .carousel__slider__item .item__3d-frame__box {
  display: flex;
  align-items: center;
  vertical-align: middle;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.carousel__body .carousel__slider__item .item__3d-frame__box h1 {
  font-size: 7em;
  width: 100%;
  color: var(--box-border);
}

.carousel__body .carousel__slider__item .item__3d-frame__box--right,
.carousel__body .carousel__slider__item .item__3d-frame__box--left {
  top: 0;
  width: 40px;
  backface-visibility: hidden;
}

.carousel__body .carousel__slider__item .item__3d-frame__box--left {
  left: 0;
  border-left-width: 5px;
  transform: translate3d(1px, 0, -40px) rotateY(-90deg);
  transform-origin: 0%;
}

.carousel__body .carousel__slider__item .item__3d-frame__box--right {
  right: 0;
  border-right-width: 5px;
  transform: translate3d(-1px, 0, -40px) rotateY(90deg);
  transform-origin: 100%;
}

/*Trending Carousel*/

.main-inner {
  background: url(../img/bg1.png) no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
}

.main-inner .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 16px 32px;
  border-radius: 0px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.main-inner .btn-get-started1 {
  color: #000;
  background: #fff;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 16px 32px;
  border-radius: 0px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.main-inner h2 {
  font-size: 90px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  animation: fadeInDown 1s both 0.4s;
}

.main-inner p {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  width: 50%;
  animation: fadeInUp 1s both 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.main-1 .owl-nav {
  font-size: 40px;
  color: #fff;
}

.main-1 .owl-prev {
  position: absolute;
  left: 10px;
  top: 50%;
}

.main-1 .owl-next {
  position: absolute;
  right: 10px;
  left: auto;
  top: 50%;
}

.main-1 {
  position: relative;
  margin-top: -130px;
}

.main-1 h2 span {
  color: var(--accent-color);
  position: relative;
}

.main-1 h2 span:before {
  content: '';
  background: #fff;
  width: 100%;
  height: 83%;
  position: absolute;
  top: -3px;
  z-index: -1;
}

.trending-img {
  width: 100%;
}

.trending-1a h3 {
  font-size: 60px;
  color: #ffffff61;
  font-weight: 600;
  line-height: 28px;
}

.trending-1a p {
  font-size: 18px;
  font-weight: 600;
  color: #ffffffc2;
}

.trending-1a {
  position: absolute;
  right: 10px;
  bottom: 0;
  text-align: right;
}

.trending-inner {
  position: relative;
}

.trend-1 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.trending {
  padding: 60px 0;
}

.trend-1 span {
  color: var(--accent-color);
  position: relative;
}

.trend-1 span:before {
  content: '';
  background: #fff;
  width: 100%;
  height: 83%;
  position: absolute;
  top: -3px;
  z-index: -1;
}

.Genres li a {
  color: #fff;
}

.Genres li span a {
  color: #980000;
}

.Le-main {
  display: grid;
  gap: 20px;
  grid-template-columns: 18% 18% 18% 18% 18%;
}

.na-main {
  display: grid;
  gap: 20px;
  grid-template-columns: 18% 18% 18% 18% 18%;
}

.es-main {
  display: grid;
  gap: 15px;
  grid-template-columns: 24% 24% 24% 24%;
}

.tp-main h5 {
  color: #980000;
  font-size: 16px;
}

.tp-main {
  background: transparent linear-gradient(90deg, #1d1d1d 0%, #00000000 100%) 0% 0% no-repeat padding-box;
  padding: 15px;
  margin-bottom: 10px;
}

.es-p {
  font-weight: 300;
  margin-top: -10px;
  margin-bottom: 25px;
  font-size: 14px;
  color: #ffffff6b;
}

.es-p1 {
  font-size: 20px;
  letter-spacing: -0.48px;
}

.tp-inner img {
  width: 100%;
  margin-top: 10px;
}

/*Ecommerce Page*/
.ofnav li {
  list-style: none;
  line-height: 40px;
  font-size: 17px;
}

.ofnav a {
  color: white;
  text-decoration: none;
}

button.btn-close.text-reset {
  filter: invert(1);
}

.offcanvas {
  background-color: #000000;
  width: 23% !important;
}

.has-search .form-control-feedback {
  position: absolute;
  right: 15px;
  line-height: 2.375rem;
  font-weight: 100;

}

.has-search {
  position: relative;
}

.form-control {
  border-radius: 25px;
  background-color: #282828;
  color: white !important;
  border: transparent;
}

input.form-control::placeholder {
  color: white;
  font-weight: 100;
}

input.form-control:focus {
  background-color: #282828;
  font-weight: 100;
}

.notice_box,
.notice_box *,
.notice_box *:before,
.notice_box *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.notice_box {
  position: relative;
  float: left;
  margin-top: 8px;
}

.btn {
  font-size: 30px;
}

.btn i {
  color: white;
  font-weight: 100
}

.notice_box .bubble_count {
  position: absolute;
  top: 3px;
  right: 21px;
  color: black;
  font-size: 10px;
  background: white;
  padding: 0px 5px;
  border-radius: 25px;
}

.notice_box a {
  font-size: 27px;
  padding-right: 30px;
  float: right;
  color: white;
}

.nav3 {
  float: right;
}

.EcomSec1 {
  background: url(../img/EcomBg1.png);
  background-position: center;
  background-repeat: no-repeat;
  padding: 370px 20px;
  margin-top: -170px;
  color: white;
  text-align: center;
}

.EcomSec1 .item {
  width: 80%;
  margin: auto;
}

.EcomSec1 h1 {
  font-size: 84px;
  font-weight: 900;
}

.EcomSec1 p {
  font-weight: 300;
}

.form-contrl {
  width: 100%;
  background-color: #ffffff1a;
  border-radius: 25px;
  color: #000;
  padding: 5px;
  border: 0;
}

.form-contrl-feedback {
  position: absolute;
  right: 15px;
  line-height: 36px;
  font-weight: 100;
}

.has-search {
  position: relative;
}

input.form-contrl::placeholder {
  font-weight: 100;
  color: white;
}

input.form-contrl:focus {
  font-weight: 100;
  color: white;
}

.EcomSec2 {
  padding-bottom: 75px;
}

.EOW {
  position: relative;
}

.textOfEcomSec2 {
  padding: 15px;
  background-color: white;
  color: black;
  width: 100%;
  position: absolute;
  bottom: 0;
  border-radius: 10px;
}

.textOfEcomSec2 p {
  margin-bottom: 5px;
  font-size: 10px;
  color: #000;
}

.EcomSec2 img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.ES2 {
  display: grid;
  grid-template-columns: 18% 18% 18% 18% 18%;
  gap: 30px;
  font-family: 'Montserrat';
}

.EOW span {
  text-decoration: line-through;
  font-weight: 200;
}

.EOW h6 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
}

.EOW:hover .textOfEcomSec2 {
  background-color: #980000;
  color: #fff;
  transition: 0.3s;
}

.EOW:hover .textOfEcomSec2 p,
.EOW:hover .textOfEcomSec2 h6 {
  color: #fff !important;
  transition: 0.3s;
}

.redfoot p {
  margin-bottom: 0;
}

.EcomSec1 .owl-nav {
  font-size: 40px;
  color: #fff;
}

.EcomSec1 .owl-prev {
  position: absolute;
  left: 10px;
  top: 50%;
}

.EcomSec1 .owl-next {
  position: absolute;
  right: 10px;
  left: auto;
  top: 50%;
}

.logo {
  width: 80px;
}

#ecom-head {
  padding: 5px 0;
}

.explore-a {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
}

#ecom-head ul {
  padding-left: 10px;
  margin-top: 30px;
}

@media only screen and (min-width:768px) and (max-width:1023px) {
  .notice_box {
    margin-top: 11px;
  }

  .notice_box a {
    font-size: 22px;
  }

  .offcanvas {
    width: 35% !important;
  }

  header ul {
    padding-left: 0;
  }

  .ofnav .form-control {
    margin-bottom: 10px;
  }

  .Sec1 h1 {
    font-size: 20px;
  }

  .Sec2 h1 {
    font-size: 30px;
  }

  .Sec2 p {
    font-size: 14px;
  }

  .SN {
    padding: 5px 15px
  }

  .SN a {
    font-size: 12px;
  }

  .Sec1 {
    padding: 55px 65px;
  }

  .Icons a {
    font-size: 18px;
  }

  .pages li a {
    font-size: 14px;
    padding-right: 18px;
  }

  .redfoot p {
    font-size: 14px;
  }

  header img {
    width: 55%;
  }

  .EcomSec1 h1 {
    font-size: 22px;
  }

  .EcomSec1 p {
    font-size: 12px;
  }

  .ES2 {
    grid-template-columns: 49% 49%;
    gap: 10px;
  }

  .EcomSec2 {
    padding-bottom: 0px;
    padding-top: 35px;
  }

  .EcomSec1 {
    margin-top: -110px;
  }

  .EOW h6 {
    font-size: 14px;
  }

  .EOW i {
    font-size: 12px;
  }

  .textOfEcomSec2 {
    padding: 10px;
  }
}

/*Ecommerce Page*/

/*DSR Page*/
.Sec1 img {
  width: 100%;
}

.Sec1 {
  padding: 70px 100px;
}

.Sec1 h1 {
  text-align: center;
  margin-top: -50px;
  font-weight: 700;
}

.Sec1 a {
  color: white;
  text-decoration: none;
}

.dsr-Sec2 {
  text-align: center;
  width: 70%;
  margin: auto;
  padding-bottom: 80px;
}

.dsr-Sec2 h1 {
  font-size: 84px;
  font-weight: 900;
}

.dsr-Sec2 p {
  font-weight: 300;
}

.SN {
  border: transparent;
  background-color: #980000;
  color: #fff;
  height: 50px;
  display: flex;
  width: 145px;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
}

.SN:hover {
  color: #fff;
  transform: translateY(-10px) !important;
  transition: 0.5s;
}

.btn-get-started:hover,
.btn-get-started1:hover {
  transform: translateY(-10px) !important;
  transition: 0.3s;
}

.es-main-inner:hover img,
.na-main-inner:hover img,
.le-main-inner:hover img {
  transform: scale(1.05);
  transition: 0.3s;
}

/*DSR Page*/

/*Manga Page*/
/*  Manga Page  */

.mIcons i {
  background-color: #b9b9b92b;
  margin-left: 10px;
  padding: 7px;
}

.mIcons a {
  color: white;
}

.MSignIn {
  background-color: #980000;
  color: white;
  padding: 15px 5px;
  border-radius: 25px;
  border: transparent;
  float: right;
}

.mobbtn {
  border: transparent;
  background-color: #000;
  color: white;
  float: right;
  font-size: 25px;
}

.BoxOfMSec1 {
  background-color: #980000;
}

.BoxOfMSec1 img {
  clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 0% 100%);
  width: 100%;
}

.div1 {
  padding: 0px 15px;
}

#Mangaheader img {
  width: 100%;
}

.p1 {
  margin-bottom: 5px;
  font-weight: 300;
}

.div1 h6 a {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-decoration: none;
}

.p2 {
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 12px;
}

.p3 {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 300;
}

.p4 {
  font-size: 14px;
  padding-right: 5px;
}

.linksss a {
  color: white;
  text-decoration: none;
  padding-right: 8px;
}

.R262 {
  background-color: #980000;
  margin: 50px auto;
  text-align: center;
  padding: 20px;
  width: 98%;
}

.R262 p {
  margin-bottom: 5px;
  font-weight: 300;
}

.R262 a {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.R262 a p {
  margin-bottom: 0;
  line-height: 0px;
}

.Mfbtn {
  background-color: #4166B0;
  width: 120px;
  height: 35px;
  border: transparent;
}

.Mxbtn {
  background-color: #000000;
  width: 120px;
  height: 35px;
  border: transparent;
}

.Mmbtn {
  background-color: #4388FC;
  width: 120px;
  height: 35px;
  border: transparent;
}

.Mrbtn {
  background-color: #FC4400;
  color: white;
  width: 120px;
  height: 35px;
  border: transparent;
}

.Mwbtn {
  background-color: #23D165;
  width: 120px;
  height: 35px;
  border: transparent;
}

.Mtbtn {
  background-color: #0086CA;
  width: 120px;
  height: 35px;
  border: transparent;
}

.dk a {
  text-decoration: none !important;
  padding-left: 20px;
}

.notnav {
  float: right;
}

.tabbtn {
  background: transparent;
  color: white;
  border: transparent;
}

.M_Maindiv {
  display: grid;
  grid-template-columns: 13.7% 13.7% 13.7% 13.7% 13.7% 13.7% 13.7%;
  gap: 10px;
}

.M_indiv img {
  width: 100%;
}

.M_indiv {
  position: relative;
}

.Imgtext {
  text-align: center;
  position: absolute;
  bottom: 0;
  z-index: 2;
  font-weight: 300;
}

.MSec2 .container {
  border-bottom: 2px solid red;
  padding-bottom: 40px;
}

.up_line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;

}

.Chapdiv {
  background-color: #5B0404;
  display: flex;
  justify-content: space-between;
  border-radius: 35px;
  margin-bottom: 10px;
  padding: 2px 10px !important;
}

.Chapdiv p {
  margin-bottom: 0;
}

.up_line a {
  color: white;
  text-decoration: none;
  background-color: #980000;
  padding: 3px 10px;
  border-radius: 7px;
  border: 1px solid white;
  font-size: 11px;
  line-height: 13px;
}

.Bigdivofsec3 {
  display: grid;
  grid-template-columns: 31.3% 31.3% 31.3%;
  gap: 0 35px;
}

.TextOfRU {
  background-color: #5b040480;
  padding: 10px;
  margin-bottom: 20px;
  padding: 10px 10px !important;
}

.Chapdiv {
  font-size: 12px;
  font-weight: 200;
}

.up_line P {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
}

.Maindivofsec3 img {
  width: 100%;
  height: 177px;
  object-fit: cover;
  border-radius: 8px 0px 0px 8px;
}

.Maindivofsec3 .row div {
  padding: 0;
}

.TextOfRU h5 {
  font-size: 16px;
  color: #fff;
}

.MSec3 {
  padding-top: 50px;
}

.MSec4 .owl-nav button {
  position: absolute;
  top: 50%;
  background-color: white;
  color: black;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.MSec4 .owl-nav .owl-prev {
  left: 96%;
}

.MSec4 .owl-nav .owl-prev i {
  font-size: 20px;
}

.owl-nav .owl-next i {
  font-size: 20px;
}

.MSec4 .owl-nav .owl-next {
  right: 1%;
}

.MSec4 .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.owl-dots .owl-dot:focus {
  outline: none;
}

.MSec4 .owl-nav button {
  position: absolute;
  top: -8%;
  transform: translateY(-50%);
}

.MSec4 .item {
  width: 100%;
}

.M_indiv a {
  color: white;
  text-decoration: none;
}

.navmob li {
  margin-top: 10px;
  line-height: 40px;
}

.MSignIn {
  font-size: 14px;
  width: 40%;
  margin: 10px 15px;
}

.MSec1 {
  margin: 30px;
}

.navmob li {
  list-style: none;
}

.navmob li a {
  color: #fff;
}

.navmob li a:hover {
  color: var(--accent-color);
  transition: 0.3s;
}

.navmob {
  padding-left: 25px;
}

.MSec4 {
  margin: 60px 0;
}

.MSec4 .owl-dot {
  width: 50px;
  height: 5px;
  border-radius: 12px;
  background: transparent !important;
  border: 1px solid var(--accent-color) !important;
}

.MSec4 .owl-dot.active {
  background: var(--accent-color) !important;
  transition: 0.3s;
}

/*Manga Page End*/

/*Room Page End*/
.pics-div {
  background: #2F3136;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-top: 25px;
}

.room1-inner {
  display: grid;
  grid-template-columns: 30% 70%;
  height: 100%;
}

.category-div {
  background: #35393E;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pics-div img {
  width: 63px;
  height: 63px;
}

.room1-a {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
}

.room1-b {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.genres {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 25px;
}

.stream-main img {
  width: 100%;
}

.voice-div {
  background: #292B2F;
  border: 1px solid #707070;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.profile-name {
  font-size: 12px;
  letter-spacing: -0.48px;
  color: #FFFFFF;
  font-weight: 600;
}

.profile-div img {
  width: 40px;
  height: 40px;
}

.voice-div1 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
}

.voice-div1 a {
  color: #fff;
  font-size: 14px;
}

.members-div {
  background: #35393E;
  height: 100%;
  padding: 25px 35px;
}

.members-inner a {
  font-size: 15px;
  letter-spacing: -0.68px;
  color: #FFFFFF;
  font-weight: 400;
}

.members-inner img {
  width: 51px;
  height: 51px;
}

.members-inner {
  margin-bottom: 15px;
}

.chat1-b {
  font-size: 12px;
  letter-spacing: 1.4px;
  color: #FFFFFF;
  font-weight: 300;
  margin: 0;
}

.chat-1 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.chat-1 img {
  width: 58px;
  height: 57px;
}

.message p {
  font-size: 13px;
  letter-spacing: -0.28px;
  color: #FFFFFF;
  font-weight: 300;
}

.message {
  margin-top: 10px;
}

.chat-members {
  margin-top: 20px;
}

.message-group {
  position: relative;
  margin-top: 50px;
}

.message-input {
  width: 100%;
  height: 55px;
  background: #40444B;
  border: 1px solid #707070;
  border-radius: 11px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding-left: 10px;
}

.message-input:focus {
  outline: 0 !important;
}

.send-btn {
  width: 40px;
  height: 42px;
  background: #FFFFFF;
  border: 1px solid #707070;
  border-radius: 50%;
  font-size: 25px;
  color: #40444B;
  position: absolute;
  top: 6px;
  right: 6px;
}

.voice-div1 a:hover {
  color: var(--accent-color);
  transition: 0.3s;
}

/*Room Page End*/

/*Anime Page End*/
.anime1-a {
  color: #ffffff7a;
}

.anime1-b {
  color: #fff;
}

.anime-1 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 400;
  margin: 35px 0;
}

.anime-2 {
  background: #202020;
  border-radius: 10px;
  padding: 15px;
  display: grid;
  grid-template-columns: 19% 19% 19% 19% 19%;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.anime-category {
  background: #2e2e2e;
  border-radius: 4px;
  text-align: center;
  padding: 5px;
  font-size: 13px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anime-category select {
  background: transparent;
  border: 0;
  color: #ffffffba;
}

.anime-category select:focus {
  outline: 0 !important;
}

.filter-div button {
  width: 100%;
  background: var(--accent-color);
  height: 40px;
  color: #fff;
  border: 0;
  border-radius: 4px;
}

.anime-category option {
  color: #000 !important;
}

.search-div input {
  border: 1px solid #ffffff7d;
  border-radius: 4px;
  background: transparent;
  height: 40px;
  padding-left: 10px;
  width: 100%;
  font-size: 14px;
}

.anime-category label {
  color: #ffffff6b;
}

.anime3-a {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.anime3-inner {
  background: #202020 0% 0% no-repeat padding-box;
  border-radius: 10px 10px 0 0;
  padding: 15px 25px;
}

.anime3-inner1 img {
  width: 100%;
}

.anime3-inner1 {
  position: relative;
}

.anime3-inner12 a {
  font-size: 14px;
  color: #fff;
  display: block;
}

.number-top {
  width: 38px;
  height: 34px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin: 0;
}

.number-top1 {
  width: 38px;
  height: 34px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff70;
  border-radius: 3px;
  color: #ffffff70;
  font-size: 18px;
  margin: 0;
}

.anime3-innerabc {
  display: grid;
  gap: 10px;
  grid-template-columns: auto auto;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 20px;
}

.views {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff85;
}

.views p {
  color: #fff;
  letter-spacing: 0.28px;
  font-size: 14px;
  margin: 0;
}

.anime3-inner2-inner a {
  color: #fff;
  font-size: 13px;
}

.anime3-inner2-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.anime3-inner2 {
  background: #202020;
  padding: 10px;
  margin-top: 5px;
  border-radius: 0 0 10px 10px;
}

.anime-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
}

.anime-list {
  display: grid;
  grid-template-columns: 19% 19% 19% 19% 19%;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 50px;
}

.anime-title {
  font-size: 14px;
  text-align: center;
  color: #fff;
  display: block;
  width: 90%;
  margin: 10px auto;
  line-height: 17px;
}

.hd {
  font-size: 12px;
  background: #fff;
  width: fit-content;
  padding: 5px;
  border-radius: 6px 0px;
  font-weight: 500;
  color: #000;
  position: absolute;
  top: 0;
  left: 0;
}

.anime-box {
  position: relative;
}

.ep {
  font-size: 12px;
  background: var(--accent-color);
  width: fit-content;
  padding: 5px;
  border-radius: 0px 6px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  bottom: -1px;
  left: 0;
  margin: 0;
}

.sub {
  font-size: 12px;
  background: #fff;
  width: fit-content;
  padding: 5px;
  border-radius: 6px 0px;
  font-weight: 500;
  color: var(--accent-color);
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
}

.anime-epis {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  height: 250px;
}

/*Anime Page End*/

/*TJ Page*/
.tjanime-2 {
  background: var(--accent-color);
  border-radius: 10px;
  padding: 15px;
  display: grid;
  grid-template-columns: 19% 19% 19% 19% 19%;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.tjanime-category {
  background: #760000;
  border-radius: 4px;
  text-align: center;
  padding: 5px;
  font-size: 13px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tjanime-category select {
  background: transparent;
  border: 0;
  color: #ffffffba;
}

.tjanime-category select:focus {
  outline: 0 !important;
}

.tjfilter-div button {
  width: 100%;
  background: #760000;
  height: 40px;
  color: #fff;
  border: 0;
  border-radius: 4px;
}

.tjanime-category label {
  color: #ffffffad;
}

.tjanime-category option {
  color: #000;
}

.tjanime3-inner {
  background: var(--accent-color);
  border-radius: 10px 10px 0 0;
  padding: 15px 25px;
}

.tjanime3-inner2 {
  background: var(--accent-color);
  padding: 10px;
  margin-top: 5px;
  border-radius: 0 0 10px 10px;
}

.tjnumber-top1 {
  width: 38px;
  height: 34px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 3px;
  color: #fff;
  font-size: 18px;
  margin: 0;
}

/*TJ Page*/

/* Reels Page start */

.ReelsMainSec {
  font-family: 'Montserrat';
}

.Reelslogo {
  width: 40%;
  margin-left: 80px;
}

.sidebar-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: flex-start;
  height: 100%;
}

.reelsdiv {
  display: flex;
  width: 35%;
  margin: auto;
  padding: 80px 0px;
  gap: 10px;
  flex-direction: column;
  height: 100vh;
  overflow-y: scroll;
}

.reelsdiv::-webkit-scrollbar {
  display: none;
}

.icon a:focus {
  background: #980000;
  transition: 0.3s;
}

.sidebar {
  width: 80px;
  height: 100%;
  background-color: #262626;
  transition: width 0.3s ease;
  overflow: hidden;
  position: relative;
}

.sidebar .usersss h5 {
  opacity: 0;
}

.First_sec a img {
  height: 25px;
  width: 25px;
  margin-left: 7px;
}

.First_sec {
  margin-left: 10px;
  padding-bottom: 10px;
}

.First_sec {
  border-bottom: 1px solid white;
  margin-top: 50px;
  width: 170px;
}

.usersss {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
}

.Settings a {
  color: white;
}

.Settings {
  padding-left: 10px;
  padding-top: 15px;
}

.usersss {
  padding-left: 15px;
}

.sidebar.open {
  width: 250px;
}

.sidebar.open .usersss h5 {
  opacity: 1;
  margin-left: 20px;
  margin-bottom: 0;
  padding-top: 15px;
}

.sidebar.open .usersss {
  margin-bottom: 5x;
}

.sidebar .profile {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  color: white;
  transition: padding 0.3s ease;
  width: 100%;
}

.sidebar .profile img {
  position: relative;
  left: 18px;
  opacity: 1;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: width 0.3s ease, height 0.3s ease;
}

.sidebar .profile span {
  margin-left: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
}

.sidebar.open .profile img {
  width: 30px;
  height: 30px;
}

.sidebar .Reelslogo img {
  width: 80%;
}

.sidebar.open .profile span {
  opacity: 1;
}

.sidebar ul {
  position: relative;
  left: -13px;
  list-style-type: none;
  padding: 0px 0px;
  position: relative;
  margin-bottom: 0;
}

.reelsheader {
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  gap: 20px;
}

.reelsheader p {
  margin-bottom: -10px;
}

.reelsheader p a {
  color: white;
  text-decoration: none;
}

.Reelsimg img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.icon a {
  align-items: center;
  color: white;
  background: transparent radial-gradient(closest-side at 50% 50%, #1C1C1C 0%, #5D5D5D 100%) 0% 0% no-repeat padding-box;
  border-radius: 25px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  margin: auto;
  text-decoration: none;
}

.icon {
  padding-bottom: 5px;
  text-align: center;
}

.icon p {
  margin-top: 5px;
  font-size: 12px;
}

.sidebar ul li {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  border-radius: 25px;
  transition: 0.3s ease;
}

.sidebar ul li:hover {
  background-color: #4b4b4b;
  color: white;
}

.sidebar ul li i {
  position: relative;
  left: 4px;
  font-size: 24px;
  margin-right: 20px;
  transition: opacity 0.3s ease;
}

.sidebar ul li span {
  margin-left: 15px;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.sidebar.open ul li span {
  opacity: 1;
  font-size: 13px;
}

.toggle-btn {
  position: absolute;
  top: 35px;
  left: 20px;
  font-size: 25px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 50%;
  z-index: 1000;
}

.toggle-btn i {
  position: relative;
  top: 1px;
}

.content {
  position: relative;
  left: 48%;
  top: 5%;
  width: 200px;
  transition: color 0.5s ease;
}

.content-line {
  width: 120px;
  margin-top: 3px;
  height: 1.5px;
  background-color: black;
  outline: none;
  border: none;
  border-radius: 50px;
  transition: background-color 0.5s ease;
}

.content:hover {
  color: #0d6efd;
}

.content:hover .content-line {
  background-color: #0d6efd;
}

.reelsinnerdiv {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

/* Reels Page End */

/* Desktop Navigation */
@media (min-width: 1200px) {

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
}

/* Mobile Navigation */

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }

  .notice_box {
    margin-top: 11px;
  }

  .notice_box a {
    font-size: 22px;
  }

  .offcanvas {
    width: 35% !important;
  }

  header ul {
    padding-left: 0;
  }

  .ofnav .form-control {
    margin-bottom: 10px;
  }

  .Sec1 h1 {
    font-size: 20px;
  }

  .dsr-Sec2 h1 {
    font-size: 30px;
  }

  .dsr-Sec2 p {
    font-size: 14px;
  }

  .SN {
    padding: 5px 15px
  }

  .SN a {
    font-size: 12px;
  }

  .Sec1 {
    padding: 55px 65px;
  }

  .Icons a {
    font-size: 18px;
  }

  .pages li a {
    font-size: 14px;
    padding-right: 18px;
  }

  .redfoot p {
    font-size: 14px;
  }

  header img {
    width: 55%;
  }

  .EcomSec1 h1 {
    font-size: 22px;
  }

  .EcomSec1 p {
    font-size: 12px;
  }

  .ES2 {
    grid-template-columns: 49% 49%;
    gap: 10px;
  }

  .EcomSec2 {
    padding-bottom: 0px;
    padding-top: 35px;
  }

  .EcomSec1 {
    margin-top: -110px;
  }

  .EOW h6 {
    font-size: 14px;
  }

  .EOW i {
    font-size: 12px;
  }

  .textOfEcomSec2 {
    padding: 10px;
  }
}

@media only screen and (max-width: 767px) {

  /*Manga Page */
  #Mangaheader img {
    width: 50%;
    float: right;
  }

  .mobbtn {
    float: left;
  }

  .BoxOfMSec1 {
    margin-bottom: 10px;
  }

  .R262 {
    padding: 15px;
    width: 95%;
  }

  .R262 a {
    margin-bottom: 6px;
  }

  .M_Maindiv {
    display: grid;
    grid-template-columns: 49% 49%;

  }

  .Bigdivofsec3 {
    display: grid;
    grid-template-columns: 100%;
    gap: 0 35px;
    text-align: center;
    justify-items: center;
    justify-content: center;
  }

  .MSec4 .owl-nav .owl-prev {
    left: 90%;
  }

  .owl-nav .owl-next i {
    font-size: 20px;
  }

  .dk a {
    padding-left: 15px;
    font-size: 13px;
  }

  .MSec3 h1 {
    font-size: 14px;
    margin-bottom: 0;
  }

  .MSec4 .owl-nav .owl-next i {
    font-size: 20px;
  }

  .Mfbtn {
    width: 100px;
  }

  .Mxbtn {
    width: 100px;
  }

  .Mmbtn {
    width: 100px;
  }

  .Mrbtn {
    width: 100px;
  }

  .Mwbtn {
    width: 100px;
  }

  .Mtbtn {
    width: 100px;
  }

  /*Manga page End */

  .notice_box {
    display: none;
  }

  body {
    padding-right: 0 !important;
  }

  .offcanvas {
    width: 50% !important;
  }

  header ul {
    padding-left: 0;
  }

  .ofnav .form-control {
    margin-bottom: 10px;
  }

  .Sec1 h1 {
    font-size: 22px;
  }

  .dsr-Sec2 h1 {
    font-size: 22px;
    padding-top: 30px;
  }

  .dsr-Sec2 p {
    font-size: 12px;
  }

  .Sec1 {
    padding: 35px 35px;
  }

  .Sec1 img {
    padding-top: 25px;
  }

  .SN {
    padding: 2px 9px
  }

  .SN a {
    font-size: 12px;
  }

  .Icons a {
    font-size: 18px;
  }

  .pages li a {
    font-size: 12px;
    padding-right: 18px;
  }

  .redfoot p {
    font-size: 11px;
  }

  header img {
    width: 55%;
  }

  .owl-nav .owl-next i {
    font-size: 25px;
  }

  .owl-nav .owl-prev i {
    font-size: 25px;
  }

  .owl-nav button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
  }

  .EcomSec1 h1 {
    font-size: 22px;
  }

  .EcomSec1 p {
    font-size: 12px;
  }

  .ES2 {
    grid-template-columns: 49% 49%;
    gap: 10px;
  }

  .EcomSec2 {
    padding-bottom: 0px;
    padding-top: 35px;
  }

  .EcomSec1 {
    padding: 228px 20px 200px;
    margin-top: -110px;
  }

  .EOW h6 {
    font-size: 8px;
  }

  .EOW i {
    font-size: 10px;
  }

  .textOfEcomSec2 {
    padding: 10px;
  }

  .TopAir {
    font-size: 20px;
    text-align: center;
    margin-top: 25px;
  }

  .tp-inner {
    text-align: center;
  }

  .tp-inner img {
    margin-top: 10px;
  }

  .smhead {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .Le-main,
  .na-main,
  .es-main {
    gap: 10px;
    grid-template-columns: 49% 49%;
  }

  .LE h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
  }

  .LE {
    text-align: center;
  }

  .t {
    font-size: 14px;
  }

  .gen {
    font-size: 24px;
    margin-top: 45px;
    text-align: center;
  }

  .dp-grid {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 10px;
    text-align: center
  }

  .card1 img {
    width: 100%;
  }

  .top-10,
  .tre-pos {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
  }

  .es-p1 {
    font-size: 16px;
  }

  .es-p {
    font-size: 12px;
  }

  .sec8 {
    display: none;
  }

  .logo10 {
    width: 100%;
    margin-bottom: 20px;
  }

  .foot-link a {
    font-size: 13px;
  }

  .copyright p {
    font-size: 12px;
  }

  .trend-1 {
    font-size: 32px;
  }

  .trending {
    padding: 50px 0 0;
    height: 50vh;
  }

  .carousel__body {
    padding: 20px 0 0;
    margin-top: 0;
  }

  .trend-1 span:before {
    height: 97%;
  }

  .main-inner h2 {
    font-size: 44px;
  }

  .main-inner p {
    font-size: 14px;
    width: 100%;
  }

  .main-inner .btn-get-started,
  .main-inner .btn-get-started1 {
    font-size: 12px;
    padding: 13px 18px;
    margin: 10px 5px;
  }

  .main-1 .owl-nav {
    font-size: 20px;
  }

  .section-title1 {
    width: 95%;
    padding: 25px 15px;
  }

  .section-title1 h2 {
    font-size: 20px;
    width: 60%;
    line-height: 26px;
  }

  .section-title1 p {
    font-size: 14px;
    width: 60%;
  }

  .section-title1 img {
    position: absolute;
    width: 120px;
    right: 0px;
    top: -18px;
  }

  .main-1 h2 span:before {
    height: 92%;
  }
}