:root {
  --poppins: 'Poppins', sans-serif;
  --orbitron: 'Orbitron', sans-serif;
}

:root {
  --black-bold: 900;
  --extra-bold: 800;
  --bold: 700;
  --semi-bold: 600;
  --medium: 500;
  --light: 300;
  --regular: 400;
}

:root {
  --theme-txt-clr:#EA0046;
  --white-txt-clr: #ffffff;
  --body-txt-clr: #0F181E;
  --subscribe-input-clr:#172228;
  --m-s-green-txt: #00EAB2;
  --g-d-tag-clr: #0F191E;
  --yello-clr: #FFC807;
  --span-color: #CFCFCF;
  --theme-bdr-clr:#EA0046;
  --white-bdr-clr: #ffffff;
  --body-bg-clr: #0F181E;
  --login-input-border: #335163;
  --header-bg: #172228;
  --theme-bg-clr:#EA0046;
  --white-bg-clr: #ffffff;
  --submenu-bg: #172228;
  --search-input-bg: #1E303B;
  --subscribe-bg: #0F191E;
  --home-v1-about-bg: #0B151A;
  --partner-bg: #071014;
  --footer-overlay: #335163;
  --login-register-overlay: #0F191E;
  --submenu-shadow-clr: rgba(51, 81, 99, 0.2);
  --about-team-overlay: linear-gradient(180deg, rgba(15, 25, 30, 0) 0%, #390011 100%);
  --my-stream-overlay: radial-gradient(50% 50% at 50% 50%, rgba(15, 25, 30, 0) 0%, #0F191E 100%);
  --blog-dtls-tmb-overlay: linear-gradient(180deg, rgba(15, 25, 30, 0) 0%, #0F191E 100%);
  --top-game-overlay: linear-gradient(180deg, rgba(15, 25, 30, 0) 50.08%, #172228 100%);
  --home-v2-latest-pst-overlay: linear-gradient(0deg, #1C272D 35.42%, rgba(51, 81, 99, 0.01) 100%);
  --home-v2-hero-gallery-oberlay: radial-gradient(55.77% 55.77% at 50% 44.23%, #172228 0%, rgba(23, 34, 40, 0.2) 100%);
  --home-v3-team:linear-gradient(0deg, rgba(15, 25, 30, 0) 0%, #390011 108.85%);
}

:root {
  --text-12: 12px;
  --text-13: 13px;
  --text-15: 15px;
  --text-16: 16px;
  --text-17: 17px;
  --text-18: 18px;
  --text-19: 19px;
  --text-20: 20px;
  --text-24: 24px;
  --text-30: 30px;
  --text-48: 48px;
  --text-90: 90px;
}

:root {
  --ease-in: .4s ease-in;
}

.relative {
  position: relative;
}

.bg-overlay {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.bg-overlay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--login-register-overlay);
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.background-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.background-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.background-img .simpleParallax {
  height: 100%;
}
.background-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--login-register-overlay);
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.s-py-100 {
  padding: 100px 0px;
}

.s-py-100-50 {
  padding: 100px 0px 50px;
}

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

.s-py-50-100 {
  padding: 50px 0px 100px;
}

.s-py-50 {
  padding: 50px 0px;
}

.s-py-70 {
  padding: 70px 0px;
}

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

@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media screen and (max-width: 991px) {
  .s-py-100 {
    padding: 70px 0px;
  }
  .s-py-100-50 {
    padding: 70px 0px 35px;
  }
  .s-py-50-100 {
    padding: 35px 0px 70px;
  }
  .s-py-50 {
    padding: 35px 0px;
  }
  .s-pt-100 {
    padding-top: 70px;
  }
  .s-py-70 {
    padding: 50px 0px;
  }
}
@media screen and (max-width: 767px) {
  .s-py-100 {
    padding: 50px 0px;
  }
  .s-py-100-50 {
    padding: 50px 0px 25px;
  }
  .s-py-50-100 {
    padding: 25px 0px 50px;
  }
  .s-py-50 {
    padding: 25px 0px;
  }
  .s-pt-100 {
    padding-top: 50px;
  }
}
.header-area {
  background-color: var(--header-bg);
}

.header-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  max-width: 235px;
}
.logo a img,
.logo a svg {
  max-width: 100%;
}

.dropdown {
  position: relative;
}

.main-menu ul li {
  display: inline-block;
  padding: 35px 0px;
}
.main-menu ul li:hover > a {
  color: var(--theme-txt-clr);
}
.main-menu ul li:hover > a span {
  background-color: var(--theme-bdr-clr);
}
.main-menu ul li:hover > a span:last-child {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.main-menu ul li:hover .sub-menu {
  -webkit-clip-path: polygon(0 0, 200% 0, 280% 100%, 0% 100%);
          clip-path: polygon(0 0, 200% 0, 280% 100%, 0% 100%);
  opacity: 1;
  visibility: visible;
}
.main-menu ul li:hover .sub-menu li a span {
  background-color: var(--white-txt-clr);
}
.main-menu ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--white-txt-clr);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.main-menu ul li a span {
  width: 12px;
  height: 1.5px;
  background: var(--white-bdr-clr);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  right: 0;
}
.main-menu ul li a span:last-child {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.main-menu ul li .sub-menu {
  position: absolute;
  min-width: 200px;
  background-color: var(--submenu-bg);
  left: 0;
  top: 100%;
  z-index: 99999;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-box-shadow: 0px 0px 30px var(--submenu-shadow-clr);
          box-shadow: 0px 0px 30px var(--submenu-shadow-clr);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.main-menu ul li .sub-menu li {
  display: block;
  padding: 0;
}
.main-menu ul li .sub-menu li a {
  color: var(--white-txt-clr);
  margin: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 15px 20px;
}
.main-menu ul li .sub-menu li a span {
  right: 20px;
  background-color: var(--white-txt-clr);
}
.main-menu ul li .sub-menu li:hover > a {
  background-color: var(--theme-txt-clr);
}
.main-menu ul li .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.main-menu ul li .sub-menu li .sub-menu {
  left: 100%;
  top: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-search {
  margin-right: 30px;
}
.header-search i {
  color: var(--theme-txt-clr);
  font-size: 20px;
  cursor: pointer;
}

.humburger {
  padding: 0;
}

.line {
  fill: none;
  stroke: var(--theme-bdr-clr);
  stroke-width: 6;
  -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

@media screen and (max-width: 1250px) {
  .main-menu ul li a {
    margin: 0px 15px;
  }
}
@media screen and (max-width: 1199px) {
  .header-wrapper {
    padding: 20px 0px;
  }
  .login-ragister {
    margin-right: 20px;
  }
  .header-area {
    position: relative;
    z-index: 9999;
  }
  .main-menu {
    position: absolute;
    top: 100%;
    background: var(--header-bg);
    width: 100%;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-top: 1px solid var(--theme-bdr-clr);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .main-menu.active {
    opacity: 1;
    visibility: visible;
  }
  .main-menu ul li {
    display: inline-block;
    padding: 25px 0px;
  }
}
@media screen and (max-width: 991px) {
  .login-ragister {
    margin-right: 7px;
  }
  .header-search {
    margin-right: 15px;
  }
  .logo {
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .main-menu {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 250px;
    height: -webkit-calc(100vh - 70px);
    height: calc(100vh - 70px);
    padding: 20px;
    overflow-y: auto;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
  .main-menu::-webkit-scrollbar {
    width: 3px;
  }
  .main-menu::-webkit-scrollbar-track {
    background-color: rgb(255, 246, 246);
  }
  .main-menu::-webkit-scrollbar-thumb {
    background: var(--theme-bg-clr);
    -webkit-border-radius: 20px;
            border-radius: 20px;
  }
  .main-menu ul {
    width: 100%;
  }
  .main-menu ul li {
    display: block;
    padding: 10px 0px;
  }
  .main-menu ul li:hover > a {
    color: unset;
  }
  .main-menu ul li:hover > a span {
    background-color: var(--white-txt-clr);
  }
  .main-menu ul li:hover > a span:last-child {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .main-menu ul li:hover .sub-menu {
    -webkit-clip-path: unset;
            clip-path: unset;
    opacity: unset;
    visibility: unset;
  }
  .main-menu ul li.active > a {
    color: var(--theme-txt-clr);
  }
  .main-menu ul li.active > a span {
    background-color: var(--theme-bg-clr);
  }
  .main-menu ul li.active > a span:last-child {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .main-menu ul li a {
    margin: 0px;
    font-size: 16px;
  }
  .main-menu ul li .sub-menu {
    position: unset;
    background-color: transparent;
    padding: 10px 0 0 10px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    display: none;
  }
  .main-menu ul li .sub-menu.active {
    display: block;
  }
  .main-menu ul li .sub-menu.active li .sub-menu {
    display: block;
  }
  .main-menu ul li .sub-menu li {
    padding: 8px 0px;
  }
  .main-menu ul li .sub-menu li:last-child {
    padding-bottom: 0;
  }
  .main-menu ul li .sub-menu li:hover > a {
    background-color: transparent;
  }
  .main-menu ul li .sub-menu li a {
    color: var(--white-txt-clr);
    padding: 0;
  }
  .main-menu ul li .sub-menu li a:hover {
    background-color: transparent;
    color: var(--theme-txt-clr);
  }
  .main-menu ul li .sub-menu li .sub-menu {
    display: none !important;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .main-menu ul li .sub-menu li .sub-menu.active {
    display: block !important;
  }
  .login-ragister {
    margin-right: 0px;
    position: absolute;
    right: 30px;
    top: 100%;
    padding: 10px;
    background: var(--submenu-bg);
    z-index: 9;
    display: none;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .login-ragister.active {
    display: block;
    visibility: visible;
  }
  .user-icon {
    margin-right: 7px;
  }
  .user-icon i {
    color: var(--theme-txt-clr);
    font-size: 20px;
  }
  .humburger svg {
    max-width: 40px;
    max-height: 40px;
  }
}
@media screen and (max-width: 575px) {
  .header-wrapper {
    padding: 15px 0px;
  }
  .logo {
    max-width: 150px;
  }
  .header-search i {
    font-size: 16px;
  }
  .user-icon i {
    font-size: 18px;
  }
  .humburger svg {
    max-width: 30px;
    max-height: 30px;
  }
}
.footer-area {
  position: relative;
  z-index: 99;
}
.footer-area .bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--footer-overlay);
  mix-blend-mode: multiply;
  z-index: 1;
  opacity: 0.7;
}

.footer-intro {
  max-width: 455px;
  margin-right: 30px;
}
.footer-intro .logo {
  max-width: 235px;
}
.footer-intro .logo img,
.footer-intro .logo svg {
  max-width: 100%;
  max-height: 100%;
}
.footer-intro p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 30px;
  font-weight: 300;
}
.footer-intro h6 {
  font-family: var(--poppins);
  margin-top: 20px;
}

.footer-feature {
  margin-right: 20px;
}

.footer-title {
  margin-bottom: 30px;
}
.footer-title h5 {
  font-weight: 500;
  line-height: 1.4;
}

.footer-list ul li {
  margin-bottom: 20px;
}
.footer-list ul li:last-child {
  margin-bottom: 0;
}
.footer-list ul li a {
  display: block;
  color: var(--white-txt-clr);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: 300;
}
.footer-list ul li a:hover {
  color: var(--theme-txt-clr);
}

.footer-payment {
  margin-top: 60px;
}
.footer-payment a {
  margin-right: 20px;
  max-width: 90px;
}

.footer-sitemap {
  max-width: 250px;
  width: 100%;
}
.footer-sitemap .footer-list-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-sitemap .footer-list-wrapper .footer-list ul li a i {
  margin-right: 5px;
}

.social-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.social-group a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 1px solid var(--theme-bdr-clr);
  color: var(--white-txt-clr);
  margin-right: 20px;
  font-size: 15px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.social-group a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--theme-bg-clr);
  -webkit-border-radius: 50%;
          border-radius: 50%;
  z-index: -1;
  -webkit-clip-path: circle(0.4% at 100% 0);
          clip-path: circle(0.4% at 100% 0);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.social-group a:hover {
  border-color: transparent;
}
.social-group a:hover::before {
  -webkit-clip-path: circle(70.7% at 50% 50%);
          clip-path: circle(70.7% at 50% 50%);
  right: auto;
  left: 0;
}

.copy-right {
  text-align: center;
  padding: 20px 0px;
  background-color: var(--body-bg-clr);
}
.copy-right p {
  font-size: 16px;
  line-height: 1.4;
}

.footer-with-bg {
  background: #0A1317;
}
.footer-with-bg .bg {
  display: none;
}

@media screen and (max-width: 1350px) {
  .footer-payment a {
    margin-bottom: 10px;
    display: inline-block;
  }
  .footer-payment a:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .footer-intro {
    margin: 0 auto 40px;
    text-align: center;
  }
  .footer-intro .logo {
    margin: 0 auto;
  }
  .footer-intro .social-group {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-intro .social-group a {
    margin: 0px 10px;
  }
  .footer-payment {
    margin-top: 30px;
  }
  .footer-payment a {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer-intro {
    margin: 0 0px 30px 0px;
    text-align: left;
  }
  .footer-intro .logo {
    margin: 0;
  }
  .footer-intro p {
    margin-top: 20px;
  }
  .footer-intro h6 {
    margin-top: 15px;
    font-size: 17px;
  }
  .footer-intro .social-group {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer-intro .social-group a {
    margin: 0px 15px 0px 0px;
  }
  .footer-payment {
    margin-top: 30px;
  }
  .footer-payment a {
    margin-right: 10px;
  }
  .footer-title {
    margin-bottom: 20px;
  }
  .social-group {
    margin-top: 15px;
  }
  .social-group a {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 575px) {
  .footer-area .row {
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-area .row > * {
    padding-right: 0;
    padding-left: 0;
  }
  .footer-intro .logo {
    max-width: 180px;
  }
  .footer-info {
    margin-top: 30px;
  }
  .footer-payment {
    margin-top: 20px;
  }
  .footer-payment a {
    margin-bottom: 0;
  }
  .footer-sitemap {
    margin-top: 30px;
  }
  .footer-list ul li {
    margin-bottom: 15px;
  }
  .copy-right {
    padding: 15px 0px;
  }
}
.search-area {
  position: fixed;
  top: 0;
  right: 0;
  max-width: 880px;
  height: 100vh;
  z-index: 999999999;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: var(--body-bg-clr);
  -webkit-transform: translateX(200px);
      -ms-transform: translateX(200px);
          transform: translateX(200px);
  opacity: 0;
  visibility: hidden;
}
.search-area.active {
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.search-close {
  position: absolute;
  top: 0px;
  left: 0;
  width: 50px;
  height: 50px;
  font-size: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  background-color: var(--theme-bg-clr);
}

.search-wrapper {
  padding: 50px 170px 0px;
}
.search-wrapper span {
  font-size: 15px;
  line-height: 1;
  display: block;
  margin-top: 20px;
}

.search-box {
  position: relative;
}
.search-box input {
  width: 100%;
  height: 70px;
  padding: 10px;
  padding-left: 50px;
  border: 0;
  background-color: var(--search-input-bg);
  font-size: 18px;
  outline: none;
  color: var(--white-txt-clr);
}
.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
  cursor: pointer;
  color: var(--theme-txt-clr);
}

.search-content {
  margin-top: 50px;
}
.search-content h4 {
  font-weight: 500;
  font-size: 24px;
  margin: 0px 170px 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--theme-bdr-clr);
}
.search-content ul {
  height: -webkit-calc(100vh - 580px);
  height: calc(100vh - 580px);
  overflow-y: auto;
  margin-right: 10px;
}
.search-content ul::-webkit-scrollbar {
  width: 6px;
}
.search-content ul::-webkit-scrollbar-track {
  background-color: rgb(255, 246, 246);
  -webkit-border-radius: 10px;
          border-radius: 10px;
}
.search-content ul::-webkit-scrollbar-thumb {
  background: var(--theme-bg-clr);
  -webkit-border-radius: 10px;
          border-radius: 10px;
}
.search-content ul li {
  padding: 15px 170px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.search-content ul li:first-child {
  padding-top: 0;
}
.search-content ul li:last-child {
  padding-bottom: 0;
}
.search-content ul li::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 45px;
  background-color: var(--theme-bg-clr);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.search-content ul li span {
  display: block;
  font-size: 15px;
  color: #ACACAC;
  margin-bottom: 10px;
  line-height: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.search-content ul li:hover span {
  color: var(--theme-txt-clr);
}
.search-content ul li:hover::before {
  opacity: 1;
}

.tags {
  padding: 0px 170px;
  margin-top: 30px;
}
.tags h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 30px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--theme-bdr-clr);
}
.tags a {
  display: inline-block;
  color: var(--white-txt-clr);
  margin: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 10px;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  line-height: 1.2;
  background-color: var(--search-input-bg);
  font-size: 16px;
}
.tags a:hover {
  background-color: var(--theme-bg-clr);
}

@media screen and (max-width: 1199px) {
  .search-area {
    max-width: 700px;
  }
  .search-wrapper {
    padding: 50px 70px 0px;
  }
  .search-content h4 {
    margin: 0px 70px 30px;
  }
  .search-content ul {
    height: -webkit-calc(100vh - 530px);
    height: calc(100vh - 530px);
  }
  .search-content ul li {
    padding: 15px 70px;
  }
  .tags {
    padding: 0px 70px;
  }
  .tags a {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .search-area {
    max-width: 500px;
  }
  .search-wrapper span {
    margin-top: 10px;
  }
  .search-box input {
    height: 50px;
    font-size: 16px;
  }
  .search-content {
    margin-top: 20px;
  }
  .search-content h4 {
    font-size: 18px;
    padding-bottom: 15px;
    margin: 0px 70px 15px;
  }
  .search-content ul {
    height: -webkit-calc(100vh - 430px);
    height: calc(100vh - 430px);
  }
  .search-content ul li {
    padding: 10px 70px;
    font-size: 16px;
  }
  .search-content ul li span {
    font-size: 14px;
    margin-bottom: 7px;
  }
  .tags h2 {
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .search-area {
    max-width: 350px;
  }
  .search-close {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .search-wrapper {
    padding: 50px 30px 0px;
  }
  .search-content h4 {
    margin: 0px 30px 15px;
  }
  .search-content ul {
    height: -webkit-calc(100vh - 450px);
    height: calc(100vh - 450px);
  }
  .search-content ul li {
    padding: 10px 30px;
    font-size: 16px;
  }
  .tags {
    padding: 0px 30px;
    margin-top: 20px;
  }
}
.counter-wrapper {
  max-width: 910px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}

.single-counter span {
  font-size: 48px;
  font-weight: bold;
  font-family: var(--orbitron);
  line-height: 1;
}
.single-counter span.plus {
  position: relative;
}
.single-counter span.plus::before {
  position: absolute;
  content: "+";
  top: -15px;
  right: -15px;
  font-size: 16px;
  font-weight: 500;
}
.single-counter p {
  color: var(--theme-txt-clr);
  font-size: 18px;
  line-height: 1;
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .single-counter span {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .counter-wrapper {
    max-width: 550px;
  }
  .single-counter span {
    font-size: 30px;
  }
  .single-counter p {
    font-size: 16px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 575px) {
  .counter-wrapper {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .single-counter {
    width: 50%;
  }
}
.subscribe-wrapper {
  background-color: var(--submenu-bg);
  max-width: 1045px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 55px 60px;
}

.subscribe-content {
  margin-right: 30px;
}
.subscribe-content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  font-family: var(--poppins);
}
.subscribe-content p {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 10px;
}

.subscribe-from {
  position: relative;
  max-width: 445px;
  width: 100%;
}
.subscribe-from input {
  width: 100%;
  height: 60px;
  background-color: var(--white-bg-clr);
  padding: 15px 150px 15px 20px;
  color: var(--subscribe-input-clr);
  font-size: 16px;
  line-height: 1;
  outline: none;
  border: none;
}
.subscribe-from input::-moz-placeholder {
  color: var(--subscribe-input-clr);
}
.subscribe-from input::-webkit-input-placeholder {
  color: var(--subscribe-input-clr);
}
.subscribe-from input:-ms-input-placeholder {
  color: var(--subscribe-input-clr);
}
.subscribe-from input::-ms-input-placeholder {
  color: var(--subscribe-input-clr);
}
.subscribe-from input::placeholder {
  color: var(--subscribe-input-clr);
}
.subscribe-from button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: var(--theme-bg-clr);
  color: var(--white-txt-clr);
  padding: 15px 30px;
}

@media screen and (max-width: 991px) {
  .subscribe-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 30px 10px;
  }
  .subscribe-content {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .subscribe-from input {
    height: 50px;
  }
}
@media screen and (max-width: 575px) {
  .subscribe-from {
    max-width: 400px;
    margin: 0 auto;
  }
  .subscribe-from input {
    text-align: center;
    padding: 10px;
    height: 45px;
  }
  .subscribe-from button {
    margin-top: 10px;
    position: unset;
    width: 100%;
    padding: 10px 20px;
  }
}
.brand-slider-wrapper {
  max-width: 1135px;
  margin: 0 auto;
}
.brand-slider-wrapper .single-brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brand-slider-wrapper .single-brand img {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.brand-slider-wrapper .single-brand img:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.brand-slider-wrapper .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.brand-slider-wrapper .owl-nav .owl-prev {
  left: -8%;
}
.brand-slider-wrapper .owl-nav .owl-next {
  right: -8%;
}
.brand-slider-wrapper .owl-nav .owl-prev,
.brand-slider-wrapper .owl-nav .owl-next {
  position: absolute;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--login-input-border);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.brand-slider-wrapper .owl-nav .owl-prev i,
.brand-slider-wrapper .owl-nav .owl-next i {
  font-size: 25px;
}
.brand-slider-wrapper .owl-nav .owl-prev:hover,
.brand-slider-wrapper .owl-nav .owl-next:hover {
  background-color: var(--theme-bg-clr);
}

@media screen and (max-width: 1350px) {
  .brand-slider-wrapper .owl-nav .owl-prev {
    left: -20px;
  }
  .brand-slider-wrapper .owl-nav .owl-next {
    right: -20px;
  }
}
@media screen and (max-width: 991px) {
  .brand-slider-wrapper .owl-nav .owl-prev {
    left: -35px;
  }
  .brand-slider-wrapper .owl-nav .owl-next {
    right: -35px;
  }
}
@media screen and (max-width: 767px) {
  .brand-slider-wrapper .owl-nav .owl-prev {
    left: 0px;
  }
  .brand-slider-wrapper .owl-nav .owl-next {
    right: 0px;
  }
  .brand-slider-wrapper .owl-nav .owl-prev,
  .brand-slider-wrapper .owl-nav .owl-next {
    width: 34px;
    height: 34px;
  }
  .brand-slider-wrapper .owl-nav .owl-prev i,
  .brand-slider-wrapper .owl-nav .owl-next i {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  .brand-slider-wrapper {
    padding-bottom: 50px;
  }
  .brand-slider-wrapper .owl-nav {
    top: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .brand-slider-wrapper .owl-nav .owl-next {
    right: unset;
    position: unset;
    margin-left: 5px;
  }
  .brand-slider-wrapper .owl-nav .owl-prev {
    left: unset;
    position: unset;
    margin-right: 5px;
  }
}
.section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.section-title .star-group {
  margin-bottom: 10px;
}
.section-title .star-group i {
  font-size: 30px;
  color: var(--theme-txt-clr);
  line-height: 1;
  margin: 0px 3px;
}
.section-title .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-title .title .span-group span {
  width: 90px;
  height: 2px;
  display: block;
  margin: 5px 0px;
  background: var(--theme-bdr-clr);
}
.section-title .title .span-group span:last-child {
  width: 65px;
  margin-left: auto;
}
.section-title .title .span-group-right span:last-child {
  margin-left: 0;
}
.section-title .title h2 {
  margin: 0px 10px;
  font-size: 30px;
  line-height: 1.3;
}
.section-title p {
  line-height: 1.4;
  margin: 10px auto 0px;
  max-width: 510px;
}

.demo-section-title .title h2 {
  font-family: var(--poppins);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 48px;
  line-height: 1;
}
.demo-section-title p {
  font-size: 24px;
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .demo-section-title .title h2 {
    font-size: 34px;
  }
  .demo-section-title p {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  .section-title {
    margin-bottom: 40px;
  }
  .section-title .star-group {
    margin-bottom: 5px;
  }
  .section-title .star-group i {
    font-size: 24px;
  }
  .section-title .title h2 {
    font-size: 24px;
  }
  .section-title .title .span-group span {
    width: 50px;
  }
  .section-title .title .span-group span:last-child {
    width: 30px;
  }
  .section-title p {
    margin: 10px auto 0px;
  }
  .demo-section-title .title h2 {
    font-size: 24px;
  }
  .demo-section-title p {
    font-size: 16px;
  }
}
.about-hero-wrapper {
  max-width: 1085px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about-hero-thumb {
  width: 40%;
  margin-right: 70px;
  position: relative;
  padding: 0px 0px 10px 10px;
  z-index: 1;
}
.about-hero-thumb::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 270px;
  background: var(--theme-bg-clr);
  bottom: 0;
  left: 0;
  z-index: -1;
}
.about-hero-thumb img {
  width: 100%;
  aspect-ratio: 434/471;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-hero-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about-hero-content .title {
  margin-bottom: 15px;
}
.about-hero-content .title span {
  font-size: 16px;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.about-hero-content .title h2 {
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 15px;
  position: relative;
  line-height: 1;
}
.about-hero-content .title h2::before {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--theme-bg-clr);
}
.about-hero-content .content h4 {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--poppins);
  line-height: 1.4;
  margin-bottom: 10px;
}
.about-hero-content .content p {
  margin-bottom: 20px;
  font-size: 16px;
}
.about-hero-content .content ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 16px;
  margin-bottom: 10px;
}
.about-hero-content .content ul li:last-child {
  margin-bottom: 0;
}
.about-hero-content .content ul li i {
  color: var(--theme-txt-clr);
  margin-right: 5px;
  padding-top: 5px;
}

@media screen and (max-width: 991px) {
  .about-hero-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about-hero-thumb {
    width: 40%;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-hero-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 550px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about-hero-thumb {
    width: 100%;
    margin: 0px 0px 30px 0px;
    max-width: 400px;
  }
}
@media screen and (max-width: 575px) {
  .about-hero-content .title {
    margin-bottom: 10px;
  }
  .about-hero-content .title span {
    margin-bottom: 10px;
  }
  .about-hero-content .title h2 {
    font-size: 24px;
  }
  .about-hero-content .content h4 {
    font-size: 20px;
  }
}
.about-play {
  position: relative;
  z-index: 1;
}
.about-play::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.6;
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--login-register-overlay);
}
.about-play .simpleParallax {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-play .simpleParallax img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 1500/500;
  min-height: 300px;
}
.about-play .play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 105px;
  height: 105px;
  background: var(--theme-bg-clr);
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.about-play .play-button img {
  max-width: 60px;
}

.about-play-content {
  max-width: 935px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
}
.about-play-content p {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .about-play .play-button {
    width: 80px;
    height: 80px;
  }
  .about-play .play-button img {
    max-width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-play .play-button {
    width: 60px;
    height: 60px;
  }
  .about-play .play-button img {
    max-width: 30px;
  }
  .about-play-content {
    margin-top: 20px;
  }
}
.about-team-wrapper {
  max-width: 1290px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.landing-v1-single-speaker {
  position: relative;
}
.landing-v1-single-speaker:hover .about-team-img::before {
  opacity: 1;
  visibility: visible;
}
.landing-v1-single-speaker:hover .about-team-img::after {
  opacity: 1;
  right: auto;
  left: 0;
}
.landing-v1-single-speaker:hover .about-team-content > a, .landing-v1-single-speaker:hover .about-team-content span {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}
.landing-v1-single-speaker:hover .about-social ul li:nth-child(1), .landing-v1-single-speaker:hover .about-social ul li:nth-child(2), .landing-v1-single-speaker:hover .about-social ul li:nth-child(3) {
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
}

.about-team-img {
  position: relative;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 -webkit-calc(100% - 28px), 0 0);
          clip-path: polygon(100% 0, 100% 100%, 0 calc(100% - 28px), 0 0);
  z-index: 1;
}
.about-team-img img {
  width: 100%;
  aspect-ratio: 300/370;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-team-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
  background: var(--about-team-overlay);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 92%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 0 92%, 0 0);
}
.about-team-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 32px;
  background: var(--theme-bg-clr);
  bottom: 0;
  right: 0;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 85%, 100% 100%, 0 15%);
          clip-path: polygon(0 0, 100% 85%, 100% 100%, 0 15%);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.about-team-content {
  padding: 0px 10px;
  position: absolute;
  z-index: 9;
  bottom: 60px;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
.about-team-content > a {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white-txt-clr);
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition-delay: 0.3s !important;
       -o-transition-delay: 0.3s !important;
          transition-delay: 0.3s !important;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
}
.about-team-content span {
  color: var(--white-txt-clr);
  font-size: 16px;
  line-height: 1.2;
  display: block;
  font-weight: 400;
  margin-top: 5px;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition-delay: 0.4s !important;
       -o-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.about-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.about-social ul li {
  display: inline-block;
}
.about-social ul li:nth-child(1) {
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition-delay: 0.5s !important;
       -o-transition-delay: 0.5s !important;
          transition-delay: 0.5s !important;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.about-social ul li:nth-child(2) {
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition-delay: 0.4s !important;
       -o-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.about-social ul li:nth-child(3) {
  -webkit-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition-delay: 0.3s !important;
       -o-transition-delay: 0.3s !important;
          transition-delay: 0.3s !important;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.about-social ul li a {
  width: 34px;
  height: 34px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: var(--theme-bg-clr);
}
.about-social ul li a i {
  color: var(--white-txt-clr);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
}
.about-social ul li:hover a {
  background: var(--footer-overlay);
}

@media screen and (max-width: 991px) {
  .about-team-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-team-content {
    bottom: 40px;
  }
  .about-team-content > a {
    font-size: 20px;
  }
  .about-team-content span {
    margin-top: 0;
  }
  .about-team-content .about-social {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .about-team-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-team-content {
    bottom: 50px;
  }
  .about-team-content > a {
    font-size: 20px;
  }
  .about-social {
    margin-top: 15px;
  }
  .about-social ul li a {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .about-team-wrapper {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
    grid-gap: 20px;
  }
}
.my-acnt-team-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1480px;
  margin: 0 auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.my-acnt-single-team {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-calc(50% - 80px);
  width: calc(50% - 80px);
}

.my-acnt-team-thumb {
  width: 50%;
  margin-right: 50px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.my-acnt-team-thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.my-acnt-team-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.my-acnt-team-content h5 {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--poppins);
  line-height: 1;
}
.my-acnt-team-content h5 a {
  color: var(--white-txt-clr);
}
.my-acnt-team-content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-txt-clr);
  margin-top: 10px;
}
.my-acnt-team-content ul {
  margin-top: 15px;
}
.my-acnt-team-content ul li {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.my-acnt-team-content ul li:last-child {
  margin-bottom: 0;
}
.my-acnt-team-content ul li span {
  color: var(--m-s-green-txt);
}

.my-acnt-details {
  text-align: center;
}
.my-acnt-details p {
  max-width: 935px;
  margin: 0 auto;
}

@media screen and (max-width: 1350px) {
  .my-acnt-single-team {
    width: -webkit-calc(50% - 20px);
    width: calc(50% - 20px);
  }
  .my-acnt-team-thumb {
    width: 40%;
    margin-right: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .my-acnt-team-wrapper {
    max-width: 700px;
  }
  .my-acnt-single-team {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .my-acnt-team-thumb {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .my-acnt-team-content {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .my-acnt-details {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .my-acnt-details {
    padding-top: 30px;
  }
  .my-acnt-single-team {
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 576px) {
  .my-acnt-team-wrapper {
    max-width: 450px;
  }
  .my-acnt-single-team {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .my-acnt-team-thumb {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .my-acnt-team-content {
    width: 100%;
  }
  .my-acnt-team-content h5 {
    font-size: 20px;
  }
  .my-acnt-team-content p {
    font-size: 17px;
    margin-top: 7px;
  }
  .my-acnt-team-content ul {
    margin-top: 10px;
  }
  .my-acnt-team-content ul li {
    margin-bottom: 6px;
  }
}
.subscription-items {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.subscription-items ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.subscription-items ul li {
  font-size: 20px;
  font-weight: 500;
  display: block;
  line-height: 1;
  text-align: left;
}
.subscription-items ul li span {
  font-size: 16px;
  display: block;
  line-height: 1;
  white-space: nowrap;
  margin-top: 15px;
}
.subscription-items ul li span a {
  color: var(--white-txt-clr);
}
.subscription-items .btn-group {
  text-align: center;
}
.subscription-items .btn-group a {
  margin: 0px 20px;
}

@media screen and (max-width: 767px) {
  .subscription-items {
    max-width: 500px;
    text-align: center;
  }
  .subscription-items ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .subscription-items ul li {
    margin-right: 20px;
  }
}
@media screen and (max-width: 575px) {
  .subscription-items ul li {
    margin-right: 20px;
    font-size: 18px;
  }
  .subscription-items ul li span {
    font-size: 14px;
  }
  .subscription-items .btn-group {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .subscription-items .btn-group a {
    margin: 0;
    margin-bottom: 10px;
  }
  .subscription-items .btn-group a:last-child {
    margin-bottom: 0;
  }
}
.my-stream-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 30px;
}

.single-stream:hover .stream-content a {
  color: var(--theme-txt-clr);
}

.stream-thumb {
  position: relative;
  z-index: 1;
}
.stream-thumb > img {
  width: 100%;
  aspect-ratio: 494/282;
  -o-object-fit: cover;
     object-fit: cover;
}
.stream-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--my-stream-overlay);
  mix-blend-mode: multiply;
  opacity: 0.3;
  z-index: 2;
}
.stream-thumb .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 104px;
  height: 104px;
  background: rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
}
.stream-thumb .play-button a img {
  max-width: 60px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.stream-content {
  margin-top: 20px;
  padding-left: 30px;
}
.stream-content a {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white-txt-clr);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.stream-content p {
  font-size: 16px;
  line-height: 1;
  margin-top: 5px;
  font-weight: 300;
}

@media screen and (max-width: 1199px) {
  .my-stream-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .stream-content a {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 991px) {
  .my-stream-wrapper {
    grid-gap: 30px;
  }
  .stream-content {
    margin-top: 10px;
    padding-left: 0;
  }
  .stream-content a {
    font-size: 18px;
  }
  .stream-thumb .play-button {
    width: 60px;
    height: 60px;
  }
  .stream-thumb .play-button a img {
    max-width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .my-stream-wrapper {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .my-stream-wrapper {
    grid-template-columns: 1fr;
  }
}
.g-d-upcming-tmnt {
  max-width: 730px;
  margin: 0 auto;
}

.single-g-d-upcming-tmnt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-g-d-upcming-tmnt:hover .g-d-tournament-content h4 a {
  color: var(--theme-txt-clr);
}

.g-d-tournament-image {
  margin-right: 30px;
  max-width: 320px;
}
.g-d-tournament-image img {
  width: 100%;
}

.g-d-tournament-content h4 {
  line-height: 1;
  font-weight: 400;
}
.g-d-tournament-content h4 a {
  font-size: 30px;
  color: var(--white-txt-clr);
  line-height: 1.3;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.g-d-tournament-content h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 10px;
  font-family: var(--poppins);
}
.g-d-tournament-content span {
  font-size: 16px;
  display: block;
  line-height: 1;
  margin-top: 5px;
  font-weight: 300;
}

@media screen and (max-width: 1199px) {
  .g-d-tournament-content h5 {
    font-size: 20px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 991px) {
  .g-d-tournament-content h4 a {
    font-size: 24px;
  }
  .g-d-tournament-content h5 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .g-d-upcming-tmnt {
    max-width: 550px;
  }
  .g-d-tournament-image {
    margin-right: 20px;
    max-width: 230px;
  }
}
@media screen and (max-width: 575px) {
  .single-g-d-upcming-tmnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .g-d-tournament-image {
    margin: 0 auto 15px;
  }
  .g-d-tournament-content h4 a {
    font-size: 20px;
  }
  .g-d-tournament-content h5 {
    font-size: 18px;
    margin-top: 5px;
  }
}
.price-mony-area {
  position: relative;
  z-index: 1;
}
.price-mony-area .shape-01,
.price-mony-area .shape-02 {
  position: absolute;
  z-index: -1;
  top: 40%;
}
.price-mony-area .shape-01 {
  left: 5%;
  -webkit-animation: heartBeat 1s linear infinite;
          animation: heartBeat 1s linear infinite;
}
.price-mony-area .shape-02 {
  right: 5%;
  -webkit-animation: bounceOut 1.5s linear infinite;
          animation: bounceOut 1.5s linear infinite;
}

.pricing-mony-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.single-pricing-mony {
  padding: 50px 20px;
  border-bottom: 8px solid transparent;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single-pricing-mony:hover, .single-pricing-mony.active {
  background: var(--header-bg);
  border-color: var(--theme-bdr-clr);
}
.single-pricing-mony .title h5 {
  color: var(--theme-txt-clr);
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}
.single-pricing-mony .title h2 {
  margin-top: 15px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  padding-left: 15px;
}
.single-pricing-mony .title h2 sup {
  font-size: 20px;
  color: var(--theme-txt-clr);
  position: absolute;
  top: 10px;
  left: 0;
}
.single-pricing-mony .list {
  margin-top: 25px;
}
.single-pricing-mony .list h4 {
  color: var(--theme-txt-clr);
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  font-family: var(--poppins);
  padding-left: 25px;
}
.single-pricing-mony .list ul {
  margin-top: 15px;
}
.single-pricing-mony .list ul li {
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
}
.single-pricing-mony .list ul li:last-child {
  margin-bottom: 0;
}
.single-pricing-mony .list ul li i {
  color: var(--theme-txt-clr);
  font-size: 20px;
  position: absolute;
  top: 0px;
  left: 0;
}

@media screen and (max-width: 1350px) {
  .price-mony-area .shape-01 {
    top: 0;
    max-width: 100px;
  }
  .price-mony-area .shape-02 {
    top: auto;
    bottom: 0;
    max-width: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .single-pricing-mony .title h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 991px) {
  .pricing-mony-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .pricing-mony-wrapper {
    grid-gap: 20px;
  }
  .single-pricing-mony {
    padding: 25px 15px;
    border-width: 4px;
  }
  .single-pricing-mony .title h5 {
    font-size: 20px;
  }
  .single-pricing-mony .title h2 {
    font-size: 34px;
    margin-top: 10px;
  }
  .single-pricing-mony .title h2 sup {
    font-size: 16px;
  }
  .single-pricing-mony .list {
    margin-top: 20px;
  }
  .single-pricing-mony .list h4 {
    font-size: 18px;
  }
  .single-pricing-mony .list ul {
    margin-top: 10px;
  }
  .single-pricing-mony .list ul li {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 575px) {
  .price-mony-area .shape-01,
  .price-mony-area .shape-02 {
    display: none;
  }
  .pricing-mony-wrapper {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
}
.product-dcptn-tab-navs .nav-tabs {
  border-bottom: 0;
  max-width: 855px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  background-color: var(--header-bg);
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.product-dcptn-tab-navs .nav-tabs .nav-link {
  border: 0 !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--white-txt-clr);
  -webkit-border-radius: 0;
          border-radius: 0;
  display: block;
  padding: 25px 0px;
  position: relative;
  margin: 0px 5px;
}
.product-dcptn-tab-navs .nav-tabs .nav-link::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 5px;
  background-color: var(--theme-bg-clr);
  top: 0px;
  left: 40%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.product-dcptn-tab-navs .nav-tabs .nav-link:hover, .product-dcptn-tab-navs .nav-tabs .nav-link.active {
  background-color: transparent;
}
.product-dcptn-tab-navs .nav-tabs .nav-link:hover::before, .product-dcptn-tab-navs .nav-tabs .nav-link.active::before {
  opacity: 1;
  visibility: visible;
  left: 50%;
}

.product-dcptn-tab-content {
  max-width: 1350px;
  margin-top: 20px;
}

.description {
  background-color: var(--header-bg);
  padding: 50px 60px;
}
.description ul {
  margin-top: 30px;
}
.description ul li {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}
.description ul li:last-child {
  margin-bottom: 0;
}
.description ul li i {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--theme-txt-clr);
  font-size: 20px;
  margin-right: 5px;
}

.specification {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  background-color: var(--header-bg);
  padding: 50px 60px;
}
.specification .single-specification {
  margin-left: 10px;
  margin-right: 10px;
}
.specification .single-specification ul li {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-family: var(--orbitron);
}
.specification .single-specification ul li:last-child {
  margin-bottom: 0;
}
.specification .single-specification ul li span {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  margin-left: 10px;
  font-family: var(--poppins);
}

.review {
  background-color: var(--header-bg);
  padding: 50px 60px;
}

.review-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 925px;
  margin: 0 auto;
}
.review-wrapper .single-review span {
  display: block;
  font-size: 14px;
  line-height: 1;
}
.review-wrapper .single-review a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--white-txt-clr);
  line-height: 1;
  margin-top: 10px;
}
.review-wrapper .single-review ul {
  margin-top: 10px;
}
.review-wrapper .single-review ul li {
  display: inline-block;
  color: var(--yello-clr);
  margin-right: 6px;
}
.review-wrapper .single-review ul li:last-child {
  margin-right: 0;
}
.review-wrapper .single-review ul li.disable {
  color: rgb(51, 81, 99);
}
.review-wrapper .single-review p {
  max-width: 215px;
  margin-top: 10px;
}
.review-wrapper .owl-nav {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
.review-wrapper .owl-nav .owl-prev {
  position: absolute;
  left: -15%;
}
.review-wrapper .owl-nav .owl-next {
  position: absolute;
  right: -15%;
}

.post-review {
  max-width: 790px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.post-review .post-review-title h3 {
  font-size: 30px;
  line-height: 1.3;
}
.post-review .post-review-title .span-group {
  margin-top: 18px;
}
.post-review .post-review-title .span-group span {
  width: 90px;
  height: 2px;
  background-color: var(--theme-bg-clr);
  display: block;
}
.post-review .post-review-title .span-group span:last-child {
  margin-top: 8px;
  width: 60px;
}
.post-review .post-review-title ul {
  margin-top: 50px;
}
.post-review .post-review-title ul li {
  display: inline-block;
  color: var(--yello-clr);
  margin-right: 6px;
}
.post-review .post-review-title ul li:last-child {
  margin-right: 0;
}
.post-review .post-review-title ul li.disable {
  color: rgb(51, 81, 99);
}
.post-review .post-review-from {
  max-width: 415px;
  width: 100%;
}
.post-review .post-review-from textarea {
  width: 100%;
  height: 134px;
  background: var(--submenu-bg);
  border: 1px solid var(--login-input-border);
  padding: 20px;
  outline: none;
  color: var(--white-txt-clr);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.post-review .post-review-from textarea::-moz-placeholder {
  color: var(--white-txt-clr);
}
.post-review .post-review-from textarea::-webkit-input-placeholder {
  color: var(--white-txt-clr);
}
.post-review .post-review-from textarea:-ms-input-placeholder {
  color: var(--white-txt-clr);
}
.post-review .post-review-from textarea::-ms-input-placeholder {
  color: var(--white-txt-clr);
}
.post-review .post-review-from textarea::placeholder {
  color: var(--white-txt-clr);
}

.related-product-wrapper {
  max-width: 1190px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.related-product-wrapper .single-shop {
  margin: 0;
}
.related-product-wrapper .single-shop .shop-content a {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.related-product-wrapper .single-shop:hover .shop-content a {
  color: var(--theme-txt-clr);
}

@media screen and (max-width: 1199px) {
  .review-wrapper .owl-nav .owl-prev {
    left: -42px;
  }
  .review-wrapper .owl-nav .owl-next {
    right: -20px;
  }
  .specification .single-specification:last-child {
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .description,
  .specification {
    padding: 30px;
  }
  .related-product-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .product-dcptn-tab-navs .nav-tabs .nav-link {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .product-dcptn-tab-navs .nav-tabs .nav-link {
    font-size: 16px;
    padding: 15px 0px;
  }
  .product-dcptn-tab-navs .nav-tabs .nav-link::before {
    height: 4px;
    width: 50px;
  }
  .description,
  .specification {
    padding: 20px;
  }
  .specification .single-specification:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 30px;
  }
  .specification .single-specification:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0px;
  }
  .review {
    padding: 20px 45px;
  }
  .review .review-wrapper {
    padding-left: 25px;
  }
  .review .review-wrapper .owl-nav .owl-next {
    right: 15px;
  }
  .review .review-wrapper .single-review p {
    max-width: 180px;
  }
  .post-review {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .post-review .post-review-title h3 {
    font-size: 24px;
  }
  .post-review .post-review-title .span-group {
    margin-top: 15px;
  }
  .post-review .post-review-title ul {
    margin-top: 20px;
  }
  .post-review .post-review-from {
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
  }
  .post-review .post-review-from textarea {
    padding: 10px;
  }
}
@media screen and (max-width: 575px) {
  .description ul {
    margin-top: 15px;
  }
  .description ul li {
    margin-bottom: 10px;
  }
  .specification {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .specification .single-specification:nth-child(2) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .specification .single-specification:nth-child(3) {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 30px;
  }
  .specification .single-specification ul li {
    margin-bottom: 10px;
  }
  .specification .single-specification ul li span {
    margin-top: 5px;
    margin-left: 5px;
  }
  .single-review {
    max-width: 250px;
    margin: 0 auto;
  }
  .related-product-wrapper {
    grid-template-columns: 1fr;
    max-width: 400px;
    grid-gap: 20px;
  }
}
.home-v1-hero-area {
  position: relative;
  z-index: 1;
}
.home-v1-hero-area .bg {
  position: absolute;
  z-index: -2;
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
.home-v1-hero-area .bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.home-v1-hero-area .shape {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  height: 100%;
  z-index: -1;
}
.home-v1-hero-area .shape img {
  height: 100%;
}

.home-v1-hero-wrapper {
  padding: 345px 0px 295px;
}
.home-v1-hero-wrapper .owl-item .single-home-v1-hero span,
.home-v1-hero-wrapper .owl-item .single-home-v1-hero h2,
.home-v1-hero-wrapper .owl-item .single-home-v1-hero p,
.home-v1-hero-wrapper .owl-item .single-home-v1-hero .button {
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.home-v1-hero-wrapper .owl-item .single-home-v1-hero span {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.home-v1-hero-wrapper .owl-item .single-home-v1-hero h2 {
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.home-v1-hero-wrapper .owl-item .single-home-v1-hero p {
  -webkit-transition-delay: 0.7s;
       -o-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.home-v1-hero-wrapper .owl-item .single-home-v1-hero .button {
  -webkit-transition-delay: 0.9s;
       -o-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.home-v1-hero-wrapper .owl-item.active span,
.home-v1-hero-wrapper .owl-item.active h2,
.home-v1-hero-wrapper .owl-item.active p,
.home-v1-hero-wrapper .owl-item.active .button, .home-v1-hero-wrapper .owl-item.cloned span,
.home-v1-hero-wrapper .owl-item.cloned h2,
.home-v1-hero-wrapper .owl-item.cloned p,
.home-v1-hero-wrapper .owl-item.cloned .button {
  opacity: 1;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}
.home-v1-hero-wrapper .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home-v1-hero-wrapper .owl-nav .owl-prev,
.home-v1-hero-wrapper .owl-nav .owl-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  color: var(--white-txt-clr);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 20px;
}
.home-v1-hero-wrapper .owl-nav .owl-prev i,
.home-v1-hero-wrapper .owl-nav .owl-next i {
  font-size: 24px;
}
.home-v1-hero-wrapper .owl-nav .owl-prev:hover,
.home-v1-hero-wrapper .owl-nav .owl-next:hover {
  background: var(--theme-bg-clr);
}

.single-home-v1-hero {
  padding-left: 130px;
}
.single-home-v1-hero > span {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.single-home-v1-hero h2 {
  font-size: 90px;
  font-weight: 900;
  line-height: 1.1;
}
.single-home-v1-hero h2 span {
  color: var(--theme-txt-clr);
}
.single-home-v1-hero p {
  font-size: 24px;
  line-height: 1.5;
}
.single-home-v1-hero .button {
  margin-top: 22px;
}
.single-home-v1-hero .button .black-btn {
  background-color: var(--header-bg);
}

@media screen and (max-width: 1199px) {
  .home-v1-hero-wrapper {
    padding: 150px 0px;
  }
}
@media screen and (max-width: 991px) {
  .single-home-v1-hero {
    padding-left: 70px;
  }
  .single-home-v1-hero > span {
    font-size: 28px;
  }
  .single-home-v1-hero h2 {
    font-size: 64px;
    margin-top: 0px;
  }
  .single-home-v1-hero p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .home-v1-hero-wrapper {
    padding: 70px 0px 130px;
  }
  .home-v1-hero-wrapper .owl-nav {
    top: auto;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
    bottom: 70px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .home-v1-hero-wrapper .owl-nav .owl-prev,
  .home-v1-hero-wrapper .owl-nav .owl-next {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .home-v1-hero-wrapper .owl-nav .owl-prev {
    margin-right: 10px;
  }
  .single-home-v1-hero {
    padding-left: 0;
  }
}
@media screen and (max-width: 575px) {
  .home-v1-hero-wrapper {
    padding: 70px 0px 100px;
  }
  .home-v1-hero-wrapper .owl-nav {
    bottom: 45px;
  }
  .single-home-v1-hero > span {
    font-size: 20px;
  }
  .single-home-v1-hero h2 {
    font-size: 44px;
    line-height: 1.2;
  }
  .single-home-v1-hero p {
    font-size: 18px;
    line-height: 1.3;
  }
  .single-home-v1-hero .button {
    margin-top: 15px;
  }
}
.home-v1-counter-area {
  background: var(--home-v1-about-bg);
}
.home-v1-counter-area .counter-wrapper {
  margin-top: -50px;
  background-color: var(--header-bg);
  max-width: 1310px;
  padding: 60px 130px;
  position: relative;
  z-index: 99;
}

.home-v1-about-area {
  position: relative;
  z-index: 1;
  background: var(--home-v1-about-bg);
}
.home-v1-about-area .shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.home-v1-upcoming-tournament .single-registerd-team .team-content a {
  color: var(--theme-txt-clr);
}

.latest-post-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
.latest-post-wrapper .blog-single-item {
  margin: 0;
}

@media screen and (max-width: 1199px) {
  .home-v1-about-area .shape {
    display: none;
  }
  .latest-post-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .home-v1-counter-area .counter-wrapper {
    margin-top: -30px;
    padding: 30px;
  }
  .latest-post-wrapper {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .home-v1-counter-area .counter-wrapper {
    margin-top: -10px;
    padding: 15px;
  }
  .latest-post-wrapper {
    grid-template-columns: 1fr;
  }
}
.home-v1-top-game-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.single-home-v1-top-game {
  position: relative;
  overflow: hidden;
}
.single-home-v1-top-game::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  background: var(--top-game-overlay);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single-home-v1-top-game:hover::before {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.single-home-v1-top-game:hover .top-game-content span,
.single-home-v1-top-game:hover .top-game-content ul,
.single-home-v1-top-game:hover .top-game-content h6,
.single-home-v1-top-game:hover .top-game-content a {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.top-game-thumb img {
  width: 100%;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  aspect-ratio: 385/611;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-game-content {
  position: absolute;
  bottom: 40px;
  left: 35px;
}
.top-game-content span {
  display: block;
  font-size: 48px;
  font-weight: 700;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-delay: 0.2s !important;
       -o-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.top-game-content ul {
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-delay: 0.3s !important;
       -o-transition-delay: 0.3s !important;
          transition-delay: 0.3s !important;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.top-game-content ul li {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: var(--yello-clr);
  margin-right: 5px;
}
.top-game-content ul li:last-child {
  color: var(--white-txt-clr);
  margin-left: 5px;
}
.top-game-content h6 a {
  font-size: 20px;
  line-height: 1.2;
  margin-top: 15px;
  font-weight: 500;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: block;
  color: var(--white-txt-clr);
}
.top-game-content h6 a:hover {
  color: var(--theme-txt-clr);
}
.top-game-content > a {
  background-color: var(--footer-overlay);
  margin-top: 20px;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
}

@media screen and (max-width: 1199px) {
  .home-v1-top-game-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .home-v1-top-game-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .top-game-content span {
    font-size: 34px;
  }
  .top-game-content h6 {
    font-size: 18px;
    margin-top: 10px;
  }
  .top-game-content a {
    font-size: 16px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .top-game-content {
    bottom: 35px;
    left: 25px;
  }
  .top-game-content span {
    font-size: 30px;
  }
  .top-game-content h6 {
    font-size: 18px;
    margin-top: 8px;
  }
  .top-game-content a {
    margin-top: 15px;
  }
}
@media screen and (max-width: 575px) {
  .home-v1-top-game-area .section-title {
    margin-bottom: 30px;
  }
  .home-v1-top-game-wrapper {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}
.home-v2-hero-area {
  position: relative;
  z-index: 1;
}

.hero-thumb-gallery {
  height: 900px;
  overflow: hidden;
  width: 100%;
}
.hero-thumb-gallery video {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-thumb-gallery::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--home-v2-hero-gallery-oberlay);
  mix-blend-mode: multiply;
  bottom: 0;
  left: 0;
}

.home-v2-hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.home-v2-hero-content h2 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.4;
}
.home-v2-hero-content span {
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
  font-family: var(--orbitron);
  margin-top: 10px;
  display: block;
}
.home-v2-hero-content p {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 25px;
}
.home-v2-hero-content a {
  margin-top: 40px;
}

.home-v2-clock {
  margin-top: 25px;
}
.home-v2-clock .countdown-clock {
  border: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 440px;
  background-color: transparent;
}
.home-v2-clock .countdown-item {
  margin: 0px 5px;
  padding: 10px;
  width: 102px;
  height: 92px;
  border-right: none;
  background-color: var(--theme-bg-clr);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home-v2-clock .countdown-item:first-child {
  height: 112px;
  -webkit-clip-path: polygon(0 0, 100% 8%, 100% 92%, 0% 100%);
          clip-path: polygon(0 0, 100% 8%, 100% 92%, 0% 100%);
}
.home-v2-clock .countdown-item:last-child {
  height: 112px;
  -webkit-clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
          clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
}
.home-v2-clock .countdown-item .ci-inner {
  font-size: 30px;
}
.home-v2-clock .countdown-item h4 {
  margin-top: 10px;
  display: block;
}

@media screen and (max-width: 1199px) {
  .hero-thumb-gallery {
    height: 700px;
  }
  .home-v2-hero-content {
    width: 100%;
    max-width: 520px;
  }
}
@media screen and (max-width: 991px) {
  .home-v2-hero-content h2 {
    font-size: 38px;
  }
  .home-v2-hero-content span {
    font-size: 70px;
  }
  .home-v2-hero-content p {
    font-size: 18px;
    margin-top: 10px;
  }
  .home-v2-hero-content a {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .hero-thumb-gallery {
    height: 500px;
  }
}
@media screen and (max-width: 575px) {
  .hero-thumb-gallery {
    height: 400px;
  }
  .home-v2-hero-content {
    max-width: 400px;
    width: 100%;
    padding: 0px 15px;
  }
  .home-v2-hero-content h2 {
    font-size: 24px;
  }
  .home-v2-hero-content span {
    font-size: 48px;
  }
  .home-v2-hero-content p {
    font-size: 17px;
    margin-top: 10px;
  }
  .home-v2-hero-content a {
    margin-top: 20px;
  }
  .home-v2-clock {
    margin-top: 15px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .home-v2-clock .countdown-clock {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .home-v2-clock .countdown-item {
    width: 70px;
    height: 68px;
  }
  .home-v2-clock .countdown-item:first-child, .home-v2-clock .countdown-item:last-child {
    height: 82px;
  }
  .home-v2-clock .countdown-item:nth-child(3), .home-v2-clock .countdown-item:nth-child(4) {
    border-top: inherit;
  }
  .home-v2-clock .countdown-item .ci-inner {
    font-size: 24px;
  }
  .home-v2-clock .countdown-item h4 {
    margin-top: 6px;
    font-size: 15px;
  }
}
.home-v2-ltst-post-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
.home-v2-ltst-post-wrapper .blog-single-item {
  position: relative;
  margin: 0;
}
.home-v2-ltst-post-wrapper .blog-single-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--home-v2-latest-pst-overlay);
  mix-blend-mode: multiply;
  bottom: 0;
  left: 0;
}
.home-v2-ltst-post-wrapper .blog-single-item .blog-content {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  background: transparent;
  position: absolute;
  -webkit-clip-path: unset;
          clip-path: unset;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.home-v2-ltst-post-wrapper .blog-single-item .blog-content::before {
  display: none;
}

@media screen and (max-width: 1199px) {
  .home-v2-ltst-post-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .home-v2-ltst-post-wrapper {
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
    max-width: 550px;
    margin: 0 auto;
  }
  .home-v2-ltst-post-wrapper .blog-single-item .blog-content {
    bottom: 20px;
    max-width: 500px;
  }
}
@media screen and (max-width: 575px) {
  .home-v2-ltst-post-wrapper {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
}
.home-v2-stream-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  max-width: 1265px;
  margin: 0 auto;
}
.home-v2-stream-wrapper .single-stream {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--header-bg);
  position: relative;
  padding-right: 15px;
}
.home-v2-stream-wrapper .single-stream::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 0%;
  background: var(--theme-bg-clr);
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.home-v2-stream-wrapper .single-stream:hover::before {
  opacity: 1;
  height: 100%;
}
.home-v2-stream-wrapper .single-stream .stream-thumb {
  width: 175px;
  height: 175px;
}
.home-v2-stream-wrapper .single-stream .stream-thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-v2-stream-wrapper .single-stream .stream-content {
  margin-top: 0;
  padding-left: 40px;
}

@media screen and (max-width: 1199px) {
  .home-v2-stream-wrapper .single-stream .stream-content {
    padding-left: 20px;
  }
}
@media screen and (max-width: 991px) {
  .home-v2-stream-wrapper {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 575px) {
  .home-v2-stream-wrapper .single-stream .stream-thumb {
    width: 130px;
    height: 110px;
  }
  .home-v2-stream-wrapper .single-stream .stream-content a {
    font-size: 16px;
  }
  .home-v2-stream-wrapper .single-stream .stream-content p {
    font-size: 14px;
  }
}
.home-v2-top-game-area .background-img::before {
  opacity: 0.5;
}

.home-v2-top-game-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 0px 20px;
}
.home-v2-top-game-wrapper .single-home-v1-top-game {
  overflow: unset;
  position: relative;
}
.home-v2-top-game-wrapper .single-home-v1-top-game::before {
  display: none;
}
.home-v2-top-game-wrapper .single-home-v1-top-game:hover .top-game-content-wrapper {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}
.home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper {
  position: absolute;
  z-index: 9;
  width: -webkit-calc(100% + 40px);
  width: calc(100% + 40px);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper .top-game-content {
  position: unset;
  background: var(--header-bg);
  padding: 50px 35px 30px 35px;
  -webkit-clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
  width: 100%;
}
.home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper .top-game-content ul,
.home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper .top-game-content h6,
.home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper .top-game-content span,
.home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper .top-game-content a {
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
  -webkit-transition-delay: 0s !important;
       -o-transition-delay: 0s !important;
          transition-delay: 0s !important;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper .top-game-content .btn-price {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper .top-game-content .btn-price a {
  margin-top: 0;
}
.home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper .top-game-content .btn-price span {
  line-height: 1;
  font-size: 36px;
}
.home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper .shape {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper .shape span {
  display: block;
  width: 22px;
  height: 18px;
  background: var(--theme-bg-clr);
  -webkit-clip-path: polygon(13% 0, 100% 0, 100% 80%);
          clip-path: polygon(13% 0, 100% 0, 100% 80%);
  margin-left: -2px;
}
.home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper .shape span:last-child {
  margin-left: auto;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  margin-right: -2px;
}

@media screen and (max-width: 1199px) {
  .home-v2-top-game-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .home-v2-top-game-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .home-v2-top-game-wrapper .single-home-v1-top-game:hover .top-game-content-wrapper {
    bottom: 10px;
  }
  .home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper {
    bottom: 0;
  }
  .top-game-content h6 a {
    font-size: 18px;
    margin-top: 10px;
  }
  .top-game-content .btn-price span {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .home-v2-top-game-wrapper {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .home-v2-top-game-wrapper .single-home-v1-top-game .top-game-content-wrapper .top-game-content .btn-price span {
    font-size: 24px;
  }
}
.home-v2-about-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
}
.home-v2-about-wrapper .about-hero-wrapper {
  padding: 70px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
  margin: 0;
}
.home-v2-about-wrapper .about-hero-wrapper .about-hero-thumb {
  max-width: 400px;
  width: 100%;
  margin-right: 40px;
  padding: 0;
}
.home-v2-about-wrapper .about-hero-wrapper .about-hero-thumb::before {
  display: none;
}

.home-v2-counter {
  width: 243px;
}
.home-v2-counter .counter-wrapper {
  max-width: 100%;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.home-v2-counter .counter-wrapper .single-counter {
  padding: 40px 45px;
}
.home-v2-counter .counter-wrapper .single-counter:nth-child(4) {
  background-color: var(--header-bg);
}
.home-v2-counter .counter-wrapper .single-counter:nth-child(3) {
  background-color: #1C2D36;
}
.home-v2-counter .counter-wrapper .single-counter:nth-child(2) {
  background-color: #192830;
}
.home-v2-counter .counter-wrapper .single-counter:nth-child(1) {
  background-color: #112027;
}
.home-v2-counter .counter-wrapper .single-counter span {
  font-size: 30px;
}
.home-v2-counter .counter-wrapper .single-counter p {
  margin-top: 0;
  line-height: 1.3;
}

@media screen and (max-width: 1350px) {
  .home-v2-counter .counter-wrapper .single-counter {
    padding: 44px 45px;
  }
}
@media screen and (max-width: 1199px) {
  .home-v2-about-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-v2-about-wrapper .about-hero-wrapper {
    padding: 30px;
  }
  .home-v2-counter {
    width: 100%;
  }
  .home-v2-counter .counter-wrapper {
    max-width: 100%;
    text-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .home-v2-counter .counter-wrapper .single-counter {
    padding: 30px 10px;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .home-v2-about-wrapper .about-hero-wrapper {
    gap: 20px;
  }
  .home-v2-about-wrapper .about-hero-wrapper .about-hero-thumb {
    max-width: 350px;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .home-v2-counter .counter-wrapper {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .home-v2-counter .counter-wrapper .single-counter {
    width: 50%;
    margin: 0;
    padding: 20px 10px;
  }
  .home-v2-counter .counter-wrapper .single-counter span {
    font-size: 24px;
  }
  .home-v2-counter .counter-wrapper .single-counter p {
    font-size: 16px;
  }
  .home-v2-about-wrapper .about-hero-wrapper {
    gap: 0px;
  }
}
@media screen and (max-width: 575px) {
  .home-v2-about-wrapper .about-hero-wrapper {
    padding: 15px;
  }
}
.home-v3-hero-bg-slider {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.home-v3-hero-bg-slider.owl-carousel .owl-stage-outer {
  height: 100%;
}
.home-v3-hero-bg-slider.owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.home-v3-hero-bg-slider.owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.home-v3-hero-bg-slider.owl-carousel .owl-stage-outer .owl-stage .owl-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-v3-hero-area {
  position: relative;
  z-index: 1;
}

.home-v3-hero-wrapper {
  padding: 250px 0px 235px;
}

.single-hero-slider {
  background: var(--login-register-overlay);
  max-width: 1020px;
  margin: 0 auto;
  padding: 45px 115px 60px;
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0%, 90% 100%, 5% 100%);
          clip-path: polygon(0 0, 100% 0%, 90% 100%, 5% 100%);
}
.single-hero-slider::before {
  position: absolute;
  content: "";
  width: 250px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
  background: var(--theme-txt-clr);
  left: 24px;
  top: -13px;
  -webkit-clip-path: polygon(0 0, 19% 17%, 8% 100%, 0% 100%);
          clip-path: polygon(0 0, 19% 17%, 8% 100%, 0% 100%);
  -webkit-transform: rotate(-8deg);
      -ms-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
.single-hero-slider::after {
  position: absolute;
  content: "";
  width: 160px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
  background: var(--theme-bg-clr);
  top: -8px;
  right: 0px;
  -webkit-clip-path: polygon(77% 0, 100% -25%, 33% 100%, -1% 100%);
          clip-path: polygon(77% 0, 100% -25%, 33% 100%, -1% 100%);
  -webkit-transform: rotate(7deg);
      -ms-transform: rotate(7deg);
          transform: rotate(7deg);
}

.home-v3-hero-content span {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}
.home-v3-hero-content h2 {
  font-size: 90px;
  font-weight: 900;
  color: var(--theme-txt-clr);
  line-height: 1.2;
  margin-top: 5px;
}
.home-v3-hero-content p {
  font-size: 24px;
  line-height: 1.3;
  margin-top: 5px;
}
.home-v3-hero-content .button {
  margin-top: 25px;
}

@media screen and (max-width: 1199px) {
  .home-v3-hero-wrapper {
    padding: 150px 0px;
  }
  .home-v3-hero-content h2 {
    font-size: 64px;
  }
}
@media screen and (max-width: 991px) {
  .single-hero-slider {
    padding: 45px 80px 60px;
  }
  .single-hero-slider::before {
    width: 169px;
    left: 13px;
  }
  .single-hero-slider::after {
    width: 120px;
  }
  .home-v3-hero-wrapper {
    padding: 100px 0px;
  }
  .home-v3-hero-wrapper .owl-nav {
    bottom: 30px;
  }
  .home-v3-hero-wrapper .owl-dots {
    bottom: 47px;
  }
  .home-v3-hero-content span {
    font-size: 24px;
  }
  .home-v3-hero-content h2 {
    font-size: 60px;
  }
  .home-v3-hero-content p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .home-v3-hero-wrapper {
    padding: 70px 0px;
  }
  .single-hero-slider {
    padding: 30px;
    -webkit-clip-path: unset;
            clip-path: unset;
  }
  .single-hero-slider::before, .single-hero-slider::after {
    -webkit-clip-path: unset;
            clip-path: unset;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    width: 5px;
    height: 100%;
    top: 0;
  }
  .single-hero-slider::before {
    left: 0;
  }
  .single-hero-slider::after {
    right: 0;
  }
  .home-v3-hero-bg-slider .owl-dots {
    bottom: 40px;
  }
  .home-v3-hero-bg-slider .owl-nav {
    max-width: 300px;
    bottom: 24px;
  }
}
@media screen and (max-width: 575px) {
  .home-v3-hero-wrapper {
    padding: 50px 0px;
  }
  .single-hero-slider {
    padding: 20px;
  }
  .home-v3-hero-content span {
    font-size: 20px;
  }
  .home-v3-hero-content h2 {
    font-size: 36px;
  }
  .home-v3-hero-content p {
    font-size: 16px;
  }
  .home-v3-hero-content .button {
    margin-top: 10px;
  }
  .home-v3-hero-content .button a {
    margin: 5px 5px 5px 0px;
  }
  .home-v3-hero-bg-slider .owl-nav {
    max-width: 175px;
    bottom: 22px;
  }
  .home-v3-hero-bg-slider .owl-nav .owl-prev, .home-v3-hero-bg-slider .owl-nav .owl-next {
    font-size: 20px;
  }
  .home-v3-hero-bg-slider .owl-dots {
    max-width: 100px;
    bottom: 33px;
  }
  .home-v3-hero-bg-slider .owl-dots .owl-dot::before, .home-v3-hero-bg-slider .owl-dots .owl-dot::after {
    width: 20px;
    height: 20px;
  }
}
.partner-slider-area {
  padding: 30px 0px;
  background: var(--partner-bg);
}

.home-v3-counter-wrapper {
  padding-left: 50px;
  padding-right: 50px;
}
.home-v3-counter-wrapper::before {
  opacity: 0.5;
}
.home-v3-counter-wrapper .single-counter p {
  color: var(--white-txt-clr);
}

.home-v3-subscribe .subscribe-wrapper {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  max-width: 100%;
  padding: 0;
  position: relative;
  z-index: 1;
}
.home-v3-subscribe .subscribe-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--login-register-overlay);
  mix-blend-mode: multiply;
  opacity: 0.6;
}
.home-v3-subscribe .subscribe-wrapper .subscribe-inner {
  max-width: 1070px;
  width: 100%;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 55px 60px;
}

@media screen and (max-width: 991px) {
  .partner-slider-area {
    padding: 20px 0px;
  }
  .home-v3-subscribe .subscribe-wrapper .subscribe-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 10px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .home-v3-counter-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 575px) {
  .home-v3-counter-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.home-v3-tournament-wrapper {
  max-width: 1245px;
  margin: 0 auto;
  padding-left: 225px;
  position: relative;
}

.home-v3-tnrmnt-button-group {
  position: absolute;
  left: 0;
  width: 215px;
  background-color: var(--header-bg);
  padding-top: 75px;
  height: 100%;
  z-index: 9;
}
.home-v3-tnrmnt-button-group button {
  display: block;
  padding-left: 60px;
  margin-bottom: 30px;
  font-size: 18px;
  color: var(--white-txt-clr);
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.home-v3-tnrmnt-button-group button::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: var(--theme-bg-clr);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.home-v3-tnrmnt-button-group button.active {
  color: var(--theme-txt-clr);
}
.home-v3-tnrmnt-button-group button.active::before {
  opacity: 1;
  width: 40px;
}

.home-v3-tournament-active {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.v3-tournament-grid-sizer,
.tournament-item {
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
  margin: 0px 10px;
}

.tournament-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.tournament-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--login-register-overlay);
  mix-blend-mode: multiply;
  opacity: 0.8;
}

.tournament-inner-content {
  padding: 80px 40px;
}
.tournament-inner-content .checkOut-title h4 {
  font-size: 30px;
  line-height: 1.3;
}
.tournament-inner-content .single-content-inner {
  margin-bottom: 30px;
}
.tournament-inner-content .single-content-inner:last-child {
  margin-bottom: 0;
}
.tournament-inner-content .single-content-inner:hover a {
  color: var(--theme-txt-clr);
}
.tournament-inner-content .single-content-inner a {
  font-size: 24px;
  color: var(--white-txt-clr);
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tournament-inner-content .single-content-inner p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  margin-top: 10px;
}
.tournament-inner-content .single-content-inner span {
  display: block;
  font-size: 14px;
  line-height: 1;
  margin-top: 8px;
  font-weight: 300;
}

.home-v3-tnmnt-content {
  margin-top: 50px !important;
}

@media screen and (max-width: 1199px) {
  .home-v3-tournament-wrapper {
    padding-left: 0;
  }
  .home-v3-tnrmnt-button-group {
    position: unset;
    width: -webkit-calc(100% - 15px);
    width: calc(100% - 15px);
    padding: 0 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 auto 20px;
  }
  .home-v3-tnrmnt-button-group button {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 10px;
    margin-bottom: 0;
  }
  .home-v3-tnrmnt-button-group button::before {
    width: 2px;
    height: 10px;
    left: 50%;
    top: 0;
    -webkit-transform: translateY(0%) translateX(-50%);
        -ms-transform: translateY(0%) translateX(-50%);
            transform: translateY(0%) translateX(-50%);
  }
  .home-v3-tnrmnt-button-group button.active::before {
    width: 2px;
    height: 20px;
  }
  .tournament-inner-content {
    padding: 30px;
  }
  .tournament-inner-content .checkOut-title h4 {
    font-size: 20px;
  }
  .tournament-inner-content .checkOut-title .span-line {
    margin-top: 10px;
  }
  .tournament-inner-content .single-content-inner a {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .tournament-inner-content {
    padding: 20px;
  }
  .tournament-inner-content .single-content-inner a {
    font-size: 18px;
  }
  .tournament-inner-content .single-content-inner p {
    margin-top: 5px;
  }
}
@media screen and (max-width: 575px) {
  .v3-tournament-grid-sizer,
  .tournament-item {
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
  }
  .home-v3-tnrmnt-button-group {
    padding: 0px;
    width: 100%;
  }
  .home-v3-tnrmnt-button-group button {
    padding: 20px 10px 10px;
    font-size: 16px;
  }
}
.home-v3-top-game-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.single-home-v3-top-game.v3-top-game-1 {
  background: #121E24;
}
.single-home-v3-top-game.v3-top-game-2 {
  background: #172228;
}
.single-home-v3-top-game.v3-top-game-3 {
  background: #121E24;
}
.single-home-v3-top-game.v3-top-game-4 {
  background: #172228;
}
.single-home-v3-top-game:hover .top-game-v3-content a {
  background-color: var(--footer-overlay);
}

.top-game-v3-content {
  padding: 30px;
}
.top-game-v3-content ul li {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: var(--yello-clr);
  margin-right: 5px;
}
.top-game-v3-content ul li:last-child {
  color: var(--white-txt-clr);
  margin-left: 5px;
}
.top-game-v3-content h6 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  line-height: 1;
}
.top-game-v3-content a {
  margin-top: 20px;
  background-color: var(--subscribe-bg);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 1199px) {
  .home-v3-top-game-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .home-v3-top-game-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .top-game-v3-content {
    padding: 20px;
  }
}
@media screen and (max-width: 575px) {
  .home-v3-top-game-wrapper {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .top-game-v3-content h6 {
    font-size: 16px;
    margin-top: 10px;
  }
  .top-game-v3-content a {
    margin-top: 15px;
  }
}
.home-v3-latest-post-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
.home-v3-latest-post-wrapper .blog-single-item {
  margin: 0;
}
.home-v3-latest-post-wrapper .blog-thumb {
  height: 403px;
}
.home-v3-latest-post-wrapper .blog-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 500/403;
}
.home-v3-latest-post-wrapper .blog-content {
  padding: 35px 40px 40px;
  background: var(--header-bg);
  position: relative;
  -webkit-clip-path: unset;
          clip-path: unset;
  width: -webkit-calc(100% - 70px);
  width: calc(100% - 70px);
  margin: -120px auto 0px;
}
.home-v3-latest-post-wrapper .blog-content::before {
  display: none;
}
.home-v3-latest-post-wrapper .blog-content .date a {
  margin: 5px 5px 0px 0px;
  font-weight: 300;
  font-size: 14px;
}
.home-v3-latest-post-wrapper .blog-content .blog-bottom {
  margin-top: 10px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.home-v3-latest-post-wrapper .blog-content .blog-bottom .button {
  margin: 10px 10px 0px 0px;
}
.home-v3-latest-post-wrapper .blog-content .blog-bottom .profile {
  margin-top: 10px;
}
.home-v3-latest-post-wrapper .blog-content .blog-bottom .profile a {
  font-size: 14px;
}

@media screen and (max-width: 1199px) {
  .home-v3-latest-post-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .home-v3-latest-post-wrapper .blog-thumb {
    height: 300px;
  }
  .home-v3-latest-post-wrapper .blog-content {
    padding: 20px;
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 575px) {
  .home-v3-latest-post-wrapper {
    grid-template-columns: 1fr;
  }
}
.home-v3-team-member-area .background-img::before {
  opacity: 1;
}

.home-v3-team-member-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
  max-width: 1290px;
  margin: 0 auto;
}

.single-home-v3-team {
  position: relative;
  z-index: 1;
}
.single-home-v3-team::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 25, 30, 0)), to(#0F191E));
  background: -o-linear-gradient(top, rgba(15, 25, 30, 0) 0%, #0F191E 100%);
  background: linear-gradient(180deg, rgba(15, 25, 30, 0) 0%, #0F191E 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single-home-v3-team:hover::before {
  opacity: 1;
  visibility: visible;
}
.single-home-v3-team:hover .home-v3-team-social {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.single-home-v3-team:hover .home-v3-team-social a:nth-child(1), .single-home-v3-team:hover .home-v3-team-social a:nth-child(2), .single-home-v3-team:hover .home-v3-team-social a:nth-child(3), .single-home-v3-team:hover .home-v3-team-social a:nth-child(4) {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.single-home-v3-team:hover .home-v3-team-content a,
.single-home-v3-team:hover .home-v3-team-content span {
  opacity: 1;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

.home-v3-team-thumb img {
  width: 100%;
  aspect-ratio: 300/336;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-v3-team-social {
  position: absolute;
  top: 0;
  right: 0;
  height: 0%;
  z-index: 1;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.home-v3-team-social::before {
  position: absolute;
  content: "";
  background: var(--home-v3-team);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.home-v3-team-social a {
  display: block;
  width: 34px;
  height: 34px;
  background: var(--theme-bg-clr);
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white-txt-clr);
  margin-bottom: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.home-v3-team-social a:nth-child(1), .home-v3-team-social a:nth-child(2), .home-v3-team-social a:nth-child(3), .home-v3-team-social a:nth-child(4) {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-40px);
      -ms-transform: translateY(-40px);
          transform: translateY(-40px);
}
.home-v3-team-social a:nth-child(1) {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.home-v3-team-social a:nth-child(2) {
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home-v3-team-social a:nth-child(3) {
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.home-v3-team-social a:nth-child(4) {
  -webkit-transition-delay: 0.6s;
       -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.home-v3-team-social a:hover {
  background: var(--footer-overlay);
}

.home-v3-team-content {
  padding: 0px 20px;
  width: 100%;
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  z-index: 9;
}
.home-v3-team-content a {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: var(--white-txt-clr);
  line-height: 1.3;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home-v3-team-content span {
  font-size: 16px;
  color: var(--white-txt-clr);
  line-height: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

@media screen and (max-width: 1199px) {
  .home-v3-team-member-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .home-v3-team-member-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .home-v3-team-member-wrapper {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .home-v3-team-member-wrapper {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .home-v3-team-member-wrapper .home-v3-team-social {
    padding: 20px 10px;
  }
  .home-v3-team-member-wrapper .home-v3-team-content {
    bottom: 20px;
  }
  .home-v3-team-member-wrapper .home-v3-team-content a {
    font-size: 20px;
  }
  .home-v3-team-member-wrapper .home-v3-team-content span {
    font-size: 15px;
  }
}
.theme-feature-area {
  background: #030A0F;
}

.theme-feature-title {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}
.theme-feature-title h4 {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--poppins);
  line-height: 1;
}
.theme-feature-title p {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 10px;
}

.feature-wrapper {
  max-width: 1195px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.demo-single-feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #10171D;
  padding: 30px;
}
.demo-single-feature span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 10px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .feature-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .feature-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .feature-wrapper {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  .demo-single-feature span {
    font-size: 16px;
  }
  .theme-feature-title {
    padding: 0px 10px;
  }
  .theme-feature-title h4 {
    font-size: 30px;
  }
  .theme-feature-title p {
    font-size: 16px;
  }
}
.home-page-area {
  background: #000000;
}

.home-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.home-page-wrapper .single-inner-page a .image {
  height: 595px;
  -webkit-transition: all 1.5s ease-in-out;
  -o-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

.inner-page-area {
  background: #030A0F;
}

.inner-page-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px 30px;
}

.single-inner-page {
  text-align: center;
}
.single-inner-page a:hover .image {
  background-position: bottom center;
}
.single-inner-page a:hover span {
  color: var(--theme-txt-clr);
}
.single-inner-page a .image {
  height: 200px;
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.single-inner-page a span {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--white-txt-clr);
  display: block;
  margin-top: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 991px) {
  .home-page-wrapper,
  .inner-page-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .home-page-wrapper,
  .inner-page-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 20px;
  }
}
@media screen and (max-width: 575px) {
  .home-page-wrapper .single-inner-page a .image {
    height: 400px;
  }
  .home-page-wrapper,
  .inner-page-wrapper {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    grid-gap: 20px;
  }
  .single-inner-page a span {
    font-size: 16px;
    margin-top: 10px;
  }
}
.demo-footer-area {
  position: relative;
  z-index: 1;
}
.demo-footer-area .background-img::before {
  background: rgba(15, 25, 30, 0.8);
  mix-blend-mode: normal;
  opacity: 1;
}

.demo-footer-thumb {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 50%;
  text-align: right;
}

.deo-footer-content {
  max-width: 55%;
}
.deo-footer-content span {
  color: var(--theme-txt-clr);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}
.deo-footer-content h4 {
  font-family: var(--poppins);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20px;
}
.deo-footer-content a {
  margin-top: 30px;
}

.demo-footer-copyright {
  background: #022541;
  text-align: center;
  padding: 18px 0px;
}

.demo-footer-copyright p a {
  color: white;
}

@media screen and (max-width: 1199px) {
  .deo-footer-content h4 {
    font-size: 35px;
  }
  .demo-footer-thumb {
    bottom: 50%;
    width: 45%;
    -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
            transform: translateY(50%);
  }
}
@media screen and (max-width: 991px) {
  .demo-footer-thumb {
    display: none;
  }
  .deo-footer-content {
    text-align: center;
    max-width: 100%;
  }
  .deo-footer-content span {
    font-size: 24px;
  }
  .deo-footer-content h4 {
    margin-top: 5px;
    font-size: 24px;
  }
  .deo-footer-content a {
    margin-top: 20px;
  }
}
@media screen and (max-width: 575px) {
  .deo-footer-content {
    text-align: center;
  }
  .deo-footer-content span {
    font-size: 18px;
  }
  .deo-footer-content h4 {
    font-size: 20px;
    margin-top: 5px;
  }
  .deo-footer-content a {
    margin-top: 15px;
  }
  .demo-footer-copyright {
    padding: 10px 0px;
  }
  .demo-footer-copyright p {
    font-size: 15px;
  }
}
.login-register-area {
  padding: 150px 0px 100px;
}

.login-register-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1195px;
  margin: 0 auto;
}

.login {
  max-width: 415px;
  width: 100%;
}

.login-register-shape {
  margin-top: -60px;
  max-width: 270px;
  width: 100%;
}

.login-title {
  margin-bottom: 30px;
}
.login-title h4 {
  font-size: 30px;
  line-height: 1;
  color: var(--theme-txt-clr);
  font-weight: 700;
}

.single-login-form {
  margin-bottom: 30px;
}
.single-login-form:last-child {
  margin-bottom: 0;
}
.single-login-form label {
  font-size: 18px;
  color: var(--white-txt-clr);
  line-height: 1;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}
.single-login-form .form {
  position: relative;
}
.single-login-form .form:focus-within i {
  color: var(--theme-txt-clr);
}
.single-login-form .form input {
  width: 100%;
  height: 60px;
  background: var(--submenu-bg);
  border: 1px solid var(--login-input-border);
  padding: 20px 50px 20px 20px;
  outline: none;
  color: var(--white-txt-clr);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single-login-form .form input::-moz-placeholder {
  color: var(--white-txt-clr);
}
.single-login-form .form input::-webkit-input-placeholder {
  color: var(--white-txt-clr);
}
.single-login-form .form input:-ms-input-placeholder {
  color: var(--white-txt-clr);
}
.single-login-form .form input::-ms-input-placeholder {
  color: var(--white-txt-clr);
}
.single-login-form .form input::placeholder {
  color: var(--white-txt-clr);
}
.single-login-form .form i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.login-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 370px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.login-button a {
  margin-right: 20px;
}

@media screen and (max-width: 991px) {
  .login-register-area {
    padding: 100px 0px 70px;
  }
  .login-register-shape {
    display: none;
  }
  .login {
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .login-register-area {
    padding: 70px 0px 50px;
  }
  .single-login-form {
    margin-bottom: 20px;
  }
  .single-login-form .form input {
    height: 50px;
    padding: 10px 40px 10px 15px;
  }
  .single-login-form .form i {
    right: 15px;
  }
  .single-login-form label {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .login-title {
    margin-bottom: 20px;
  }
  .login-title h4 {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .login-register-area {
    padding: 50px 0px;
  }
  .login-register-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
  }
  .login {
    width: 100%;
  }
  .register {
    margin-top: 50px;
  }
}
.error-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.error-thumb {
  max-width: 720px;
  width: 100%;
  margin-right: 30px;
}

.error-content span {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.error-content h2 {
  font-size: 70px;
  font-weight: 900;
  color: var(--theme-txt-clr);
  line-height: 1;
  margin-bottom: 20px;
}
.error-content p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.error-content a {
  margin-top: 20px;
  padding: 15px 20px;
}
.error-content a i {
  margin-right: 5px;
  margin-left: 0;
  line-height: 1;
}

@media screen and (max-width: 1199px) {
  .error-thumb {
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .error-content span {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .error-content h2 {
    font-size: 50px;
    margin-bottom: 10px;
  }
  .error-content p {
    font-size: 16px;
  }
  .error-content a {
    margin-top: 15px;
  }
}
@media screen and (max-width: 575px) {
  .error-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .error-thumb {
    max-width: 300px;
    margin: 0 auto 40px;
  }
  .error-content {
    text-align: center;
  }
}
.contact-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 50px;
}

.contact-info {
  max-width: 550px;
  width: 100%;
}
.contact-info .contact-items a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white-txt-clr);
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 500;
}
.contact-info .contact-items a:last-child {
  margin-bottom: 0;
}
.contact-info .contact-items a i {
  color: var(--theme-txt-clr);
  margin-right: 10px;
  font-size: 18px;
}

.contact-title {
  margin-bottom: 22px;
}
.contact-title h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}

.contact-shape {
  margin: -50px 45px 0px -45px;
  max-height: 560px;
}
.contact-shape img {
  height: 100%;
}

.get-in-touch {
  max-width: 550px;
  width: 100%;
}

.get-in-touch-from {
  max-width: 415px;
}
.get-in-touch-from label {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--white-txt-clr);
  font-weight: 600;
}
.get-in-touch-from .form {
  position: relative;
  margin-bottom: 20px;
}
.get-in-touch-from .form:focus-within i {
  color: var(--theme-txt-clr);
}
.get-in-touch-from .form input {
  width: 100%;
  height: 60px;
  background: var(--submenu-bg);
  border: 1px solid var(--login-input-border);
  padding: 20px 50px 20px 20px;
  outline: none;
  color: var(--white-txt-clr);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 5px;
          border-radius: 5px;
}
.get-in-touch-from .form input::-moz-placeholder {
  color: var(--white-txt-clr);
}
.get-in-touch-from .form input::-webkit-input-placeholder {
  color: var(--white-txt-clr);
}
.get-in-touch-from .form input:-ms-input-placeholder {
  color: var(--white-txt-clr);
}
.get-in-touch-from .form input::-ms-input-placeholder {
  color: var(--white-txt-clr);
}
.get-in-touch-from .form input::placeholder {
  color: var(--white-txt-clr);
}
.get-in-touch-from .form i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.get-in-touch-from textarea {
  width: 100%;
  height: 120px;
  background: var(--submenu-bg);
  border: 1px solid var(--login-input-border);
  padding: 20px;
  outline: none;
  color: var(--white-txt-clr);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  resize: none;
  margin-bottom: 30px;
}
.get-in-touch-from textarea::-moz-placeholder {
  color: var(--white-txt-clr);
}
.get-in-touch-from textarea::-webkit-input-placeholder {
  color: var(--white-txt-clr);
}
.get-in-touch-from textarea:-ms-input-placeholder {
  color: var(--white-txt-clr);
}
.get-in-touch-from textarea::-ms-input-placeholder {
  color: var(--white-txt-clr);
}
.get-in-touch-from textarea::placeholder {
  color: var(--white-txt-clr);
}

@media screen and (max-width: 991px) {
  .contact-wrapper {
    padding-top: 0;
  }
  .contact-shape {
    display: none;
  }
  .contact-info {
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
  }
  .get-in-touch {
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 776px) {
  .contact-info {
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
  }
  .get-in-touch {
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
  }
  .get-in-touch-from .form {
    margin-bottom: 15px;
  }
  .get-in-touch-from .form input {
    height: 50px;
    padding: 10px 40px 10px 10px;
    font-size: 16px;
  }
  .get-in-touch-from .form i {
    right: 10px;
  }
  .get-in-touch-from textarea {
    height: 100px;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .contact-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 450px;
  }
  .contact-info {
    width: 100%;
  }
  .contact-info .contact-items a {
    margin-bottom: 15px;
  }
  .contact-info .contact-items a i {
    font-size: 16px;
  }
  .get-in-touch {
    margin-top: 40px;
    width: 100%;
  }
}
.coming-son-area {
  padding-top: 315px;
  min-height: 100vh;
}
.coming-son-area .subscrive-area {
  padding: 0;
}
.coming-son-area .subscrive-area .container {
  padding: 0;
}

.coming-son-content {
  padding-bottom: 200px;
  text-align: center;
}
.coming-son-content h2 {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 45px;
}

.countdown-clock {
  background-color: var(--body-bg-clr);
  border: 1px solid var(--white-bdr-clr);
  display: inline-block;
}

.countdown-item {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  width: 138px;
  height: 142px;
  border-right: 1px solid var(--white-bdr-clr);
}
.countdown-item:last-child {
  border-right: none;
}
.countdown-item .ci-inner {
  font-size: 48px;
  line-height: 1;
  font-weight: bold;
  font-family: var(--orbitron);
}
.countdown-item h4 {
  font-size: 18px;
  line-height: 1;
  font-family: var(--poppins);
  margin-top: 20px;
}

@media screen and (max-width: 1199px) {
  .coming-son-area {
    padding-top: 200px;
  }
}
@media screen and (max-width: 991px) {
  .coming-son-area {
    padding-top: 150px;
  }
  .coming-son-content {
    padding-bottom: 150px;
  }
  .coming-son-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
  }
  .countdown-item {
    width: 120px;
    height: 110px;
  }
  .countdown-item .ci-inner {
    font-size: 30px;
  }
  .countdown-item h4 {
    font-size: 16px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .coming-son-area {
    padding-top: 100px;
  }
  .coming-son-content {
    padding-bottom: 70px;
  }
  .coming-son-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .countdown-clock {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 400px;
    margin: 0 auto;
  }
  .countdown-item {
    width: 50%;
  }
  .countdown-item:nth-child(3), .countdown-item:nth-child(4) {
    border-top: 1px solid var(--white-bdr-clr);
  }
  .countdown-item:nth-child(2) {
    border-right: none;
  }
  .countdown-item .ci-inner {
    font-size: 24px;
  }
}
.faq-wrapper {
  max-width: 1395px;
  margin: -10px auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.single-faq {
  width: -webkit-calc(33.3333333333% - 30px);
  width: calc(33.3333333333% - 30px);
  margin: 10px;
  background: var(--subscribe-bg);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  padding-bottom: 25px;
  position: relative;
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: var(--footer-overlay);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 100%;
}
.single-faq.active {
  border-width: 1px 1px 0px 1px;
}
.single-faq.active::before {
  opacity: 1;
}
.single-faq.active .faq-head h6 {
  color: var(--theme-txt-clr);
}
.single-faq.active .faq-head .plus span:last-child {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}

.faq-head {
  cursor: pointer;
  position: relative;
}
.faq-head h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  padding: 25px 60px 0px 30px;
  font-family: var(--poppins);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.faq-head .plus {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 32px;
  height: 32px;
  background: var(--theme-bg-clr);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq-head .plus span {
  width: 12px;
  height: 2px;
  background: var(--white-bg-clr);
  position: absolute;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.faq-head .plus span:last-child {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.faq-body {
  margin-top: 20px;
  position: absolute;
  background: var(--subscribe-bg);
  z-index: 9999;
  padding: 0px 35px 25px;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: var(--footer-overlay);
  width: -webkit-calc(100% + 2px);
  width: calc(100% + 2px);
  left: -1px;
  max-height: 250px;
  overflow-y: auto;
  display: none;
}
.faq-body::-webkit-scrollbar {
  width: 6px;
  -webkit-border-radius: 5px;
          border-radius: 5px;
}
.faq-body::-webkit-scrollbar-track {
  background-color: rgb(255, 246, 246);
}
.faq-body::-webkit-scrollbar-thumb {
  background: var(--theme-bg-clr);
  -webkit-border-radius: 20px;
          border-radius: 20px;
}
.faq-body p {
  font-size: 16px;
  line-height: 1.4;
}
.faq-body ul {
  margin-top: 20px;
}
.faq-body ul li {
  position: relative;
  font-size: 16px;
  line-height: 1.4;
  color: var(--white-txt-clr);
  padding-left: 16px;
  margin-bottom: 15px;
}
.faq-body ul li:last-child {
  margin-bottom: 0;
}
.faq-body ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: var(--theme-bg-clr);
  -webkit-border-radius: 50%;
          border-radius: 50%;
  top: 7px;
  left: 0;
}

@media screen and (max-width: 1199px) {
  .single-faq {
    width: -webkit-calc(50% - 20px);
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 991px) {
  .faq-head h6 {
    padding: 20px 30px 0px 20px;
  }
  .faq-body {
    padding: 0px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .faq-wrapper {
    max-width: 600px;
  }
  .single-faq {
    width: 100%;
    margin: 10px 0px;
    padding-bottom: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding-bottom: 10px;
  }
  .single-faq.active {
    border-width: 1px 1px 1px 1px;
  }
  .faq-body {
    position: unset;
    border-width: 0px;
    margin-top: 15px;
    max-height: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .single-faq {
    padding-bottom: 15px;
    margin: 8px 0px;
  }
  .faq-head h6 {
    font-size: 17px;
    padding: 15px 40px 0px 20px;
  }
  .faq-body {
    padding: 0px 20px;
  }
  .faq-body ul {
    margin-top: 12px;
  }
}
.my-account-wrapper {
  position: relative;
}

.line-with-social {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.line-with-social ul li {
  margin: 70px 0px;
  position: relative;
  display: block;
}
.line-with-social ul li::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 70px;
  background: var(--theme-txt-clr);
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.line-with-social ul li:first-child::after {
  display: none;
}
.line-with-social ul li:last-child::before {
  display: none;
}
.line-with-social ul li a {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid var(--theme-bdr-clr);
  color: var(--theme-txt-clr);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.line-with-social ul li a:hover {
  background-color: var(--theme-bg-clr);
  color: var(--white-txt-clr);
}

.my-account-inner {
  max-width: 840px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.my-account-thumb {
  width: 50%;
  margin-right: 55px;
  position: relative;
  padding: 15px;
}
.my-account-thumb .image {
  -webkit-border-radius: 64% 36% 52% 48%/55% 61% 39% 45%;
          border-radius: 64% 36% 52% 48%/55% 61% 39% 45%;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}
.my-account-thumb .image img {
  width: 100%;
  aspect-ratio: 360/311;
  -o-object-fit: cover;
     object-fit: cover;
}
.my-account-thumb .sercle-shape {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: 20px;
  width: 100%;
}
.my-account-thumb .shape-group {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.my-account-thumb .shape-group .shape-01,
.my-account-thumb .shape-group .shape-02,
.my-account-thumb .shape-group .shape-03 {
  position: absolute;
}
.my-account-thumb .shape-group .shape-01 {
  top: 5%;
  left: 10%;
}
.my-account-thumb .shape-group .shape-02 {
  bottom: 5%;
  left: 10%;
}
.my-account-thumb .shape-group .shape-03 {
  bottom: 5%;
  right: 10%;
}

.my-account-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.my-account-content a {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: var(--white-txt-clr);
  line-height: 1;
}
.my-account-content a span {
  display: block;
  font-size: 16px;
  line-height: 1;
  margin-top: 10px;
  font-weight: normal;
}
.my-account-content p {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 20px;
}

.acnt-btn-group a {
  margin: 0px 10px;
}

@media screen and (max-width: 1350px) {
  .line-with-social {
    right: 5%;
  }
}
@media screen and (max-width: 1199px) {
  .line-with-social {
    right: -2%;
  }
  .my-account-thumb {
    margin-right: 10px;
  }
}
@media screen and (max-width: 991px) {
  .line-with-social {
    position: unset;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    right: 0;
    margin-top: 50px;
    text-align: center;
  }
  .line-with-social ul li {
    margin: 0px 20px;
    position: relative;
    display: inline-block;
  }
  .line-with-social ul li::before, .line-with-social ul li::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--theme-txt-clr);
    top: 50%;
    left: 100%;
    -webkit-transform: translatey(-50%);
        -ms-transform: translatey(-50%);
            transform: translatey(-50%);
  }
  .line-with-social ul li::after {
    left: auto;
    right: 100%;
  }
  .my-account-thumb {
    margin-right: 30px;
  }
  .my-account-thumb .image {
    padding: 0;
  }
  .my-account-thumb .sercle-shape {
    top: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 93%;
  }
  .my-account-thumb .shape-group .shape-02 {
    bottom: 0%;
    left: 0%;
  }
  .my-account-thumb .shape-group .shape-03 {
    bottom: 0%;
    right: 0;
  }
}
@media screen and (max-width: 576px) {
  .my-account-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .my-account-thumb {
    width: 100%;
    margin-right: 0px;
    max-width: 350px;
  }
  .my-account-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 30px;
  }
  .my-account-content a {
    font-size: 20px;
  }
  .my-account-content a span {
    margin-top: 5px;
  }
  .my-account-content p {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 15px;
  }
  .line-with-social {
    margin-top: 20px;
  }
  .line-with-social ul li a {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .acnt-btn-group {
    margin-top: 20px;
  }
  .acnt-btn-group a {
    margin: 5px;
  }
}
.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  max-width: 850px;
  margin: 0 auto;
}

.single-pricing {
  padding: 40px 45px;
  border-bottom: 8px solid transparent;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single-pricing.active, .single-pricing:hover {
  background-color: var(--subscribe-bg);
  border-color: var(--theme-bg-clr);
}
.single-pricing.active .pricing-button a, .single-pricing:hover .pricing-button a {
  background-color: var(--theme-bg-clr);
}

.pricing-title h5 {
  color: var(--theme-txt-clr);
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}
.pricing-title h2 {
  font-size: 48px;
  font-weight: 700;
  margin-top: 25px;
  position: relative;
  padding-left: 20px;
  line-height: 1;
}
.pricing-title h2 sup {
  font-size: 20px;
  font-weight: 400;
  color: var(--theme-txt-clr);
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 1;
}

.pricing-list {
  margin-top: 30px;
}
.pricing-list ul li {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
}
.pricing-list ul li.color {
  color: var(--theme-txt-clr);
}
.pricing-list ul li:last-child {
  margin-bottom: 0;
}

.pricing-button {
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .pricing-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .pricing-wrapper {
    grid-gap: 20px;
  }
  .single-pricing {
    padding: 40px;
  }
}
@media screen and (max-width: 575px) {
  .pricing-wrapper {
    grid-template-columns: repeat(1, 1fr);
    max-width: 300px;
  }
  .pricing-title h5 {
    font-size: 20px;
  }
  .pricing-title h2 {
    font-size: 40px;
    margin-top: 10px;
  }
  .pricing-list {
    margin-top: 15px;
  }
  .pricing-list ul li {
    margin-bottom: 10px;
  }
  .pricing-button {
    margin-top: 20px;
  }
}
.blog-top-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}

.gallery-button-group button {
  padding: 13px 20px;
  background: var(--header-bg);
  margin: 0px 5px;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
  color: var(--white-txt-clr);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.gallery-button-group button:first-child {
  margin-left: 0;
}
.gallery-button-group button::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: var(--login-input-border);
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.gallery-button-group button.active, .gallery-button-group button:hover {
  color: var(--white-txt);
}
.gallery-button-group button.active::before, .gallery-button-group button:hover::before {
  opacity: 1;
}

.blog-top-search {
  max-width: 350px;
  width: 100%;
}
.blog-top-search .search {
  position: relative;
}
.blog-top-search .search input {
  height: 65px;
  width: 100%;
  background-color: var(--header-bg);
  font-size: 18px;
  line-height: 1;
  color: var(--white-txt-clr);
  padding: 10px 70px 10px 30px;
  border: 0;
  outline: none;
}
.blog-top-search .search input::-moz-placeholder {
  color: var(--white-txt-clr);
}
.blog-top-search .search input::-webkit-input-placeholder {
  color: var(--white-txt-clr);
}
.blog-top-search .search input:-ms-input-placeholder {
  color: var(--white-txt-clr);
}
.blog-top-search .search input::-ms-input-placeholder {
  color: var(--white-txt-clr);
}
.blog-top-search .search input::placeholder {
  color: var(--white-txt-clr);
}
.blog-top-search .search button {
  position: absolute;
  height: 100%;
  width: 65px;
  right: 0;
  top: 0;
  background: var(--theme-bg-clr);
  color: var(--white-txt-clr);
  font-size: 18px;
  line-height: 1;
}

.blog-grid-sizer,
.blog-item {
  width: 33.3333333333%;
}

.blog-single-item {
  margin-right: 15px;
  margin-left: 15px;
}
.blog-single-item:hover .blog-content::before {
  background: var(--theme-bg-clr);
}
.blog-single-item:hover .blog-content .title h4 a {
  color: var(--theme-txt-clr);
}
.blog-single-item:hover .blog-bottom .button a {
  background: var(--theme-bg-clr);
}

.blog-thumb img {
  width: 100%;
  aspect-ratio: 500/373;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-content {
  padding: 40px 80px;
  background: var(--header-bg);
  margin-top: -71px;
  position: relative;
  -webkit-clip-path: polygon(80% 0, 100% 23%, 100% 60%, 100% 100%, 0 100%, 0 23%, 20% 0);
          clip-path: polygon(80% 0, 100% 23%, 100% 60%, 100% 100%, 0 100%, 0 23%, 20% 0);
}
.blog-content::before {
  position: absolute;
  content: "";
  height: 130px;
  background: var(--login-input-border);
  width: 100%;
  -webkit-clip-path: polygon(20% 0, 100% 0, 100% 0%, 100% 75%, 79% 10%, 20% 10%, 0% 75%, 0% 40%);
          clip-path: polygon(20% 0, 100% 0, 100% 0%, 100% 75%, 79% 10%, 20% 10%, 0% 75%, 0% 40%);
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.blog-content .date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.blog-content .date a {
  color: var(--white-txt-clr);
  font-size: 16px;
  line-height: 1.5;
  margin: 0px 2px;
  font-weight: 300;
}
.blog-content .date a i {
  color: var(--theme-txt-clr);
  font-size: 20px;
  margin-right: 5px;
}
.blog-content .title {
  margin-top: 20px;
}
.blog-content .title h4 {
  line-height: 1;
}
.blog-content .title h4 a {
  color: var(--white-txt-clr);
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.blog-content .blog-bottom {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.blog-content .blog-bottom .profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-content .blog-bottom .profile img {
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}
.blog-content .blog-bottom .profile a {
  color: var(--white-txt-clr);
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
}

@media screen and (max-width: 1600px) {
  .blog-content {
    padding: 60px 50px 40px;
  }
}
@media screen and (max-width: 1350px) {
  .blog-content {
    padding: 60px 30px 40px;
    margin-top: -65px;
    -webkit-clip-path: polygon(80% 0, 100% 15%, 100% 0%, 100% 100%, 0 100%, 0 15%, 20% 0);
            clip-path: polygon(80% 0, 100% 15%, 100% 0%, 100% 100%, 0 100%, 0 15%, 20% 0);
  }
  .blog-content::before {
    height: 130px;
    -webkit-clip-path: polygon(0% 0, 100% 0, 100% 0%, 100% 60%, 79% 10%, 20% 10%, 0% 60%, 0% 40%);
            clip-path: polygon(0% 0, 100% 0, 100% 0%, 100% 60%, 79% 10%, 20% 10%, 0% 60%, 0% 40%);
  }
}
@media screen and (max-width: 1199px) {
  .blog-top-bar {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 30px;
  }
  .gallery-button-group button {
    margin: 0px 10px 10px 0px;
  }
  .blog-top-search .search input {
    height: 55px;
  }
  .blog-grid-sizer,
  .blog-item {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .blog-top-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .blog-top-search {
    margin-top: 20px;
    margin-left: auto;
  }
  .blog-top-search .search input {
    height: 50px;
  }
  .blog-content {
    padding: 30px 15px;
    margin-top: -45px;
    -webkit-clip-path: unset;
            clip-path: unset;
  }
  .blog-content::before {
    height: 5px;
    -webkit-clip-path: unset;
            clip-path: unset;
    top: -2px;
    z-index: 9;
  }
  .blog-content .date a {
    font-size: 14px;
  }
  .blog-content .title {
    margin-top: 10px;
  }
  .blog-content .button a {
    padding: 12px 20px;
  }
}
@media screen and (max-width: 767px) {
  .blog-top-bar {
    margin-bottom: 30px;
  }
  .gallery-button-group {
    margin-top: -5px;
  }
  .gallery-button-group button {
    padding: 12px 20px;
    margin: 5px;
    font-size: 16px;
  }
  .blog-top-search {
    margin-top: 20px;
  }
  .blog-top-search .search input {
    font-size: 16px;
    padding: 10px 70px 10px 20px;
  }
  .blog-top-search .search i {
    font-size: 16px;
  }
  .blog-single-item {
    margin-right: 10px;
    margin-left: 10px;
  }
  .blog-content {
    padding: 10px 15px 20px 15px;
  }
  .blog-content .date a {
    margin: 10px 10px 0px 0px;
  }
  .blog-content .title h4 a {
    font-size: 16px;
  }
  .blog-content .blog-bottom {
    margin-top: 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 5px;
  }
  .blog-content .blog-bottom .button {
    margin: 15px 10px 0px 0px;
  }
  .blog-content .blog-bottom .profile {
    margin-top: 15px;
  }
}
@media screen and (max-width: 575px) {
  .blog-grid-sizer,
  .blog-item {
    width: 100%;
  }
  .blog-single-item {
    margin-right: 0px;
    margin-left: 0px;
  }
  .blog-content .date {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .blog-content .blog-bottom {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.gamelist-grid-sizer,
.gamelist-item {
  width: 25%;
}

.gamelist-active {
  margin-right: -15px;
  margin-left: -15px;
}

.gamelist-single-item {
  margin-right: 15px;
  margin-left: 15px;
}
.gamelist-single-item:hover .gamelist-thumb::before {
  opacity: 0.6;
  visibility: visible;
}
.gamelist-single-item:hover .gamelist-thumb .button {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.gamelist-single-item:hover .gamelist-title a {
  color: var(--theme-txt-clr);
}

.gamelist-thumb {
  position: relative;
}
.gamelist-thumb img {
  width: 100%;
  aspect-ratio: 363/419;
  -o-object-fit: cover;
     object-fit: cover;
}
.gamelist-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--subscribe-bg);
  mix-blend-mode: multiply;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
}
.gamelist-thumb .button {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gamelist-title {
  margin-top: 15px;
}
.gamelist-title a {
  color: var(--white-txt-clr);
  font-size: 20px;
  font-weight: 600;
  display: block;
  line-height: 1.4;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 1199px) {
  .gamelist-grid-sizer,
  .gamelist-item {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 991px) {
  .gamelist-single-item {
    margin-right: 10px;
    margin-left: 10px;
  }
  .gamelist-title {
    margin-top: 10px;
  }
  .gamelist-title a {
    font-size: 16px;
  }
  .gamelist-active {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gamelist-top-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .gamelist-top-bar .blog-top-search {
    margin-top: 0px;
    margin-bottom: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .gamelist-grid-sizer,
  .gamelist-item {
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .gamelist-grid-sizer,
  .gamelist-item {
    width: 100%;
  }
  .gamelist-single-item {
    margin-left: 0;
    margin-right: 0;
  }
}
.gamedetails-slider-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.gamedetails-slider {
  width: 70%;
  position: relative;
  max-height: 675px;
  height: 100%;
  overflow: hidden;
}
.gamedetails-slider.owl-carousel div {
  width: 100%;
}
.gamedetails-slider.owl-carousel .owl-controls .owl-dot {
  background-size: cover;
  margin-top: 10px;
}
.gamedetails-slider.owl-carousel .owl-item {
  padding-right: 255px;
}
.gamedetails-slider.owl-carousel .owl-item img {
  width: 100%;
  aspect-ratio: 537/571;
  -o-object-fit: cover;
     object-fit: cover;
}
.gamedetails-slider.owl-carousel .owl-dots {
  position: absolute;
  top: 0;
  width: 236px;
  height: -webkit-calc(100% - 40px);
  height: calc(100% - 40px);
  right: 0;
  background-color: var(--body-bg-clr);
}
.gamedetails-slider.owl-carousel .owl-dot {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 20px 0px;
}
.gamedetails-slider.owl-carousel .owl-dot:first-child {
  margin-top: 0;
  margin-left: 0;
}
.gamedetails-slider.owl-carousel .owl-dot:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.gamedetails-slider .top-sale {
  position: relative;
}
.gamedetails-slider .top-sale .tag {
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0;
  width: 81px;
  height: 34px;
  background: #00EAB2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gamedetails-slider .top-sale .tag span {
  color: rgb(15, 25, 30);
  font-size: 14px;
  font-weight: 500;
}

.gamedetails-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: var(--header-bg);
  padding: 65px 70px;
  position: relative;
  z-index: 1;
}
.gamedetails-content .tag {
  background-color: var(--m-s-green-txt);
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 10px;
}
.gamedetails-content .tag span {
  font-size: 14px;
  font-weight: 500;
  color: var(--g-d-tag-clr);
  line-height: 1;
}
.gamedetails-content .title h2 {
  font-size: 36px;
  font-weight: 500;
  font-family: var(--poppins);
  line-height: 1;
}
.gamedetails-content .title ul {
  margin-top: 10px;
}
.gamedetails-content .title ul li {
  display: inline-block;
  color: var(--yello-clr);
  margin-right: 10px;
  font-size: 16px;
  line-height: 1;
}
.gamedetails-content .title ul li:last-child {
  color: var(--white-txt-clr);
  margin-right: 0;
}
.gamedetails-content .details {
  margin-top: 20px;
}
.gamedetails-content .details ul {
  margin-top: 25px;
}
.gamedetails-content .details ul li {
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
}
.gamedetails-content .details ul li:last-child {
  margin-bottom: 0;
}
.gamedetails-content .details ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--theme-bg-clr);
  left: 0;
  top: 7px;
}
.gamedetails-content .bottom {
  padding-left: 15px;
  margin-top: 20px;
}
.gamedetails-content .bottom span {
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.gamedetails-content .shape {
  position: absolute;
  max-width: 150px;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 1350px) {
  .gamedetails-content {
    padding: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .gamedetails-slider {
    width: 60%;
  }
  .gamedetails-slider.owl-carousel .owl-item {
    padding-right: 0px;
    padding-bottom: 120px;
  }
  .gamedetails-slider.owl-carousel .owl-item.active {
    width: 100% !important;
    max-width: 650px !important;
  }
  .gamedetails-slider.owl-carousel .owl-dot {
    margin: 0px 10px;
  }
  .gamedetails-slider.owl-carousel .owl-dots {
    top: auto;
    width: 100%;
    height: 300px;
    bottom: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    background: transparent;
  }
}
@media screen and (max-width: 991px) {
  .gamedetails-slider-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gamedetails-slider {
    width: 100%;
  }
  .gamedetails-slider.owl-carousel .owl-item {
    overflow: hidden;
  }
  .gamedetails-slider.owl-carousel .owl-item.active {
    max-width: 720px !important;
    max-height: 555px;
    height: 100%;
  }
  .gamedetails-content {
    margin-top: 30px;
  }
}
@media screen and (max-width: 575px) {
  .gamedetails-slider {
    max-height: 445px;
  }
  .gamedetails-slider.owl-carousel .owl-item.active {
    max-width: 550px !important;
    max-height: 350px;
    height: 100%;
  }
  .gamedetails-slider.owl-carousel .owl-dots {
    height: 250px;
  }
  .gamedetails-slider.owl-carousel .owl-dot {
    margin: 0px 5px;
  }
  .gamedetails-content {
    margin-top: 20px;
    padding: 20px;
  }
  .gamedetails-content .title h2 {
    font-size: 24px;
  }
  .gamedetails-content .title ul {
    margin-top: 6px;
  }
  .gamedetails-content .title ul li {
    margin-right: 5px;
    font-size: 15px;
  }
  .gamedetails-content .details {
    margin-top: 10px;
  }
  .gamedetails-content .details ul {
    margin-top: 15px;
  }
  .gamedetails-content .details ul li {
    margin-bottom: 10px;
  }
  .gamedetails-content .bottom span {
    font-size: 34px;
    margin-bottom: 10px;
  }
  .gamedetails-content .shape {
    max-width: 80px;
  }
}
.blog-dtls-wrapper {
  max-width: 1310px;
  margin: 0 auto;
}

.blog-dtls-thumb {
  padding: 0px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.blog-dtls-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  bottom: 0;
  left: 0;
  background: var(--blog-dtls-tmb-overlay);
  mix-blend-mode: multiply;
  opacity: 0.6;
  z-index: -1;
}
.blog-dtls-thumb .title {
  padding: 380px 0px 90px;
  max-width: 1010px;
  margin: 0 auto;
}
.blog-dtls-thumb .title h2 {
  font-size: 36px;
  font-weight: 500;
}
.blog-dtls-thumb .title .date {
  margin-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.blog-dtls-thumb .title .date a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px 30px 5px 0px;
  font-size: 16px;
  color: #CFCFCF;
}
.blog-dtls-thumb .title .date a:last-child {
  margin-right: 0;
}
.blog-dtls-thumb .title .date a i {
  font-size: 18px;
  color: var(--theme-txt-clr);
  margin-right: 5px;
}

.blog-dtls-content {
  max-width: 1010px;
  margin: 0 auto;
  background: var(--header-bg);
  padding: 30px 100px 50px;
}
.blog-dtls-content p {
  font-size: 16px;
  line-height: 1.5;
}
.blog-dtls-content .quite {
  margin-top: 25px;
  background: var(--subscribe-bg);
  padding: 30px 50px;
  position: relative;
  overflow: hidden;
}
.blog-dtls-content .quite .shape {
  position: absolute;
  max-width: 110px;
  width: 100%;
  right: 0;
  top: 0;
}
.blog-dtls-content .quite i {
  font-size: 36px;
  line-height: 1;
  color: var(--theme-txt-clr);
}
.blog-dtls-content .quite h3 {
  font-size: 20px;
  max-width: 595px;
  font-weight: 500;
  margin-top: 20px;
}
.blog-dtls-content .gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.blog-dtls-content .gallery img {
  width: 100%;
  aspect-ratio: 256/333;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-dtls-content .list {
  max-width: 500px;
  margin-top: 30px;
}
.blog-dtls-content .list li {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.blog-dtls-content .list li:last-child {
  margin-bottom: 0;
}
.blog-dtls-content .list li i {
  color: var(--theme-txt-clr);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
}
.blog-dtls-content .line {
  margin-top: 40px;
  width: 100%;
  height: 1px;
  background-color: var(--theme-bg-clr);
  position: relative;
}
.blog-dtls-content .line::before {
  position: absolute;
  content: "";
  width: 270px;
  height: 6px;
  background: var(--theme-bg-clr);
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 95% 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 95% 100%);
  top: 0;
  left: 0;
  -webkit-border-radius: 0px 0px 20px 0px;
          border-radius: 0px 0px 20px 0px;
}
.blog-dtls-content .share-post {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-dtls-content .share-post span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-right: 30px;
}
.blog-dtls-content .share-post ul li {
  margin: 0px 35px;
  display: inline-block;
  position: relative;
}
.blog-dtls-content .share-post ul li::before {
  position: absolute;
  content: "";
  width: 73px;
  height: 2px;
  background: var(--theme-txt-clr);
  top: 50%;
  left: 100%;
  -webkit-transform: translatey(-50%);
      -ms-transform: translatey(-50%);
          transform: translatey(-50%);
}
.blog-dtls-content .share-post ul li:first-child {
  margin-left: 0;
}
.blog-dtls-content .share-post ul li:first-child::after {
  display: none;
}
.blog-dtls-content .share-post ul li:last-child::before {
  display: none;
}
.blog-dtls-content .share-post ul li a {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid var(--theme-bdr-clr);
  color: var(--theme-txt-clr);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.blog-dtls-content .share-post ul li a:hover {
  background-color: var(--theme-bg-clr);
  color: var(--white-txt-clr);
}
.blog-dtls-content .dtls-footer {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.blog-dtls-content .dtls-footer .tag span {
  color: var(--theme-txt-clr);
  margin-right: 5px;
  font-weight: 500;
  font-size: 16px;
}
.blog-dtls-content .dtls-footer .tag a {
  color: var(--white-txt-clr);
  font-weight: 500;
  font-size: 14px;
}
.blog-dtls-content .dtls-footer .profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-dtls-content .dtls-footer .profile a {
  color: var(--white-txt-clr);
  margin-left: 10px;
  line-height: 1;
}

.related-post-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.related-post-wrapper .blog-single-item {
  margin-right: 0px;
  margin-left: 0px;
}

@media screen and (max-width: 1199px) {
  .related-post-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .blog-dtls-thumb .title {
    padding: 150px 0px 50px;
  }
  .blog-dtls-thumb .title h2 {
    font-size: 24px;
  }
  .blog-dtls-thumb .title .date {
    margin-top: 10px;
  }
  .blog-dtls-content {
    padding: 30px;
  }
  .blog-dtls-content .dtls-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-dtls-content .dtls-footer .profile {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .blog-dtls-content .quite {
    padding: 30px;
  }
  .blog-dtls-content .quite i {
    font-size: 30px;
  }
  .blog-dtls-content .quite h3 {
    margin-top: 10px;
  }
  .blog-dtls-content .quite .shape {
    display: none;
  }
  .blog-dtls-content .gallery {
    grid-gap: 15px;
  }
  .related-post-wrapper {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .blog-dtls-thumb {
    padding: 0px 15px;
  }
  .blog-dtls-thumb .title {
    padding: 100px 0px 30px;
  }
  .blog-dtls-thumb .title h2 {
    font-size: 20px;
  }
  .blog-dtls-content {
    padding: 20px 15px;
  }
  .blog-dtls-content .quite {
    padding: 15px;
    margin-top: 20px;
  }
  .blog-dtls-content .quite i {
    font-size: 24px;
  }
  .blog-dtls-content .quite h3 {
    font-size: 18px;
    margin-top: 5px;
  }
  .blog-dtls-content .gallery {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .blog-dtls-content .list {
    max-width: 500px;
    margin-top: 20px;
  }
  .blog-dtls-content .line {
    margin-top: 20px;
  }
  .blog-dtls-content .line::before {
    width: 100px;
  }
  .blog-dtls-content .share-post {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .blog-dtls-content .share-post ul {
    margin-top: 15px;
  }
  .blog-dtls-content .share-post ul li {
    margin: 0px 20px;
  }
  .blog-dtls-content .share-post ul li::before {
    width: 43px;
  }
  .blog-dtls-content .share-post ul li a {
    width: 34px;
    height: 34px;
  }
  .blog-dtls-content .dtls-footer {
    margin-top: 20px;
  }
  .related-post-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pr-ragistration-from {
  max-width: 415px;
  margin: 0 auto;
}
.pr-ragistration-from .title h4 {
  font-size: 30px;
  line-height: 1.2;
  color: var(--theme-txt-clr);
  font-weight: 700;
}
.pr-ragistration-from .single-from {
  margin-top: 30px;
}
.pr-ragistration-from .single-from label {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 15px;
}

.registerd-team-wrapper {
  max-width: 612px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
.registerd-team-wrapper .title h4 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
}
.registerd-team-wrapper .title .span-line {
  margin-top: 18px;
}
.registerd-team-wrapper .title .span-line span {
  display: block;
  width: 95px;
  height: 2px;
  background: var(--theme-bg-clr);
}
.registerd-team-wrapper .title .span-line span:last-child {
  margin-top: 8px;
  width: 57px;
}

.single-registerd-team {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-registerd-team:hover .team-content a {
  color: var(--theme-txt-clr);
}
.single-registerd-team .team-thumb {
  max-width: 310px;
  margin-right: 60px;
}
.single-registerd-team .team-content a {
  font-size: 18px;
  color: var(--white-txt-clr);
  font-weight: 600;
  line-height: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single-registerd-team .team-content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  margin-top: 10px;
}
.single-registerd-team .team-content span {
  font-size: 14px;
  line-height: 1;
  display: block;
  margin-top: 8px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .single-registerd-team .team-thumb {
    max-width: 250px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 575px) {
  .pr-ragistration-from .title h4 {
    font-size: 24px;
  }
  .pr-ragistration-from .single-from {
    margin-top: 20px;
  }
  .pr-ragistration-from .single-from label {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .registerd-team-wrapper .title {
    text-align: center;
  }
  .registerd-team-wrapper .title h4 {
    font-size: 24px;
  }
  .registerd-team-wrapper .title .span-line {
    margin-top: 15px;
  }
  .registerd-team-wrapper .title .span-line span {
    text-align: center;
    margin: 0 auto;
  }
  .registerd-team-wrapper .title .span-line span:last-child {
    margin-top: 5px;
  }
  .single-registerd-team {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .single-registerd-team .team-thumb {
    max-width: 200px;
    margin: 0 auto 15px;
  }
  .single-registerd-team .team-content p {
    font-size: 16px;
    margin-top: 5px;
  }
}
.all-tournament-sizer,
.all-tournament-item {
  width: 100%;
}

.all-tnmnt-wrapper .title {
  max-width: 450px;
  margin: 0 auto;
}
.all-tnmnt-wrapper .title h4 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
}
.all-tnmnt-wrapper .title .span-line {
  margin-top: 18px;
}
.all-tnmnt-wrapper .title .span-line span {
  display: block;
  width: 95px;
  height: 2px;
  background: var(--theme-bg-clr);
}
.all-tnmnt-wrapper .title .span-line span:last-child {
  margin-top: 8px;
  width: 57px;
}

.all-tnmnt-slider {
  max-width: 1040px;
  margin: 40px auto 0px;
  width: 100%;
}
.all-tnmnt-slider .single-registerd-team {
  max-width: 640px;
  padding: 0px 20px;
  margin: 0 auto;
}
.all-tnmnt-slider .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.all-tnmnt-slider .owl-nav .owl-next {
  position: absolute;
  right: 0;
}
.all-tnmnt-slider .owl-nav .owl-next i,
.all-tnmnt-slider .owl-nav .owl-prev i {
  font-size: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: 100;
}
.all-tnmnt-slider .owl-nav .owl-next i:hover,
.all-tnmnt-slider .owl-nav .owl-prev i:hover {
  color: var(--theme-txt-clr);
}

.all-tnmnt-content {
  text-align: center;
  max-width: 935px;
  margin: 40px auto 0px;
}
.all-tnmnt-content h5 {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  color: var(--theme-txt-clr);
  font-family: var(--poppins);
}
.all-tnmnt-content p {
  margin-top: 16px;
}

.all-tnmnt-single-item {
  position: relative;
  z-index: 1;
}
.all-tnmnt-single-item .shape-01,
.all-tnmnt-single-item .shape-02 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.all-tnmnt-single-item .shape-01 {
  max-width: 350px;
  left: 0;
}
.all-tnmnt-single-item .shape-02 {
  max-width: 180px;
  right: 0;
}

@media screen and (max-width: 1199px) {
  .all-tnmnt-single-item .shape-01 {
    max-width: 160px;
    top: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .all-tnmnt-single-item .shape-02 {
    max-width: 100px;
    right: 0;
    top: auto;
    bottom: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 575px) {
  .all-tnmnt-wrapper .title {
    text-align: center;
  }
  .all-tnmnt-wrapper .title h4 {
    font-size: 24px;
  }
  .all-tnmnt-wrapper .title .span-line {
    margin-top: 15px;
  }
  .all-tnmnt-wrapper .title .span-line span {
    text-align: center;
    margin: 0 auto;
  }
  .all-tnmnt-wrapper .title .span-line span:last-child {
    margin-top: 5px;
  }
  .all-tnmnt-slider {
    margin: 30px auto 0px;
  }
  .all-tnmnt-content {
    margin: 30px auto 0px;
  }
  .all-tnmnt-content h5 {
    font-size: 20px;
  }
  .all-tnmnt-content p {
    margin-top: 10px;
  }
  .all-tnmnt-single-item .shape-01 {
    display: none;
  }
  .all-tnmnt-single-item .shape-02 {
    display: none;
  }
}
.sngl-team-wrapper {
  max-width: 1125px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.sngl-team-thumb {
  max-width: 410px;
  width: 100%;
  margin-right: 100px;
}

.sngl-team-content .team-title h4 {
  color: var(--theme-txt-clr);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.sngl-team-content .team-title p {
  margin-top: 15px;
}
.sngl-team-content .team-title ul {
  margin-top: 20px;
}
.sngl-team-content .team-title ul li {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sngl-team-content .team-title ul li:last-child {
  margin-bottom: 0;
}
.sngl-team-content .team-title ul li i {
  color: var(--theme-txt-clr);
  margin-right: 10px;
  font-size: 20px;
}
.sngl-team-content .team-id {
  margin-top: 50px;
}
.sngl-team-content .team-id h3 {
  font-family: var(--poppins);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.sngl-team-content .team-id h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-txt-clr);
  margin-top: 5px;
  font-family: var(--poppins);
}
.sngl-team-content .team-id ul {
  margin-top: 15px;
}
.sngl-team-content .team-id ul li {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 15px;
}
.sngl-team-content .team-id ul li:last-child {
  margin-bottom: 0;
}
.sngl-team-content .team-id ul li span {
  color: var(--m-s-green-txt);
}

.stream-slider-active {
  padding-bottom: 50px;
}
.stream-slider-active .owl-dots {
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.stream-slider-active .owl-dots .owl-dot {
  width: 11px;
  height: 11px;
  margin: 0px 15px;
  background-color: var(--footer-overlay);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: inline-block;
}
.stream-slider-active .owl-dots .owl-dot.active {
  background-color: var(--theme-bg-clr);
}

@media screen and (max-width: 991px) {
  .sngl-team-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sngl-team-thumb {
    max-width: 300px;
    margin: 0 auto 30px;
  }
  .sngl-team-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .sngl-team-content .team-title {
    width: 60%;
    margin-right: 30px;
  }
  .sngl-team-content .team-id {
    margin-top: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .sngl-team-content .team-title {
    width: 50%;
    margin-right: 20px;
  }
}
@media screen and (max-width: 575px) {
  .sngl-team-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sngl-team-thumb {
    max-width: 250px;
    margin: 0px 0px 20px 0px;
  }
  .sngl-team-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sngl-team-content .team-title {
    width: 100%;
    margin-right: 0px;
  }
  .sngl-team-content .team-title h4 {
    font-size: 20px;
  }
  .sngl-team-content .team-title p {
    margin-top: 10px;
  }
  .sngl-team-content .team-title ul li {
    margin-bottom: 10px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sngl-team-content .team-id {
    width: 100%;
    margin-top: 20px;
  }
  .sngl-team-content .team-id h3 {
    font-size: 20px;
  }
  .sngl-team-content .team-id h4 {
    font-size: 16px;
  }
  .sngl-team-content .team-id ul {
    margin-top: 10px;
  }
  .sngl-team-content .team-id ul li {
    margin-bottom: 10px;
  }
  .stream-slider-active {
    padding-bottom: 40px;
  }
  .stream-slider-active .owl-dots .owl-dot {
    margin: 0px 8px;
  }
}
.all-strm-bannr-area {
  position: relative;
  z-index: 1;
}
.all-strm-bannr-area .shape {
  position: absolute;
  max-width: 235px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.all-strm-bannr-area .bg::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(1.28%, #0F191E), color-stop(47.64%, rgba(15, 25, 30, 0.81)), to(rgba(15, 25, 30, 0)));
  background: -o-linear-gradient(left, #0F191E 1.28%, rgba(15, 25, 30, 0.81) 47.64%, rgba(15, 25, 30, 0) 100%);
  background: linear-gradient(90deg, #0F191E 1.28%, rgba(15, 25, 30, 0.81) 47.64%, rgba(15, 25, 30, 0) 100%);
  mix-blend-mode: multiply;
}

.all-strm-price-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-gap: 50px;
}
.all-strm-price-wrapper .single-registerd-team:hover .team-content .button a {
  background: var(--submenu-bg);
  color: var(--white-txt-clr);
}
.all-strm-price-wrapper .single-registerd-team .team-content .button a {
  font-size: 16px;
  font-weight: 500;
}
.all-strm-price-wrapper .single-registerd-team .team-content .button a:hover {
  background: var(--theme-bg-clr);
  color: var(--white-txt-clr);
}

@media screen and (max-width: 1350px) {
  .all-strm-bannr-area .shape {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 991px) {
  .all-strm-bannr-area .shape {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .all-strm-price-wrapper {
    text-align: center;
    grid-gap: 30px;
  }
}
.shop-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
}

.shop-product-list {
  position: relative;
  z-index: 1;
}
.shop-product-list .gallery-button-group {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.shop-product-list .gallery-button-group button {
  margin: 0;
  margin-bottom: 20px;
}
.shop-product-list .gallery-button-group button:last-child {
  margin-bottom: 0;
}
.shop-product-list .brand {
  margin-top: 50px;
}
.shop-product-list .brand h4 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--poppins);
  color: var(--theme-txt-clr);
  line-height: 1;
}
.shop-product-list .brand ul {
  margin-top: 30px;
  max-width: 220px;
}
.shop-product-list .brand ul li {
  padding: 15px 0px;
  border-bottom: 1px solid var(--header-bg);
}
.shop-product-list .brand ul li:first-child {
  padding-top: 0;
}
.shop-product-list .brand ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.shop-product-list .brand ul li a {
  font-size: 18px;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--white-txt-clr);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.shop-product-list .brand ul li a:hover {
  color: var(--theme-txt-clr);
}
.shop-product-list .shape {
  position: absolute;
  z-index: -1;
  max-width: 200px;
  top: 75%;
  left: 0;
}

.shop-active {
  grid-column: 2/5;
}

.shop-grid-sizer,
.shop-item {
  width: 33.3333333333%;
}

.single-shop {
  margin-right: 15px;
  margin-left: 15px;
}
.single-shop .shop-thumb {
  padding: 30px;
  background: var(--header-bg);
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single-shop .shop-thumb:hover {
  background: transparent;
}
.single-shop .shop-thumb:hover .cart a:first-child, .single-shop .shop-thumb:hover .cart a:last-child {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.single-shop .shop-thumb .top-sale {
  position: absolute;
  right: 0;
  top: 4px;
}
.single-shop .shop-thumb .top-sale span {
  font-size: 14px;
  background-color: var(--theme-bg-clr);
  color: var(--white-txt-clr);
  line-height: 1;
  padding: 6px;
}
.single-shop .shop-thumb .title ul li {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: var(--yello-clr);
  margin-right: 5px;
}
.single-shop .shop-thumb .title ul li:last-child {
  color: var(--white-txt-clr);
  margin-left: 5px;
}
.single-shop .shop-thumb .procuct {
  text-align: center;
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 253px;
}
.single-shop .shop-thumb .cart {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 9;
}
.single-shop .shop-thumb .cart a {
  display: block;
  margin-top: 30px;
  font-size: 20px;
  color: var(--white-txt-clr);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.single-shop .shop-thumb .cart a:hover {
  color: var(--theme-txt-clr);
}
.single-shop .shop-thumb .cart a:first-child {
  margin-top: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
  opacity: 0;
}
.single-shop .shop-thumb .cart a:last-child {
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
  opacity: 0;
}

.shop-content {
  margin-top: 20px;
}
.shop-content a {
  font-size: 20px;
  line-height: 1;
  color: var(--white-txt-clr);
  font-weight: 400;
}
.shop-content span {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-top: 7px;
  line-height: 1;
}

.pagination {
  max-width: 370px;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination a {
  color: var(--login-input-border);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--orbitron);
  line-height: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pagination a:hover {
  color: var(--theme-txt-clr);
}
.pagination a i {
  font-size: 24px;
  color: var(--theme-txt-clr);
  font-weight: 300;
}
.pagination a.active {
  color: var(--theme-txt-clr);
}

@media screen and (max-width: 1199px) {
  .shop-wrapper {
    display: unset;
    grid-template-columns: unset;
    grid-gap: unset;
  }
  .shop-product-list {
    margin-bottom: 20px;
  }
  .shop-product-list .gallery-button-group {
    margin-top: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 10px;
  }
  .shop-product-list .gallery-button-group button {
    margin: 0px;
  }
  .shop-product-list .gallery-button-group button:last-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .shop-product-list .brand {
    display: none;
  }
  .shop-product-list .shape {
    display: none;
  }
  .pagination {
    margin: 0 auto;
    padding-top: 50px;
  }
  .shop-grid-sizer,
  .shop-item {
    width: 33.3333333333%;
  }
  .shop-active {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media screen and (max-width: 991px) {
  .shop-grid-sizer,
  .shop-item {
    width: 50%;
  }
  .shop-product-list .blog-top-search {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .shop-product-list {
    margin-bottom: 10px;
  }
  .shop-product-list .gallery-button-group {
    margin-top: 15px;
    padding: 0;
  }
  .shop-product-list .gallery-button-group button {
    padding: 10px 15px;
  }
  .single-shop {
    margin-right: 10px;
    margin-left: 10px;
  }
  .single-shop .shop-thumb {
    padding: 20px;
  }
  .single-shop .shop-thumb .top-sale {
    top: auto;
    bottom: 5px;
  }
  .shop-content {
    margin-top: 10px;
  }
  .shop-content a {
    font-size: 15px;
  }
  .shop-content span {
    font-size: 20px;
    margin-top: 5px;
  }
  .shop-active {
    margin-right: -10px;
    margin-left: -10px;
  }
}
@media screen and (max-width: 575px) {
  .shop-grid-sizer,
  .shop-item {
    width: 100%;
  }
  .pagination {
    padding-top: 40px;
    max-width: 270px;
  }
  .pagination a {
    font-size: 16px;
  }
  .pagination a i {
    font-size: 20px;
  }
  .shop-product-list .gallery-button-group button {
    font-size: 15px;
    font-weight: 400;
  }
}
.product-dtls-slider-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-dtls-slider {
  width: 60%;
  margin-right: 100px;
}
.product-dtls-slider .gamedetails-slider {
  width: 100%;
  max-height: 100%;
  height: 100%;
}
.product-dtls-slider .gamedetails-slider.owl-carousel .owl-item {
  padding-right: 0;
  padding-left: 255px;
}
.product-dtls-slider .gamedetails-slider.owl-carousel .owl-dots {
  right: auto;
  left: 0;
}

.product-dtls-slider-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-dtls-slider-content .rating ul li {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: var(--yello-clr);
  margin-right: 5px;
}
.product-dtls-slider-content .rating ul li:last-child {
  color: var(--white-txt-clr);
  margin-left: 5px;
}
.product-dtls-slider-content h4 {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  font-family: var(--poppins);
  margin-top: 10px;
}
.product-dtls-slider-content .list {
  margin-top: 15px;
  padding: 20px 0px;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: var(--login-input-border);
}
.product-dtls-slider-content .list ul li {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}
.product-dtls-slider-content .list ul li:last-child {
  margin-bottom: 0;
}
.product-dtls-slider-content .list ul li i {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--theme-txt-clr);
  font-size: 20px;
  margin-right: 5px;
}
.product-dtls-slider-content .price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.product-dtls-slider-content .price span {
  color: #CFCFCF;
  font-size: 24px;
  font-family: var(--orbitron);
  font-weight: 400;
  position: relative;
  margin-right: 20px;
  line-height: 1;
}
.product-dtls-slider-content .price span::before {
  position: absolute;
  content: "";
  width: -webkit-calc(100% + 10px);
  width: calc(100% + 10px);
  background: var(--theme-bg-clr);
  height: 2px;
  -webkit-transform: translate(-50%, -50%) rotate(160deg);
      -ms-transform: translate(-50%, -50%) rotate(160deg);
          transform: translate(-50%, -50%) rotate(160deg);
  left: 50%;
  top: 50%;
}
.product-dtls-slider-content .price h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.product-dtls-slider-content .inc-dec {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-dtls-slider-content .inc-dec input {
  text-align: center;
  padding: 10px;
  height: 52px;
  width: 93px;
  background-color: var(--header-bg);
  font-family: var(--orbitron);
  color: var(--white-txt-clr);
  border: 0;
  outline: none;
}
.product-dtls-slider-content .inc-dec .button {
  background-color: var(--theme-bg-clr);
  height: 52px;
  width: 93px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.product-dtls-slider-content .inc-dec .button button {
  color: var(--white-txt-clr);
}

@media screen and (max-width: 1199px) {
  .product-dtls-slider {
    width: 50%;
    margin-right: 50px;
  }
  .product-dtls-slider .gamedetails-slider {
    max-height: 690px;
  }
  .product-dtls-slider .gamedetails-slider.owl-carousel .owl-item {
    padding-right: 0;
    padding-left: 0px;
  }
  .product-dtls-slider .gamedetails-slider.owl-carousel .owl-item.active {
    max-width: 0px !important;
  }
}
@media screen and (max-width: 767px) {
  .product-dtls-slider-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 550px;
  }
  .product-dtls-slider {
    width: 100%;
    margin-right: 0;
  }
  .product-dtls-slider .gamedetails-slider {
    max-height: 100%;
  }
  .product-dtls-slider-content {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 575px) {
  .product-dtls-slider .gamedetails-slider.owl-carousel .owl-dots {
    height: 330px;
  }
  .product-dtls-slider-content h4 {
    font-size: 20px;
    margin-top: 8px;
  }
  .product-dtls-slider-content .list {
    padding: 15px 0px;
  }
  .product-dtls-slider-content .list ul li {
    margin-bottom: 10px;
  }
  .product-dtls-slider-content .price span {
    font-size: 20px;
  }
  .product-dtls-slider-content .price h2 {
    font-size: 24px;
  }
  .product-dtls-slider-content .inc-dec input {
    height: 43px;
    width: 75px;
    font-size: 16px;
  }
  .product-dtls-slider-content .inc-dec .button {
    height: 43px;
    width: 75px;
  }
}
.add-cart-wrapper {
  max-width: 1115px;
  margin: 0 auto;
}

#add-cart-table {
  border-bottom: inherit !important;
  border-spacing: 0px 10px !important;
  text-align: center;
}
#add-cart-table .table-header tr {
  background: var(--header-bg);
}
#add-cart-table .table-header tr th {
  padding: 20px 0px 20px 80px;
  border: 0;
  font-size: 18px;
  font-weight: 100;
  font-family: var(--orbitron);
  line-height: 1.1;
  max-width: 200px;
}
#add-cart-table .table-header tr th::before, #add-cart-table .table-header tr th::after {
  display: none;
}
#add-cart-table .table-header tr th:first-child {
  text-align: left;
}
#add-cart-table .table-body tr {
  background-color: var(--header-bg);
  position: relative;
}
#add-cart-table .table-body tr .table-clse {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: var(--footer-overlay);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white-txt-clr);
  cursor: pointer;
}
#add-cart-table .table-body tr td {
  padding: 40px 0px 40px 80px;
}
#add-cart-table .table-body tr td .product-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
#add-cart-table .table-body tr td .product-info .info-image {
  width: 73px;
  height: 73px;
  margin-right: 10px;
}
#add-cart-table .table-body tr td .product-info .info-content span {
  font-size: 14px;
  line-height: 1;
  color: #CFCFCF;
}
#add-cart-table .table-body tr td .product-info .info-content h4 {
  font-family: var(--poppins);
  font-size: 18px;
  line-height: 1.3;
}
#add-cart-table .table-body tr td .inc-dec {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#add-cart-table .table-body tr td .inc-dec input {
  text-align: center;
  padding: 10px;
  height: 52px;
  width: 93px;
  background-color: var(--g-d-tag-clr);
  color: var(--white-txt-clr);
  border: 0;
  outline: none;
  font-size: 18px;
}
#add-cart-table .table-body tr td .inc-dec .button {
  background-color: var(--theme-bg-clr);
  height: 52px;
  width: 93px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
#add-cart-table .table-body tr td .inc-dec .button button {
  color: var(--white-txt-clr);
}
#add-cart-table .table-body tr td .price span {
  font-size: 18px;
  line-height: 1;
}
#add-cart-table .table-body tr td .total span {
  font-size: 18px;
  line-height: 1;
}

.cart-description {
  max-width: 1115px;
  margin: 50px auto 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cart-description .apply-promocode span {
  font-size: 18px;
  line-height: 1;
}
.cart-description .apply-promocode h4 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1;
}
.cart-description .apply-promocode .form {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.cart-description .apply-promocode .form input {
  height: 52px;
  max-width: 236px;
  width: 100%;
  padding: 15px;
}
.cart-description .apply-promocode .form button {
  height: 52px;
  background: var(--login-input-border);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px 20px;
  color: var(--white-txt-clr);
}
.cart-description .subtottal span {
  font-size: 18px;
  line-height: 1;
}
.cart-description .subtottal h4 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1;
}
.cart-description .subtottal h4 span {
  font-weight: 400;
  font-size: 16px;
}

@media screen and (max-width: 991px) {
  #add-cart-table .table-header tr th {
    padding: 15px 0px 15px 40px;
  }
  #add-cart-table .table-body tr .table-clse {
    width: 26px;
    height: 26px;
    left: 0;
  }
  #add-cart-table .table-body tr .table-clse i {
    font-size: 14px;
  }
  #add-cart-table .table-body tr td {
    padding: 20px 10px 20px 40px;
  }
  #add-cart-table .table-body tr td.dtr-control::before {
    left: 10px;
    height: 20px;
    width: 20px;
    margin-top: 0px;
    border: 0px;
    line-height: 20px;
    background-color: var(--theme-bg-clr);
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #add-cart-table .table-body tr td.child {
    text-align: left;
    padding: 20px 20px 20px 40px;
    background: var(--header-bg);
  }
  #add-cart-table .table-body tr td.child ul {
    display: block;
  }
  #add-cart-table .table-body tr td.child ul li span.dtr-title {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: var(--orbitron);
  }
  #add-cart-table .table-body tr td.child ul li span .inc-dec {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #add-cart-table .table-body tr td.child ul li span .inc-dec input {
    height: 45px;
    width: 70px;
  }
  #add-cart-table .table-body tr td.child ul li span .inc-dec .button {
    height: 45px;
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .cart-description {
    margin-top: 30px;
  }
  .cart-description .apply-promocode .form input {
    max-width: 180px;
  }
}
@media screen and (max-width: 575px) {
  #add-cart-table .table-header tr th {
    font-size: 16px;
    padding: 15px 20px 15px 40px;
  }
  #add-cart-table .table-body tr td .product-info .info-content h4 {
    font-size: 16px;
  }
  #add-cart-table .table-body tr td.child ul li span.dtr-title {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .cart-description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
  .cart-description .apply-promocode span {
    font-size: 16px;
  }
  .cart-description .apply-promocode h4 {
    font-size: 20px;
  }
  .cart-description .apply-promocode .form {
    margin-top: 10px;
  }
  .cart-description .apply-promocode .form input {
    max-width: 200px;
    padding: 10px;
    height: 50px;
  }
  .cart-description .apply-promocode .form button {
    height: 50px;
  }
  .cart-description .subtottal {
    margin-top: 20px;
  }
  .cart-description .subtottal span {
    font-size: 16px;
  }
  .cart-description .subtottal h4 {
    font-size: 20px;
  }
  .cart-description .subtottal a {
    margin-top: 10px;
  }
}
.checkOut-area {
  position: relative;
  z-index: 1;
}
.checkOut-area .shape {
  position: absolute;
  right: 10%;
  bottom: 0;
  max-width: 260px;
  -webkit-transform: rotate(15deg);
      -ms-transform: rotate(15deg);
          transform: rotate(15deg);
}

.checkOut-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.checkOut-title {
  margin-bottom: 30px;
}
.checkOut-title h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.checkOut-title .span-line {
  margin-top: 16px;
}
.checkOut-title .span-line span {
  width: 90px;
  height: 2px;
  display: block;
  background: var(--theme-bg-clr);
}
.checkOut-title .span-line span:last-child {
  margin-top: 6px;
  width: 50px;
}

.billing-info {
  max-width: 415px;
  width: 100%;
  margin-right: 30px;
}

.checkOut-single-info {
  margin-bottom: 20px;
}
.checkOut-single-info label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--orbitron);
  margin-bottom: 15px;
}

.checkOut-select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.checkOut-select .country .nice-select {
  background-color: var(--header-bg);
  -webkit-border-radius: 0px;
          border-radius: 0px;
  border: none;
  font-family: var(--poppins);
  font-size: 16px;
  height: 60px;
  padding: 20px;
  width: 190px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--login-input-border);
}
.checkOut-select .country .nice-select::after {
  right: 20px;
}
.checkOut-select .country .nice-select .list {
  background-color: var(--header-bg);
  -webkit-border-radius: 0px;
          border-radius: 0px;
  width: 100%;
}
.checkOut-select .country .option:hover, .checkOut-select .country .option.focus, .checkOut-select .country .option.selected.focus {
  background-color: var(--theme-bg-clr);
}

.zip-code input {
  width: 190px;
}

.additional-text {
  margin-top: 50px;
}
.additional-text textarea {
  height: 180px;
  resize: none;
}

.chackout {
  margin-top: 30px;
}
.chackout button {
  margin-top: 30px;
  display: block;
}

.checkOut-payment {
  max-width: 520px;
  width: 100%;
  margin-top: 90px;
}

.product-history h4 {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--poppins);
  line-height: 1;
}

.single-history {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: var(--header-bg);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  position: relative;
  margin-bottom: 20px;
}
.single-history .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: var(--login-input-border);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.single-history .product {
  width: 145px;
  height: 145px;
  margin-right: 20px;
}
.single-history .product img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-history .content span {
  color: var(--span-color);
  font-size: 14px;
  line-height: 1;
}
.single-history .content h6 {
  font-size: 18px;
  font-family: var(--poppins);
  line-height: 1.3;
  margin-top: 5px;
}
.single-history .content p {
  font-size: 18px;
  color: var(--theme-txt-clr);
  margin: 10px 0px;
}

.payment-info {
  margin-top: 50px;
}

.single-payment-info {
  margin-bottom: 30px;
}
.single-payment-info:last-child {
  margin-bottom: 0;
}
.single-payment-info .label-check {
  margin-right: 20px;
  font-size: 18px;
  font-weight: 600;
}
.single-payment-info .label-check input[type=radio] {
  display: none;
}
.single-payment-info .label-check input[type=radio]:checked ~ span::before {
  opacity: 1;
}
.single-payment-info .label-check span {
  width: 14px;
  height: 14px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border-color: var(--theme-bdr-clr);
  border-width: 1px;
}
.single-payment-info .label-check span::before {
  width: 6px;
  height: 6px;
  content: "";
  background-color: var(--theme-bg-clr);
  font-size: inherit;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
  top: 3px;
  left: 3px;
}
.single-payment-info p {
  padding-left: 30px;
  font-size: 14px;
  line-height: 1;
  margin-top: 5px;
}

.inc-dec {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.inc-dec input {
  text-align: center;
  padding: 10px;
  height: 52px;
  width: 93px;
  background-color: var(--g-d-tag-clr);
  color: var(--white-txt-clr);
  border: 0;
  outline: none;
  font-size: 18px;
}
.inc-dec .button {
  background-color: var(--theme-bg-clr);
  height: 52px;
  width: 93px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.inc-dec .button button {
  color: var(--white-txt-clr);
}

@media screen and (max-width: 991px) {
  .checkOut-area .shape {
    max-width: 150px;
  }
  .checkOut-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 600px;
  }
  .checkOut-title {
    margin-bottom: 20px;
  }
  .checkOut-title h4 {
    font-size: 20px;
  }
  .billing-info {
    max-width: 100%;
    margin-right: 0px;
  }
  .checkOut-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
  .checkOut-select .town {
    margin-top: 0;
  }
  .checkOut-select .country .nice-select {
    height: 50px;
    padding: 15px;
    width: 100%;
  }
  .checkOut-single-info label {
    margin-bottom: 10px;
  }
  .additional-text {
    margin-top: 30px;
  }
  .additional-text textarea {
    height: 130px;
    padding: 15px;
  }
  .chackout {
    margin-top: 10px;
  }
  .chackout button {
    margin-top: 20px;
  }
  .checkOut-payment {
    margin-bottom: 60px;
    margin-top: 0;
    max-width: 100%;
  }
  .payment-info {
    margin-top: 50px;
  }
  .product-history h4 {
    font-size: 20px;
  }
  .zip-code input {
    width: 100%;
  }
  .input-from input {
    height: 50px;
  }
}
@media screen and (max-width: 575px) {
  .checkOut-area .shape {
    max-width: 100px;
  }
  .checkOut-select {
    grid-template-columns: 1fr;
  }
  .single-history {
    padding: 15px;
  }
  .single-history .product {
    width: 100px;
    height: 100px;
    margin-right: 15px;
  }
  .single-history .content h6 {
    font-size: 16px;
  }
  .single-history .content p {
    font-size: 16px;
    margin: 5px 0px;
  }
  .inc-dec .button {
    height: 40px;
    width: 70px;
  }
  .inc-dec .button button {
    font-size: 14px;
  }
  .inc-dec input {
    height: 40px;
    width: 70px;
    font-size: 16px;
  }
  .single-payment-info {
    margin-bottom: 20px;
  }
  .single-payment-info .label-check {
    margin-right: 0px;
    font-size: 16px;
  }
}
.demo-hero-area {
  position: relative;
  z-index: 1;
}
.demo-hero-area .shape-01,
.demo-hero-area .shape-02,
.demo-hero-area .shape-03,
.demo-hero-area .shape-04,
.demo-hero-area .shape-05,
.demo-hero-area .shape-06,
.demo-hero-area .shape-07 {
  position: absolute;
  z-index: 1;
}
.demo-hero-area .shape-01 {
  top: 15%;
  left: 7%;
  -webkit-animation: rotate 1.4s linear infinite;
          animation: rotate 1.4s linear infinite;
}
.demo-hero-area .shape-02 {
  top: 20%;
  left: 14%;
  -webkit-animation: zoom 1.5s linear infinite;
          animation: zoom 1.5s linear infinite;
}
.demo-hero-area .shape-03 {
  top: 30%;
  left: 60%;
  -webkit-animation: rotate 1.4s linear infinite;
          animation: rotate 1.4s linear infinite;
}
.demo-hero-area .shape-04 {
  top: 25%;
  right: 2%;
  -webkit-animation: zoom 1.1s linear infinite;
          animation: zoom 1.1s linear infinite;
}
.demo-hero-area .shape-05 {
  bottom: 20%;
  left: 20%;
  -webkit-animation: zoom 1.3s linear infinite;
          animation: zoom 1.3s linear infinite;
}
.demo-hero-area .shape-06 {
  bottom: 10%;
  left: 55%;
  -webkit-animation: rotate 1.3s linear infinite;
          animation: rotate 1.3s linear infinite;
}
.demo-hero-area .shape-07 {
  bottom: 30%;
  right: 10%;
  -webkit-animation: zoom 1.2s linear infinite;
          animation: zoom 1.2s linear infinite;
}
.demo-hero-area .background-img::before {
  display: none;
}

.demo-banner-wrapper {
  padding: 40px 0px 200px;
}

.demo-banner-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.demo-banner-header .demo-logo {
  max-width: 280px;
}

.deo-herro-content {
  margin-top: 300px;
  max-width: 835px;
  margin-left: auto;
}
.deo-herro-content h2 {
  font-size: 90px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--theme-txt-clr);
  font-family: var(--poppins);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 3px;
  position: relative;
}
.deo-herro-content h2 img {
  position: absolute;
  left: -91px;
  bottom: 60%;
  max-width: 170px;
  width: 100%;
}
.deo-herro-content h6 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 30px;
}
.deo-herro-content .page-number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.deo-herro-content .page-number .home-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.deo-herro-content .page-number .home-page span {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
.deo-herro-content .page-number .home-page span sup {
  position: absolute;
  font-size: 24px;
  font-weight: 600;
  top: 5px;
  right: -10px;
}
.deo-herro-content .page-number .home-page p {
  margin-left: 15px;
  font-size: 24px;
  font-weight: 500;
}
.deo-herro-content .page-number .line-shape {
  max-width: 90px;
  width: 100%;
  margin-right: 20px;
}

@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@media screen and (max-width: 1350px) {
  .demo-hero-area .background-img::before {
    display: block;
  }
  .deo-herro-content {
    margin-top: 175px;
  }
}
@media screen and (max-width: 1199px) {
  .demo-hero-area .shape-05 {
    display: none;
  }
  .demo-banner-wrapper {
    padding: 40px 0px 100px;
  }
  .deo-herro-content {
    margin-top: 200px;
  }
  .deo-herro-content .page-number .home-page span {
    font-size: 70px;
  }
  .deo-herro-content .page-number .home-page p {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .demo-hero-area .shape-02 {
    display: none;
  }
  .demo-banner-wrapper {
    padding: 20px 0px 70px;
  }
  .deo-herro-content {
    margin-top: 140px;
  }
  .deo-herro-content h2 {
    font-size: 60px;
    padding-left: 50px;
  }
  .deo-herro-content h2 img {
    left: 0;
    bottom: 45%;
    max-width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .demo-hero-area .shape-01,
  .demo-hero-area .shape-02,
  .demo-hero-area .shape-05,
  .demo-hero-area .shape-07 {
    display: none;
  }
  .demo-banner-wrapper {
    padding: 20px 0px 30px;
  }
  .demo-banner-header .demo-logo {
    max-width: 200px;
  }
  .deo-herro-content {
    margin-top: 90px;
  }
  .deo-herro-content h2 {
    font-size: 54px;
    padding-left: 0px;
  }
  .deo-herro-content h2 img {
    bottom: 90%;
    max-width: 70px;
  }
  .deo-herro-content h6 {
    font-size: 24px;
    margin-top: 15px;
  }
  .deo-herro-content .page-number .home-page span {
    font-size: 60px;
  }
  .deo-herro-content .page-number .home-page span sup {
    font-size: 18px;
  }
  .deo-herro-content .page-number .home-page p {
    margin-left: 10px;
    font-size: 16px;
  }
  .deo-herro-content .page-number .line-shape {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .demo-hero-area .shape-04,
  .demo-hero-area .shape-05 {
    display: none;
  }
  .demo-hero-area .shape-01 {
    top: 3%;
    left: 4%;
    max-width: 20px;
  }
  .demo-hero-area .shape-03 {
    top: 30%;
  }
  .demo-hero-area .shape-06 {
    bottom: 3%;
    left: 80%;
    max-width: 20px;
  }
  .demo-banner-wrapper {
    padding: 10px 0px 70px;
  }
  .demo-banner-header a {
    margin-top: 10px;
  }
  .demo-banner-header a.demo-logo {
    margin-right: 30px;
    max-width: 150px;
  }
  .deo-herro-content h6 {
    font-size: 20px;
  }
  .deo-herro-content .page-number .line-shape {
    display: none;
  }
  .deo-herro-content .page-number .home-page span {
    font-size: 40px;
  }
  .deo-herro-content .page-number .home-page span sup {
    font-size: 16px;
    top: 0;
    right: -5px;
  }
  .deo-herro-content .page-number .home-page p {
    margin-left: 10px;
    font-size: 15px;
    line-height: 1.2;
  }
  .deo-herro-content .page-number .inner-page {
    margin-left: 20px;
  }
}
@media screen and (max-width: 384px) {
  .demo-banner-header {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}