@charset "UTF-8";
:root {
  --bodyFont: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol','Noto Color Emoji';
  --bodyBg:#f7f7fa;
  --primaryColor: #222222;
  --secondaryColor: #00CBD5;
  --paraColor: #555555;
  --optionalColor: #888888;
  --bgColor: #F6F6F6;
  --headerColor: #333;
  --bgColorTwo: #240135;
  --grayColor: #F8F8F8;
  --blackColor: #190B32;
  --whiteColor: #ffffff;
  --whiteRGB: 255,255,255;
  --offwhiteColor: #ccc;
  --footerColor: #02161A;
  --footerBg: #efeff4;
  --yellowColor: #FFCB36;
  --fontSize: 16px;
  --transition: all ease .5s;
  --transitionTwo: all ease .9s;
  --btnGradient:linear-gradient(134deg, #07d8e2 54.07%, #35e99d 99.24%);
  --box-shadow: 0px 10px 40px 0px rgba(153, 153, 153, 0.25);
  --border-radius:14px;
  --box-shadow-light: 0 5px 20px rgba(0, 0, 0, 0.02);
  --border:1px solid #eee;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}
body{
  /*!background: url(../img/bg.jpeg) no-repeat var(--bodyBg);*/
  background: var(--bodyBg);
}
.breadcrumb{
  font-size: .875rem;
  opacity: .6;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, ">");
  opacity: .5;
}
:focus,
button:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}
.form-control:focus {
  box-shadow: none;
}
a,
button,
input[type=submit] {
  cursor: pointer;
}
/*! Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
/*! Firefox */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
input, textarea, select {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 15px 12px;
  width: 100%;
  font-size: 16px;
}
input {
  height: 50px;
}
select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/down-arrow.webp);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: calc(100% - 15px) 50%;
}
a {
  text-transform: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--paraColor);
}
a:hover,
a :focus {
  text-decoration: none;
  box-shadow: none;
}
a:focus {
  outline: 0 solid;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: var(--bodyFont);
  color: var(--primaryColor);
}
body {
  font-size: 16px;
  font-family: var(--bodyFont);
  color: var(--paraColor);
  font-weight: 400;
  line-height: 30px;
}
p {
  font-size: 16px;
  line-height: 1.4;
}
select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/down-arrow.webp);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: calc(100% - 15px) 50%;
}
.pt-100 {
  padding-top: 100px;
}
.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.pb-25 {
  padding-bottom: 25px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-75 {
  padding-bottom: 75px;
}
.pb-100 {
  padding-bottom: 100px;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
#message {
  padding: 0;
  margin: 0;
}
.help-block {
  color: #E31C25;
}

.list-style {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-style li {
  list-style: none;
}
/*!ratio-img*/
.ratio img{
  object-fit: cover;
}
.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}
.ratio-3x2 {
  --bs-aspect-ratio: 66.67%;
}
.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}
.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}
.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}
.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}
/*!diy的文本截断*/
.truncate-line3 {
  max-height: calc(1.6rem * 3);
  max-width: 100%;
  line-height: 1.6rem;
  height: calc(1.6rem * 3);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.truncate-line2 {
  max-height: calc(1.6rem * 2);
  max-width: 100%;
  line-height: 1.6rem;
  height: calc(1.6rem * 2);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.truncate-line1 {
  max-height: calc(1.6rem * 1);
  line-height: 1.6rem;
  height: calc(1.6rem * 1);
  display: -webkit-box;
  /*!white-space: nowrap;*/
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
/*!header*/
.mnav{list-style:none;padding-left: 0;}
.offcanvas{
  max-width:75%;
}
.navbar-area.sticky {
  top: -88px;
  left: 0;
  width: 100%;
  z-index: 999;
  position: sticky !important;
  background-color: var(--whiteColor);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar-area.sticky .navbar {
  border-radius: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}
.navbar-area.sticky.header-game.sticky {
  top: 0;
}
.navbar-area .header-top {
  padding: 19.5px 0;
}
.navbar-area .header-top .navbar-brand img {
  display: block;
  margin: 0 auto;
}
.navbar-area .header-top .social-profile {
  text-align: right;
}
.navbar-area .header-top .social-profile li a {
  width: 40px;
  height: 40px;
}
.navbar-area .header-top .social-profile li a:hover {
  border-color: transparent;
  background-color: var(--secondaryColor);
}
.navbar-area .header-top .social-profile li a:hover i {
  color: var(--whiteColor);
}
.navbar-area.header-game {
  background-color: rgba(var(--whiteRGB),.95);
  backdrop-filter: blur(20px);
  z-index: 9;
  position: relative;
}
.navbar-area.header-game .navbar {
  padding: 10px 0;
}
.navbar-area.header-game .navbar .others-option .option-item .search-btn i {
  color: var(--primaryColor);
}
.navbar-area.header-game .navbar .navbar-nav .nav-item .nav-link {
  font-weight: 500;
}
.navbar-area .navbar {
  background-color: var(--whiteColor);
  border-radius: 7px;
  padding: 4px 0 5px;
}
.navbar-area .navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
}
.navbar-area .navbar .navbar-brand img {
  max-height: 30px;
}
.navbar-area .navbar .navbar-toggler {
  color: var(--primaryColor);
  font-size: inherit;
  box-shadow: unset;
  border: none;
  padding: 0;
}
.navbar-area .navbar .navbar-toggler .burger-menu {
  cursor: pointer;
}
.navbar-area .navbar .navbar-toggler .burger-menu span {
  height: 3px;
  width: 30px;
  margin: 5px 0;
  display: block;
  background: var(--whiteColor);
}
.navbar-area .navbar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.navbar-area .navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar-area .navbar .navbar-nav .nav-item:last-child .nav-link {
  padding-right: 0;
}
.navbar-area .navbar .navbar-nav .nav-item:first-child .nav-link {
  padding-left: 0;
}
.navbar-area .navbar .navbar-nav .nav-item.active .nav-link, .navbar-area .navbar .navbar-nav .nav-item:hover .nav-link {
  color: var(--secondaryColor);
}
.navbar-area .navbar .navbar-nav .nav-item .nav-link {
  padding-right: 30px;
  font-family: var(--bodyFont);
  font-weight: 400;
  position: relative;
  color: var(--primaryColor);
  font-size: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
  transition: var(--transition);
}
.navbar-area .navbar .navbar-nav .nav-item .nav-link:hover, .navbar-area .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--secondaryColor);
}
.navbar-area .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 40px;
  opacity: 0;
  z-index: 99;
  border: none;
  min-width: 170px;
  margin-top: 0;
  display: block;
  padding: 12px 0;
  border-radius: 5px;
  position: absolute;
  visibility: hidden;
  background: var(--whiteColor);
  transition: all 0.2s ease-in-out;
  transform: translate3d(0, 18px, 0);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item {
  margin: 0;
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  display: block;
  font-size: 15px;
  padding: 8px 25px;
  color: var(--primaryColor);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle:before {
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-90deg);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secondaryColor);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -100%;
  margin-top: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--primaryColor);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secondaryColor);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -100%;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--primaryColor);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover, .navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active {
  color: var(--secondaryColor);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 100%;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--primaryColor);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover, .navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active {
  color: var(--secondaryColor);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 20px;
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-toggle:before {
  position: absolute;
  content: "\e664";
  line-height: 1;
  right: 32px;
  top: 14px;
  font-family: 'rgicon' !important;
  font-size: 12px;
}
.navbar-area .navbar .navbar-nav .nav-item .dropdown-toggle:after {
  display: none;
}
.navbar-area .navbar .others-option {
  position: relative;
  top: 2px;
}
.navbar-area .navbar .others-option .option-item .search-btn {
  background-color: transparent;
  border: none;
}
.navbar-area .navbar .others-option .option-item .search-btn i {
  color: var(--whiteColor);
  font-size: 20px;
  line-height: 24px;
}
.navbar-area .navbar .others-option .option-item .btn-one,
.navbar-area .navbar .others-option .option-item .btn-two,
.navbar-area .navbar .others-option .option-item .btn-three {
  padding: 12px 15px;
}
.searchModal {
  overflow-x: hidden;
}
.searchModal .modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 15px;
  background-color: var(--whiteColor);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.searchModal .modal-dialog .modal-content {
  border: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0;
  max-width: 720px;
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
}
.searchModal .modal-dialog .modal-content form {
  width: calc(100% - 50px);
  position: relative;
}
.searchModal .modal-dialog .modal-content form .form-control {
  height: 55px;
  border-radius: 0;
  box-shadow: unset;
  border-radius: 5px;
  color: var(--titleColor);
  font-size: var(--fontSize);
  border: none;
  background-color: var(--bodyBg);
  padding-left: 18px;
  padding-right: 18px;
}
.searchModal .modal-dialog .modal-content form .form-control::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: var(--paraColor);
}
.searchModal .modal-dialog .modal-content form .form-control::placeholder {
  transition: var(--transition);
  color: var(--paraColor);
}
.searchModal .modal-dialog .modal-content form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.searchModal .modal-dialog .modal-content form .form-control:focus::placeholder {
  color: transparent;
}
.searchModal .modal-dialog .modal-content form .form-control:-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: var(--paragraphColor);
}
.searchModal .modal-dialog .modal-content form .form-control:-ms-input-placeholder {
  -ms-transition: var(--transition);
  transition: var(--transition);
  color: var(--paragraphColor);
}
.searchModal .modal-dialog .modal-content form button {
  top: 8px;
  border: 0;
  padding: 0;
  right: 10px;
  width: 50px;
  height: 40px;
  font-size: 17px;
  border-radius: 5px;
  position: absolute;
  transition: var(--transition);
  color: var(--whiteColor);
  background: var(--btnGradient);
}
.searchModal .modal-dialog .modal-content form button:hover {
  filter: hue-rotate(10deg);
}
.searchModal .modal-dialog .modal-content form button i {
  left: 0;
  right: 0;
  top: 50%;
  line-height: 1;
  position: absolute;
  color: var(--whiteColor);
  transform: translateY(-50%);
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.responsive-navbar {
  border: 0 !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.responsive-navbar .offcanvas-body {
  padding: 30px;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item {
  border: 0;
  padding: 0;
  border-radius: 0;
  color: var(--titleColor);
  background-color: transparent;
  box-shadow: none;
  font-weight: 600;
  position: relative;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button {
  width: 100%;
  display: block;
  box-shadow: unset;
  position: relative;
  padding: 0 18px 0 0;
  color: var(--titleColor);
  background-color: transparent;
  transition: var(--transition);
  font-size: var(--fontSize);
  font-weight: 600;
  box-shadow: none;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button.without-icon:before {
  display: none;
}
.responsive-navbar .accordion-item a{
  display: block;
  width: calc(100% - 100px);
  height: 50px;
  line-height: 50px;
}
.responsive-navbar .toggle-btn {
  position: absolute;
  right: 0;
  top: 0%;
  font-weight: 400;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button:after {
  display: none;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button:hover, .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button.active {
  color: var(--secondaryColor);
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body {
  border: none;
  background-color: var(--whiteColor);
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item {
  color: var(--titleColor);
  margin-bottom: 15px;
  border-bottom: none;
  padding-bottom: 0;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item:last-child {
  margin-bottom: 0;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link {
  width: 100%;
  display: block;
  color: var(--titleColor);
  background-color: transparent;
  font-size: 15px;
  font-weight: 500;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link:hover, .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link.active {
  color: var(--secondaryColor);
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-button {
  width: 100%;
  display: block;
  box-shadow: unset;
  position: relative;
  padding: 0 18px 0 0;
  color: var(--titleColor);
  background-color: transparent;
  font-size: 15px;
  font-weight: 500;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-button:after {
  display: none;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-body {
  background-color: transparent;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link {
  color: var(--titleColor);
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link:hover, .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link.active {
  color: var(--secondaryColor);
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-item .accordion-collapse .accordion-body {
  background-color: transparent;
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-link {
  color: var(--titleColor);
}
.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-link.active, .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-link:hover {
  color: var(--secondaryColor);
}
.responsive-navbar .offcanvas-body .contact-info {
  margin-top: 10px;
}
.responsive-navbar .offcanvas-body .contact-info li {
  position: relative;
  margin-bottom: 12px;
  color: var(--titleColor);
  padding-left: 25px;
}
.responsive-navbar .offcanvas-body .contact-info li:last-child {
  margin-bottom: 0;
}
.responsive-navbar .offcanvas-body .contact-info li i {
  position: absolute;
  top: 9px;
  left: 0;
  transition: var(--transition);
  font-size: 18px;
  line-height: 0.6;
  margin: 0 auto;
  color: var(--secondaryColor);
}
.responsive-navbar .offcanvas-body .contact-info li span {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f8f8f8;
  margin-right: 10px;
  transition: var(--transition);
}
.responsive-navbar .offcanvas-body .contact-info li p,
.responsive-navbar .offcanvas-body .contact-info li a {
  color: var(--paraColor);
  transition: var(--transition);
  display: block;
  margin: 0;
}
.responsive-navbar .offcanvas-body .contact-info li a:hover {
  color: var(--secondaryColor);
}
.responsive-navbar .offcanvas-body .contact-info li:hover span {
  background-color: var(--secondaryColor);
}
.responsive-navbar .offcanvas-body .contact-info li:hover span i {
  color: var(--whiteColor);
}
.responsive-navbar .offcanvas-body .social-profile {
  margin-top: 16px;
}
.responsive-navbar .offcanvas-body .social-profile li {
  margin-right: 5px;
}
.responsive-navbar .offcanvas-body .social-profile li:last-child {
  margin-right: 0;
}
.responsive-navbar .offcanvas-body .social-profile li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(103, 77, 243, 0.1);
}
.responsive-navbar .offcanvas-body .social-profile li a i {
  color: var(--secondaryColor);
  font-size: 15px;
}
.responsive-navbar .offcanvas-body .social-profile li a:hover {
  background-color: var(--secondaryColor);
}
.responsive-navbar .offcanvas-body .social-profile li a:hover i {
  color: var(--whiteColor);
}
.responsive-navbar .offcanvas-body .others-option {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.responsive-navbar .offcanvas-body .others-option .option-item {
  margin-left: 25px;
}
.responsive-navbar .offcanvas-body .others-option .option-item:first-child {
  margin-left: 0;
}
.responsive-navbar .offcanvas-body .others-option .option-item .search-btn {
  top: 4px;
  border: 0;
  padding: 0;
  line-height: 1;
  font-size: 22px;
  position: relative;
  background-color: transparent;
  transition: var(--transition);
}
.responsive-navbar .offcanvas-body .others-option .option-item .search-btn:hover {
  color: var(--secondaryColor);
}

.responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item:last-child {
  margin-bottom: 0;
}

.responsive-navbar .offcanvas-body .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .navbar-area.sticky {
    top: -62px;
  }
  .searchModal .modal-dialog .modal-content .btn-close {
    width: 30px;
    text-align: right;
  }
  .searchModal .modal-dialog .modal-content form {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.sticky {
    top: -62px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar-area {
    overflow-x: hidden;
  }
  .navbar-area.header-game .navbar {
    padding: 17px 0;
  }
  .navbar-area.header-game .navbar .search-btn i {
    color: var(--primaryColor);
  }
  .navbar-area.header-game .navbar .navbar-toggler .burger-menu span {
    background: var(--primaryColor);
  }
  .navbar-area.sticky .search-btn {
    top: 10px;
  }
  .navbar-area .search-btn {
    background-color: transparent;
    border: none;
    padding: 0;
    position: absolute;
    top: 14px;
    right: 50px;
  }
  .navbar-area .search-btn i {
    color: var(--whiteColor);
    font-size: 36px;
    line-height: 40px;
  }
  .navbar-area.sticky .navbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media only screen and (min-width: 992px) {
  .navbar-area .navbar .sidebar-toggler,
  .navbar-area .navbar .others-option {
    width: 23%;
  }
  .navbar-area .navbar .others-option {
    justify-content: flex-end;
  }
  .navbar-area .navbar .sidebar-toggler img {
    position: relative;
    top: -2px;
  }
  .navbar-area .navbar .navbar {
    width: 54%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-area .navbar-brand {
    max-width: 120px;
  }
  .navbar-area.header-game .navbar .navbar-nav {
    padding-left: 15px;
  }
  .navbar-area .navbar .navbar-nav .nav-item .nav-link {
    padding-right: 22px;
    font-size: 15px;
  }
  .navbar-area .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle {
    padding-right: 30px;
  }
  .navbar-area .navbar .navbar-nav .nav-item .dropdown-toggle::before {
    top: 35px;
    right: 16px;
    font-size: 10px;
  }
  .navbar-area .navbar .others-option {
    margin-left: 10px;
  }
  .navbar-area .navbar .others-option .option-item {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area .navbar-area .container {
    max-width: 1170px;
  }
  .navbar-area .navbar .navbar-nav .nav-item .nav-link {
    padding-right: 27px;
  }
  .navbar-area .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle {
    padding-right: 36px;
  }
  .navbar-area .navbar .navbar-nav .nav-item .dropdown-toggle::before {
    right: 20px;
  }
  .navbar-area .navbar .others-option {
    margin-left: 25px;
  }
  .navbar-area .navbar .others-option .option-item {
    margin-left: 25px;
  }
  .navbar-area.header-game .navbar .navbar-nav {
    padding-left: 55px;
  }
}
@media only screen and (min-width: 1400px) {
  .navbar-area .navbar .navbar-nav .nav-item .nav-link {
    padding-right: 41px;
  }
  .navbar-area .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle {
    padding-right: 50px;
  }
  .navbar-area .navbar .others-option .option-item {
    margin-left: 25px;
  }
  .navbar-area.header-game .navbar .navbar-nav {
    padding-left: 85px;
  }
}
@media only screen and (min-width: 1600px) {
  .navbar-area .container-fluid {
    max-width: 1560px;
  }
}
/*!回顶*/
#backtotop {
  opacity: 0;
  right: 20px;
  z-index: 99;
  width: 50px;
  bottom: 100px;
  height: 50px;
  font-size: 25px;
  transition: 0.5s;
  line-height: 10px;
  background-color: var(--whiteColor);
  border-radius: 100rem;
  box-shadow: var(--box-shadow);
}
#backtotop i {
  color: var(--primaryColor);
}
#backtotop:hover {
  color: var(--primaryColor);
}
/*!按钮*/
.btn-one,
.btn-two,
.btn-three,
.btn-four,
.btn-five {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
  border: none;
  line-height: 1;
  padding: 16px 27px 21px;
  border-radius: 5px;
  overflow: hidden;
  white-space: nowrap;
}

.btn-one {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.btn-one:before {
  background-color: var(--secondaryColor);
}
.btn-one:after {
  background-color: var(--secondaryColor);
}

.btn-two {
  color: var(--whiteColor);
  background: var(--btnGradient);
}
.btn-two:hover {
  filter: hue-rotate(10deg);;
}
.btn-three {
  color: var(--secondaryColor);
  background-color: var(--bgColor);
}
.btn-three.w-100 {
  padding: 22px 20px;
  margin-top: 12px;
}
.btn-three.w-100 i {
  position: relative;
  top: 2px;
}
.btn-three i {
  font-size: 14px;
  color: var(--secondaryColor);
}
.btn-three:before {
  background: var(--secondaryColor);
}
.btn-three:after {
  background-color: var(--secondaryColor);
}
.btn-three:hover {
  color: var(--whiteColor);
}
.btn-three:hover i {
  color: var(--whiteColor);
}

.btn-four {
  color: var(--paraColor);
  background-color: var(--bgColor);
}
.btn-four:before {
  background: var(--secondaryColor);
}
.btn-four:after {
  background-color: var(--secondaryColor);
}
.btn-four:hover {
  color: var(--whiteColor);
}
.btn-four:hover i {
  color: var(--whiteColor);
}

.link-one,
.link-two,
.link-three {
  display: inline-block;
  position: relative;
  font-weight: 500;
  transition: var(--transition);
}
.link-one:after,
.link-two:after,
.link-three:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 0%;
  height: 1px;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.link-one i,
.link-two i,
.link-three i {
  position: relative;
  font-size: 18px;
  margin-right: 5px;
  transition: var(--transition);
}

.link-one {
  color: var(--secondaryColor);
  padding-right: 28px;
  text-decoration: underline;
}
.link-one:after {
  display: none;
}
.link-one i {
  position: absolute;
  right: 0;
  top: 4px;
}
.link-one:hover {
  padding-right: 32px;
  text-decoration: underline;
}

.link-two {
  color: var(--paraColor);
}
.link-two:after {
  background-color: var(--paraColor);
  visibility: visible;
  opacity: 1;
  width: 100%;
  bottom: 5px;
}
.link-two:hover {
  color: var(--primaryColor);
}
.link-two:hover:after {
  width: 50%;
  background-color: var(--primaryColor);
}

.link-three {
  color: var(--optionalColor);
}
.link-three span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background-color: var(--bgColor);
  position: relative;
  margin-left: 5px;
  transition: var(--transition);
}
.link-three span img {
  display: block;
  margin: 0 auto;
  position: relative;
  top: 7px;
  transition: var(--transition);
}
.link-three:after {
  background-color: var(--secondaryColor);
}
.link-three:hover {
  color: var(--secondaryColor);
}
.link-three:hover:hover span {
  background-color: var(--secondaryColor);
}
.link-three:hover:hover span i {
  filter: brightness(0) invert(1);
}

.bounce {
  animation: float 1500ms infinite ease-in-out;
}

.moveHorizontal {
  animation: moveHorizontal 3000ms infinite ease-in-out;
}

.moveVertical {
  animation: moveVertical 3000ms infinite ease-in-out;
}

.animationFramesTwo {
  animation: animationFramesTwo 20000ms infinite ease-in-out;
}

.animationFramesThree {
  animation: animationFramesThree 20000ms infinite ease-in-out;
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(-141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(-83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*!Section*/
.section-title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  z-index: 1;
  margin-bottom: 0;
}
.section-title .section-title-img {
  position: absolute;
  bottom: -15px;
  right: -27px;
  z-index: -1;
}

.section-title-two {
  padding-bottom: 15px;
  position: relative;
}
.section-title-two:after {
  position: absolute;
  bottom: 21px;
  left: 0;
  content: "";
  width: 50px;
  height: 15px;
  background: linear-gradient(90deg, rgba(2, 203, 213,.6), rgba(255, 210, 33, 0.2));
  border-radius: 5px;
}
.section-title-two h2 {
  font-size: 36px;
  line-height: 30px;
}

.section-title-three {
  font-size: 30px;
  line-height: 35px;
  margin: 0;
  font-weight: 700;
}

.bg-f {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
}

.bg_primary {
  background-color: var(--primaryColor);
}

.bg_secondary {
  background-color: var(--secondaryColor);
}

.bg_gray {
  background-color: var(--bgColor);
}

.rating li {
  display: inline-block;
}
.rating li i {
  color: var(--yellowColor);
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 110px;
  width: 110px;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  border-radius: 50%;
  -ms-box-shadow: 0 0 0 0 rgb(255, 255, 255);
  -o-box-shadow: 0 0 0 0 rgb(255, 255, 255);
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  animation: ripple 3s infinite;
}

.play-now {
  position: relative;
  height: 110px;
  width: 110px;
  text-align: center;
  line-height: 92px;
  background-color: transparent;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  transform-origin: center center;
  border-radius: 50%;
  margin: 0 auto;
}
.play-now i {
  display: block;
  margin: 0 auto;
}
.play-now .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.play-now .ripple:after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.social-profile li {
  display: inline-block;
  margin-right: 10px;
}
.social-profile li:last-child {
  margin-right: 0;
}
.social-profile li a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.social-profile li a i {
  transition: var(--transition);
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.social-profile li {
  display: inline-block;
}
.social-profile li:last-child {
  margin-right: 0;
}
.social-profile li a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.social-profile li a i {
  display: block;
  margin: 0 auto;
  line-height: 0.8;
  transition: var(--transition);
}
.social-profile li a:hover i {
  transform: rotate(360deg);
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content-wrapper .left-content {
  width: calc(72% - 25px);
}
.content-wrapper .sidebar {
  width: calc(28% - 35px);
}

/*!newsletter*/
.newsletter-box {
  border: 1px solid #eee;
  padding: 50px 30px;
  margin-bottom: 30px;
}
.newsletter-box .newsletter-content h2 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 700;
  margin: 0;
}
.newsletter-box .newsletter-content h2 img {
  position: relative;
  top: -1px;
  margin-right: 6px;
  max-width: 50px;
}
.newsletter-box .newsletter-form .form-group {
  display: flex;
  flex-wrap: wrap;
}
.newsletter-box .newsletter-form .form-group input {
  width: calc(100% - 195px);
  margin-right: 25px;
  height: 60px;
  background-color: var(--bgColor);
  color: var(--optionalColor);
  border: none;
  border-radius: 5px;
  padding: 15px 20px;
}
.newsletter-box .newsletter-form .form-group input::-moz-placeholder {
  opacity: 1;
}
.newsletter-box .newsletter-form .form-group input::placeholder {
  opacity: 1;
}
.newsletter-box .newsletter-form .form-group button {
  width: 170px;
  display: block;
  background-color: var(--secondaryColor);
  border: none;
  padding: 16px 20px;
  border-radius: 5px;
  color: var(--whiteColor);
}
.newsletter-box .newsletter-form .form-group button i {
  position: relative;
  font-size: 14px;
  margin-left: 8px;
  top: 2px;
}
.newsletter-box .newsletter-form .form-group button:after, .newsletter-box .newsletter-form .form-group button:before {
  background-color: var(--primaryColor);
}
.newsletter-box .checkbox {
  margin-top: 15px;
}



.featured-slider .featured-prev {
  margin-right: 15px;
}
.featured-slider .featured-prev,
.featured-slider .featured-next {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #E7E7E7;
  transition: var(--transition);
}
.featured-slider .featured-prev i,
.featured-slider .featured-next i {
  color: var(--paraColor);
  font-size: 20px;
  line-height: 0.8;
  position: relative;
  top: 1px;
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}
.featured-slider .featured-prev:hover,
.featured-slider .featured-next:hover {
  background-color: var(--secondaryColor);
  border-color: transparent;
}
.featured-slider .featured-prev:hover i,
.featured-slider .featured-next:hover i {
  color: var(--whiteColor);
}
.featured-slider .news-card-one .news-card-img {
  width: 80px;
  height: 80px;
}
.featured-slider .news-card-one .news-card-info {
  width: calc(100% - 100px);
  margin-left: 20px;
}
.featured-slider .news-card-one .news-card-info h3 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 13px;
}
.featured-slider .news-card-one .news-card-info .news-metainfo li i {
  top: 4px;
}
.featured-slider .swiper-wrapper {
  margin-bottom: 8px;
}

.featured-prev,
.trending-prev,
.trending-btn-prev,
.instagram-prev,
.featured-next,
.instagram-next,
.trending-next,
.trending-btn-next {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: calc(var(--border-radius) / 2);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  background: var(--whiteColor);
}
.featured-prev i,
.trending-prev i,
.trending-btn-prev i,
.instagram-prev i,
.featured-next i,
.instagram-next i,
.trending-next i,
.trending-btn-next i {
  color: var(--paraColor);
  font-size: 20px;
  line-height: 0.8;
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}
.featured-prev:hover,
.trending-prev:hover,
.trending-btn-prev:hover,
.instagram-prev:hover,
.featured-next:hover,
.instagram-next:hover,
.trending-next:hover,
.trending-btn-next:hover {
  background-color: var(--secondaryColor);
  border-color: transparent;
}
.featured-prev:hover i,
.trending-prev:hover i,
.trending-btn-prev:hover i,
.instagram-prev:hover i,
.featured-next:hover i,
.instagram-next:hover i,
.trending-next:hover i,
.trending-btn-next:hover i {
  color: var(--whiteColor);
}




#quickview-modal .modal-body {
  padding: 0;
}
#quickview-modal .btn_close {
  position: absolute;
  background-color: transparent;
  border: none;
  top: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  z-index: 99;
}
#quickview-modal .btn_close i {
  color: var(--titleColor);
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 24px;
  position: relative;
  right: 1.5px;
}

.video-popup {
  width: 100%;
  height: 600px;
}
.video-popup iframe {
  width: 100%;
  height: 100%;
}

/*!trending-news*/
.trending-news-box {
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  padding: 35px;
  margin: 30px 0;
  background-image: url(../img/bg-1.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.trending-news-box h4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 28px;
}
.trending-news-box .trending-prev {
  margin-right: 15px;
}

.trending-box-two {
  position: relative;
}

.trending-box-two:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 60px;
  height: 100%;
}
.trending-box-two span {
  position: absolute;
  top: 40px;
  transform: translateY(-50%);
  left: 0px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
  color: var(--primaryColor);
  letter-spacing: 0.3em;
  font-family: var(--bodyFont);
  white-space: wrap;
  display: block;
  width: 60px;
  height: 60px;
}
.trending-box-two .trending-slider-two {
  margin-left: 80px;
  width: calc(100% - 80px);
}
.trending-box-two .trending-slider-two .news-card-one .news-card-info {
  width: calc(100% - 125px);
  margin-left: 25px;
}
.trending-box-two .trending-slider-two .news-card-one .news-card-info .news-cat {
  display: block;
  color: var(--secondaryColor);
}
.trending-box-two .trending-slider-two .news-card-one .news-card-info h3 {
  margin: 0 0 5px 0;
  font-weight: 700;
}
.trending-box-two .trending-btn {
  position: absolute;
  left: -10px;
  z-index: 1;
  bottom: 0;
  transform: scale(.8);
}
.trending-slider-two .trending-btn .trending-btn-prev {
  margin-right: 12px;
}
.trending-slider-two .trending-btn .trending-btn-prev img,
.trending-slider-two .trending-btn .trending-btn-next img {
  transition: var(--transition);
}
.trending-slider-two .trending-btn .trending-btn-prev:hover,
.trending-slider-two .trending-btn .trending-btn-next:hover {
  background-color: var(--secondaryColor);
  border-color: transparent;
}
.trending-slider-two .trending-btn .trending-btn-prev:hover img,
.trending-slider-two .trending-btn .trending-btn-next:hover img {
  filter: brightness(0) invert(1);
}

.featured-news-three .news-card-eleven,
.featured-news-three .news-card-thirteen {
  position: relative;
}
.featured-news-three .news-card-eleven .news-card-info .news-cat,
.featured-news-three .news-card-thirteen .news-card-info .news-cat {
  position: absolute;
  font-size: 14px;
  line-height: 24px;
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
  border-radius: 5px;
  padding: 3px 10px;
}
.featured-news-three .news-card-eleven .news-card-info .news-cat {
  top: 30px;
  left: 30px;
}
.featured-news-three .news-card-eleven .news-card-info h3 {
  font-size: 36px;
  line-height: 50px;
  margin: 0 0 9px;
}
.featured-news-three .news-card-eleven .news-card-info p {
  margin-bottom: 18px;
}
.featured-news-three .news-card-thirteen .news-card-img .news-cat {
  top: 20px;
  left: 20px;
  padding: 1px 10px 0px;
}
.featured-news-three .news-card-thirteen h3 {
  font-size: 18px;
  line-height: 25px;
}

.news-col-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-col-wrap .news-col-one,
.news-col-wrap .news-col-three {
  width: calc(50% - 20px);
}
.news-col-three .news-card-three:last-child {
  margin-bottom: 0;
}
.news-col-wrap .news-col-two {
  width: 50%;
}

/*!News Card */
.news-metainfo li {
  display: inline-block;
  margin-right: 17px;
  position: relative;
  padding-left: 22px;
  color: var(--optionalColor);
  font-size: 14px;
}
.news-metainfo li:last-child {
  margin-right: 0;
}
.news-metainfo li i {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 14px;
  line-height: 0.7;
}
.news-metainfo li.author {
  display: inline-flex;
  flex-wrap: wrap;
  padding-left: 0;
}
.news-metainfo li.author .author-img {
  width: 30px;
  height: 30px;
  position: relative;
  top: -2px;
  border-radius: 50%;
}
.news-metainfo li.author .author-img img {
  border-radius: 50%;
}
.news-metainfo li.author a {
  width: calc(100% - 43px);
  margin-left: 13px;
  color: var(--optionalColor);
  text-decoration: underline;
}
.news-metainfo li.author a:hover {
  color: var(--secondaryColor);
}
.news-metainfo li a {
  color: var(--optionalColor);
}
.news-metainfo li a:hover {
  color: var(--secondaryColor);
}

.news-card-one,
.news-card-two,
.news-card-three,
.news-card-four,
.news-card-five,
.news-card-six,
.news-card-seven,
.news-card-eight,
.news-card-nine,
.news-card-ten,
.news-card-eleven,
.news-card-twelve,
.news-card-thirteen {
  margin-bottom: 25px;
}
.news-card-one .news-card-img,
.news-card-two .news-card-img,
.news-card-three .news-card-img,
.news-card-four .news-card-img,
.news-card-five .news-card-img,
.news-card-six .news-card-img,
.news-card-seven .news-card-img,
.news-card-eight .news-card-img,
.news-card-nine .news-card-img,
.news-card-ten .news-card-img,
.news-card-eleven .news-card-img,
.news-card-twelve .news-card-img,
.news-card-thirteen .news-card-img {
  border-radius: 5px;
}
.news-card-one .news-card-img img,
.news-card-two .news-card-img img,
.news-card-three .news-card-img img,
.news-card-four .news-card-img img,
.news-card-five .news-card-img img,
.news-card-six .news-card-img img,
.news-card-seven .news-card-img img,
.news-card-eight .news-card-img img,
.news-card-nine .news-card-img img,
.news-card-ten .news-card-img img,
.news-card-eleven .news-card-img img,
.news-card-twelve .news-card-img img,
.news-card-thirteen .news-card-img img {
  border-radius: 5px;
}
.news-card-one h3 a,
.news-card-two h3 a,
.news-card-three h3 a,
.news-card-four h3 a,
.news-card-five h3 a,
.news-card-six h3 a,
.news-card-seven h3 a,
.news-card-eight h3 a,
.news-card-nine h3 a,
.news-card-ten h3 a,
.news-card-eleven h3 a,
.news-card-twelve h3 a,
.news-card-thirteen h3 a {
  color: var(--primaryColor);
  position: relative;
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.7s;
}
.news-card-one h3 a:hover,
.news-card-two h3 a:hover,
.news-card-three h3 a:hover,
.news-card-four h3 a:hover,
.news-card-five h3 a:hover,
.news-card-six h3 a:hover,
.news-card-seven h3 a:hover,
.news-card-eight h3 a:hover,
.news-card-nine h3 a:hover,
.news-card-ten h3 a:hover,
.news-card-eleven h3 a:hover,
.news-card-twelve h3 a:hover,
.news-card-thirteen h3 a:hover {
  background-image: linear-gradient(#111, #111);
  background-size: 100% 1px;
}

.news-card-one {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news-card-one .news-card-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.news-card-one .news-card-img img {
  border-radius: 50%;
}
.news-card-one .news-card-info {
  width: calc(100% - 130px);
  margin-left: 30px;
}
.news-card-one .news-card-info h3 {
  font-size: 18px;
}
.news-card-one .news-card-info h3 a {
  color: var(--primaryColor);
}
.news-card-one .news-card-info .news-metainfo li {
  color: var(--paraColor);
}

.news-card-two .news-card-img {
  border-radius: 5px;
  position: relative;
  aspect-ratio: 2/1;
}
.news-card-two .news-card-img img {
  border-radius: 5px;
}
.news-card-two .news-card-img .news-cat {
  position: absolute;
  top: 30px;
  left: 30px;
  display: inline-block;
  background-color: var(--secondaryColor);
  border-radius: 5px;
  padding: 8px 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--whiteColor);
}
.news-card-two .news-card-info {
  margin-top: 18px;
}
.news-card-two .news-card-info h3 {
  font-size: 18px;
}

.news-card-three {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news-card-three .news-card-img {
  width: 120px;
  aspect-ratio: 2/1;
}
.news-card-three .news-card-info {
  width: calc(100% - 145px);
  margin-left: 25px;
}
.news-card-three .news-card-info .news-cat {
  color: var(--secondaryColor);
  display: block;
}
.news-card-three .news-card-info h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

.news-card-four {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-shadow: 1px 1px 0 #393939;
  border-radius: 5px;
}
.news-card-four:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 32%;
  z-index: 1;
  backdrop-filter: blur(80px);
  background: rgba(0,0,0,.1);
}
.news-card-four img {
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 1.2/1;
}
.news-card-four .play-now .ripple,
.news-card-four .play-now .ripple:before,
.news-card-four .play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 70px;
  width: 70px;
}
.news-card-four .play-now {
  position: absolute;
  top: 55px;
  left: 55px;
  height: 70px;
  width: 70px;
  background-color: var(--whiteColor);
}
.news-card-four .play-now i {
  color: var(--secondaryColor);
  font-size: 19px;
  line-height: 0.8;
  position: relative;
  left: 3px;
}
.news-card-four .news-card-info {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: calc(100% - 80px);
  z-index: 1;
}
.news-card-four .news-card-info h3 {
  font-size: 22px;
  line-height: 50px;
  margin: 0 ;
}
.news-card-four .news-card-info h3 a {
  color: var(--whiteColor);
}
.news-card-four .news-card-info h3 a:hover {
  background-image: linear-gradient(#fff, #fff);
}
.news-card-four .news-card-info .news-metainfo li {
  color: var(--whiteColor);
}
.news-card-four .news-card-info .news-metainfo li a {
  color: var(--offwhiteColor);
}
.news-card-four .news-card-info .news-metainfo li a:hover {
  color: var(--secondaryColor);
}

.news-card-five {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news-card-five .news-card-img {
  width: 213px;
  position: relative;
  aspect-ratio: 16/9;
}
.news-card-five .news-card-img .news-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 14px;
  color: var(--whiteColor);
  background-color: var(--secondaryColor);
  border-radius: 5px;
  padding: 2px 11px;
}
.news-card-five .news-card-info {
  width: calc(100% - 238px);
  margin-left: 25px;
}
.news-card-five .news-card-info h3 {
  font-size: 18px;
  margin-bottom: 0;
}
.news-card-five .news-card-info p {
  margin: 5px 0 10px;
}

.news-card-six .news-card-img,
.news-card-eleven .news-card-img {
  border-radius: 5px;
  position: relative;
}
.news-card-six .news-card-img img,
.news-card-eleven .news-card-img img {
  border-radius: 5px;
}
.news-card-six .news-card-img .news-cat,
.news-card-eleven .news-card-img .news-cat {
  position: absolute;
  top: 30px;
  left: 30px;
  display: inline-block;
  background-color: var(--secondaryColor);
  border-radius: 5px;
  padding: 8px 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--whiteColor);
}
.news-card-six .news-card-info,
.news-card-eleven .news-card-info {
  margin: 20px 0 0;
}
.news-card-six .news-card-info .news-author,
.news-card-eleven .news-card-info .news-author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news-card-six .news-card-info .news-author .news-author-img,
.news-card-eleven .news-card-info .news-author .news-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.news-card-six .news-card-info .news-author .news-author-img img,
.news-card-eleven .news-card-info .news-author .news-author-img img {
  border-radius: 50%;
}
.news-card-six .news-card-info .news-author h5,
.news-card-eleven .news-card-info .news-author h5 {
  width: calc(100% - 55px);
  margin: 0 0 0 15px;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  color: var(--paraColor);
}
.news-card-six .news-card-info .news-author h5 a:hover,
.news-card-eleven .news-card-info .news-author h5 a:hover {
  color: var(--secondaryColor);
}
.news-card-six .news-card-info h3,
.news-card-eleven .news-card-info h3 {
  font-size: 22px;
  line-height: 30px;
  margin: 13px 0 16px;
}

.news-card-seven {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--bgColor);
  padding: 39px 40px 41px;
  border-radius: 5px;
}
.news-card-seven .news-card-img {
  width: 160px;
}
.news-card-seven .news-card-info {
  width: calc(100% - 190px);
  margin-left: 30px;
}
.news-card-seven .news-card-info h3 {
  font-size: 18px;
  line-height: 26px;
  margin: 7px 0 10px;
}
.news-card-seven .news-card-info .news-cat {
  display: block;
  color: var(--secondaryColor);
}

.news-card-eight {
  border-radius: 5px;
  position: relative;
}
.news-card-eight:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(34, 34, 34, 0.89) 0%, rgba(34, 34, 34, 0.06) 48%);
  z-index: 0;
}
.news-card-eight img {
  border-radius: 5px;
}
.news-card-eight .play-now .ripple,
.news-card-eight .play-now .ripple:before,
.news-card-eight .play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 49px;
  width: 49px;
}
.news-card-eight .play-now {
  position: absolute;
  top: 50px;
  left: 50px;
  height: 49px;
  width: 49px;
  background-color: var(--whiteColor);
}
.news-card-eight .play-now i {
  color: var(--secondaryColor);
  font-size: 15px;
  line-height: 0.6;
  position: relative;
  left: 3px;
}
.news-card-eight .news-card-info {
  position: absolute;
  bottom: 32px;
  left: 40px;
  width: calc(100% - 80px);
}
.news-card-eight .news-card-info h3 {
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 7px;
}
.news-card-eight .news-card-info h3 a {
  color: var(--whiteColor);
}
.news-card-eight .news-card-info .news-metainfo li {
  color: var(--offwhiteColor);
}
.news-card-eight .news-card-info .news-metainfo li a {
  color: var(--offwhiteColor);
}

.news-card-nine {
  border-radius: 5px;
  position: relative;
}
.news-card-nine:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, rgba(34, 34, 34, 0.89) 0%, rgba(34, 34, 34, 0.06) 48%);
  z-index: 0;
}
.news-card-nine img {
  border-radius: 5px;
}
.news-card-nine .play-now .ripple,
.news-card-nine .play-now .ripple:before,
.news-card-nine .play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 49px;
  width: 49px;
}
.news-card-nine .play-now {
  position: absolute;
  top: 40px;
  left: 40px;
  height: 49px;
  width: 49px;
  background-color: var(--whiteColor);
}
.news-card-nine .play-now i {
  color: var(--secondaryColor);
  font-size: 16px;
  line-height: 0.8;
  position: relative;
  left: 3px;
}
.news-card-nine .news-card-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: calc(100% - 60px);
}
.news-card-nine .news-card-info h3 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
}
.news-card-nine .news-card-info h3 a {
  color: var(--whiteColor);
}
.news-card-nine .news-card-info .news-metainfo li {
  color: var(--offwhiteColor);
}
.news-card-nine .news-card-info .news-metainfo li a {
  color: var(--offwhiteColor);
}

.news-card-ten {
  border: 1px solid rgba(34, 34, 34, 0.07);
  border-radius: 5px;
  padding: 27px 40px;
}
.news-card-ten .news-cat {
  color: var(--secondaryColor);
  display: block;
  margin-bottom: 7px;
}
.news-card-ten h3 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}
.news-card-ten h3 a {
  color: var(--primaryColor);
}

.news-card-twelve {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--bgColor);
  padding: 30px;
  border-radius: 5px;
}
.news-card-twelve .news-card-img {
  width: 147px;
}
.news-card-twelve .news-card-info {
  width: calc(100% - 172px);
  margin-left: 25px;
}
.news-card-twelve .news-card-info h3 {
  font-size: 20px;
  line-height: 33px;
  margin: 5px 0 10px;
}
.news-card-twelve .news-card-info .news-cat {
  display: block;
  color: var(--secondaryColor);
}

.news-card-thirteen .news-card-img {
  position: relative;
}
.news-card-thirteen .news-card-img .news-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 14px;
  padding: 4px 10px 3px;
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
  border-radius: 5px;
}
.news-card-thirteen .news-card-info {
  margin-top: 15px;
}
.news-card-thirteen .news-card-info h3 {
  font-size: 22px;
  line-height: 34px;
  margin-bottom: 11px;
}

.selected-news-three .news-card-thirteen {
  margin-bottom: 30px;
}
.selected-news-three .news-card-thirteen .news-card-info h3 {
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 10px;
}


.general-news-two {
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 25px;
}
.general-news-two .news-card-twelve {
  padding: 0;
  background-color: transparent;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.general-news-three .news-card-four .news-card-info .news-cat {
  display: inline-block;
  background-color: var(--secondaryColor);
  border-radius: 5px;
  padding: 3px 11px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--whiteColor);
}
.general-news-three .news-card-four .news-card-info h3 {
  margin: 17px 0 18px;
  font-size: 26px;
  line-height: 30px;
}
.general-news-three .news-card-two .news-card-info .news-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 14px;
  line-height: 24px;
  display: inline-block;
  background-color: var(--secondaryColor);
  border-radius: 5px;
  padding: 3px 14px;
  font-weight: 400;
  color: var(--whiteColor);
}
.general-news-three .news-card-two .news-card-info h3 {
  margin: 17px 0 14px;
  font-size: 22px;
  line-height: 34px;
}

.popular-news-wrap .news-card-five {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.popular-news-wrap .news-card-five:last-child {
  margin-bottom: 0;
}
.popular-news-wrap .news-card-five .news-card-img {
  width: 250px;
  position: relative;
}
.popular-news-wrap .news-card-five .news-card-img .news-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 14px;
  color: var(--whiteColor);
  background-color: var(--secondaryColor);
  border-radius: 5px;
  padding: 3px 10px 1px 10px;
}
.popular-news-wrap .news-card-five .news-card-img .play-now-two {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--whiteColor);
  width: 31px;
  height: 28px;
  text-align: center;
  border-radius: 5px 0px 0px 0px;
  transition: var(--transition);
}
.popular-news-wrap .news-card-five .news-card-img .play-now-two i {
  color: var(--primaryColor);
  font-size: 10px;
  line-height: 0.8;
  display: block;
  margin: 0 auto;
  position: relative;
  left: 3px;
  top: 10px;
  transition: var(--transition);
}
.popular-news-wrap .news-card-five .news-card-img .play-now-two:hover {
  background-color: var(--secondaryColor);
}
.popular-news-wrap .news-card-five .news-card-img .play-now-two:hover i {
  color: var(--whiteColor);
}
.popular-news-wrap .news-card-five .news-card-info {
  width: calc(100% - 280px);
  margin-left: 30px;
  position: relative;
}
.popular-news-wrap .news-card-five .news-card-info:after {
  position: absolute;
  bottom: -42px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #eee;
}
.popular-news-wrap .news-card-five .news-card-info h3 {
  font-size: 26px;
  line-height: 40px;
  margin-bottom: 0;
}
.popular-news-wrap .news-card-five .news-card-info p {
  margin: 7px 0 18px;
}
.popular-news-wrap .news-card-five:last-child .news-card-info:after {
  display: none;
}

.editors-wrap-two .news-card-four .news-card-info .news-cat {
  display: inline-block;
  background-color: var(--secondaryColor);
  border-radius: 5px;
  padding: 8px 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--whiteColor);
}
.editors-wrap-two .news-card-four .news-card-info h3 {
  font-size: 34px;
  line-height: 50px;
  margin: 12px 0 8px;
}
.editors-wrap-two .news-card-wrap .news-card-three {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #eee;
}
.editors-wrap-two .news-card-wrap .news-card-three:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.selected-wrap-two .news-tablist {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 0;
}
.selected-wrap-two .news-tablist .nav-item .nav-link {
  position: relative;
  margin-left: 14px;
}
.selected-wrap-two .news-tablist .nav-item .nav-link:before {
  position: absolute;
  top: 11px;
  left: -14px;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondaryColor);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.selected-wrap-two .news-tablist .nav-item .nav-link.active:before, .selected-wrap-two .news-tablist .nav-item .nav-link:hover:before {
  visibility: visible;
  opacity: 1;
}

.selected-news-content .news-card-thirteen .news-card-info h3 {
  font-size: 19px;
  line-height: 30px;
}

.news-col-one .news-card-two,
.news-col-one .news-card-three,
.news-col-three .news-card-two,
.news-col-three .news-card-three {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #EEEEEE;
}
.news-col-one .news-card-two:last-child,
.news-col-one .news-card-three:last-child,
.news-col-three .news-card-two:last-child,
.news-col-three .news-card-three:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.news-col-one .news-card-two,
.news-col-three .news-card-two {
  padding-bottom: 20px;
}

.pp-news-card {
  position: relative;
  border-radius: 5px;
  z-index: 1;
  overflow: hidden;
}
.pp-news-card:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(34, 34, 34, 0.89) 10%, rgba(34, 34, 34, 0.1) 60%);
  z-index: 0;
}
.pp-news-card img {
  border-radius: 5px;
}
.pp-news-card .pp-news-info {
  position: absolute;
  bottom: 38px;
  left: 38px;
  width: calc(100% - 80px);
}
.pp-news-card .pp-news-info .news-cat {
  font-size: 14px;
  line-height: 24px;
  background-color: var(--secondaryColor);
  padding: 7px 11px;
  border-radius: 5px;
  color: var(--whiteColor);
}
.pp-news-card .pp-news-info h3 {
  font-size: 22px;
  line-height: 34px;
  margin: 13px 0 8px;
}
.pp-news-card .pp-news-info h3 a {
  color: var(--whiteColor);
}
.pp-news-card .pp-news-info h3 a:hover {
  color: var(--secondaryColor);
}
.pp-news-card .pp-news-info .news-metainfo li {
  color: var(--offwhiteColor);
}
.pp-news-card .pp-news-info .news-metainfo li a {
  color: var(--offwhiteColor);
}
.pp-news-card .pp-news-info .news-metainfo li a:hover {
  color: var(--secondaryColor);
}

.news-col-two .news-card-four,
.news-col-two .news-card-five {
  margin-bottom: 30px;
}
.news-col-two .news-card-four:last-child,
.news-col-two .news-card-five:last-child {
  margin-bottom: 0;
}

.editor-news,
.video-news-wrap,
.general-news,
.popular-news {
  overflow: hidden;
}


.scrollscreen {
  height: 100%;
  max-height: 740px;
  overflow: hidden;
  position: relative;
  margin-right: -15px;
}
.scrollscreen .scrollscreen--content {
  position: relative;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.scrollscreen .scrollscreen--track {
  width: 18px;
  background: var(--whiteColor);
  position: relative;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  pointer-events: none;
}
.scrollscreen .scrollscreen--track:after {
  position: absolute;
  top: 0;
  left: 8px;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #ddd;
  z-index: 0;
}
.scrollscreen .scrollscreen--track .scrollscreen--slider {
  position: absolute;
  top: 0;
  left: 5px;
  right: 0;
  box-sizing: border-box;
  height: 0;
  border: none;
  background: transparent;
  pointer-events: none;
  z-index: 1;
  width: 7px;
}
.scrollscreen .scrollscreen--track .scrollscreen--slider::after {
  background: var(--secondaryColor);
  border-radius: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.scrollscreen.featured-video-box {
  height: 650px;
}
.scrollscreen.featured-video-box .news-card-foru {
  margin-bottom: 0;
}
.scrollscreen.featured-video-box .scrollscreen--content {
  padding-right: 23px;
}
.scrollscreen.featured-video-box .scrollscreen--track {
  background: var(--primaryColor);
}
.scrollscreen.featured-video-box .scrollscreen--track:after {
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.scrollscreen.featured-video-box .scrollscreen--track .scrollscreen--slider {
  left: -3px;
}

.scrollscreen--content::-webkit-scrollbar {
  -webkit-appearance: none;
}

.btn.disabled {
  opacity: 1;
}

.checkbox {
  display: block;
}
.checkbox.form-check {
  padding-left: 0;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  padding-left: 24px;
  color: var(--optionalColor);
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  border: 1px solid var(--paraColor);
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 6px;
}
.checkbox label a {
  color: var(--primaryColor);
  text-decoration: underline;
}
.checkbox label a:hover {
  color: var(--secondaryColor);
}
.checkbox.style-two label:before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #DCDCDC;
  left: 0;
  top: 7px;
}

.checkbox input:checked + label:before {
  border-color: var(--secondaryColor);
}

.checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 3px;
  width: 9px;
  height: 9px;
  border: none;
  background: var(--secondaryColor);
}

.checkbox.style-two input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--secondaryColor);
}

.checkbox.style-two input:checked + label:before {
  border-color: #DCDCDC;
}


/*!article*/
article p,
.about-desc p,
.terms-wrap p {
  margin-bottom: 20px;
}
article p strong, article p b,
.about-desc p strong,
.about-desc p b,
.terms-wrap p strong,
.terms-wrap p b {
  color: var(--blackColor);
}
article p a,
.about-desc p a,
.terms-wrap p a {
  color: var(--secondaryColor);
}
article p a:hover,
.about-desc p a:hover,
.terms-wrap p a:hover {
  text-decoration: underline;
  color: var(--secondaryColor);
}
article h1, article h2, article h3, article h4, article h5, article h6,
.about-desc h1,
.about-desc h2,
.about-desc h3,
.about-desc h4,
.about-desc h5,
.about-desc h6,
.terms-wrap h1,
.terms-wrap h2,
.terms-wrap h3,
.terms-wrap h4,
.terms-wrap h5,
.terms-wrap h6 {
  margin-bottom: 25px;
  line-height: 1.45;
}
article h1,
.about-desc h1,
.terms-wrap h1 {
  font-size: 32px;
}
article h2,
.about-desc h2,
.terms-wrap h2 {
  font-size: 30px;
}
article h3,
.about-desc h3,
.terms-wrap h3 {
  font-size: 28px;
}
article h4,
.about-desc h4,
.terms-wrap h4 {
  font-size: 26px;
}
article h5,
.about-desc h5,
.terms-wrap h5 {
  font-size: 24px;
}
article h6,
.about-desc h6,
.terms-wrap h6 {
  font-size: 22px;
}
article p:last-child,
.about-desc p:last-child,
.terms-wrap p:last-child {
  margin-bottom: 0;
}
article p a,
.about-desc p a,
.terms-wrap p a {
  color: var(--secondaryColor);
}
article ol,
.about-desc ol,
.terms-wrap ol {
  margin-top: 20px;
  margin-bottom: 30px;
}
article ol li,
.about-desc ol li,
.terms-wrap ol li {
  margin-bottom: 15px;
  color: var(--paraColor);
  padding-left: 3px;
}
article .news-para,
.about-desc .news-para,
.terms-wrap .news-para {
  margin-bottom: 35px;
}
article .news-img,
.about-desc .news-img,
.terms-wrap .news-img {
  position: relative;
  margin-bottom: 30px;
  display: block;
  border-radius: 5px;
}
article .news-img.featured-video,
.about-desc .news-img.featured-video,
.terms-wrap .news-img.featured-video {
  height: 500px;
  width: 100%;
  border-radius: 5px;
}
article .news-img.featured-video iframe,
.about-desc .news-img.featured-video iframe,
.terms-wrap .news-img.featured-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
article .news-img img,
.about-desc .news-img img,
.terms-wrap .news-img img {
  border-radius: 5px;
}
article .news-img .news-cat,
.about-desc .news-img .news-cat,
.terms-wrap .news-img .news-cat {
  position: absolute;
  top: 30px;
  left: 30px;
  display: inline-block;
  background-color: var(--secondaryColor);
  border-radius: 5px;
  padding: 8px 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--whiteColor);
}
article .news-metainfo,
.about-desc .news-metainfo,
.terms-wrap .news-metainfo {
  margin-bottom: 18px;
}

.content-feature-list {
  margin: 25px 0 25px;
}
.content-feature-list li {
  padding-left: 60px;
  position: relative;
  margin-bottom: 25px;
  font-weight: 400;
  color: var(--paraColor);
}
.content-feature-list li:last-child {
  margin-bottom: 0;
}
.content-feature-list li span {
  position: absolute;
  top: -6px;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bgColor);
}
.content-feature-list li i {
  font-size: 14px;
  line-height: 0.8;
  display: block;
  margin: 0 auto;
  color: var(--paraColor);
}




.comment-box-title h4 {
  margin-bottom: 0;
  line-height: 1;
}
.comment-box-title p {
  margin-top: 10px;
  margin-bottom: 0;
}

#cmt-form {
  margin-top: 30px;
}
#cmt-form .comment-box-title {
  margin-bottom: 5px;
}

/*!footer*/
.footer {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: .75rem;
  background: var(--footerBg);
}
.footer .f-link .title{
  font-weight: 800;
  font-size: .75rem;
}
.footer-wrap {
  position: relative;
  z-index: 1;
  padding: 47px 0;
}
.footer-wrap .copyright-text {
  margin: 0;
  font-size: .75rem;
}
.footer-wrap .copyright-text i {
  position: relative;
  top: 1px;
}
.footer-wrap .social-profile li a {
  width: 45px;
  height: 45px;
  border: 1px solid #EEEEEE;
  background-color: var(--whiteColor);
  line-height: 43px;
  border-radius: 100rem;
  filter: grayscale(1);
}
.footer-wrap .social-profile li a:hover {
  background-color: var(--secondaryColor);
  border-color: transparent;
}
.footer-wrap .social-profile li a:hover i {
  color: var(--whiteColor);
  position: relative;
  top: 2px;
}
.footer-wrap p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: var(--optionalColor);
  font-size: .75rem;
}

@media only screen and (max-width: 991px) {
  .footer-wrap {
    text-align: center;
    padding: 40px 0;
  }
  .footer-wrap .social-profile {
    margin: 20px 0;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-wrap .footer-right {
    padding-left: 75px;
  }
  .footer-wrap .footer-bg {
    top: -10px;
  }
}
@media only screen and (min-width: 1600px) {
  .container-fluid .footer-wrap .footer-right {
    padding-left: 132px;
  }
  .container .footer-wrap .footer-right {
    padding-left: 57px;
  }
}
/*!responsive*/
@media only screen and (max-width: 575px) {
  .xs-center {
    text-align: center;
  }
  .xs-none {
    display: none;
  }
  .smt-15 {
    margin-top: 15px !important;
  }
  .breadcrumb-menu li {
    font-size: 14px;
  }
  .breadcrumb-menu li a {
    font-size: 14px;
  }
  .news-card-four .play-now,
  .news-card-eight .play-now {
    top: 25px;
    left: 25px;
    height: 50px;
    width: 50px;
  }
  .news-card-four .play-now i,
  .news-card-eight .play-now i {
    font-size: 15px;
  }
  .news-card-four .play-now .ripple,
  .news-card-four .play-now .ripple:before,
  .news-card-four .play-now .ripple:after,
  .news-card-eight .play-now .ripple,
  .news-card-eight .play-now .ripple:before,
  .news-card-eight .play-now .ripple:after {
    height: 50px;
    width: 50px;
  }
  #quickview-modal .btn_close {
    top: -7px;
    right: -7px;
    width: 28px;
    height: 28px;
  }
  #quickview-modal .btn_close i {
    font-size: 20px;
    line-height: 24px;
  }
  .video-slider-wrap {
    padding: 20px 20px;
  }
  .news-card-nine .play-now {
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
  }
  .news-card-nine .play-now i {
    font-size: 12px;
  }
  .news-card-nine .play-now .ripple,
  .news-card-nine .play-now .ripple:before,
  .news-card-nine .play-now .ripple:after {
    height: 35px;
    width: 35px;
  }
  .news-card-nine .news-card-info {
    bottom: 10px;
    left: 20px;
    width: calc(100% - 40px);
  }
  .news-card-nine .news-card-info h3 {
    font-size: 16px;
    line-height: 21px;
    margin: 0 0 4px;
  }
  .news-card-nine .news-card-info .news-metainfo li {
    margin-right: 10px;
    font-size: 14px;
  }
  .news-card-nine .news-card-info .news-metainfo li:last-child {
    margin-right: 0;
  }
  .video-slider-wrap .video-prev,
  .video-slider-wrap .video-next {
    width: 35px;
    height: 35px;
  }
  .video-slider-wrap .video-prev i,
  .video-slider-wrap .video-next i {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container-fluid {
    max-width: 540px;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .sm-none {
    display: none !important;
  }
  .mb-50 {
    margin-bottom: 30px !important;
  }
  .mt-40 {
    margin-top: 30px !important;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .pt-45 {
    padding-top: 25px;
  }
  .pt-70 {
    padding-top: 50px !important;
  }
  .pb-25 {
    padding-bottom: 5px !important;
  }
  .pb-45 {
    padding-bottom: 25px;
  }
  .pb-60 {
    padding-bottom: 15px;
  }
  .pb-100 {
    padding-bottom: 50px;
  }
  .mt-100 {
    margin-top: 50px !important;
  }
  .mb-100 {
    margin-bottom: 50px !important;
  }
  .ptb-70 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  .pb-75 {
    padding-bottom: 25px;
  }
  .pt-75 {
    padding-top: 25px;
  }
  .mb-40 {
    margin-bottom: 25px !important;
  }
  .row.mb-50 {
    margin-bottom: 30px !important;
  }
  .link-one,
  .link-two,
  .link-three,
  .link-four {
    font-size: 14px;
  }
  .btn-one,
  .btn-two {
    font-size: 14px;
    padding: 16px 22px 13px;
  }
  .btn-one i,
  .btn-two i {
    font-size: 16px;
    top: 3px;
    margin-left: 5px;
  }
  .back-to-top {
    font-size: 20px;
    width: 35px;
    height: 35px;
    line-height: 32px;
    right: 10px;
  }
  .back-to-top i {
    font-size: 18px;
  }
  .sidebar .sidebar-widget {
    padding: 25px 20px;
  }
  .sidebar .sidebar-widget .sidebar-widget-title {
    font-size: 20px;
  }
  .sidebar .social-widget {
    grid-gap: 10px;
  }
  .sidebar .social-widget li a {
    font-size: 14px;
  }
  .sidebar .social-widget li p {
    font-size: 14px;
  }
  .sidebar .tag-list li a {
    padding: 7px 12px 3px 14px;
    font-size: 14px;
    line-height: 24px;
  }
  .section-title,
  .content-title {
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 20px;
  }
  .section-title .section-title-img,
  .content-title .section-title-img {
    max-width: 50px;
    bottom: -11px;
    right: -14px;
  }
  .section-title-three {
    margin-bottom: 15px;
  }
  .breadcrumb-title {
    font-size: 26px;
    line-height: 33px;
    margin: 0 0 10px;
  }
  .breadcrumb-menu li {
    font-size: 14px;
  }
  .breadcrumb-menu li a {
    font-size: 14px;
  }
  .breadcrumb-menu li:after {
    top: 2px;
  }
  .about-desc img {
    margin-bottom: 20px;
  }
  .about-desc h1 {
    font-size: 34px;
    line-height: 44px;
  }
  .about-desc h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 10px;
  }
  .about-desc .single-para {
    margin-bottom: 30px;
  }
  .about-desc .single-para p {
    margin-bottom: 14px;
  }
  .hero-news-card .hero-news-info {
    position: relative;
    width: 100%;
    padding: 20px 0;
    visibility: visible;
    opacity: 1;
    top: auto;
    left: auto;
    transform: translate(0, 0);
  }
  .hero-news-card .hero-news-info .news-cat {
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 10px;
  }
  .hero-news-card .hero-news-info h3 {
    padding: 0 20px;
    font-size: 25px;
    line-height: 34px;
    margin: 0 0 15px;
  }
  .hero-news-card .hero-news-info p {
    padding: 0 20px;
    margin: 0 0 12px;
  }
  .hero-slider .hero-prev,
  .hero-slider .hero-next {
    top: 30%;
    width: 30px;
    height: 80px;
  }
  .hero-slider .hero-prev i,
  .hero-slider .hero-next i {
    font-size: 16px;
  }
  .hero-slider .hero-prev {
    left: 10px;
  }
  .hero-slider .hero-next {
    right: 10px;
  }
  .trending-box-two:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 60px;
    width: 100%;
  }
  .trending-box-two .trending-slider-two {
    margin-left: 0;
    width: 100%;
  }
  .trending-slider-two .trending-btn {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 20px;
    transform: translateY(0%);
  }
  .trending-slider-two .trending-btn .trending-btn-prev {
    margin-right: 12px;
  }
  .selected-news .promo-wrap {
    margin-top: 50px;
    padding-top: 50px;
  }
  .selected-news-three .news-tablist-three {
    justify-content: flex-start;
    margin: 10px 0 0;
  }
  .selected-news-three .news-tablist-three .nav-item {
    margin: 0 10px 10px 0;
  }
  .promo-card {
    padding: 50px 0 0 25px;
  }
  .promo-card .promo-content {
    margin-bottom: 30px;
    padding-right: 25px;
  }
  .promo-card .promo-img {
    position: relative;
  }
  .featured-news-three .news-card-eleven .news-card-info h3 {
    font-size: 20px;
    line-height: 32px;
    margin: 0 0 5px;
  }
  .promo-card-two {
    padding: 50px 25px 50px 25px;
  }
  .promo-card-two .promo-content {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .promo-card-two .promo-img {
    position: relative;
    display: block;
    margin: 0 auto;
  }
  .news-metainfo li i {
    top: 6px;
  }
  .news-details-wrap,
  .popular-news-three {
    overflow-x: hidden;
  }
  .trending-news-box {
    padding: 20px;
    background-image: none;
  }
  .trending-news-box h4 {
    margin-bottom: 15px;
  }
  .trending-news-box .trending-news-slider {
    margin-top: 20px;
  }
  .editos-news .news-tablist {
    margin-top: 20px;
  }
  .news-tablist-two .nav-item .nav-link {
    font-size: 15px;
    line-height: 24px;
    padding: 15px 10px;
  }
  .popular-news-wrap .news-card-five .news-card-img {
    width: 100%;
  }
  .popular-news-wrap .news-card-five .news-card-info {
    width: 100%;
    margin: 20px 0 0;
  }
  .pp-news-box .news-tab-content {
    padding: 20px;
  }
  .news-cat {
    font-size: 14px;
  }
  .news-col-wrap .news-col-one,
  .news-col-wrap .news-col-two,
  .news-col-wrap .news-col-three {
    width: 100%;
  }
  .news-card-one .news-card-info {
    width: calc(100% - 120px);
    margin-left: 20px;
  }
  .news-card-one .news-card-info h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .news-card-twelve .news-card-img,
  .news-card-three .news-card-img,
  .news-card-five .news-card-img {
    width: 100%;
  }
  .news-card-twelve .news-card-info,
  .news-card-three .news-card-info,
  .news-card-five .news-card-info {
    width: 100%;
    margin: 20px 0 0;
  }
  .news-card-seven {
    padding: 20px;
  }
  .news-card-seven .news-card-img {
    width: 100%;
  }
  .news-card-seven .news-card-info {
    width: 100%;
    margin: 20px 0 0;
  }
  .news-card-ten {
    padding: 25px;
  }
  .news-card-twelve {
    padding: 20px;
  }
  .news-card-thirteen .news-card-info h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 8px;
  }
  .pp-news-card:before,
  .news-card-four:before,
  .news-card-nine:before,
  .news-card-eight:before {
    background: linear-gradient(0deg, rgba(34, 34, 34, 0.89) 0%, rgba(34, 34, 34, 0.6) 48%);
  }
  .general-news-three .news-card-four img {
    min-height: 250px;
  }
  .general-news-three .news-card-four .news-card-info h3 {
    font-size: 16px;
  }
  .news-card-six .news-card-info h3,
  .news-card-eleven .news-card-info h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .latest-news {
    overflow-x: hidden;
  }
  .video-wrap-three .news-card-eleven .news-card-info h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .pp-news-card .pp-news-info {
    bottom: 20px;
    left: 25px;
    width: calc(100% - 50px);
  }
  .pp-news-card .pp-news-info h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .editors-wrap-two .news-card-four .news-card-info .news-cat {
    padding: 5px 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .editors-wrap-two .news-card-four .news-card-info h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .editors-wrap-two .news-card-wrap .news-card-three {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid #eee;
  }
  .editors-wrap-two .news-card-wrap .news-card-three:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .latest-news .news-card-five {
    margin-bottom: 25px;
  }
  .latest-news .scrollscreen {
    margin-bottom: 25px;
  }
  .scrollscreen.featured-video-box .scrollscreen--content {
    padding-right: 25px;
  }
  .scrollscreen.featured-video-box .scrollscreen--track {
    right: -7px;
  }
  .instagram-slide span {
    padding: 12px 10px;
  }
  .instagram-slide span i {
    top: 4px;
    margin-left: 7px;
    font-size: 17px;
  }
  #newsletter-popup .modal-content .btn_close {
    top: 15px;
    right: 15px;
  }
  #newsletter-popup .modal-body .newsletter-content {
    padding: 40px 20px;
  }
  #newsletter-popup .modal-body .newsletter-content h2 {
    font-size: 22px;
    line-height: 32px;
  }
  #newsletter-popup .modal-body .newsletter-content .newsletter-form {
    margin: 20px 0 16px;
  }
  #newsletter-popup .modal-body .newsletter-content .newsletter-form input {
    width: 100%;
    height: 55px;
    font-size: 14px;
    margin: 0 0 15px;
  }
  #newsletter-popup .modal-body .newsletter-content .newsletter-form button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 14px;
  }
  #newsletter-popup .modal-body .newsletter-content .newsletter-form button i {
    font-size: 14px;
  }
  .newsletter-box {
    padding: 25px 20px;
  }
  .newsletter-box .newsletter-content h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .newsletter-box .newsletter-content h2 img {
    max-width: 40px;
  }
  .newsletter-box .newsletter-form .form-group input {
    width: 100%;
    margin: 0;
    height: 56px;
  }
  .newsletter-box .newsletter-form .form-group button {
    margin: 15px 0 0;
    width: 100%;
    display: block;
    padding: 20px 20px;
  }
  .checkbox label {
    padding-left: 22px;
    font-size: 14px;
  }
  .skill-bg {
    height: 350px;
  }
  .skill-content h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .progressbar-wrap .progress-item .progress-title p,
  .progressbar-wrap .progress-item .progress-title span {
    font-size: 16px;
    line-height: 24px;
  }
  .social-widget-two {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr auto;
    grid-gap: 25px;
  }
  .social-widget-two li .social-link {
    width: 100%;
    margin: 7px 0 0;
  }
  .category-widget li a {
    font-size: 14px;
    padding-left: 30px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .category-widget li a i {
    top: 5px;
    font-size: 16px;
  }
  .author-box {
    padding: 25px;
  }
  .author-box .author-img {
    width: 140px;
    height: 140px;
  }
  .author-box .author-info {
    width: 100%;
    margin: 20px 0 0;
  }
  .author-box .author-info h4 {
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .author-box .author-profile .author-stat {
    margin: 20px 0 0;
    width: 100%;
  }
  .contact-card {
    padding: 20px;
  }
  .contact-card .contact-info h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .contact-card .contact-info p, .contact-card .contact-info a {
    font-size: 14px;
  }
  #cmt-form .section-title,
  .contact-form .section-title {
    font-size: 28px;
    line-height: 36px;
  }
  .checkbox label {
    padding-left: 24px;
  }
  .checkbox label:before {
    top: 6px;
  }
  .checkbox input:checked + label:after {
    content: "";
    top: 9px;
  }
  .cart-table {
    width: 100%;
    overflow-x: auto;
  }
  .cart-table table thead tr th:nth-child(2), .cart-table table thead tr th:nth-child(3) {
    min-width: 200px;
  }
  .cart-table table tbody tr td:nth-child(2), .cart-table table tbody tr td:nth-child(3) {
    min-width: 200px;
  }
  .cart-wrap .coupon-code input {
    width: 100%;
    margin: 0;
  }
  .cart-wrap .coupon-code button {
    display: block;
    width: 100%;
    margin: 20px 0 20px;
  }
  .cart-wrap .update-cart {
    width: 100%;
    display: block;
  }
  .filter-radio-group [type=radio]:checked + label,
  .filter-radio-group [type=radio]:not(:checked) + label {
    font-size: 14px;
  }
  .product-card {
    padding: 30px 20px 25px;
  }
  .product-card .product-card-img {
    margin-bottom: 25px;
  }
  .product-card .product-card-img img {
    max-width: 200px;
  }
  .product-card .product-price {
    font-size: 16px;
  }
  .checkout-form {
    padding: 20px;
  }
  .checkout-form .checkout-box-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .checkout-form .form-group {
    margin: 0 0 20px;
  }
  article p, .about-desc p, .terms-wrap p {
    margin-bottom: 15px;
  }
  article .content-feature-list,
  .about-desc .content-feature-list,
  .terms-wrap .content-feature-list {
    margin: 15px 0 15px;
  }
  article ol, .terms-wrap ol {
    margin-top: 15px;
    margin-bottom: 25px;
  }
  article h1, article h2, article h3, article h4, article h5, article h6,
  .about-desc h1,
  .about-desc h2,
  .about-desc h3,
  .about-desc h4,
  .about-desc h5,
  .about-desc h6,
  .terms-wrap h1,
  .terms-wrap h2,
  .terms-wrap h3,
  .terms-wrap h4,
  .terms-wrap h5,
  .terms-wrap h6 {
    line-height: 1.5;
    margin-bottom: 15px;
  }
  article h1,
  .about-desc h1,
  .terms-wrap h1 {
    font-size: 18px;
    max-height: calc(1.6rem * 2);
    max-width: 100%;
    line-height: 1.6rem;
    height: calc(1.6rem * 2);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  article h2,
  .about-desc h2,
  .terms-wrap h2 {
    font-size: 24px;
  }
  article h3,
  .about-desc h3,
  .terms-wrap h3 {
    font-size: 22px;
  }
  article h4,
  .about-desc h4,
  .terms-wrap h4 {
    font-size: 20px;
  }
  article h5,
  .about-desc h5,
  .terms-wrap h5 {
    font-size: 18px;
  }
  article h6,
  .about-desc h6,
  .terms-wrap h6 {
    font-size: 16px;
  }
  article ol li,
  .about-desc ol li,
  .terms-wrap ol li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  article ol li:last-child,
  .about-desc ol li:last-child,
  .terms-wrap ol li:last-child {
    margin-bottom: 0;
  }
  article ul li,
  .about-desc ul li,
  .terms-wrap ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  article ul li:last-child,
  .about-desc ul li:last-child,
  .terms-wrap ul li:last-child {
    margin-bottom: 0;
  }
  article .news-img,
  .about-desc .news-img,
  .terms-wrap .news-img {
    margin: 0 0 25px;
  }
  article .news-img.featured-video,
  .about-desc .news-img.featured-video,
  .terms-wrap .news-img.featured-video {
    height: 350px;
  }
  article .news-metainfo,
  .about-desc .news-metainfo,
  .terms-wrap .news-metainfo {
    margin-bottom: 5px;
  }
  .reply-btn {
    font-size: 14px;
  }
  .wp-block-quote {
    background-color: var(--bgColor);
    padding: 30px 25px 30px 25px;
    margin: 20px 0 20px;
  }
  .wp-block-quote p {
    font-size: 18px;
    line-height: 28px;
  }
  .wp-block-quote i {
    top: 22px;
    left: 35px;
    font-size: 60px;
  }
  .wp-block-quote h6 {
    font-size: 14px;
    line-height: 24px;
  }
  .post-pagination {
    padding-top: 22px;
    padding-bottom: 22px;
    margin-bottom: 28px;
  }
  .post-pagination .prev-post,
  .post-pagination .next-post {
    width: 48%;
  }
  .post-pagination .prev-post span,
  .post-pagination .next-post span {
    line-height: 20px;
  }
  .post-pagination .prev-post h6,
  .post-pagination .next-post h6 {
    font-size: 14px;
    line-height: 24px;
    font-family: var(--bodyFont);
    margin: 10px 0 0;
  }
  .comment-item-wrap .comment-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .comment-item-wrap .comment-item.reply {
    margin-left: 25px;
  }
  .comment-item-wrap .comment-item .comment-author-img {
    width: 65px;
    height: 65px;
  }
  .comment-item-wrap .comment-item .comment-author-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name {
    margin-bottom: 15px;
  }
  .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name h5 {
    font-size: 16px;
  }
  .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name .comment-date {
    margin-bottom: 13px;
    font-size: 14px;
  }
  .comment-item-wrap .comment-item .comment-author-wrap .comment-text {
    margin-bottom: 10px;
  }
  #cmt-form .comment-form .form-group {
    margin-bottom: 15px;
  }
  #cmt-form .comment-form .form-group label {
    font-size: 14px;
  }
  #cmt-form .comment-form .form-group input {
    height: 54px;
  }
  .sidebar .sidebar-widget {
    padding: 20px;
  }
  .sidebar .sidebar-widget .sidebar-widget-title {
    font-size: 20px;
  }
  .checkbox label {
    font-size: 14px;
  }
  .author-box {
    padding: 25px 20px;
  }
  .author-box .author-info {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .search-box-widget input {
    font-size: 14px;
  }
  .search-result {
    margin-bottom: 15px;
  }
  #product-filter {
    margin-bottom: 20px;
    width: 100%;
    font-size: 14px;
  }
  .single-product-img img {
    max-width: 100%;
  }
  .single-product-details .single-product-title h2 {
    font-size: 22px;
    line-height: 34px;
  }
  .single-product-details .product-more-option-item h5 {
    font-size: 15px;
  }
  .single-product-details .product-more-option-item h4 {
    font-size: 15px;
  }
  .single-product-details .product-more-option-item .product-quantity {
    margin-bottom: 15px;
  }
  .single-product-details .product-more-option-item .product-quantity .v-counter {
    margin-right: 15px;
    max-width: 140px;
  }
  .single-product-details .product-more-option-item .product-quantity .btn-two {
    font-size: 14px;
    padding: 17px 20px 17px;
  }
  .error-wrap .error-content img {
    max-width: 100%;
  }
  .login-wrap .login-bg {
    width: 100%;
    height: 200px;
    padding: 20px 0 0 50px;
  }
  .login-wrap .login-content {
    width: 100%;
    padding: 30px 15px 30px 15px;
  }
  .login-wrap .login-content .link-one {
    margin-bottom: 30px;
  }
  .login-wrap .login-content .alt-login a {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .login-wrap .login-content .alt-login a img {
    max-width: 20px;
  }
  .login-wrap .login-content .alt-login a:first-child {
    margin-bottom: 15px;
  }
  .login-wrap .login-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .login-wrap .login-content .or-text {
    margin: 15px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-fluid {
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .pt-100 {
    padding-top: 70px;
  }
  .pb-100 {
    padding-bottom: 70px;
  }
  .mt-100 {
    margin-top: 70px !important;
  }
  .pb-70 {
    padding-bottom: 35px;
  }
  .ptb-100 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pt-70 {
    padding-top: 40px;
  }
  .pb-70 {
    padding-bottom: 40px;
  }
  .pb-75 {
    padding-bottom: 45px;
  }
  .pt-75 {
    padding-top: 45px;
  }
  .sidebar {
    margin-top: 70px;
  }
  .breadcrumb-title {
    font-size: 30px;
    line-height: 40px;
    margin: 0;
  }
  .section-title-two {
    padding-bottom: 15px;
  }
  .section-title-two h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .hero-news-card .hero-news-info {
    width: calc(100% - 80px);
    padding: 45px 0;
  }
  .hero-news-card .hero-news-info .news-cat {
    font-size: 16px;
    line-height: 24px;
  }
  .hero-news-card .hero-news-info h3 {
    padding: 0 55px;
    font-size: 32px;
    line-height: 46px;
  }
  .hero-news-card .hero-news-info p {
    padding: 0 55px;
  }
  .hero-slider .hero-prev {
    left: 35px;
  }
  .hero-slider .hero-next {
    right: 35px;
  }
  .trending-box-two {
    padding: 25px 30px;
  }
  .trending-box-two .trending-slider-two {
    margin-left: 40px;
  }
  .trending-slider-two .trending-btn {
    right: 0px;
  }
  .trending-box-two .trending-slider-two {
    width: 95%;
  }
  .trending-box-two .trending-slider-two .news-card-one h3 {
    max-width: 80%;
  }
  .news-col-wrap .news-col-one,
  .news-col-wrap .news-col-two,
  .news-col-wrap .news-col-three {
    width: calc(50% - 10px);
  }
  .scrollscreen {
    margin-bottom: 25px;
  }
  .scrollscreen .scrollscreen--content .news-card-five {
    padding-right: 20px;
  }
  .scrollscreen.featured-video-box .scrollscreen--content {
    padding-right: 20px;
  }
  .scrollscreen.featured-video-box .scrollscreen--track {
    right: -14px;
  }
  #newsletter-popup .modal-dialog {
    max-width: 720px;
  }
  #newsletter-popup .modal-content .btn_close {
    top: 25px;
    right: 25px;
  }
  #newsletter-popup .modal-body .newsletter-content {
    padding: 60px 80px;
  }
  .newsletter-box .newsletter-content h2 {
    font-size: 32px;
  }
  .promo-card-two {
    padding: 50px 50px 50px 30px;
  }
  .promo-card-two .promo-content {
    max-width: 100%;
  }
  .promo-card-two .promo-img {
    position: relative;
    display: block;
    margin: 0 auto;
  }
  .news-metainfo li i {
    top: 5.5px;
  }
  .pp-news-card .pp-news-info {
    bottom: 20px;
    left: 25px;
    width: calc(100% - 50px);
  }
  .social-widget-two {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr auto;
    grid-gap: 25px;
  }
  .author-box {
    padding: 30px;
  }
  .author-box .author-info .social-profile {
    margin-bottom: 20px;
    width: 100%;
  }
  .author-box .author-profile .author-stat {
    width: 100%;
  }
  .skill-content h2 {
    font-size: 39px;
    line-height: 49px;
  }
  .login-wrap .login-bg {
    width: 35%;
    padding: 20px 0 0 50px;
  }
  .login-wrap .login-content {
    width: 65%;
    padding: 0px 35px 30px 35px;
  }
  .login-wrap .login-content .link-one {
    margin-bottom: 90px;
  }
  .login-wrap .login-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .login-wrap .login-content .or-text {
    margin: 15px 0;
  }
}
@media only screen and (max-width: 991px) {
  .md-none {
    display: none !important;
  }
  .mt-60 {
    margin-top: 30px !important;
  }
  .md-center {
    text-align: center !important;
  }
  .content-wrapper .left-content {
    width: 100%;
  }
  .content-wrapper .sidebar {
    width: 100%;
  }
  .news-col-one .news-card-three,
  .news-col-two .news-card-three,
  .news-col-three .news-card-three {
    padding-bottom: 20px;
  }
  .news-col-one .news-card-three .news-card-img,
  .news-col-one .news-card-five .news-card-img,
  .news-col-two .news-card-three .news-card-img,
  .news-col-two .news-card-five .news-card-img,
  .news-col-three .news-card-three .news-card-img,
  .news-col-three .news-card-five .news-card-img {
    width: 100%;
  }
  .news-col-one .news-card-three .news-card-info,
  .news-col-one .news-card-five .news-card-info,
  .news-col-two .news-card-three .news-card-info,
  .news-col-two .news-card-five .news-card-info,
  .news-col-three .news-card-three .news-card-info,
  .news-col-three .news-card-five .news-card-info {
    width: 100%;
    margin: 20px 0 0;
  }
  .news-col-one .news-card-four,
  .news-col-one .news-card-five,
  .news-col-two .news-card-four,
  .news-col-two .news-card-five {
    margin-bottom: 25px;
  }
  .popular-news-wrap .news-card-five .news-card-info::after {
    display: none;
  }
  .popular-news-wrap .news-card-five .news-card-info h3 {
    font-size: 20px;
    line-height: 33px;
  }
  .general-news-three .sidebar {
    margin-bottom: 50px;
  }
  .sports-wrap,
  .product-wrap,
  .product-details-wrap,
  .video-wrap-three,
  .latest-news-three {
    overflow-x: hidden;
  }
  #newsletter-popup .modal-body .newsletter-bg {
    width: 100%;
    height: 350px;
    border-radius: 5px 5px 0 0;
  }
  #newsletter-popup .modal-body .newsletter-content {
    width: 100%;
    border-radius: 0 0 5px 5px;
  }
  .newsletter-box .newsletter-content {
    margin-bottom: 20px;
  }
  .product-details-wrap .single-product-img {
    margin-bottom: 30px;
  }
  .client-review-form {
    margin-top: 25px;
  }
  .skill-bg {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .lg-none {
    display: none !important;
  }
  .instagram-wrapper .instagram-prev {
    left: -10px;
  }
  .instagram-wrapper .instagram-next {
    right: -10px;
  }
  .cart-wrap .checkout-box {
    margin-top: 25px;
  }
  .video-slider-wrap .video-prev {
    left: 0px;
  }
  .video-slider-wrap .video-next {
    right: 0px;
  }
}
@media only screen and (min-width: 992px) {
  .link-three {
    position: relative;
    top: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .content-wrapper .left-content {
    width: calc(60% - 15px);
  }
  .content-wrapper .sidebar {
    width: calc(40% - 25px);
  }
  .hero-news-card .hero-news-info {
    width: calc(100% - 80px);
    padding: 70px 0;
  }
  .hero-news-card .hero-news-info .news-cat {
    font-size: 16px;
    line-height: 24px;
  }
  .hero-news-card .hero-news-info h3 {
    padding: 0 55px;
    font-size: 32px;
    line-height: 46px;
  }
  .hero-news-card .hero-news-info p {
    padding: 0 55px;
  }
  .news-col-wrap .news-col-one,
  .news-col-wrap .news-col-two,
  .news-col-wrap .news-col-three {
    width: calc(50% - 15px);
  }
  .news-metainfo li i {
    top: 5.5px;
  }
  .scrollscreen.featured-video-box .scrollscreen--content {
    padding-right: 32px;
  }
  .promo-card {
    padding: 80px 0 50px 30px;
  }
  .promo-card .promo-content {
    max-width: 60%;
  }
  .promo-card .promo-img {
    right: -220px;
  }
  .promo-card-two {
    padding: 50px 50px 50px 30px;
  }
  .promo-card-two .promo-content {
    max-width: 100%;
  }
  .promo-card-two .promo-img {
    position: relative;
  }
  .scrollscreen {
    margin-bottom: 25px;
  }
  .scrollscreen .scrollscreen--content .news-card-five {
    padding-right: 20px;
  }
  .news-card-four .news-card-info {
    bottom: 30px;
    left: 30px;
    width: calc(100% - 60px);
  }
  .news-card-four .news-card-info h3 {
    font-size: 26px;
    line-height: 38px;
  }
  .popular-news-wrap .news-card-five .news-card-info::after {
    bottom: -17px;
  }
  .popular-news-wrap .news-card-five .news-card-info h3 {
    font-size: 20px;
    line-height: 30px;
  }
  #newsletter-popup .modal-dialog {
    max-width: 900px;
  }
  #newsletter-popup .modal-body .newsletter-content {
    padding: 127px 30px;
  }
  #newsletter-popup .modal-body .newsletter-content h2 {
    font-size: 30px;
    line-height: 42px;
  }
  #newsletter-popup .modal-body .newsletter-content .newsletter-form {
    margin: 30px 0 16px;
  }
  .newsletter-box .newsletter-content h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .social-widget-two {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr auto;
    grid-gap: 25px;
  }
  .post-pagination .prev-post,
  .post-pagination .next-post {
    width: 46%;
  }
  .trending-box-two .trending-slider-two .news-card-one h3 {
    max-width: 80%;
  }
  .skill-content h2 {
    font-size: 34px;
    line-height: 48px;
  }
  .login-wrap .login-bg {
    padding: 20px 0 0 50px;
  }
  .login-wrap .login-content {
    padding: 25px 35px 30px 35px;
  }
  .login-wrap .login-content .link-one {
    margin-bottom: 30px;
  }
  .login-wrap .login-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .login-wrap .login-content .or-text {
    margin: 15px 0;
  }
}
@media only screen and (min-width: 1200px) {
  .xl-none {
    display: none !important;
  }
  .selected-news .news-card-four,
  .selected-news .news-card-five {
    margin-bottom: 30px;
  }
  .selected-news .news-card-four:last-child,
  .selected-news .news-card-five:last-child {
    margin-bottom: 0;
  }
  .latest-news-three .latest-news-right .news-card-two .news-card-info h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .single-product-img {
    padding: 104px 50px;
  }
  .general-news-two .news-card-twelve:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .login-wrap {
    height: 100vh;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .sidebar .sidebar-widget {
    padding: 25px;
  }
  .sidebar .social-widget {
    grid-gap: 15px;
  }
  .sidebar .social-widget li a {
    font-size: 14px;
  }
  .sidebar .social-widget li p {
    font-size: 14px;
  }
  .scrollscreen .scrollscreen--content .news-card-five {
    padding-right: 10px;
  }
  .scrollscreen .scrollscreen--content .news-card-five .news-card-img {
    width: 190px;
  }
  .scrollscreen .scrollscreen--content .news-card-five .news-card-info {
    width: calc(100% - 210px);
    margin-left: 20px;
  }
  .news-card-four .news-card-info {
    bottom: 30px;
    left: 30px;
    width: calc(100% - 60px);
  }
  .news-card-four .news-card-info h3 {
    font-size: 26px;
    line-height: 38px;
  }
  .video-slider-wrap .video-prev {
    left: 0px;
  }
  .video-slider-wrap .video-next {
    right: 0px;
  }
  .instagram-wrapper .instagram-prev {
    left: -10px;
  }
  .instagram-wrapper .instagram-next {
    right: -10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-news-card .hero-news-info {
    width: calc(100% - 120px);
    padding: 70px 0;
  }
  .hero-news-card .hero-news-info h3 {
    padding: 0 55px;
  }
  .hero-news-card .hero-news-info p {
    padding: 0 55px;
  }
  .promo-card .promo-img {
    right: -100px;
  }
  .promo-card-two .promo-img {
    max-width: 50%;
  }
  .pp-news-box .news-tab-content {
    padding: 30px;
  }
  .scrollscreen .scrollscreen--track {
    right: -6px;
  }
  .scrollscreen.featured-video-box .scrollscreen--content {
    padding-right: 32px;
  }
  .content-wrapper .left-content {
    width: calc(72% - 15px);
  }
  .content-wrapper .sidebar {
    width: calc(28% - 25px);
  }
  .popular-news .news-card-eleven .news-card-info h3 {
    font-size: 30px;
    line-height: 42px;
  }
  .latest-news-three .news-card-five {
    padding-right: 20px;
  }
  .news-metainfo li i {
    top: 6px;
  }
  .selected-wrap-two .selected-news-content .news-card-thirteen .news-card-info h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .social-widget-two li span {
    width: 36px;
    height: 36px;
  }
  .social-widget-two li .social-link {
    font-size: 15px;
    line-height: 26px;
  }
  .social-widget-two li .social-link p {
    font-size: 14px;
    line-height: 20px;
  }
  .popular-news-wrap .news-card-five .news-card-info::after {
    bottom: -19px;
  }
  .skill-content h2 {
    font-size: 40px;
    line-height: 54px;
  }
  .login-wrap .login-bg {
    padding: 20px 0 0 50px;
  }
  .login-wrap .login-content {
    padding: 25px 55px 30px 55px;
  }
  .login-wrap .login-content .link-one {
    margin-bottom: 30px;
  }
  .login-wrap .login-content h3 {
    margin-bottom: 15px;
  }
  .login-wrap .login-content .or-text {
    margin: 15px 0;
  }
  .instagram-wrapper .instagram-prev {
    left: 0;
  }
  .instagram-wrapper .instagram-next {
    right: 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .news-metainfo li {
    margin-right: 15px;
    padding-left: 23px;
    font-size: 15px;
  }
  .news-metainfo li i {
    top: 4px;
    font-size: 15px;
  }
  .news-card-four .news-metainfo li i {
    top: 5px;
  }
  .news-metainfo li i {
    top: 9px;
  }
  .video-slider-wrap .video-prev {
    left: 0px;
  }
  .video-slider-wrap .video-next {
    right: 0px;
  }
  .editor-news,
  .video-news-wrap,
  .general-news,
  .popular-news {
    overflow: hidden;
  }
  .scrollscreen .scrollscreen--content .news-card-five {
    padding-right: 15px;
  }
  .scrollscreen .scrollscreen--track {
    right: -6px;
  }
  .instagram-wrapper .instagram-prev {
    left: 0;
  }
  .instagram-wrapper .instagram-next {
    right: 0;
  }
  .social-widget-two li:nth-child(2) {
    margin-left: -11px;
  }
  .social-widget-two li:nth-child(3) {
    margin-left: 7px;
  }
  .social-widget-two li:nth-child(4) {
    margin-left: 18px;
  }
  .social-widget-two li:nth-child(5) {
    margin-left: 25px;
  }
  .social-widget-two li:nth-child(6) {
    margin-left: 40px;
  }
}
@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1327px;
  }
  .gx-45 {
    --bs-gutter-x: 1.8rem;
  }
  .gx-55 {
    --bs-gutter-x: 3.6rem;
  }
  .section-title .section-title-img {
    bottom: -27px;
  }
  .sidebar .sidebar-widget {
    padding: 35px 40px 32px;
  }
  .sidebar .contact-widget {
    padding: 48px 50px;
  }
  .sidebar .checkout-box {
    margin-bottom: 40px;
  }
  .sidebar .checkout-box:last-child {
    margin-bottom: 0;
  }
  .section-title-two h2 {
    font-size: 26px;
    line-height: 30px;
    display: inline-block;
    position: relative;
  }
  .section-title {
    font-size: 48px;
    line-height: 30px;
    display: inline-block;
    position: relative;
  }
  .hero-news-card .hero-news-info {
    width: calc(100% - 120px);
    padding: 70px 0;
  }
  .hero-news-card .hero-news-info h3 {
    padding: 0 55px;
  }
  .hero-news-card .hero-news-info p {
    padding: 0 55px;
  }
  .about-desc img {
    margin-bottom: 45px;
  }
  .promo-card {
    padding: 99px 0px 88px 100px;
  }
  .promo-card-two {
    padding: 100px 52px 100px 100px;
  }
  .promo-card-two .promo-content {
    max-width: 55%;
  }
  .trending-news-box {
    padding: 35px 20px 35px 60px;
  }
  .trending-news-box .trending-news-slider .swiper-wrapper .news-card-one {
    padding-left: 45px;
  }
  .trending-news-box .trending-news-slider .swiper-wrapper .news-card-one:first-child {
    padding-left: 40px;
  }
  .trending-news-box .trending-news-slider .swiper-wrapper .news-card-one:nth-child(3) {
    padding-left: 45px;
  }
  .news-card-twelve {
    padding: 40px;
  }
  .news-tablist {
    margin-left: 30px;
  }
  .editos-news .editor-box {
    width: calc(100% + 18px);
  }
  .editos-news .pp-news-box {
    width: calc(100% - 28px);
    margin-left: auto;
  }
  .general-news-two {
    padding: 40px;
  }
  .popular-news .news-card-eleven .news-card-info h3 {
    font-size: 36px;
    line-height: 50px;
  }
  .latest-news-three .scrollscreen {
    width: calc(100% + 45px);
  }
  .latest-news-three .scrollscreen .scrollscreen--content .news-card-five {
    padding-right: 20px;
  }
  .latest-news-three .latest-news-right {
    width: calc(100% - 42px);
    margin-left: auto;
  }
  .latest-news-three .latest-news-right .news-card-two .news-card-info h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 18px;
  }
  .editors-wrap-two .news-card-four {
    width: calc(100% + 5px);
  }
  .editors-wrap-two .news-card-wrap {
    width: calc(100% - 10px);
    margin-left: auto;
  }
  .newsletter-widget {
    padding: 22px 10px 32px;
  }
  .sidebar-widget.newsletter-widget-two {
    padding: 60px 50px 60px;
  }
  #newsletter-popup .modal-dialog {
    max-width: 1160px;
  }
  .newsletter-box {
    padding: 60px 60px 51px;
  }
  .about-desc {
    padding: 0 23px;
  }
  .contact-wrap {
    padding: 0 20px;
  }
  .contact-card {
    padding: 30px;
  }
  .contact-card .contact-info p, .contact-card .contact-info a {
    font-size: 18px;
    line-height: 30px;
  }
  .contact-form .section-title {
    font-size: 36px;
    line-height: 38px;
  }
  .social-widget-two {
    padding: 52px 60px;
  }
  .checkout-form {
    padding: 50px;
  }
  .login-wrap .login-bg {
    padding: 50px 0 0 100px;
  }
  .login-wrap .login-content {
    padding: 55px 125px 50px 125px;
  }
  .login-wrap .login-content .link-one {
    margin-bottom: 110px;
  }
  article p,
  .about-desc p,
  .terms-wrap p {
    margin-bottom: 20px;
  }
  article h1, article h2, article h3, article h4, article h5, article h6,
  .about-desc h1,
  .about-desc h2,
  .about-desc h3,
  .about-desc h4,
  .about-desc h5,
  .about-desc h6,
  .terms-wrap h1,
  .terms-wrap h2,
  .terms-wrap h3,
  .terms-wrap h4,
  .terms-wrap h5,
  .terms-wrap h6 {
    margin-bottom: 15px;
    line-height: 1.55;
  }
  article h1,
  .about-desc h1,
  .terms-wrap h1 {
    font-size: 32px;
  }
  article h2,
  .about-desc h2,
  .terms-wrap h2 {
    font-size: 32px;
  }
  article h1{
    font-size: 20px;
  }
  article h4,
  .about-desc h4,
  .terms-wrap h4 {
    font-size: 28px;
  }
  article h5,
  .about-desc h5,
  .terms-wrap h5 {
    font-size: 26px;
  }
  article h6,
  .about-desc h6,
  .terms-wrap h6 {
    font-size: 22px;
  }
  article p:last-child,
  .about-desc p:last-child,
  .terms-wrap p:last-child {
    margin-bottom: 0;
  }
  article ol,
  .about-desc ol,
  .terms-wrap ol {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  article ol li,
  .about-desc ol li,
  .terms-wrap ol li {
    margin-bottom: 15px;
    color: var(--paraColor);
    padding-left: 3px;
  }
  .news-details-wrap .sidebar .sidebar-widget,
  .news-details-wrap .sidebar .sidebar-widget-two {
    margin-bottom: 40px;
  }
  .news-details-wrap .sidebar .search-box-widget {
    margin-bottom: 40px;
  }
  .comment-box-title {
    font-size: 40px;
  }
  .product-details-wrap {
    width: calc(100% - 88px);
  }
  .product-details-wrap .single-product-img {
    width: calc(100% + 30px);
  }
  .product-details-wrap .single-product-details {
    width: calc(100% - 25px);
    margin-left: 25px;
  }
}
@media only screen and (min-width: 1600px) {
  .container-fluid {
    max-width: 1578px;
  }
  .news-metainfo li {
    margin-right: 22px;
    padding-left: 20px;
    font-size: 14px;
  }
  .news-metainfo li i {
    top: 8px;
    font-size: 16px;
  }
  .hero-news-card .hero-news-info {
    width: calc(100% - 150px);
    padding: 50px 0;
  }
  .hero-news-card .hero-news-info h3 {
    padding: 0 35px;
  }
  .hero-news-card .hero-news-info p {
    padding: 0 35px;
  }
  .scrollscreen .scrollscreen--content .news-card-five {
    padding-right: 10px;
  }
  .latest-news-three .scrollscreen .scrollscreen--content .news-card-five {
    padding-right: 30px;
  }
  .newsletter-box .newsletter-form {
    max-width: 495px;
    margin-left: auto;
  }
  .login-wrap .login-bg {
    padding: 50px 0 0 120px;
  }
  .login-wrap .login-content {
    padding: 52px 125px 52px 125px;
  }
  .login-wrap .login-content .link-one {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 1920px) {
  .hero-news-card .hero-news-info {
    width: calc(100% - 246px);
    padding: 85px 0;
  }
  .hero-news-card .hero-news-info h3 {
    padding: 0 65px;
  }
  .hero-news-card .hero-news-info p {
    padding: 0 65px;
  }
  .login-wrap .login-bg {
    padding: 60px 0 0 180px;
  }
  .login-wrap .login-content {
    padding: 0px 225px 52px 225px;
  }
  .login-wrap .login-content .link-one {
    margin-bottom: 130px;
  }
}
/*!dark-theme*/
:root {
  --aztechColor:#111828;
  --codColor: #222;
  --darkColor: #000;
}

.switch-theme-mode {
  position: fixed;
  top: 200px;
  right: 15px;
  z-index: 99;
}

.switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.slider.round {
  border-radius: 50%;
}
.slider.round:before {
  border-radius: 50%;
}
.slider:before {
  position: absolute;
  content: "";
  height: 35px;
  width: 35px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: 0.4s;
  box-shadow: 0 0px 15px rgba(32, 32, 32, 0.2392156863);
  background: white url("../img/sunny.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--aztechColor);
  background-size: 17px;
}

.navbar-area .navbar,
input:checked + .slider {
  background-color: transparent;
}

input:focus + .slider {
  box-shadow: 0 0 1px transparent;
}

input:checked + .slider:before {
  transform: translateX(0);
  background: white url("../img/night.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

/*!css*/
.theme-light .navbar-brand .logo-dark {
  display: none !important;
}
.theme-light .navbar-brand .logo-light {
  display: block !important;
}
.theme-light .footer-logo .logo-dark {
  display: none !important;
}
.theme-light .footer-logo .logo-light {
  display: block !important;
}
.theme-light .logo .logo-dark {
  display: none !important;
}
.theme-light .logo .logo-light {
  display: block !important;
}

.theme-dark .navbar-brand .logo-light {
  display: none !important;
}
.theme-dark .navbar-brand .logo-dark {
  display: block !important;
}
.theme-dark .footer-logo .logo-dark {
  display: block !important;
}
.theme-dark .footer-logo .logo-light {
  display: none !important;
}
.theme-dark .logo .logo-dark {
  display: block !important;
}
.theme-dark .logo .logo-light {
  display: none !important;
}
.theme-dark .bg_ash,
.theme-dark .bg_two,
.theme-dark .pricing-card,
.theme-dark .navbar-area.header-game.sticky,
.theme-dark .trending-box-two:before,
.theme-dark .navbar-area.header-game,
.theme-dark .about-wrap-one::after,
.theme-dark .social-widget-two,
.theme-dark .news-card-twelve,
.theme-dark .hero-slider-wrap,
.theme-dark .breadcrumb-wrap,
.theme-dark .searchModal .modal-dialog,
.theme-dark .author-wrap::after,
.theme-dark .btn-three,
.theme-dark .sidebar .checkout-box,
.theme-dark .bg_gray {
  background-color: var(--codColor);
}
.theme-dark body,
.theme-dark .td_dark,
.theme-dark .responsive-navbar,
.theme-dark #newsletter-popup .modal-body .newsletter-content,
.theme-dark #newsletter-popup .modal-content,
.theme-dark .pp-news-box .news-card-seven,
.theme-dark .login-wrap .login-content,
.theme-dark .hero-news-card .hero-news-info,
.theme-dark .author-box,
.theme-dark .checkout-details .bill-item-wrap, .theme-dark .checkout-details-two .bill-item-wrap,
.theme-dark .bg-white {
  background-color: var(--darkColor) !important;
}
.theme-dark .td_aztec,
.theme-dark .link-three span,
.theme-dark .pp-news-box,
.theme-dark .product-card,
.theme-dark .news-tablist-three .nav-item .nav-link, .theme-dark .news-tablist-three .nav-item .nav-link,
.theme-dark .scrollscreen .scrollscreen--track,
.theme-dark .blog-card-one .blog-title .blog-date,
.theme-dark .navbar-area .navbar .navbar-nav .nav-item .dropdown-menu {
  background-color: var(--aztechColor) !important;
}
.theme-dark .searchModal .modal-dialog .modal-content .btn-close i,
.theme-dark .single-product-details .product-more-option-item h5,
.theme-dark .single-product-details .social-profile li a i,
.theme-dark .product-card .product-price .discount,
.theme-dark #newsletter-popup .modal-content .btn_close i,
.theme-dark .news-card-one .news-card-info .news-metainfo li,
.theme-dark .cart-total .cart-total-wrap .cart-total-item p, .theme-dark .cart-total .cart-total-wrap .cart-total-item span,
.theme-dark .responsive-navbar .offcanvas-body .contact-info li p, .theme-dark .responsive-navbar .offcanvas-body .contact-info li a {
  color: var(--offwhiteColor);
}
.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark h5,
.theme-dark h6,
.theme-dark h3 a,
.theme-dark .checkout-details .bill-item b, .theme-dark .checkout-details .bill-item-footer b, .theme-dark .checkout-details .bill-item-title b, .theme-dark .checkout-details-two .bill-item b, .theme-dark .checkout-details-two .bill-item-footer b, .theme-dark .checkout-details-two .bill-item-title b,
.theme-dark .navbar-area .navbar .others-option .option-item .search-btn i,
.theme-dark .header-wrap.header-game .header-bottom .navbar .navbar-nav .nav-item a,
.theme-dark .cart-table table thead tr th,
.theme-dark .cart-total .cart-total-wrap .cart-total-item p b, .theme-dark .cart-total .cart-total-wrap .cart-total-item span b,
.theme-dark .cart-table table tbody tr td,
.theme-dark .ad-section p,
.theme-dark .ad-section-two p,
.theme-dark .progressbar-wrap .progress-item .progress-title p,
.theme-dark .progressbar-wrap .progress-item .progress-title span,
.theme-dark .news-card-info .news-author h5,
.theme-dark .featured-slider .featured-prev i, .theme-dark .featured-slider .featured-next i,
.theme-dark .single-product-details .product-more-option-item span, .theme-dark .single-product-details .product-more-option-item a,
.theme-dark article p strong, .theme-dark article p b, .theme-dark .terms-wrap p strong, .theme-dark .terms-wrap p b {
  color: var(--whiteColor);
}
.theme-dark .ad-section::after, .theme-dark .ad-section-two::after,
.theme-dark .checkout-details .bill-item::after, .theme-dark .checkout-details .bill-item-title::after, .theme-dark .checkout-details .bill-item-footer::after, .theme-dark .checkout-details-two .bill-item::after, .theme-dark .checkout-details-two .bill-item-title::after, .theme-dark .checkout-details-two .bill-item-footer::after {
  background-color: rgba(255, 255, 255, 0.2);
}
.theme-dark .link-three:hover span,
.theme-dark .news-tablist-three .nav-item .nav-link.active, .theme-dark .news-tablist-three .nav-item .nav-link:hover {
  background-color: var(--secondaryColor) !important;
}
.theme-dark .cart-table table thead tr th,
.theme-dark .ad-section p, .theme-dark .ad-section-two p {
  background-color: transparent;
}
.theme-dark .footer-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.theme-dark .cart-table table tbody tr td {
  background-color: transparent;
}
.theme-dark .news-card-one h3 a:hover, .theme-dark .news-card-two h3 a:hover, .theme-dark .news-card-three h3 a:hover, .theme-dark .news-card-four h3 a:hover, .theme-dark .news-card-five h3 a:hover, .theme-dark .news-card-six h3 a:hover, .theme-dark .news-card-seven h3 a:hover, .theme-dark .news-card-eight h3 a:hover, .theme-dark .news-card-nine h3 a:hover, .theme-dark .news-card-ten h3 a:hover, .theme-dark .news-card-eleven h3 a:hover, .theme-dark .news-card-twelve h3 a:hover, .theme-dark .news-card-thirteen h3 a:hover {
  background-image: linear-gradient(#d9d9d9, #d9d9d9);
  background-size: 100% 1px;
}
.theme-dark .team-card:after {
  background-color: var(--codColor);
}
.theme-dark .team-card:hover:after {
  background-color: var(--secondaryColor);
}
.theme-dark .checkout-form .form-group select option {
  color: var(--codColor);
}
.theme-dark p, .theme-dark span,
.theme-dark .news-metainfo li,
.theme-dark .news-metainfo li a,
.theme-dark .contact-item-wrap .contact-item .contact-info a,
.theme-dark .contact-item-wrap .contact-item .contact-info p,
.theme-dark .checkbox label,
.theme-dark .content-feature-list li,
.theme-dark .breadcrumb-content .breadcrumb-menu li:last-child,
.theme-dark .responsive-navbar .offcanvas-body .contact-info li p,
.theme-dark .responsive-navbar .offcanvas-body .contact-info li a,
.theme-dark article ol li, .theme-dark .service-details-wrap ol li, .theme-dark .project-details-wrap ol li, .theme-dark .terms-wrap ol li,
.theme-dark .content-feature-list li,
.theme-dark .filter-radio-group [type=radio]:checked + label,
.theme-dark .filter-radio-group [type=radio]:not(:checked) + label,
.theme-dark .content-feature-list-two li,
.theme-dark .contact-item .contact-info p {
  color: var(--offwhiteColor);
}
.theme-dark .breadcrumb-wrap .breadcrumb-content .breadcrumb-menu li a {
  color: var(--primaryColor);
}
.theme-dark .navbar-area .navbar .navbar-nav .nav-item .dropdown-menu {
  box-shadow: none !important;
}
.theme-dark .trending-news-box,
.theme-dark .contact-widget,
.theme-dark .promo-card-two,
.theme-dark .footer-wrap {
  position: relative;
}
.theme-dark .trending-news-box:after,
.theme-dark .contact-widget:after,
.theme-dark .promo-card-two:after,
.theme-dark .footer-wrap:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: -1;
}
.theme-dark .footer-wrap .copyright-text span {
  color: var(--secondaryColor);
}
.theme-dark .trending-news-box h4,
.theme-dark .trending-news-box .trending-prev,
.theme-dark .trending-news-box .trending-next {
  position: relative;
  z-index: 1;
}
.theme-dark .trending-news-box h4 i,
.theme-dark .trending-news-box .trending-prev i,
.theme-dark .trending-news-box .trending-next i {
  color: var(--whiteColor);
}
.theme-dark .trending-news-box:after {
  z-index: 0;
}
.theme-dark .link-one,
.theme-dark .link-two,
.theme-dark .single-product-tablist .nav-item .nav-link,
.theme-dark .cart-table table tbody tr td .cart-item,
.theme-dark .author-box .social-profile li a i,
.theme-dark .checkbox label a,
.theme-dark .hero-news-card .hero-news-info h3 a,
.theme-dark .news-tablist .nav-item .nav-link,
.theme-dark .social-widget li a,
.theme-dark .social-widget-two li a,
.theme-dark .news-card-info .news-author h5 a,
.theme-dark .news-card-one .news-card-info h3 a,
.theme-dark .navbar-area.header-game .navbar .navbar-nav .nav-item .nav-link,
.theme-dark .blog-card-one .blog-card-info h3 a, .theme-dark .blog-card-two .blog-card-info h3 a,
.theme-dark .breadcrumb-content .breadcrumb-menu li a {
  color: var(--whiteColor);
}
.theme-dark .link-one:hover, .theme-dark .link-one.active,
.theme-dark .link-two:hover,
.theme-dark .link-two.active,
.theme-dark .single-product-tablist .nav-item .nav-link:hover,
.theme-dark .single-product-tablist .nav-item .nav-link.active,
.theme-dark .cart-table table tbody tr td .cart-item:hover,
.theme-dark .cart-table table tbody tr td .cart-item.active,
.theme-dark .author-box .social-profile li a i:hover,
.theme-dark .author-box .social-profile li a i.active,
.theme-dark .checkbox label a:hover,
.theme-dark .checkbox label a.active,
.theme-dark .hero-news-card .hero-news-info h3 a:hover,
.theme-dark .hero-news-card .hero-news-info h3 a.active,
.theme-dark .news-tablist .nav-item .nav-link:hover,
.theme-dark .news-tablist .nav-item .nav-link.active,
.theme-dark .social-widget li a:hover,
.theme-dark .social-widget li a.active,
.theme-dark .social-widget-two li a:hover,
.theme-dark .social-widget-two li a.active,
.theme-dark .news-card-info .news-author h5 a:hover,
.theme-dark .news-card-info .news-author h5 a.active,
.theme-dark .news-card-one .news-card-info h3 a:hover,
.theme-dark .news-card-one .news-card-info h3 a.active,
.theme-dark .navbar-area.header-game .navbar .navbar-nav .nav-item .nav-link:hover,
.theme-dark .navbar-area.header-game .navbar .navbar-nav .nav-item .nav-link.active,
.theme-dark .blog-card-one .blog-card-info h3 a:hover,
.theme-dark .blog-card-one .blog-card-info h3 a.active, .theme-dark .blog-card-two .blog-card-info h3 a:hover, .theme-dark .blog-card-two .blog-card-info h3 a.active,
.theme-dark .breadcrumb-content .breadcrumb-menu li a:hover,
.theme-dark .breadcrumb-content .breadcrumb-menu li a.active {
  color: var(--secondaryColor);
}
.theme-dark .category-widget li a {
  color: var(--whiteColor);
}
.theme-dark .category-widget li a:hover, .theme-dark .category-widget li a.active {
  color: var(--secondaryColor);
}
.theme-dark .category-widget li a:hover span, .theme-dark .category-widget li a.active span {
  color: var(--secondaryColor);
}
.theme-dark .general-news-two .news-card-twelve {
  background-color: transparent;
}
.theme-dark .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button {
  color: var(--whiteColor);
}
.theme-dark .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-button.active {
  color: var(--secondaryColor);
}
.theme-dark .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body {
  background-color: transparent;
}
.theme-dark .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link {
  color: var(--whiteColor);
}
.theme-dark .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link.active {
  color: var(--secondaryColor);
}
.theme-dark .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-body {
  background-color: transparent;
}
.theme-dark .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link {
  color: var(--whiteColor);
}
.theme-dark .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-link.active {
  color: var(--secondaryColor);
}
.theme-dark .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-body .accordion-button {
  color: var(--whiteColor);
}
.theme-dark .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-item .accordion-collapse .accordion-body .accordion-button.active {
  color: var(--secondaryColor);
}
.theme-dark .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-button {
  color: var(--whiteColor);
}
.theme-dark .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body .accordion-button.active {
  color: var(--secondaryColor);
}
.theme-dark .navbar-area .navbar .navbar-toggler .burger-menu span {
  background: var(--whiteColor);
}
.theme-dark .breadcrumb-menu li a,
.theme-dark .login-wrap .login-content .or-text{
  color: var(--whiteColor);
}
.theme-dark .popular-news-wrap .news-card-five .news-card-info::after,
.theme-dark .login-wrap .login-content .or-text:after,
.theme-dark .login-wrap .login-content .or-text:before,
.theme-dark .feature-card-wrap .row > div .feature-card::after, .theme-dark .feature-card-wrap-two .row > div .feature-card::after {
  background-color: rgba(255, 255, 255, 0.18);
}
.theme-dark .progress-wrap svg.progress-circle path {
  stroke: rgba(255, 255, 255, 0.6);
}
.theme-dark .sidebar .sidebar-widget-two {
  border: none;
}
.theme-dark article,
.theme-dark .responsive-navbar .offcanvas-body .others-option,
.theme-dark .navbar-area.header-game,
.theme-dark .comment-item-wrap .comment-item,
.theme-dark .checkout-details .bill-item-title, .theme-dark .checkout-details-two .bill-item-title,
.theme-dark .checkout-details .bill-item-wrap .bill-item:last-child, .theme-dark .checkout-details-two .bill-item-wrap .bill-item:last-child,
.theme-dark .checkout-details-two,
.theme-dark .select-payment-method [type=radio]:not(:checked) + label::before, .theme-dark .select-payment-method [type=radio]:checked + label::before,
.theme-dark .cart-total .cart-total-wrap .cart-total-item,
.theme-dark .cart-table table tbody tr,
.theme-dark .contact-widget,
.theme-dark .news-card-ten,
.theme-dark .trending-news-box,
.theme-dark .news-col-one .news-card-two, .theme-dark .news-col-one .news-card-three,
.theme-dark .news-col-three .news-card-two, .theme-dark .news-col-three .news-card-three,
.theme-dark .selected-news .news-card-two, .theme-dark .selected-news .news-card-three,
.theme-dark .selected-news .promo-wrap,
.theme-dark .general-news-two,
.theme-dark .general-news-two .news-card-twelve,
.theme-dark .editors-wrap-two .news-card-wrap .news-card-three,
.theme-dark .latest-news .news-card-two, .theme-dark .latest-news .news-card-three,
.theme-dark .section-title-two,
.theme-dark .video-wrap-three .news-card-three,
.theme-dark .newsletter-box,
.theme-dark .trending-box-two,
.theme-dark .contact-card,
.theme-dark .author-box,
.theme-dark .post-pagination,
.theme-dark .cart-table table thead tr,
.theme-dark .v-counter input.count,
.theme-dark .progressbar-wrap .progress-item .progress,
.theme-dark .checkout-promobox,
.theme-dark .checkout-form,
.theme-dark .v-counter,
.theme-dark .login-wrap .login-content .login-form a,
.theme-dark #product-filter,
.theme-dark .latest-news-three .news-card-two,
.theme-dark .featured-slider .featured-prev, .theme-dark .featured-slider .featured-next,
.theme-dark .checkbox label::before {
  border-color: rgba(255, 255, 255, 0.25) !important;
}
.theme-dark .v-counter input.minusBtn,
.theme-dark .v-counter input.plusBtn {
  border: none;
}
.theme-dark .sidebar-widget.newsletter-widget-two::after {
  top: -1px;
  right: -1px;
  border-top: 20px solid var(--darkColor);
  border-right: 20px solid var(--darkColor);
}
.theme-dark .login-wrap .login-content .login-form .form-group input::-moz-placeholder {
  color: var(--offwhiteColor);
}
.theme-dark .login-wrap .login-content .login-form .form-group input::placeholder,
.theme-dark .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name .comment-date,
.theme-dark .contact-card .contact-info p, .theme-dark .contact-card .contact-info a,
.theme-dark .checkout-details .select-payment-method div label, .theme-dark .checkout-details-two .select-payment-method div label {
  color: var(--offwhiteColor);
}
.theme-dark .trending-box-two span,
.theme-dark .single-product-details .product-more-option-item .product-quantity .v-counter input {
  border: none !important;
  color: var(--whiteColor);
}
.theme-dark .navbar-area .navbar .others-option .option-item .sidebar-toggler img {
  filter: brightness(0) invert(1);
}
.theme-dark .breadcrumb-wrap:after {
  background: var(--footerColor);
}
.theme-dark .breadcrumb-wrap .br-shape-one,
.theme-dark .breadcrumb-wrap .br-shape-two {
  filter: brightness(0) invert(1);
}
.theme-dark .wp-block-quote,
.theme-dark .sidebar-widget,
.theme-dark .sidebar-widget-two {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.theme-dark input, .theme-dark textarea,
.theme-dark #cmt-form .comment-form .form-group input,
.theme-dark #cmt-form .comment-form .form-group textarea,
.theme-dark .checkout-form .form-group input,
.theme-dark .checkout-form .form-group textarea,
.theme-dark .comment-form .form-group input,
.theme-dark .comment-form .form-group textarea,
.theme-dark .newsletter-form input,
.theme-dark .login-form .form-group input,
.theme-dark #contactForm .form-group input,
.theme-dark #contactForm .form-group textarea {
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: var(--whiteColor) !important;
}
.theme-dark input::-moz-placeholder, .theme-dark textarea::-moz-placeholder, .theme-dark #cmt-form .comment-form .form-group input::-moz-placeholder, .theme-dark #cmt-form .comment-form .form-group textarea::-moz-placeholder, .theme-dark .checkout-form .form-group input::-moz-placeholder, .theme-dark .checkout-form .form-group textarea::-moz-placeholder, .theme-dark .comment-form .form-group input::-moz-placeholder, .theme-dark .comment-form .form-group textarea::-moz-placeholder, .theme-dark .newsletter-form input::-moz-placeholder, .theme-dark .login-form .form-group input::-moz-placeholder, .theme-dark #contactForm .form-group input::-moz-placeholder, .theme-dark #contactForm .form-group textarea::-moz-placeholder {
  color: var(--whiteColor);
  opacity: 0.8;
}
.theme-dark input::placeholder, .theme-dark textarea::placeholder,
.theme-dark #cmt-form .comment-form .form-group input::placeholder,
.theme-dark #cmt-form .comment-form .form-group textarea::placeholder,
.theme-dark .checkout-form .form-group input::placeholder,
.theme-dark .checkout-form .form-group textarea::placeholder,
.theme-dark .comment-form .form-group input::placeholder,
.theme-dark .comment-form .form-group textarea::placeholder,
.theme-dark .newsletter-form input::placeholder,
.theme-dark .login-form .form-group input::placeholder,
.theme-dark #contactForm .form-group input::placeholder,
.theme-dark #contactForm .form-group textarea::placeholder {
  color: var(--whiteColor);
  opacity: 0.8;
}
.theme-dark .checkout-form .form-group label {
  color: var(--offwhiteColor);
}
.theme-dark .news-metainfo li a:hover {
  color: var(--secondaryColor);
}
.theme-dark .search-box .form-group input {
  background-color: var(--blackColor);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--whiteColor);
}
.theme-dark .search-box .form-group input::-moz-placeholder {
  color: var(--whiteColor);
}
.theme-dark .search-box .form-group input::placeholder {
  color: var(--whiteColor);
}
.theme-dark .checkout-form .form-group select {
  background-color: transparent;
  color: var(--whiteColor);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-image: url(../img/down-arrow-white.webp);
}
.theme-dark .hero-slider .hero-prev, .theme-dark .hero-slider .hero-next {
  background-color: var(--codColor);
}
.theme-dark select {
  background-image: url(../img/down-arrow-white.webp);
}
.theme-dark .breadcrumb-content .breadcrumb-menu li::after {
  background-color: var(--whiteColor);
}
.theme-dark .page-nav li a,
.theme-dark .featured-prev, .theme-dark .trending-prev, .theme-dark .trending-btn-prev,
.theme-dark .instagram-prev, .theme-dark .featured-next, .theme-dark .instagram-next,
.theme-dark .trending-next, .theme-dark .trending-btn-next,
.theme-dark .navbar-area .header-top .social-profile li a,
.theme-dark .single-product-details .product-more-option-item a,
.theme-dark .author-box .social-profile li a,
.theme-dark .footer-wrap .social-profile li a,
.theme-dark .contact-widget .social-profile li a,
.theme-dark .tag-list li a {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--whiteColor);
}
.theme-dark .page-nav li a.active, .theme-dark .page-nav li a:hover,
.theme-dark .featured-prev.active,
.theme-dark .featured-prev:hover, .theme-dark .trending-prev.active, .theme-dark .trending-prev:hover, .theme-dark .trending-btn-prev.active, .theme-dark .trending-btn-prev:hover,
.theme-dark .instagram-prev.active,
.theme-dark .instagram-prev:hover, .theme-dark .featured-next.active, .theme-dark .featured-next:hover, .theme-dark .instagram-next.active, .theme-dark .instagram-next:hover,
.theme-dark .trending-next.active,
.theme-dark .trending-next:hover, .theme-dark .trending-btn-next.active, .theme-dark .trending-btn-next:hover,
.theme-dark .navbar-area .header-top .social-profile li a.active,
.theme-dark .navbar-area .header-top .social-profile li a:hover,
.theme-dark .single-product-details .product-more-option-item a.active,
.theme-dark .single-product-details .product-more-option-item a:hover,
.theme-dark .author-box .social-profile li a.active,
.theme-dark .author-box .social-profile li a:hover,
.theme-dark .footer-wrap .social-profile li a.active,
.theme-dark .footer-wrap .social-profile li a:hover,
.theme-dark .contact-widget .social-profile li a.active,
.theme-dark .contact-widget .social-profile li a:hover,
.theme-dark .tag-list li a.active,
.theme-dark .tag-list li a:hover {
  background-color: var(--secondaryColor);
}
.theme-dark .cart-qty .v-counter {
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.theme-dark .cart-qty .v-counter input {
  border: none !important;
}
.theme-dark .cart-table table tbody tr td {
  border-left: none;
  border-right: none;
}
.theme-dark .social-widget-two li span,
.theme-dark .social-widget li a span {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.theme-dark .single-product-details .product-more-option-item a i,
.theme-dark .author-box .social-profile li a i,
.theme-dark .footer-wrap .social-profile li a i,
.theme-dark .contact-widget .social-profile li a i {
  color: var(--whiteColor);
}
.theme-dark .category-widget li a::after {
  background: linear-gradient(90deg, rgba(231, 231, 231, 0.5) 0%, rgba(231, 231, 231, 0) 114.13%);
}
@media only screen and (max-width: 991px) {
  .switch-theme-mode {
    top: 270px;
  }
}
@media only screen and (min-width: 992px) {
  .theme-dark .header-wrap .navbar .navbar-nav .nav-item .dropdown-menu {
    background-color: var(--codColor);
  }
}
/*!
文章列表
*/
@media (min-width: 992px) {
  aside.aside {
    flex: 0 0 auto;
    width: 33%!important;
  }
}
.box{
  background-color: var(--whiteColor);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-light);
  border:none;
}
main.main{
  
}
.istop-icon svg{
  margin-top:-3px;
}
main.main article:after{
  position: absolute;
  bottom:0;
  left:1rem;
  content: '';
  border-bottom:var(--border);
  width: calc(100% - 2rem);
  display: block;
}
main.main article:last-child:after{
  border:none;
}
main.main article{
  position: relative;
  background: var(--whiteColor);
  border-radius: calc(var(--border-radius) / 2);
  transition: all ease-in-out .3s;
}
main.main article:hover{
  background: var(--bodyBg);
}
main.main article h1{
  margin-bottom: 0;
  line-height: 1.4;
}
main.main article .intro,
main.main article .other{
  font-size:14px;
  text-align: justify;
  opacity: .8;
}
main.main article .intro{
  margin-bottom: .5rem;
}
main.main article h3 a{
  font-size: 18px;
  font-weight:800;
}
/*!文章页*/
.post-title{
  font-size: 1.8rem;
}
.post-data{
  position: relative;
}
.post-data .nav-link{
  padding: 0;
}
.post-data img{
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: middle;
}
.article-tag i{
  color: var(--secondaryColor);
}
.article-tag .btn{
  border-radius: 100rem;
  padding: .2rem 1rem!important;
  border:2px solid var(--bodyBg);
}
.article-tag .btn:hover{
  border:2px solid var(--bodyBg);
  background: var(--bodyBg);
  border-radius: 100rem;
  padding: .2rem 1rem!important;
}
.related .h4{
  font-size: 20px;
  font-weight: 800;
}
.related .card-title{
  font-size: 16px;
}
.related .card{
  border:none;
}
.related .data{
  opacity: .6;
}
/*!分页*/
.pagination li{
  display: inline-block;
}
.page-link{
  color:var(--primaryColor);
  border-radius: 100rem!important;
  width:2.5rem;
  height:2.5rem;
  line-height: 2.5rem;
  text-align: center;
  padding: 0;
}
.active > .page-link, .page-link.active {
  z-index: 3;
  color:var(--whiteColor);
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}
/*!文章页*/
.sharing .help p{
  font-size: 12px!important;
}
.sharing .icon-wechat .wechat-qrcode {
  box-shadow: 0 6px 20px #eaeaea!important;
  border-radius: 10px;
}
.sharing .icon-wechat .wechat-qrcode h4{
  display: none;
}
.sharing .icon-wechat .wechat-qrcode .qrcode {
  margin: 20px auto 8px!important;
}
.post .sharing .share-icon{
  border-radius: 10px!important;
  color: var(--primaryColor)!important;
  border:1px solid #eee!important;
}
.post .sharing .share-icon:hover{
  background: var(--bodyBg);
}
/*!PC端文章页的app下载*/
.actionButton {
  align-items: center;
  border-radius: 4vw;
  cursor: pointer;
  display: flex;
  font-size: .875rem;
  font-weight: 700;
  height: 2.5rem;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 18.13333333vw;
}
.actionButton,
.actionButton * {
  box-sizing:border-box
}
.actionButton .buttonText {
  position:relative;
  z-index:9
}
.actionButton {
  background:#323538;
  color:#fff
}
.game-Button {
  padding: 0 2rem;
  min-width: 5rem;
  width: auto !important;
}
.top-header {
  align-items:center;
  display:flex;
  flex:1;
  height:100%;
  justify-content:center
}
.top-header .newsGame {
  align-items: center;
  background: #f3f3f5;
  border-radius: 100rem;
  display: flex;
  height: 2.5rem;
  max-width: unset;
  padding: 0 1rem 0 1rem;
  position: relative;
  text-decoration: none;
  margin-right: -2rem;
}
.top-header .newsGame .gameIcon {
  border-radius: .5rem;
  flex-shrink: 0;
  height: 2rem;
  margin-right: .5rem;
  overflow: hidden;
  width: 2rem;
}
.top-header .newsGame .gameText {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #303030;
  display: -webkit-box;
  font-size: .875rem;
  font-weight: bolder;
  margin-right: 1.5vw;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.top-container {
  position:absolute;
  right:0;
}
.top-container .topbar {
  align-items:center;
  background:#fff;
  display:flex;
  height:11.73333333vw;
  justify-content:center;
  left:0;
  padding:0 2.13333333vw 0 3.2vw;
  position:absolute;
  right:0;
  top:0;
  z-index:100
}
.top-container .topbar.fixed {
  position:fixed
}
.top-container .topbar.newsdetail {
  border-bottom:.5px solid #ebebeb
}
.top-container .topbar .newsdetail-box {
  display:flex;
  flex:1;
  height:100%;
  position:relative
}
.top-container .topbar .newsdetail-box .newsdetail-main {
  display:flex;
  flex:1;
  height:100%
}

/*!移动端*/
@media only screen and (max-width: 991px) {
  .mt-5 {
    margin-top: 1rem !important;
  }
  .mb-5 {
    margin-bottom: 2rem !important;
  }
  .mt-30 {
    margin-top: 10px !important;
  }
  .p-5,
  .p-4 {
    padding: 1rem !important;
  }
  .my-4 {
    margin: 1rem 0!important;
  }
  .mt-4 {
    margin-top: 1rem !important;
  }
  .mb-4 {
    margin-bottom: 1rem !important;
  }
  .more{
    position: absolute;
    right: 0;
    top: 5px;
    width: auto;
  }
  .trending-box-two span {
    position: absolute;
    top: -5px;
    left: auto;
    transform: none;
    right: -5px;
    width: 30px;
    height: 30px;
  }
  .trending-box-two span svg{
    width: 30px;
    height: 30px;
  }
  .news-card-three .news-card-info{
    width:65%!important;
  }
  .trending-btn{
    left: unset !important;
    right: -10px;
    opacity: .8;
  }
  .trending-box-two .trending-slider-two .news-card-one .news-card-info {
    width: 61%;
    margin: 0 0 0 20px;
  }
  .news-metainfo li {
    line-height: 1.5;
  }
  .trending-box-two .trending-slider-two .news-card-one .news-card-info h3 {
    margin: 0;
  }
  .news-col-three .news-card-three{
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .news-card-three {
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 0px;
  }
  .scrollscreen--content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .scrollscreen {
    height: auto;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    margin-right: 0;
  }
  .scrollscreen--track{
    display: none;
  }
  .scrollscreen .scrollscreen--content {
    height: auto;
  }
  .scrollscreen--content .news-card-five{
    width: 48%;
  }
  .news-card-two .news-card-info{
    margin-top: 0;
  }
  .news-col-three .news-card-img{
    width:30%!important;
  }
  .news-col-three .news-card-info{
    width:65%!important;
  }
  .news-card-one .news-card-img {
    width: 80px;
    height: 80px;
  }
  .news-card-three .news-card-img{
    width: 30%!important;
  }
  .news-card-four .news-card-info h3, .news-card-eight .news-card-info h3 {
    font-size: 18px;
    line-height: 64px;
  }
  .section-title-two h2 {
    font-size: 20px;
    line-height: 33px;
    margin-bottom: 10px;
  }
  .news-card-four .news-card-info,
  .news-card-eight .news-card-info {
    bottom: 5px;
    left: 15px;
    width: calc(100% - 40px);
  }
  .section-title-two .link-three {
    position: relative;
    top: -2px;
  }
  .sidebar {
    margin-top: 10px;
  }
  .sidebar h4 span{
    font-size: 20px!important;
  }
  footer.footer{
    padding: 0 1rem;
  }
  footer.footer .misc{
    order:2;
  }
  footer.footer ul{
    margin-bottom: 0;
  }
  footer.footer .mb-3 {
    margin-bottom: .5rem !important;
  }
  .foot-sharing{
    display: none;
  }
  .responsive-navbar .offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body{
    padding-top: 10px;
  }
  .article-multi{
    padding: 0!important;
  }
  .article-multi .row{
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .article-multi .img{
    width: 35%;
  }
  .article-multi .info{
    width: 64%;
  }
  .article-multi .intro{
    display: none;
  }
  .article-multi .me-5{
    margin-right: 10px!important;
  }
  .article-multi .other{
    align-items: center;
  }
  .page-link{
    width:2rem;
    height:2rem;
    line-height: 2rem;
  }
  .pagination-wrap{
    margin:1rem 0 0 0!important;
  }
  .article-tag li{
    margin-bottom: .5rem;
  }
  .article-tag li i,.article-tag li a{
    font-size:12px;
  }
  .related .card{
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .related .card-fold{
    width: 35%;
  }
  .related .card-body{
    width: 65%;
    margin-right: 15px;
    padding-top: 0!important;
  }
  .post-data{
    font-size: 14px;
  }
  .post-title {
    font-size: 1.5rem;
  }
  /*!移动端文章页顶部的app下载header*/
  .actionButton {
    align-items:center;
    border-radius:4vw;
    cursor:pointer;
    display:flex;
    font-size:3.46666667vw;
    font-weight:700;
    height:7.46666667vw;
    justify-content:center;
    overflow:hidden;
    position:relative;
    text-align:center;
    width:18.13333333vw
  }
  .actionButton,
  .actionButton * {
    box-sizing:border-box
  }
  .actionButton .buttonText {
    position:relative;
    z-index:9
  }
  .actionButton {
    background:#323538;
    color:#fff
  }
  .game-Button {
    min-width:18.13333333vw;
    padding:0 2.66666667vw;
    width:auto!important
  }
  .top-header {
    align-items:center;
    display:flex;
    flex:1;
    height:100%;
    justify-content:center
  }
  .top-header .newsGame {
    align-items:center;
    background:#f3f3f5;
    border-radius:7.73333333vw;
    display:flex;
    height:7.73333333vw;
    max-width:43.73333333vw;
    padding:0 1.2vw 0 2.13333333vw;
    position:relative;
    text-decoration:none
  }
  .top-header .newsGame .gameIcon {
    border-radius:1.33333333vw;
    flex-shrink:0;
    height:5.33333333vw;
    margin-right:.93333333vw;
    overflow:hidden;
    width:5.33333333vw
  }
  .top-header .newsGame .gameText {
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    color:#303030;
    display:-webkit-box;
    font-size:3.46666667vw;
    font-weight:bolder;
    margin-right:.8vw;
    overflow:hidden;
    text-overflow:ellipsis;
    word-break:break-all
  }
  .top-header .newsGame .arrow {
    display:block;
    flex-shrink:0;
    height:1.86666667vw;
    width:.93333333vw
  }
  .top-header .right {
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%)
  }
  .top-container {
    position:relative
  }
  .top-container .topbar {
    align-items:center;
    background:#fff;
    display:flex;
    height:11.73333333vw;
    justify-content:center;
    left:0;
    padding:0 2.13333333vw 0 3.2vw;
    position:absolute;
    right:0;
    top:0;
    z-index:100
  }
  .top-container .topbar.fixed {
    position:fixed
  }
  .top-container .topbar.newsdetail {
    border-bottom:.5px solid #ebebeb
  }
  .top-container .topbar .newsdetail-box {
    display:flex;
    flex:1;
    height:100%;
    position:relative
  }
  .top-container .topbar .newsdetail-box .newsdetail-main {
    display:flex;
    flex:1;
    height:100%
  }
  .top-container .topbar .toHome {
    align-items:center;
    display:flex;
    left:0;
    position:absolute;
    text-decoration:none;
    top:50%;
    transform:translateY(-50%)
  }
  .top-container .topbar .toHome .backIcon {
    background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEoAAABICAYAAABRGGN6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAFxGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4xLWMwMDEgNzkuMTQ2Mjg5OTc3NywgMjAyMy8wNi8yNS0yMzo1NzoxNCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI1LjIgKE1hY2ludG9zaCkiIHhtcDpDcmVhdGVEYXRlPSIyMDI0LTEyLTAyVDAwOjAwOjA3KzA4OjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAyNC0xMi0wMlQxMDoyNjoxNSswODowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyNC0xMi0wMlQxMDoyNjoxNSswODowMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTYzODliNjQtMzBmYi00M2I5LTk3NTEtYjM2YTY1OTE1M2VkIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjNhOTY4ZGYwLTJhY2UtNGVkNS1hYjI5LTdjODg5NDQyYTFjZCIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjNhOTY4ZGYwLTJhY2UtNGVkNS1hYjI5LTdjODg5NDQyYTFjZCI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6M2E5NjhkZjAtMmFjZS00ZWQ1LWFiMjktN2M4ODk0NDJhMWNkIiBzdEV2dDp3aGVuPSIyMDI0LTEyLTAyVDAwOjAwOjA3KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjUuMiAoTWFjaW50b3NoKSIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6OTYzODliNjQtMzBmYi00M2I5LTk3NTEtYjM2YTY1OTE1M2VkIiBzdEV2dDp3aGVuPSIyMDI0LTEyLTAyVDEwOjI2OjE1KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjUuMiAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7tlaaNAAACG0lEQVR4nO3bP0oDQRTH8W9EPYKlIANCPICQwsIjiKcQBW9g5w38cwvBE1ikCVYpRIIwjaVHsFmbFVZMyAvMvHlvmB+k2D+wjw+zm5nZ2VHXdbSsz1bpArykQQnToIRpUMI0KGEalDANSpgGJcx26QI2SQhhFzjuN19jjN9a13bTokIIR8AcmPa/eQjhQOv6LqB6pBdgPNg9Bu60ajAPNUDaW3L4RKsO01BrkAA+tWoxCyVA6oAbrXpMQgmRrmKMT1o1mYPaAOlBrypjUFaRwBCUZSQwAmUdCQwMYYRIlzHGR72q/qdoi/KCBAWhPCFBIShvSFAAyiMSKEN5RQJFKM9IoATlHQkUoGpAgsxQtSBBRqiakCATVG1IkAGqRiRIDFUrEsAo1Yq7EMIO8AYcrjjFLRKkbVETKkUCIxN3HpISagYsVhwbAfchhIuE11NNMqh+wcQ58LXiFNdYSW+9GOM7cEqFWMmfUbViZXmY14iV7V+vNqys3YOasLL3o2rBUulw1oCl1jP3jqU6hPGMpT7W84pVZFDsEavY7IE3rKLTLJ6wis9HecEqDgU+sExAgX0sM1BgG8sUFNjFSva6KnWE7wjPYozPGvWYa1G/EbasW616zEKBCGtfqxbTULAWa6pVh3ko+IP1Mdi9AK61ajD7MF+Wfn3DpN+caX587QqqZFzcehbSoIRpUMI0KGEalDANSpgGJUyDEuYHEuY0KjsCYpcAAAAASUVORK5CYII=) 50%/100% 100% no-repeat;
    height:4.8vw;
    margin-right:.4vw;
    width:4.8vw
  }
  .top-container .topbar .toHome .homeIcon {
    border-radius:1.33333333vw;
    height:5.33333333vw;
    margin-right:.93333333vw;
    width:5.33333333vw
  }
  .top-container .topbar .toHome .homeText {
    color:var(--secondaryColor);
    font-size:3.46666667vw;
    font-weight:bolder
  }
}

/*app列表页和下载页文章详情*/
html{
  scroll-padding-top: 90px;
}
.game-card {
  border: none;
  margin-bottom: 1rem;
  border:2px solid transparent;
}
.game-card:hover {
  border:2px solid #00cbd5;
  background: #daf3f4;
}
.game-card:hover .download-btn{
  background: #00cbd5;
  color: #fff;
}
.game-card .title{
  font-size: 1.2rem;
}
.game-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
}
.download-btn {
  background-color: #F7F7FA;
  border: none;
  color: #111;
  font-size: .875rem;
  padding: 0.3rem 1.5rem;
  font-weight: bold;
  border-radius: 4px;
  white-space: nowrap;
}
.game-info {
  color: #6c757d;
  font-size: 0.875rem;
}

.app-art .game-icon {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
}
.app-art .tag {
  background-color: rgb(255, 245, 209);
  color: #b96800;
  border-radius: 5px;
  padding: 0 15px;
  display: inline-block;
  margin: 5px 5px 0 -2px;
  font-weight: bold;
  font-size: 13px;
}
.app-art .download-btn {
  background-color: #4CD964;
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(76, 217, 100, 0.3);
}
.app-art .game-info {
  font-size: 14px;
}
.app-art .game-info-label {
  color: #777;
  min-width: 45px;
  display: inline-block;
}
.game-nav {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.game-nav .nav-link {
  color: rgba(0, 0, 0, 0.7) ;
  padding: 8px 64px;
  margin: 0 2px;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.game-nav .jump-nav{
  margin-top: -20px;
}
.game-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.9) ;
}
.game-nav .nav-link.active {
  background-color: #00cbd5;
  color: white;
  box-shadow: 0 4px 15px rgba(38, 187, 173, 0.3);
}
.app-info .h4 {
  font-size: 20px;
  font-weight: 800;
}
.info-table {
  max-width: 1200px;
  margin: 0 auto;
}
.info-table .row div:nth-child(odd) .info-value{
  flex: 0 0 auto;
  width: 58.33333333%;
}
.info-item {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.info-label {
  color: #666;
  font-size: 14px;
}
.info-value {
  color: #333;
  font-size: 14px;
  word-break: break-all;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 20px auto;
  overflow: hidden;
}
.carousel {
  display: flex;
  transition: transform 0.3s ease-out;
  cursor: grab;
}
.carousel:active {
  cursor: grabbing;
}
.carousel-box {
  min-width: 25%; /* 一次显示5个图片 */
  padding: 0 10px;
  cursor: pointer;
  user-select: none;
}
.carousel-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  pointer-events: none;
}
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 16px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
  z-index: 2;
  border-radius: 5px;
}
.carousel-button:hover {
  background: rgba(0, 0, 0, 0.8);
}
.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}
/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}
/* 响应式设计 */
@media (max-width: 768px) {
  .carousel-box {
    min-width: 50%; /* 移动端一次显示2个 */
  }
  .game-nav .nav-link {
    padding: 5px 10px;
    font-size: 13px;
  }
  .info-item:nth-child(even) {
    background-color: #f8f9fa;
  }
  .text-end {
    text-align: left !important;
  }
  .info-label {
    margin-bottom: 4px;
  }
  .info-value {
    margin-bottom: 8px;
  }
  .right-align {
    text-align: left !important;
  }
  .app-list{
    padding: 0!important;
  }
  .game-card {
    margin-bottom: 0;
  }
  .card-body {
    flex-wrap: wrap;
  }
  .download-btn {
    margin-top: 0.5rem;  
    padding: 0.3rem 1rem;
  }
  .game-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    object-fit: cover;
  }
  .app-art{
    padding: 10px 0  0 0!important;
  }
  .app-art .h4{
    font-size:18px;
  }
  .app-art .game-icon {
    width: 70px;
    height: 70px;
    border-radius: 8px;
  }
  .app-art .download,.app-art .download-btn{
    width: 100%!important;
    text-align: center;
    display: block;
    padding: 8px 10px;
    margin: 0;
  }
  .app-art .align-items-center{
    align-items: flex-start!important;
  }
  .app-art .tag{
    font-size: 12px;
    padding: 0 5px;
    margin: 5px 0;
  }
  .app-art .game-info {
    line-height: 1.2;
  }
  .game-card .card-body{
    padding-top:10px;
    padding-bottom: 10px;
  }
}
