/*
Theme Name: uw99
Author: the WordPress team
Author URI: https://wordpress.org
Description: Custom Gamer
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(180deg, rgb(254, 241, 219) 0%, rgb(253, 203, 137) 100%);
  color: #000;
}
.pointer {
  cursor: pointer;
}
img {
  max-width: 100%;
}
ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
}
.mtb-30 {
  margin: 30px auto;
}
.mtb-50 {
  margin: 50px auto;
}
h1,
h2,
h3,
h5,
h6 {
  margin-bottom: 5px;
}
.h1 {
  font-size: 36px;
  font-weight: bold;
}
.h2 {
  font-size: 30px;
  font-weight: bold;
}
.h3 {
  font-size: 24px;
  font-weight: bold;
}
.h4 {
  font-size: 16px;
  font-weight: bold;
}
.hide {
  display: none;
}
.App {
  height: 100%;
  width: 100%;
  background-size: cover;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
}
.logo-bar {
  background: #08091d;
}
.menu-bar {
  background: linear-gradient(180deg, rgb(254, 241, 219) 0%, rgb(253, 203, 137) 100%);
  padding: 20px;
}
.header-menu ul > li a {
  padding: 12px;
  display: inline-block;
}
.w-100 {
  width: 100%;
}
.container {
  max-width: 1600px;
  width: 100%;
  margin: auto;
  padding: 0 30px;
}
.color-secondary {
  color: #010053;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-space-between {
  justify-content: space-between;
}

.text-white {
  color: #fff;
}
.text-center {
  text-align: center;
}

.direction-column {
  flex-direction: column;
}
.g-5 {
  gap: 5px;
}
.g-10 {
  gap: 10px;
}
.g-20 {
  gap: 20px;
}
.g-30 {
  gap: 30px;
}
.m-auto {
  margin: auto !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}

.row {
  display: flex;
  flex: 1 1 auto;
  margin: 0 -12px;
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
  width: 100%;
  padding: 12px;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.flex-row {
  display: flex;
  gap: 30px;
}
.flex-row > div {
  flex: 1 1 0;
}

.flex-dir-col {
  flex-direction: column;
}

.no-gutter {
  margin: 0;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}

.h4 {
  font-size: 20px;
  font-weight: bold;
}

.header-menu {
  width: 100%;
}
.header-menu ul a,
.footer-menu a {
  color: #333;
  transition: 0.3s all;
}
.header-menu li:hover {
  cursor: pointer;
  background: #000;
}
.footer-menu a:hover {
  color: #010053;
}

.foot-cols {
  position: relative;
}
.foot-cols:first-child:before {
  display: none;
}
.foot-cols:before {
  left: -15px;
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  z-index: 9999;
  border-right: 1px dashed #000;
}
.foot-col-content {
  margin-top: 10px;
}

.main-wrapper {
  display: flex;
  margin-top: 90px;
}
.l-sidebar {
  width: 300px;
  flex-shrink: 0;
  position: fixed;
  height: calc(100vh - 90px);
  background: #fff;
  transition: 0.3s all;
  overflow: auto;
}
.main-content {
  width: calc(100% - 300px);
  margin-left: 300px;
  transition: 0.3s all;
}
.main-wrapper.closed .l-sidebar {
  width: 70px;
}

.main-wrapper.closed .l-sidebar .menu-bar {
  padding: 20px 10px;
}
.main-wrapper.closed .l-sidebar .menu-text {
  display: none;
}
.main-wrapper.closed .l-sidebar .menu-bar ul li a {
  justify-content: center;
}

.logo-bar .container {
  padding: 0 10px;
}

.main-wrapper.closed .main-content {
  width: calc(100% - 70px);
  margin-left: 70px;
}

#slider-area {
  background: #eee;
}
.intro-text {
  line-height: 28px;
  text-align: center;
  border: 1px solid #999;
  border-radius: 10px;
  padding: 10px;
  background: #f4f4f4;
}

.hero-section img {
  border-radius: 20px;
  width: 100%;
}

.menu-bar ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-bar ul li a {
  display: flex;
  align-items: center;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  background: #08091d;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  gap: 8px;
}

.four-link-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.four-link-btns a {
  background: #010053;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.four-link-btns a:hover {
  background: #720404;
  color: #fff;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.zoom {
  animation: zoomInOut 2s ease-in-out infinite;
}

.three-boxes {
  margin: auto;
}

.three-boxes > div {
  background: #fff;
  box-shadow: 0px 1px 28px 0px rgba(12, 60, 96, 0.12);
  padding: 20px;
  text-align: center;
  border-radius: 6px;
}

#marquee-row {
  background-color: linear-gradient(-90deg, #f5e3d0 0%, #e0c7ae 100%);
  color: #000;
  padding: 5px 0;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.four-boxes {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 20px;
}
.four-boxes > div {
  padding: 10px;
  color: #000;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0px 1px 28px 0px rgba(12, 60, 96, 0.12);
  background: #ddd;
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  gap: 20px;
}
.four-boxes img {
  width: 100px;
}

footer {
  background: #08091d;
  padding: 30px 0px;
  color: #fff;
}
.header-btns {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-btns span {
  padding: 7px 16px;
  border-radius: 5px;
  font-size: 15px;
  min-width: 90px;
  text-align: center;
  transition: all 0.3 ease;
  cursor: pointer;
}
.btn-primary {
  color: #000;
  border: 2px solid #efefef;
}
.btn-primary:hover {
  filter: contrast(0.9);
}
.btn-secondary {
  background: #ff780f;
  color: #000;
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: #e0c7ae 0px -2px inset;
}
.btn-secondary:hover {
  filter: contrast(0.9);
}

.hr {
  margin: 25px 0;
  border-width: 2px;
  background-image: linear-gradient(
    to right,
    #000 50%,
    rgba(255, 255, 255, 0) 0%
  );
  background-position: bottom;
  background-size: 6px 2px;
  background-repeat: repeat-x;
  height: 1px;
}

.hero-section {
  position: relative;
  min-height: 280px;
}
.hero-section .main-screen-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
}
.hero-section .container {
  z-index: 2;
  position: relative;
}
.game-tab {
  display: flex;
  gap: 10px;
  padding: 5px;
  border-radius: 50px;
  max-width: 100%;
  overflow: auto;
}
.game-tab li {
  padding: 8px 15px;
  border-radius: 8px;
  border: 1px solid #e0c7ae;
  white-space: nowrap;
}

.game-tab li.active,
.game-tab li:hover {
  background: #e0c7ae;
  color: #000;
  cursor: pointer;
}

.game-list {
  margin-top: 10px;
  margin-bottom: 20px;
}

.game-list .game-ul:not(.active) {
  display: none;
}

.page-content .game-list .row ul {
  padding-left: 0;
  justify-content: flex-start;
}
.game-list ul li {
  list-style: none;
}

.download-heading {
  font-size: 35px;
}
.download-heading span {
  color: #010053;
}

.page-content {
  padding: 12px;
  margin: auto;
}
.page-content p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 25px;
}
.page-content ul {
  padding-left: 15px;
}
.page-content li {
  list-style: disc;
  margin-bottom: 5px;
}
.page-content a {
  text-decoration: underline;
  color: #720404;
}

.page-content table {
  border-color: #eee;
  border-collapse: collapse;
  margin: auto;
  margin-bottom: 20px;
}
.page-content table td,
.page-content table th {
  padding: 10px;
}

.copy-right {
  color: var(--v-description-darken3);
  font-size: 12px;
}
.img-content {
  display: block;
  margin: 30px auto 10px auto;
}

.footer-menu a:hover {
  text-decoration: underline;
}
#footer-btns {
  display: none;
  justify-content: space-between;
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  z-index: 9;
}
#footer-btns > span {
  background: linear-gradient(135deg, #025bfe 0%, #703aef 100%);
  color: #fff;
  width: 50%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}
.btn-login {
  background: #ccc !important;
  color: #000 !important;
}

.two-slider > div {
  max-width: 50%;
}

.foot-cols img {
  max-height: 50px;
}

.header-menu-mob {
  background: #444;
}
.header-menu-mob a {
  padding: 10px;
  display: block;
}

.show-more-btn {
  background: #010053;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  margin-bottom: 10px;
  border: 0;
}

.hide {
  display: none;
}

.testimonial-item {
  background: #fff;
  border-radius: 10px;
}
.testimonial-head {
  font-size: 20px;
  font-weight: bold;
  color: #010053;
  margin-bottom: 5px;
  padding: 10px;
}
.testimonial-by {
  padding: 10px;
  font-size: 14px;
  font-style: italic;
  color: #000;
  background: #e0c7ae;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
}
.testimonial-by > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-desc {
  padding: 10px;
}

.hamburger,
.hamburger-cross {
  display: none;
}
.faq-item {
  background: #08091d;
  border-radius: 10px;
  border: 1px solid #e0c7ae;
}
.faq-body {
  border-top: 1px solid #fff;
  padding: 10px 10px 10px 10px;
  color: #fff;
}
.faq-toggle {
  background: #fdd7a3;
  color: #000;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  font-size: 25px;
  line-height: 22px;
  text-align: center;
  font-weight: normal;
}
.faq-head {
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  border-radius: 8px 8px 0px 0px;
}

.faq-item.active .faq-head {
  background: #08091d;
}

.faq-item.active .faq-toggle {
  border: 1px solid;
}

.game-section {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); */
  column-gap: 20px;
  margin: 10px auto 20px auto;
  row-gap: 20px;
  max-width: 1150px;
  grid-template-columns: repeat(3, 1fr);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.game-card {
  border-radius: 18px;
  color: #fff;
  position: relative;
  min-height: 320px;
  padding: 20px;
  width: calc(33% - 10px);
}

.game-card img {
  width: 130px;
  margin-top: -60px;
}

.game-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.game-card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.9;
}

.game-card button {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

/* Card Colors */
.blue {
  background: linear-gradient(135deg, #116881, #0072ff);
}
.blue button {
  background: #005580;
}

.purple {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}
.purple button {
  background: #370090;
}

.red {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
}
.red button {
  background: #a00000;
}

.green {
  background: linear-gradient(135deg, #00b09b, #96c93d);
}
.green button {
  background: #007e39;
}

.orange {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #2b2b2b;
}
.orange button {
  background: #8e4e00;
  color: #fff;
}

/* Hover effect */
.game-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.game-section img {
  border-radius: 12px;
}

.usp-wrapper {
  display: flex;
  margin-top: 50px;
  color: #000;
  flex-wrap: wrap;
  gap: 40px;
}
.uspimg {
  margin-top: -25px;
}
.usp-title {
  font-weight: bold;
  font-size: 22px;
}
.usp-box {
  position: relative;
  max-width: calc(33.33% - 42px);
  display: inline-block;
  background: #e0c7ae;
  margin: 0.5%;
  border-radius: 10px;
  padding: 0px 15px 15px;
}

.seo-wrapper {
  position: relative;
  font-size: 13px;
  max-height: 300px;
  overflow: hidden;
}
.readmore-seo {
  text-align: center;
  margin-top: -40px;
}
.seo-wrapper::after {
  content: "";
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  pointer-events: none;
  background: linear-gradient(
    rgba(22, 24, 39, 0) 0%,
    rgb(174 174 174) 91%,
    rgb(255 255 255) 100%
  );
}
button.read-more {
  position: relative;
  min-width: 100px;
  height: 35px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  background: rgb(43, 50, 72);
  border-radius: 7px;
  margin: 0px auto 0px 8px;
  padding: 2px 10px;
  cursor: pointer;
}

.menu-open-close {
  cursor: pointer;
  transform: rotate(180deg);
  transition: 0.3s all;
}

.menu-open-close.active {
  transform: rotate(0deg);
}

.seo-wrapper.show-all {
  overflow: unset;
  max-height: none;
}
.seo-wrapper.show-all::after {
  display: none;
}

.f_links {
  max-width: 180px;
}

.toggleMain {
  position: fixed;
  right: -246px;
  top: 161px;
  z-index: 99;
  transition: 0.3s;
  height: 180px;
}
.toggleLeft {
  cursor: pointer;
  float: left;
  height: 170px;
  width: 42px;
  background: #deae37;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
  border-top-right-radius: 0.05rem;
  border-bottom-right-radius: 0.05rem;
  background-image: url(/wp-content/themes/uw99/assets/images/contact-us-bar.png);
}
.downloadTitle {
  color: #000;
  margin-left: 0px;
  margin-top: 30px;
  height: 100px;
  font-weight: bold;
}
.hotgameIconGif {
  margin-top: 140px;
  position: absolute;
}
.toggleLeftInfo {
  float: left;
  background-color: #000;
  border-bottom-left-radius: 10px;
  border-bottom: 1px solid #2c2c2c;
  border-right: 1px solid #2c2c2c;
  border-top: 1px solid #2c2c2c;
}

.toggleMain.show {
  right: 0;
}
.downloadimg img {
  width: 112px;
  padding: 3px;
}

.game-ul li {
  width: calc(16% - 2px);
}
.game-ul img {
  width: 100%;
  height: auto;
}

.download-btn {
  border-radius: 10px;
  display: inline-block;
  padding: 10px 20px;
  background: #e0c7ae;
  line-height: 18px;
  font-size: 16px;
}

.main-content a{
  color: #000;
}

@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
  img {
    height: auto;
  }
  #footer-btns {
    display: flex;
  }

  .row {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  #logo-block img {
    height: auto;
  }
  #slider-area img {
    min-height: 75px;
  }
  #top_image {
    min-height: 115px;
  }
  #tfp-header-ad {
    height: 50px;
    position: fixed1;
    top: 0;
    width: 100%;
    background: #f2f2f2;
    z-index: 990000;
  }
  #header_top_main {
    margin-top: 5px;
    min-height: 250px;
  }
  #footer-sticky-ad {
    position: fixed;
    bottom: 0;
    z-index: 99;
    width: 100%;
    background: #f2f2f2;
  }

  footer .col-2,
  footer .col-5 {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center !important;
    text-align: center;
  }
  .flex-row > div {
    flex: unset;
    width: 100%;
    max-width: 100%;
  }
  main .row {
    padding: 10px;
  }
  .game-tab li {
    padding: 8px 20px;
  }
  .two-slider > div,
  .foot-cols {
    max-width: max-content;
  }
  .four-boxes {
    gap: 10px;
    gap: 20px;
    flex-direction: column;
  }
  .four-boxes > div {
    width: 100%;
    min-height: 180px;
  }
  .four-boxes p {
    font-size: 12px;
  }
  .hamburger {
    display: block;
    font-size: 25px;
    color: #fff;
  }
  .menu-bar {
  }
  .header-menu ul {
    display: block;
  }
  .logo-bar .col-3 {
    width: 100%;
    flex: 1;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #logo-block {
    width: 25%;
  }
  .logo-bar .col-9 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    justify-content: center;
  }
  .menu-bar.shown {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
  }
  .header-menu {
    padding-top: 30px;
  }
  .hamburger-cross {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 25px;
    color: #fff;
  }
  .hero-section {
    min-height: 110px;
  }
  .game-card {
    width: 100%;
  }
  .download-section {
    background-position: center;
  }
  .three-boxes {
    flex-direction: column;
  }
  .four-link-btns {
    margin: auto;
    flex-wrap: wrap;
  }
  .main_h1 {
    flex-direction: column;
  }
  .content-area .col-8 {
    max-width: 100%;
  }
  .l-sidebar {
    top: 70px;
    width: 100% !important;
    z-index: 9;
    height: calc(100vh - 130px);
  }
  .main-wrapper:not(.closed) .l-sidebar {
    display: none;
  }
  .main-content {
    margin-left: 0;
    width: 100%;
  }
  .usp-box {
    max-width: 100%;
  }
  .main-wrapper.closed .l-sidebar .menu-bar ul li a {
    justify-content: flex-start;
  }
  .foot-cols:first-child:before {
    display: block !important;
  }
  .foot-cols:before {
    left: 0;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    border-bottom: 1px dashed #000;
    bottom: -15px;
    border-right: 0;
  }
  footer .hr {
    display: none;
  }
  .main-wrapper.closed .main-content {
    width: calc(100% - 0px);
    margin-left: 0px;
  }
  .menu-open-close {
    transform: rotate(0deg);
  }
  .menu-open-close.active {
    transform: rotate(180deg);
  }
  .main-wrapper.closed .l-sidebar .menu-text {
    display: block;
  }
  .f_links {
    max-width: 100%;
  }
  .logo-bar .col-9 {
    display: none;
  }
  .game-ul li {
    width: calc(33% - 6px);
  }
  .game-ul img {
    width: 100%;
    height: auto;
  }
}
