@import url("bootstrap.min.css");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
@import url("owl.carousel.min.css");
@import url("owl.theme.default.min.css");
@import url("gallery.css");
@import url("jquery-ui.css");
@import url("animate.min.css");
/*-- font style --*/
/*-- media query --*/
@import 'nice-selct.css';
* {
  outline: none;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: #088151;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: #571ce0;
}

:focus-visible {
  outline: none;
}

button:focus:not(:focus-visible) {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

::-moz-placeholder {
  color: #088151 !important;
  opacity: 1;
}

::placeholder {
  color: #088151 !important;
  opacity: 1;
}

.form-floating:not(.form-control:disabled)::before {
  width: auto;
}

.form-floating > .form-control {
  line-height: inherit;
}

.btn-wrapper {
  height: auto;
}
.btn-wrapper .menu-toggle {
  min-height: 40px;
  border-radius: 1.25rem;
}
.btn-wrapper .menu-toggle .icon-bars {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  transition: transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before, .btn-wrapper .menu-toggle .icon-bars::after {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #ffffff;
  content: "";
  position: absolute;
  left: 0;
  transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before {
  top: 0.5em;
}
.btn-wrapper .menu-toggle .icon-bars::after {
  top: -0.5em;
}
.btn-wrapper .menu-toggle:active .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.btn-wrapper .menu-toggle:active .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.btn-wrapper .menu-toggle:active .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

.menu--is-revealed .menu-toggle .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.menu--is-revealed .menu-toggle .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.menu--is-revealed .menu-toggle .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: #ffffff;
}

a,
a:hover {
  text-decoration: none;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

.font-black {
  font-weight: 900;
}

.bg-color {
  background-color: #000;
}

.theme-bg-primary {
  background-color: #000;
}

.theme-bg-secondary {
  background-color: #088151;
}

.theme-bg-accent-one {
  background-color: #000000;
}

.theme-bg-accent-two {
  background-color: #878A9B;
}

.theme-bg-accent-three {
  background-color: #c1cf00;
}

.theme-transparent-bg {
  background-color: rgba(87, 28, 224, 0.1);
}

.theme-gradient-bg {
  /* background: #000 url('/assets/images/diamond_plate.jpg') repeat top left; */
  backgrpound: #000;
}

.theme-text-white {
  color: #ffffff;
}

.theme-text-primary {
  color: #571ce0;
}

.theme-text-secondary {
  color: #088151;
}

.theme-text-accent-one {
  color: #000000;
}

.theme-text-accent-two {
  color: #878A9B;
}

.theme-text-accent-three {
  color: #c1cf00;
}

.theme-box-shadow {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

.theme-border-radius {
  border-radius: 1.25rem;
}

.theme-border {
  border: 2px solid #571ce0;
}

.theme-border-white {
  border: 2px solid #ffffff;
}

.min-w-150 {
  min-width: 150px;
}

.fs-big {
  font-size: 1.2rem;
  line-height: 36px;
}

.z-in-2 {
  z-index: 2;
}

.img-effect img {
  transition: all 0.4s ease-in-out;
}
.img-effect:hover img {
  transform: scale(1.5);
}

.custom-btn-primary {
  background-color: #571ce0;
  color: #ffffff;
  min-width: 170px;
  min-height: 50px;
  border: 0;
}

.custom-btn-secondary {
  background-color: #088151;
  color: #ffffff;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
}
.custom-btn-secondary:hover {
  background-color: #571ce0;
  color: #ffffff;
}

.custom-link {
  background-color: #088151;
  color: #ffffff;
  min-width: 100px;
  min-height: 50px;
  border: 2px solid #088151;
}
.custom-link:hover {
  background-color: transparent;
  color: #088151;
  border: 2px solid #088151;
}

.primary-btn-effect {
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  background-color: transparent;
  border: 2px solid #c01c1c;
  border-radius: 1.25rem;
  transition: all 0.15s ease-in-out;
  color: #ffffff;
}
.primary-btn-effect:hover {
  box-shadow: 0 0 10px 0 #c01c1c inset, 0 0 10px 2px #c01c1c;
  border: 2px solid #c01c1c;
  color: #ffffff;
  background-color: #c01c1c;
}

.icon-wrapper {
  box-shadow: 0 0 0px 0px rgba(251, 37, 118, 0.5);
  cursor: pointer;
  border-radius: 50%;
  transition: 250ms color;
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0px 0px rgba(251, 37, 118, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 15px rgba(251, 37, 118, 0);
  }
}

*::-webkit-scrollbar-track {
  background: #000849;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-button,
*::-webkit-scrollbar-thumb {
  background-color: #571ce0;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #571ce0;
  background-color: transparent;
  color: #088151;
  box-shadow: 0 0 10px 0 #571ce0 inset, 0 0 10px 2px #571ce0;
}

.form-control-th {
  height: 50px;
  background: #000849;
  border: 1px solid #571ce0;
  color: #088151;
  border-radius: 50rem;
}

.form-check-input {
  border: 2px solid #571ce0;
  height: 24px;
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
  vertical-align: top;
  background-color: transparent;
  margin-top: 0px;
  cursor: pointer;
}
.form-check-input:checked {
  background-color: #571ce0;
  border-color: #571ce0;
}

.form-check-label {
  cursor: pointer;
}

.ui-widget-header {
  background-color: #571ce0 !important;
  color: #000000 !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #571ce0 !important;
  background: #571ce0 !important;
  font-weight: normal;
  color: #ffffff;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid transparent;
  background: rgba(0, 0, 0, 0.8) !important;
  font-weight: normal;
  color: #ffffff !important;
}

.table-responsive .table {
  margin-bottom: 0;
}
.table-responsive .table tr {
  background-color: rgba(87, 28, 224, 0.2);
  border-bottom: 1px solid #571ce0;
}
.table-responsive .table tr th:first-child,
.table-responsive .table tr td:first-child {
  text-align: center;
}
.table-responsive .table tr th {
  background-color: rgba(0, 0, 0, 0.5);
}
.table-responsive .table tr td {
  background-color: transparent;
}
.table-responsive .table tr th,
.table-responsive .table tr td {
  color: #ffffff;
  vertical-align: middle;
  padding: 1rem;
}
.table-responsive .table tr th img,
.table-responsive .table tr td img {
  margin-right: 0px;
}
.table-responsive .table tr th.prize,
.table-responsive .table tr td.prize {
  color: #c1cf00;
  font-weight: 600;
}
.table-responsive .table tbody tr:last-child {
  border-bottom: 0px solid transparent;
}

.left-align-tbl .table-responsive .table th,
.left-align-tbl .table-responsive .table td {
  text-align: left;
  vertical-align: middle;
  padding: 30px 40px;
}

.texture-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  background-image: url(/assets/images/section/faq-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}
.texture-bg:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  right: 0;
  bottom: 0;
}

.highlight {
  position: relative;
  display: flex;
  justify-content: center;
}
.highlight:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #088151;
  bottom: -5px;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #ffffff;
  z-index: 9999;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-loader .loader {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: linear-gradient(0deg, rgba(251, 37, 118, 0.2) 33%, #571ce0 100%);
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.page-loader .loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #ffffff;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.header {
  background-color: rgba(0, 0, 0, 0.9);
  position: absolute;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 992px) {
  .header .navbar-collapse .navbar-nav {
    height: 200px;
    margin: 20px 0;
    overflow-y: auto;
  }
}
.header .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  padding: 1.2rem 1rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .nav-item .nav-link {
    padding: 0.8rem 0rem;
    border-bottom: 1px solid #ffffff;
  }
}
.header .navbar-nav .nav-item.active {
  position: relative;
}
.header .navbar-nav .nav-item.active a {
  color: #088151;
}
.header .navbar-nav .nav-item.active:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #088151;
  position: absolute;
  bottom: 0;
  display: block;
  left: 43%;
  border-radius: 3rem;
}
.header .navbar-nav .nav-item .dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}
.header .navbar-nav .nav-item .dropdown-menu .active {
  position: relative;
}
.header .navbar-nav .nav-item .dropdown-menu .active a {
  color: #571ce0;
}
.header .navbar-nav .nav-item .dropdown-menu .active:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #571ce0;
  position: absolute;
  bottom: 0;
  display: block;
  left: 0.8rem;
  border-radius: 3rem;
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  color: #000000;
  padding: 0.5rem 1rem;
  font-weight: 600;
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background-color: #571ce0;
  color: #ffffff;
}
.header .navbar-nav .nav-item .dropdown-menu .sub::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  vertical-align: 0;
}
.header .navbar-nav .nav-item .dropdown-menu li {
  position: relative;
}
.header .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-submenu {
  display: block;
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .nav-item .dropdown-menu .dropdown-submenu {
    position: relative;
    left: 0;
    top: 0;
  }
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}
.header.transparent-bg {
  background-color: transparent;
}

.smooth {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.9) !important;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.left-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 2px solid #571ce0;
  border-radius: 1.25rem;
  width: 1rem;
  height: 1rem;
  padding: 1rem;
}
.left-menu:hover {
  background-color: #571ce0;
}
.left-menu i {
  color: #ffffff;
}

.menu-close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 2px solid #088151;
  border-radius: 1.25rem;
  width: 1rem;
  height: 1rem;
  padding: 1rem;
}
.menu-close-btn i {
  color: #ffffff;
}

.wrap-menu .menuList li {
  line-height: 3rem;
}
.wrap-menu .menuList li a {
  color: #ffffff;
  display: flex;
}
.wrap-menu .menuList li a:hover {
  color: #088151;
}
.wrap-menu .social a {
  color: #ffffff;
}
.wrap-menu .social a:hover {
  color: #571ce0;
}

.single {
  position: absolute;
  top: 12px;
  right: 20px;
}
@media screen and (max-width: 992px) {
  .single {
    top: 6px;
    right: 60px;
  }
}

.nav-effect {
  position: relative;
}
.nav-effect::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 43%;
  width: 0.5rem;
  height: 0.5rem;
  background: #088151;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .nav-effect::before {
    left: 0%;
  }
}
.nav-effect:hover:before {
  transform-origin: center center;
  transform: scale(1, 1);
}

.hero {
  position: relative;
}
.hero .bg {
  background-color: #000849;
  background-image: url(/assets/images/hero/hero-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  background-size: cover;
  height: 100vh;
}
@media screen and (max-width: 992px) {
  .hero .bg {
    height: auto;
  }
}
.hero .max {
  max-width: 650px;
  margin: 0 auto;
}
.hero .shape-wrap img {
  position: absolute;
}
.hero .shape-wrap .obj-1 {
  right: 4%;
  top: 15%;
  animation: rippleEffect 5s linear infinite;
}
.hero .shape-wrap .obj-2 {
  right: 8%;
  bottom: 30%;
  animation: ripple2Effect 5s linear infinite;
}
.hero .video-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 15rem 0;
}
.hero .video-image .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero .video-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.hero-boxed {
  padding-top: 4rem;
}
.hero-boxed .owl-stage-outer {
  border-radius: 1.25rem;
}
.hero-boxed #hero-boxed-slider.owl-carousel .owl-item {
  border-radius: 1.25rem;
}
.hero-boxed #hero-boxed-slider.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  text-align: center;
}
.hero-boxed #hero-boxed-slider.owl-carousel .owl-dots button {
  height: 8px;
  width: 8px;
  background: #571ce0;
  border-radius: 50%;
  margin-right: 10px;
}
.hero-boxed #hero-boxed-slider.owl-carousel .owl-dots button.active {
  background: #ffffff;
}
.hero-boxed #hero-boxed-slider.owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}
.hero-boxed #hero-boxed-slider.owl-carousel .owl-nav button {
  font-size: 1.2rem;
  height: 46px;
  width: 46px;
  background: rgba(0, 0, 0, 0.6);
  line-height: 46px;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -46px;
  border-radius: 1.25rem;
  transition: all ease-in-out 0.3s;
}
.hero-boxed #hero-boxed-slider.owl-carousel .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.9);
}
.hero-boxed #hero-boxed-slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 0px;
}
.hero-boxed #hero-boxed-slider.owl-carousel .owl-nav button span {
  display: block;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .hero-boxed #hero-boxed-slider.owl-carousel .owl-nav {
    display: none;
  }
}
.hero-boxed .hero-boxed-items {
  display: flex;
  justify-content: center;
  align-items: end;
  padding-bottom: 1rem;
  min-height: 50vh;
  border-radius: 1.25rem;
  overflow: hidden;
}
.hero-boxed .hero-boxed-items:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  border-radius: 1.25rem;
}
.hero-boxed .hero-boxed-items .hero-con {
  position: relative;
  z-index: 9;
  text-align: center;
}
.hero-boxed .hero-boxed-items .hero-con .heading {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 52px;
  margin-top: 35px;
  margin-bottom: 8px;
  position: relative;
}
.hero-boxed .hero-boxed-items .hero-con p {
  color: #ffffff;
  margin-bottom: 40px;
  position: relative;
}

.hero-single {
  padding-top: 4rem;
}
.hero-single .owl-stage-outer {
  border-radius: 1.25rem;
}
.hero-single #hero-single-slider.owl-carousel .owl-item {
  border-radius: 1.25rem;
}
.hero-single #hero-single-slider.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  text-align: center;
}
.hero-single #hero-single-slider.owl-carousel .owl-dots button {
  height: 8px;
  width: 8px;
  background: #571ce0;
  border-radius: 50%;
  margin-right: 10px;
}
.hero-single #hero-single-slider.owl-carousel .owl-dots button.active {
  background: #ffffff;
}
.hero-single #hero-single-slider.owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}
.hero-single #hero-single-slider.owl-carousel .owl-nav button {
  font-size: 1.2rem;
  height: 46px;
  width: 46px;
  background: rgba(0, 0, 0, 0.6);
  line-height: 46px;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -46px;
  border-radius: 1.25rem;
  transition: all ease-in-out 0.3s;
}
.hero-single #hero-single-slider.owl-carousel .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.9);
}
.hero-single #hero-single-slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 0px;
}
.hero-single #hero-single-slider.owl-carousel .owl-nav button span {
  display: block;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .hero-single #hero-single-slider.owl-carousel .owl-nav {
    display: none;
  }
}
.hero-single .hero-single-items {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
  min-height: 75vh;
  border-radius: 1.25rem;
  overflow: hidden;
}
.hero-single .hero-single-items:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  border-radius: 1.25rem;
}
.hero-single .hero-single-items .hero-con {
  position: relative;
  z-index: 9;
  text-align: center;
}
.hero-single .hero-single-items .hero-con .heading {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 52px;
  margin-top: 35px;
  margin-bottom: 8px;
  position: relative;
}
.hero-single .hero-single-items .hero-con p {
  color: #ffffff;
  margin-bottom: 40px;
  position: relative;
}

.games {
  position: relative;
}
.games .frame {
  direction: rtl;
  margin-top: 6rem;
}
.games .frame img {
  max-width: unset;
}
@media screen and (max-width: 992px) {
  .games .frame img {
    max-width: 100%;
  }
}
.games .game-card {
  transition: all 0.3s ease-in;
}
.games .game-card .icon-bg {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 2px solid #571ce0;
  align-items: center;
  justify-content: center;
  display: flex;
  margin: 0 auto;
}
.games .game-card:hover {
  transform: translateY(-5px);
  background-color: #571ce0;
}

@keyframes rippleEffect {
  0% {
    transform: translate(0px, 0px);
  }
  33% {
    transform: translate(5px, -5px);
  }
  66% {
    transform: translate(-5px, 5px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes ripple2Effect {
  0% {
    transform: translate(0px, 0px);
  }
  33% {
    transform: translate(-5px, -5px);
  }
  66% {
    transform: translate(5px, 5px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.tournaments {
  position: relative;
  background-image: url(/assets/images/section/tournament-bg.jpg);
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
.tournaments:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 8, 73, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  right: 0;
  bottom: 0;
}
.tournaments .nav-pills button {
  text-align: left;
  background-color: transparent;
  color: #088151;
  padding: 1rem;
  border-radius: 1.25rem;
}
.tournaments .nav-pills button.active {
  background-color: #571ce0;
}
.tournaments .nav-pills button.active .game-icon svg {
  fill: #ffffff;
}
.tournaments .nav-pills button .game-icon svg {
  width: 20px;
  height: 20px;
  fill: #088151;
}
.tournaments .all-tournament ul li a {
  color: #ffffff;
  padding: 0.5rem;
  border-radius: 1.25rem;
}
.tournaments .all-tournament ul li a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.tournaments .all-tournament .all-game-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #088151;
  display: inline-block;
  margin-right: 0.5rem;
  text-align: center;
  line-height: 32px;
}
.tournaments .all-tournament .all-game-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
.tournaments #countdown {
  display: flex;
  justify-content: center;
}
.tournaments #countdown div {
  font-size: 1.5rem;
  padding: 0.5rem;
  margin: 0.5rem;
  background-color: #000000;
  color: #c1cf00;
  border-radius: 1.25rem;
}
.tournaments #countdown div:before {
  content: ":";
  color: #ffffff;
  margin-left: 42px;
  position: absolute;
}
.tournaments #countdown div:last-child:before {
  display: none;
}

.tournament-card .head-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .tournament-card .head-sec {
    flex-direction: column;
    align-items: start;
  }
}
.tournament-card .head-sec .tag {
  min-height: 50px;
  align-items: center;
}
.tournament-card .body-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .tournament-card .body-sec {
    flex-direction: column;
  }
}
.tournament-card .body-sec .vs {
  display: inline-block;
  border: 2px solid #088151;
  border-radius: 50%;
  text-align: center;
  margin: 15px auto 0;
  font-size: 12px;
  font-weight: 700;
  width: 30px;
  height: 30px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tournament-card .body-sec .icon-bg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #571ce0;
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
  display: flex;
  margin: 0 auto;
}
.tournament-card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.more-game {
  position: relative;
  background-image: url(/assets/images/section/texture-bg.jpg);
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
.more-game:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 8, 73, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  right: 0;
  bottom: 0;
}
.more-game .more-game-card {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid #571ce0;
  transition: all 0.3s ease-in;
}
.more-game .more-game-card:hover {
  transform: translateY(-5px);
  background-color: rgba(0, 0, 0, 0.5);
}
.more-game .more-game-card .icon-bg {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
}

.contest .wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.contest .wrap img {
  margin-right: 1.5rem;
}
.contest .wrap .wrap-head {
  flex: 1;
  text-align: center;
}
.contest .box {
  border-radius: 1.25rem;
  background-color: #000000;
  padding: 1rem;
  border: 2px solid #ffffff;
  margin-bottom: 30px;
}
.contest .box .box-card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contest .box .box-card .left {
  display: flex;
  align-items: center;
}
.contest #pills-tab-contest li button {
  background-color: #000000;
  color: #ffffff;
  min-width: 190px;
}
.contest #pills-tab-contest li button.active {
  background-color: #571ce0;
}
.contest #pills-tab-contest li button:last-child {
  margin-left: 1rem;
}
@media screen and (max-width: 575px) {
  .contest #pills-tab-contest li button:last-child {
    margin-top: 1rem;
  }
}

.features {
  position: relative;
  background-image: url(/assets/images/section/features-bg.png);
  background-repeat: repeat;
  background-size: contain;
  background-position: top center;
  z-index: 1;
}
.features:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 8, 73, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  right: 0;
  bottom: 0;
}
.features:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(/assets/images/section/bet-this-game-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  z-index: -2;
}
.features .icon-bg img {
  width: auto;
  margin: auto;
}
.features .owl-carousel {
  margin-top: 4rem;
}
.features .owl-nav {
  position: absolute;
  top: -70px;
  margin: 0;
  left: 0;
  width: 100%;
}
.features .owl-nav button.owl-prev,
.features .owl-nav button.owl-next {
  padding: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #571ce0;
  font-size: 2rem;
}
.features .owl-nav button.owl-prev:hover,
.features .owl-nav button.owl-next:hover {
  background-color: #088151;
  border: 2px solid #088151;
}

.about .head-content {
  margin-bottom: 3rem;
}
.about .list-content .list {
  display: flex;
  margin-bottom: 3rem;
}
.about .list-content .list .image-icon img {
  max-width: initial;
}
.about .list-content .list .con {
  margin-left: 1rem;
}
@media screen and (max-width: 992px) {
  .about .frame {
    width: 60%;
    padding-top: 40px;
    margin: auto;
  }
}

.experience {
  /* position: relative; */
  background-image: url(/assets/images/experience-bg.jpg);
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
.experience:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  /* background-color: rgba(0, 8, 73, 0.6); */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  right: 0;
  bottom: 0;
}
.experience .list {
  display: flex;
  margin-bottom: 3rem;
}
.experience .list .image-icon img {
  max-width: initial;
}
.experience .list .con {
  margin-left: 1rem;
  text-align: center;
}

.howtoplay .step-card {
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 2rem 0;
  border: 2px solid #ffffff;
}
.howtoplay .step-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -3rem;
  left: -0.2rem;
  /* background: rgba(87, 28, 224, 0.9); */
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 20px 0px 0px 0px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}
.howtoplay .step-card:hover:before {
  transform: scale(50);
}
.howtoplay .step-card:hover p {
  transition: all 0.3s ease-out;
}
.howtoplay .step-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  font-size: 4rem;
}
.howtoplay .step-corner .step-arrow {
  color: #088151;
}

.review .icon-bg {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 120px;
  max-height: 120px;
  margin: auto;
}
.review .icon-bg img {
  width: auto;
  margin: auto;
}
.review .owl-carousel {
  margin-top: 4rem;
}
.review .owl-nav {
  position: absolute;
  top: -70px;
  margin: 0;
  left: 0;
  width: 100%;
}
.review .owl-nav button.owl-prev,
.review .owl-nav button.owl-next {
  padding: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #571ce0;
  font-size: 2rem;
}
.review .owl-nav button.owl-prev:hover,
.review .owl-nav button.owl-next:hover {
  background-color: #088151;
  border: 2px solid #088151;
}

.faq {
  position: relative;
}
.faq .faq-tab ul {
  margin-bottom: 40px;
}
@media screen and (max-width: 575px) {
  .faq .faq-tab ul {
    justify-content: center;
    padding-bottom: 0px;
  }
}
.faq .faq-tab ul li button {
  margin: 0 5px;
  text-transform: capitalize;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border-color: transparent;
  padding: 10px 30px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  transition: 0.3s;
}
.faq .faq-tab ul li button.active, .faq .faq-tab ul li button:hover {
  background: #571ce0;
  border-color: transparent;
}
@media screen and (max-width: 575px) {
  .faq .faq-tab ul li {
    margin-bottom: 20px;
  }
}
.faq .faq-bg {
  padding-top: 40px;
  border-radius: 1.25rem;
}
.faq .accordion-item {
  border: 0;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.faq .accordion-item .accordion-button {
  background-color: transparent;
  color: #ffffff;
  border-radius: 1.25rem !important;
  padding: 1.2rem 2rem 1.2rem 1rem;
  border: none;
  font-weight: 600;
  box-shadow: none;
}
.faq .accordion-item .accordion-button i {
  font-size: 1.5rem;
  color: #088151;
}
.faq .accordion-item .accordion-button::after {
  color: #ffffff;
}
.faq .accordion-item .accordion-button::after {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(/assets/images/icons/arrow-minus.png);
  background-repeat: no-repeat;
  background-size: 20px;
  position: absolute;
  right: 0px;
  transition: all ease 0.3s;
}
.faq .accordion-item .accordion-button.collapsed::after {
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(/assets/images/icons/arrow-plus.png);
  background-repeat: no-repeat;
  background-size: 20px;
  transform: rotate(-90deg);
  transition: all ease 0.3s;
}
.faq .accordion-item .accordion-body {
  padding: 0 20px;
}
.faq .accordion-item .accordion-body p {
  border-top: 1px solid #088151;
  padding: 20px 0;
  color: #ffffff;
  text-align: justify;
}

.subscribe {
  /* background-image: url(/assets/images/subscribe-bg.jpg); */
  background: url('/assets/images/green_carbon_fiber.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
.subscribe:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  /* background-color: rgba(0, 8, 73, 0.3); */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  right: 0;
  bottom: 0;
}
.subscribe form input {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #ffffff;
  border-radius: 50rem;
}
.subscribe form input:focus {
  background-color: transparent;
  color: #ffffff;
  box-shadow: none;
}
.subscribe form .custom-btn-subscribe {
  border-radius: 50%;
  background-color: #088151;
  min-width: 50px;
  min-height: 50px;
}
.subscribe form .custom-btn-subscribe i {
  color: #ffffff;
}
.subscribe form .custom-btn-subscribe:hover {
  background-color: #571ce0;
}

.footer {
/*   background-color: rgba(13, 36, 16, 0.1); */
  background: #000;
  background: linear-gradient(180deg,rgb(0, 0, 0) 75%, rgb(15, 56, 35) 100%);

}
.footer h1,
.footer h2,
.footer h3,
.footer h4 {
  color: #088151;
}
.footer p {
  line-height: 2.2rem;
}
.footer .svg-icon svg {
  fill: #ffffff;
}
.footer .link-list li {
  line-height: 2.5rem;
}
.footer .link-list li a {
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0 0 0.5rem 0;
}
.footer .link-list li a:hover {
  color: #088151;
}
.footer .social a,
.footer .social .botom-link {
  color: #ffffff;
}
.footer .social a:hover,
.footer .social .botom-link:hover {
  color: #088151;
}
.footer .copyright {
  background-color: rgba(0, 0, 0, 0.2);
}

.footer-link-effect {
  position: relative;
}
.footer-link-effect::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0px;
  width: 100%;
  height: 2px;
  border-radius: 0.5rem;
  background: #088151;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}
.footer-link-effect:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.scrollup {
  overflow: hidden;
  position: fixed;
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  border-radius: 1.25rem;
  bottom: -3rem;
  right: 3rem;
  text-align: center;
  z-index: 1;
  background-color: rgba(1, 95, 2, 0.8);
  display: block;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  animation: backto-top-bounce 4s infinite ease-in-out;
}
.scrollup i {
  font-size: 1.5rem;
  display: inline-block;
  transition: all 0.5s ease-out;
}
.scrollup i:hover, .scrollup i:focus {
  animation: toBottomFromTop 0.5s forwards;
}
.scrollup:hover, .scrollup:focus {
  color: #ffffff;
}
.scrollup.back-top {
  bottom: 20px;
}
@keyframes toBottomFromTop {
  49% {
    transform: translateY(-20%);
  }
  50% {
    opacity: 0;
    transform: translateY(20%);
  }
  51% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}
@keyframes backto-top-bounce {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-5px);
  }
}

.breadcrumb-area {
  position: relative;
  z-index: 1;
/* 
  background-image: url(/assets/images/breadcrumb-image.jpg);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
 */
  background: #000;
  background: linear-gradient(0deg,rgb(0, 0, 0) 16%, rgb(15, 56, 35) 100%);
  padding: 80px 0 0px 0;
  display: flex;
  justify-content: start;
  align-items: center;
}
.breadcrumb-area::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000;
  left: 0;
  top: 0;
  opacity: 0.5;
  z-index: -1;
}

.page-breadcrumb {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-breadcrumb .list li {
  display: inline-block;
  color: #878A9B;
  position: relative;
  padding-right: 16px;
  padding-left: 16px;
  font-weight: 600;
}
.page-breadcrumb .list li:first-child {
  padding-left: 0px;
}
.page-breadcrumb .list li:first-child::before {
  display: none;
}
.page-breadcrumb .list li a {
  color: #088151;
  display: inline-block;
}
.page-breadcrumb .list li a::before {
  content: "\f309";
  position: absolute;
  right: -20px;
  top: -5px;
  font-family: bootstrap-icons !important;
  font-size: 2rem;
  line-height: initial;
  color: #088151;
}
.page-breadcrumb .list li a:hover {
  color: #571ce0;
}

.login-app-title {
  position: relative;
}
.login-app-title::after {
  content: "";
  display: block;
  width: 50%;
  height: 1px;
  background-color: #571ce0;
  position: absolute;
  top: 12px;
  left: -70px;
}
.login-app-title::before {
  content: "";
  display: block;
  width: 50%;
  height: 1px;
  background-color: #571ce0;
  position: absolute;
  top: 12px;
  right: -70px;
}

.login-app {
  list-style: none;
  display: flex;
  justify-content: center;
  border-top: 1px solid #000000;
  margin-top: 1rem;
}
.login-app li {
  padding: 1rem 0.5rem 0rem 0.5rem;
}
.login-app li a {
  display: inline-block;
  background: url(/assets/images/icons/app-icon.png) no-repeat;
  width: 60px;
  height: 60px;
}
.login-app li .fb {
  background-position: 0 0;
}
.login-app li .go {
  background-position: 0 -72px;
}
.login-app li .in {
  background-position: 0 -148px;
}

.pagination li .page-link {
  border-radius: 1.25rem;
  background-color: #571ce0;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 0.875rem;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
}
.pagination li .page-link:hover, .pagination li .page-link.active {
  background: #088151;
  color: #571ce0;
}
.pagination li .page-link:first-child {
  border-radius: 0;
  border-radius: 1.25rem;
}
.pagination li .page-link:last-child {
  border-radius: 0;
  border-radius: 1.25rem;
}
.pagination li:last-child a {
  margin-right: 0px;
}

.search-form {
  border: 2px solid #571ce0;
}
.search-form input {
  font-size: 0.875rem !important;
}
.search-form button {
  background-color: #571ce0;
  min-width: 50px;
  min-height: 50px;
}
.search-form button i {
  color: #ffffff;
}
.search-form button:hover {
  background-color: #088151;
}

.news-card h2 {
  color: #088151;
}
.news-card p {
  font-size: 0.875rem;
}

.blog-list-head {
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  color: #088151;
  font-weight: bold;
  border-bottom: 1px solid #878A9B;
  padding-bottom: 1rem;
}
.blog-list-head:after {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #571ce0;
}

.post-thumb img {
  width: 100px;
  height: auto;
}

.widget-categories li :first-child {
  margin-top: 0;
}
.widget-categories li .count {
  background-color: #ffffff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 0.8rem;
  line-height: 24px;
  text-align: center;
  color: #088151;
}
.widget-categories li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  padding: 10px 15px;
  padding-left: 15px;
  position: relative;
  transition: all 0.2s;
}
.widget-categories li a:hover {
  background: rgba(87, 28, 224, 0.04);
  color: #088151;
}
.widget-categories li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.widget-categories li a::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background: #088151;
  border-radius: 2px 0px 0px 2px;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.2s;
  transform: translateX(-5px);
}

.tags-blog {
  list-style-type: none;
  border-radius: 1.25rem;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  padding: 1rem;
  background-color: rgba(87, 28, 224, 0.1);
}
.tags-blog li {
  padding: 1rem 0.5rem;
  margin: 0 0;
  display: inline-block;
}
.tags-blog li a {
  color: #878A9B;
  border-radius: 1.25rem;
  background: #000000;
  padding: 0.5rem;
}
.tags-blog li a:hover {
  background: #088151;
  color: #ffffff;
}

.post-wrap {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.post-wrap p i {
  line-height: 2rem;
  font-size: 0.875rem;
  border-left: 2px solid #571ce0;
  height: 100%;
  display: block;
  padding: 1rem;
  background: rgba(87, 28, 224, 0.04);
  text-align: justify;
}
.post-wrap .post-head {
  font-size: 1.5rem;
  margin: 2rem 0;
  font-weight: bold;
}
.post-wrap .post-desc {
  font-size: 0.875rem;
  line-height: 2rem;
  text-align: justify;
  color: #ffffff;
}

.blog-post-social {
  border-top: 2px solid #878A9B;
  border-bottom: 2px solid #878A9B;
  padding: 25px 0px;
  margin-bottom: 55px;
}

.post-tag-list {
  display: flex;
  justify-content: start;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.post-tag-list li {
  font-weight: bold;
  color: #ffffff;
  margin-right: 8px;
}
.post-tag-list li:first-child {
  margin-right: 15px;
}
.post-tag-list li a {
  font-size: 0.875rem;
  color: #878A9B;
  font-weight: normal;
}
.post-tag-list li a:hover {
  color: #088151;
}

.blog-icon-list {
  display: flex;
  justify-content: start;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.blog-icon-list li {
  margin-left: 1rem;
}
.blog-icon-list li:first-child {
  font-weight: bold;
  color: #ffffff;
}
.blog-icon-list li a {
  display: block;
  transition: 0.4s ease;
}
.blog-icon-list li a i {
  color: #088151;
}
.blog-icon-list li a:hover {
  transform: scale(1.2);
}

.comment-box {
  border-radius: 1.25rem;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  background-color: rgba(87, 28, 224, 0.1);
}
.comment-box .comment-head {
  padding: 2rem;
  font-weight: bold;
  font-size: 1.5rem;
}
.comment-box .user-comment-card {
  margin-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.comment-box .user-comment-card li {
  position: inherit;
}
.comment-box .user-comment-card .userPic {
  position: relative;
}
.comment-box .user-comment-card .userName {
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 1rem;
  font-size: 0.875rem;
}
.comment-box .comment-title {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: space-between;
}
.comment-box .comment-title .comment-meta span {
  color: #878A9B;
  font-size: 0.875rem;
}
.comment-box .comment-body p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ffffff;
}
.comment-box h4 {
  margin-bottom: 2rem;
}

.error {
  padding: 10rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.terms p {
  text-align: justify;
}

.content-list li {
  padding: 10px 0 0 10px;
  line-height: 1.5;
  color: #ffffff;
  list-style: disc;
  margin: 0 0 0 20px;
}
.content-list .content-sublist li {
  list-style: circle;
}

.tournament-card {
  border: 2px solid #571ce0;
  border-radius: 1.25rem;
  background-color: rgba(87, 28, 224, 0.8);
  margin-bottom: 30px;
}
.tournament-card:last-child {
  margin-bottom: 0;
}
.tournament-card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.tournament-card ul li span {
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #571ce0;
  width: 2.5rem;
  height: 2.5rem;
}
.tournament-card ul.bet-list li {
  display: inline-block;
  background: #ffffff;
  border-radius: 1.25rem;
  color: #000000;
  margin-bottom: 0;
  padding: 0rem 1rem;
}
.tournament-card ul.bet-list li:hover {
  background-color: #088151;
}
.tournament-card ul.bet-list li:hover a {
  color: #571ce0;
}
.tournament-card ul.bet-list li .point {
  display: inline-block;
  display: block;
  background: transparent;
  width: auto;
  height: auto;
  margin: 0;
  font-weight: bold;
}

.bet-team-serach {
  border-radius: 1.25rem;
  background-color: rgba(87, 28, 224, 0.1);
  padding: 60px 30px;
}
.bet-team-serach .input-box {
  display: flex;
  align-items: center;
  border: 1px solid #ffffff;
  background-color: #000849;
  border-radius: 50rem;
  padding-left: 15px;
}
.bet-team-serach input {
  border: none;
  padding-left: 10px;
  height: 50px;
  background-color: transparent;
  width: 100%;
  color: #ffffff;
}
.bet-team-serach .nice-select {
  border: 1px solid #ffffff;
  border-radius: 50rem;
  background-color: #000849;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
}
.bet-team-serach .nice-select:after {
  right: 20px;
}

.single-pricing-content {
  padding: 30px 30px;
  text-align: left;
  transition: all 0.4s ease 0s;
  margin-bottom: 30px;
}
.single-pricing-content:hover {
  transform: translateY(-10px);
}
.single-pricing-content .price-list {
  text-align: center;
}
.single-pricing-content .price-list ul li {
  display: block;
  border-top: 1px dashed;
  padding: 1.5rem 0;
  border-color: #000000;
}
.single-pricing-content .price-list ul li:last-child {
  padding-bottom: 0;
}

.currency-bet .filetr-box {
  border-radius: 1.25rem;
  background-color: rgba(87, 28, 224, 0.1);
}
.currency-bet .filetr-box .input-area {
  display: flex;
  align-items: center;
  border: 1px solid #ffffff;
  background-color: #571ce0;
  border-radius: 50rem;
  padding: 5px;
  padding-left: 15px;
}
.currency-bet .filetr-box .input-area input {
  border: none;
  padding-left: 10px;
  width: 100%;
  height: 50px;
  background-color: #571ce0;
  color: #ffffff;
}
.currency-bet .filetr-box .input-area button {
  border-radius: 50rem;
  color: #ffffff;
  align-self: stretch;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #571ce0;
  border: 1px solid #ffffff;
  min-width: 50px;
}
.currency-bet .filetr-box .input-area button:hover {
  background-color: #088151;
}
.currency-bet .filetr-box .input-area button i {
  margin-right: 5px;
}

.buy-crypto {
  position: relative;
}
.buy-crypto:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(/assets/images/icons/crypto-pic.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  right: 0;
  bottom: 0;
}

.create-currency {
  border-radius: 1.25rem;
  background-color: rgba(87, 28, 224, 0.1);
  padding: 30px;
}
.create-currency .input-box {
  position: relative;
}
.create-currency .input-box i {
  position: absolute;
  right: 20px;
  top: 14px;
}
.create-currency .input-box input,
.create-currency .input-box textarea {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #000849;
  border: 1px solid #571ce0;
  color: #ffffff;
  border-radius: 50rem;
  padding-left: 15px;
}
.create-currency .input-box textarea {
  min-height: auto;
}
.create-currency .input-box .input-items {
  border: 1px solid #571ce0;
  border-radius: 50rem;
}
.create-currency .input-box .input-items input {
  border: none;
}
.create-currency .input-box .input-items input:first-child {
  width: 66%;
  border-radius: 50rem 0 0 50rem;
}
.create-currency .input-box .input-items input:last-child {
  width: 34%;
  border-left: 1px solid #571ce0;
  border-radius: 0px 50rem 50rem 0px;
  text-align: center;
  font-size: 0.75rem;
}
.create-currency .input-select {
  border: 1px solid #571ce0;
  border-radius: 50rem;
}
.create-currency .input-select input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: none;
  border-left: 1px solid #ffffff;
  padding: 10px 20px;
  color: #ffffff;
  width: 100%;
  height: 50px;
  background: #571ce0;
}
.create-currency .nice-select {
  border: none;
  display: flex;
  align-items: center;
  height: auto;
  background: #000849;
  border-radius: 50rem;
  color: #088151;
  height: 50px;
}
.create-currency .nice-select::after {
  height: 10px;
  margin-top: -8px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  width: 10px;
}

.more-info ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.more-info ul li::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #088151;
  left: 0;
}

.invite-friends {
  background: rgba(87, 28, 224, 0.1);
  border: 1px dashed #ffffff;
  box-sizing: border-box;
  border-radius: 1.25rem;
  padding: 40px 30px;
  margin-bottom: 30px;
}

.video-review {
  display: flex;
  background-image: url(/assets/images/review/video-bg.png);
  background-position: center center;
  background-size: cover;
  min-height: 400px;
  border-radius: 1.25rem;
  justify-content: center;
}

.currency-bet-detail ul.currency-bet-list li {
  display: inline-block;
}
.currency-bet-detail ul.currency-bet-list li a {
  display: inline-block;
  background: #ffffff;
  border-radius: 1.25rem;
  color: #000000;
  margin-bottom: 0.5rem;
  padding: 0rem 1rem;
  width: 60px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.currency-bet-detail ul.currency-bet-list li a:hover, .currency-bet-detail ul.currency-bet-list li a:active,
.currency-bet-detail ul.currency-bet-list li a .active {
  background-color: #088151;
}

.header-dashboard {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-dashboard .wrap {
  position: relative;
}
.header-dashboard .wrap .item-wrap {
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-dashboard .wrap .item-wrap .nice-select {
  border-radius: 0px;
  background-color: transparent;
  border-color: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
}
.header-dashboard .wrap .item-wrap .notify-btn {
  cursor: pointer;
  position: relative;
}
.header-dashboard .wrap .item-wrap .notify-btn i {
  font-size: 1.5rem;
}
.header-dashboard .wrap .item-wrap .tag {
  position: absolute;
  top: 0;
  right: -6px;
  width: 16px;
  height: 16px;
  background: #c1cf00;
  font-weight: bold;
  border-radius: 50%;
  font-size: 12px;
  line-height: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}
.header-dashboard .wrap .item-wrap .user-btn {
  cursor: pointer;
}
.header-dashboard .wrap .item-wrap .user-btn i {
  font-size: 1rem;
  margin-left: 0.5rem;
}
.header-dashboard .main-box {
  position: absolute;
  top: 50px;
  width: 350px;
  right: 0;
  padding: 20px;
  background: #000000;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  transform: translateY(150px);
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
  max-height: 350px;
  overflow-y: scroll;
}
.header-dashboard .main-box button {
  background-color: #000849;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.header-dashboard .main-box button:hover {
  background-color: #571ce0;
}
.header-dashboard .main-box button i {
  font-size: 1.2rem;
  line-height: normal;
  color: #ffffff;
}
.header-dashboard .main-box.active {
  transform: translateY(0px);
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}
.header-dashboard .main-box .tag-count {
  width: 28px;
  height: 28px;
  background: #c1cf00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  margin-left: 10px;
  border-radius: 50%;
}
.header-dashboard .main-box ul li {
  margin-top: 5px;
  border-top: 1px solid #878A9B;
  padding-top: 1rem;
  margin-top: 1rem;
}
.header-dashboard .main-box ul li a {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.header-dashboard .main-box ul li a i {
  margin-right: 1rem;
  font-size: 1.5rem;
}
.header-dashboard .main-box ul li a.active, .header-dashboard .main-box ul li a:hover {
  color: #088151;
  transition: 0.3s;
}

.dashboard-section {
  padding-bottom: 30px;
  padding-top: 100px;
}
.dashboard-section .dashboard-tab {
  background-color: rgba(87, 28, 224, 0.1);
  margin-bottom: 30px;
  border-radius: 1.25rem;
  padding: 1rem;
}
.dashboard-section .dashboard-tab ul {
  border-bottom: none;
}
.dashboard-section .dashboard-tab ul li {
  display: block;
  width: 100%;
}
.dashboard-section .dashboard-tab ul li .nav-link {
  background-color: transparent;
  color: #ffffff;
  text-transform: capitalize;
  padding: 1rem 0.5rem;
  font-weight: 700;
  border: none;
  border-radius: 0;
  display: block;
  width: 100%;
  text-align: left;
  transition: 0.3s;
  border-radius: 1.25rem;
}
@media screen and (max-width: 992px) {
  .dashboard-section .dashboard-tab ul li .nav-link {
    padding: 10px 12px;
  }
}
.dashboard-section .dashboard-tab ul li .nav-link.active, .dashboard-section .dashboard-tab ul li .nav-link:hover {
  background: #571ce0;
}
.dashboard-section .nice-select {
  border: 2px solid #571ce0;
  border-radius: 1.25rem;
  background: transparent;
  display: flex;
  align-items: center;
  width: 35%;
  height: 35px;
}
.dashboard-section .nice-select::after {
  height: 10px;
  margin-top: -7px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  width: 10px;
}
.dashboard-section .nice-select span {
  font-size: 16px;
}
.dashboard-section .nice-select .list {
  width: 100%;
  background: #571ce0;
  border: 1px solid #571ce0;
}
.dashboard-section .nice-select .list .option {
  background: transparent;
  font-size: 16px;
}
.dashboard-section .nice-select .list .option:hover {
  color: #088151;
}
.dashboard-section .nice-select .list .focus {
  background-color: transparent;
  color: #088151;
}
.dashboard-section label {
  margin-bottom: 0.5rem;
}
.dashboard-section .balance {
  background: #571ce0;
  border-radius: 1.25rem;
  padding: 10px 25px;
  margin: 20px 0;
  color: #c1cf00;
  text-align: center;
}
.dashboard-section .balance span {
  font-size: inherit;
  font-weight: inherit;
}
.dashboard-section .input-area {
  display: flex;
  align-items: center;
  border: 1px solid #571ce0;
  background-color: #000849;
  border-radius: 50rem;
  padding-left: 15px;
  padding-right: 20px;
}
.dashboard-section .input-area img {
  cursor: pointer;
}
.dashboard-section .input-area input {
  background-color: #000849;
  border: none;
  color: #ffffff;
  width: 100%;
  height: 50px;
  border-radius: 1.25rem;
}
.dashboard-section .select-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #571ce0;
  background-color: #000849;
  border-radius: 50rem;
}
.dashboard-section .select-wrap .nice-select {
  border: 1px solid transparent;
  border-radius: 50rem;
  background: #000849;
  display: flex;
  align-items: center;
  width: 100%;
  color: #088151;
  height: 50px;
}
.dashboard-section .input-select-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #571ce0;
  background-color: #000849;
  border-radius: 50rem;
}
.dashboard-section .input-select-wrap input {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border: none;
  border-right: 1px solid #571ce0;
  background-color: transparent;
  padding: 10px 20px;
  color: #ffffff;
  width: 100%;
  height: 50px;
}
.dashboard-section .input-select-wrap .nice-select {
  border: 2px solid transparent;
  border-radius: 1.25rem;
  background: transparent;
  display: flex;
  align-items: center;
  width: 20%;
  height: 50px;
}
.dashboard-section .file-upload {
  display: flex;
  align-items: center;
}
.dashboard-section .file-upload input {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  width: 0;
}
.dashboard-section .file-upload .file {
  cursor: pointer;
  position: relative;
  margin-bottom: 4px;
  width: 100%;
}
.dashboard-section .file-upload .file .file-custom {
  z-index: 5;
  height: 50px;
  border-radius: 50rem;
  border: 1px solid #571ce0;
  display: flex;
  align-items: center;
  background: #000849;
}
.dashboard-section .file-upload .file .file-custom::before {
  position: absolute;
  left: 0;
  content: "\f603";
  font-family: "bootstrap-icons";
  width: 24px;
  height: 24px;
  left: 20px;
  color: #088151;
}
.dashboard-section .file-upload .file .file-custom::after {
  content: "Upload Your Avatar";
  position: absolute;
  left: 50px;
  color: #088151;
}
.dashboard-section ul.currency-amount {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.dashboard-section ul.currency-amount li {
  margin-right: 5px;
}
.dashboard-section ul.currency-amount li a {
  display: inline-block;
  background: #000000;
  border-radius: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  padding: 0rem 1rem;
  width: 60px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.dashboard-section ul.currency-amount li a:hover, .dashboard-section ul.currency-amount li a:active,
.dashboard-section ul.currency-amount li a .active {
  background-color: #088151;
}
.dashboard-section ul.currency-amount li:last-child {
  margin-right: 0px;
}/*# sourceMappingURL=main.css.map */

/* Container box for images */
#products .news-card .img-effect {
  position: relative;
  width: 100%;
  height: 300px;             /* fixed height you wanted */
  background: #fff;
  display: flex;
  align-items: center;        /* vertical centering */
  justify-content: center;    /* horizontal centering */
  overflow: hidden;
  margin: 0 auto;
}

/* Image itself: max 75% width, keep aspect ratio, centered */
#products .news-card .img-effect img {
  max-width: 75%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  background: #fff;
  transform: none !important;
  transition: none !important;

  /* Centering tweaks */
  margin-top: 0;              /* reset any built-in margins */
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

/* If image loads slowly or is smaller, ensure no drift */
#products .news-card .img-effect img[src] {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  /* But because we already use flex for alignment, this may be redundant; test with and without */
}

/* Kill zoom / hover transforms */
#products .news-card .img-effect,
#products .news-card .img-effect img {
  transform: none !important;
  transition: none !important;
}

/* Container layout */
.pgws-nav { display: flex; align-items: center; gap: 1rem; }
.pgws-nav .navbar-brand { flex: 0 0 auto; }

/* Toggle (mobile) */
.pgws-toggle {
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: .5rem;
  display: none;  /* shown on mobile */
  align-items: center;
  gap: .4rem;
}
.pgws-toggle:focus-visible { outline: 2px solid #0d6efd; outline-offset: 2px; }
.pgws-toggle-bar { width: 22px; height: 2px; background: currentColor; display: block; }
.pgws-toggle-label { position: absolute; left: -9999px; }

/* Menu base */
.pgws-menu {
  list-style: none; margin: 0 0 0 auto; padding: 0;
  display: flex; gap: 1rem; align-items: center;
}
.pgws-item { position: relative; }
.pgws-link { display: inline-block; padding: .5rem .75rem; text-decoration: none; }
.pgws-call { background: rgba(1,95,2,0.8); padding: 5px 10px; border-radius: 5px; color: #fff; }

/* First dropdown */
.has-sub > .pgws-sub {
  position: absolute; left: 0; top: 100%;
  min-width: 260px; background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  list-style: none; margin: .25rem 0 0; padding: .5rem 0;
  display: none; z-index: 1000;
}
.has-sub:hover > .pgws-sub,
.has-sub:focus-within > .pgws-sub,
.has-sub.open > .pgws-sub { display: block; }

.pgws-subitem { position: relative; }
.pgws-sublink { display: flex; justify-content: space-between; align-items: center; padding: .5rem .75rem; text-decoration: none; white-space: nowrap; }

/* Flyout (third level) */
.has-flyout > .pgws-flyout {
  position: absolute; left: 100%; top: 0;
  min-width: 240px; background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  list-style: none; margin: 0; padding: .5rem 0;
  display: none;
}
.has-flyout:hover > .pgws-flyout,
.has-flyout:focus-within > .pgws-flyout,
.has-flyout.open > .pgws-flyout { display: block; }

.pgws-flylink { display: block; padding: .5rem .75rem; white-space: nowrap; text-decoration: none; }

/* Hover styles */
.pgws-sublink:hover, .pgws-flylink:hover, .pgws-link:hover { background: #f6f7f9; }

/* Keep above everything */
.pgws-nav, .pgws-menu, .pgws-sub, .pgws-flyout { overflow: visible; z-index: 1000; }

/* Mobile */
@media (max-width: 991.98px) {
  .pgws-toggle { display: inline-flex; }
  .pgws-menu {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-top: 1px solid rgba(0,0,0,.08);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: .5rem 0; display: none;
  }
  .pgws-menu.open { display: block; }

  .has-sub > .pgws-sub,
  .has-flyout > .pgws-flyout {
    position: static; display: none; box-shadow: none; border: 0; margin: 0; padding-left: .75rem;
  }
  .has-sub.open > .pgws-sub,
  .has-flyout.open > .pgws-flyout { display: block; }
}

/* Remove vertical/horizontal gaps so the pointer never leaves the hover area */
.pgws-nav .has-sub > .pgws-sub {
  margin-top: 0;            /* was .25rem; creates a gap */
  top: 100%;                /* sits flush under the trigger */
}

.pgws-nav .has-flyout > .pgws-flyout {
  margin-left: 0;           /* ensure no sideways gap */
  left: 100%;
  top: 0;
}

/* Optional: add a subtle visual offset without creating a gap */
.pgws-nav .has-sub.open > .pgws-sub { transform: translateY(2px); }
.pgws-nav .has-flyout.open > .pgws-flyout { transform: translateX(2px); }

/* --- Force centered images in infinite-scrolled cards on /new/* --- */
#products .news-card .img-effect {
  /* fixed box & white bg */
  height: 300px;
  background: #fff;
  /* perfect centering */
  display: flex;
  align-items: center;
  justify-content: center;
  /* no crop */
  overflow: hidden;
}

/* override any absolute/zoom rules from earlier */
#products .news-card .img-effect img {
  position: static !important;   /* was absolute somewhere */
  transform: none !important;    /* kill zoom/scale */
  transition: none !important;

  /* natural size, capped */
  width: auto !important;
  height: auto !important;
  max-width: 75% !important;     /* your 75% width cap */
  max-height: 100% !important;   /* fit in 300px-tall box */
  object-fit: contain !important;

  display: block;
  margin: 0 auto;                /* extra horizontal centering safety */
  background: #fff;
}

/* remove any spacing the figure may add */
#products .news-card figure.img-effect { 
  margin: 0 !important; 
  padding: 0 !important; 
}

/* Product detail main image box */
.primary-image-container {
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;                  /* center the box itself */
  background: #fff;
  display: flex;                   /* flexbox centering */
  align-items: center;             /* vertical center */
  justify-content: center;         /* horizontal center */
  overflow: hidden;
  position: relative;
}

/* The image inside */
.primary-image-container img {
  width: auto;
  height: auto;
  max-width: 75%;                  /* take up ~75% of the box width */
  max-height: 75%;                 /* and ~75% of the box height */
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #fff;

  /* override any theme zoom/abs positioning */
  position: static !important;
  transform: none !important;
  transition: none !important;
}

/* Product detail main image box */
.used-image-container {
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;                  /* center the box itself */
  display: flex;                   /* flexbox centering */
  align-items: center;             /* vertical center */
  justify-content: center;         /* horizontal center */
  overflow: hidden;
  position: relative;
}

/* The image inside */
.used-image-container img {
  width: auto;
  height: auto;
  max-width: 100%;                  /* take up ~75% of the box width */
  object-fit: contain;
  display: block;
  margin: 0 auto;

  /* override any theme zoom/abs positioning */
  position: static !important;
  transform: none !important;
  transition: none !important;
}

/* Hover state = green background, white text */
.pgws-subitem > .pgws-sublink:hover,
.pgws-flylink:hover,
.pgws-link:hover,
.dropdown-menu .dropdown-item:hover {
  background-color: rgba(1, 95, 2, 0.9) !important; /* your theme green */
  color: #fff !important;
}

.primary-btn-effect:hover,
.primary-btn-effect:focus {
  color: #fff !important;
}

	/* Force the action row to be a true flex row (not grid/block) */
	#products .news-card .btn-wrap,
	#products .news-card .actions,
	#products .news-card .cta {
	  display: flex !important;
	  gap: .5rem;
	  justify-content: flex-end;   /* right-align both buttons; change if needed */
	  align-items: center;
	  margin-top: auto;
	}
	
	/* Nuke any grid/100%-width utilities that might be on the actions wrapper */
	#products .news-card .btn-wrap.d-grid,
	#products .news-card .actions.d-grid,
	#products .news-card .cta.d-grid {
	  display: flex !important;
	}
	
	/* Make buttons natural size (beats common theme/utilities) */
	#products .news-card .btn-wrap > a,
	#products .news-card .actions > a,
	#products .news-card .cta > a,
	#products .news-card a.primary-btn-effect,
	#products .news-card a.btn {
	  display: inline-flex !important;
	  width: auto !important;
	  inline-size: auto !important;        /* logical width override */
	  max-width: none !important;
	  flex: 0 0 auto !important;           /* don’t grow or shrink */
	  align-self: auto !important;         /* let container alignment work */
	  white-space: nowrap;
	}
	
	/* Beat common width-forcing helpers directly on anchors */
	#products .news-card a.w-100,
	#products .news-card a.d-block {
	  width: auto !important;
	  display: inline-flex !important;
	}
	
	/* If the THEME makes .primary-btn-effect full-width, override it here too */
	#products .news-card a.primary-btn-effect.w-100,
	#products .news-card a.primary-btn-effect {
	  width: auto !important;
	  flex: 0 0 auto !important;
	}

/* Make the existing nav stick to the top */
.pgws-nav,
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: transparent;   /* transparent at the top */
  transition: background-color 200ms ease, box-shadow 200ms ease;
}

.pgws-nav.scrolled,
.navbar.scrolled {
  background: #000;  /* solid black after scroll */
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}

/* Full-width background layer behind nav content */
.pgws-nav::before,
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;   /* span full viewport width */
  height: 100%;
  background: transparent;  /* start transparent */
  z-index: -1;   /* sit behind nav links */
  transition: background-color 200ms ease, box-shadow 200ms ease;
}

/* Solid black when scrolled */
.pgws-nav.scrolled::before,
.navbar.scrolled::before {
  background: #000;
}

.news {
	background: url('/assets/images/green_carbon_fiber.jpg') repeat top left;
	}

/* Base: visible on mobile */
.pgws-toggle{
  position:absolute;
  top: 0px;
  right: 20px;
  font-size: 50px;
  z-index:2100;   /* above sticky header */
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* Hide when the full navbar shows (≥ lg) */
@media (min-width: 992px){
  .pgws-toggle{ display:none !important; }
}

/* USED page overrides only */
section.news.used-news .news-card{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

section.news.used-news .news-card .card-body,
section.news.used-news .news-card .news-content{
  padding: 0 !important;
}

section.news.used-news .news-card img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}

section.news.used-news .news-card .news-thumb,
section.news.used-news .news-card .image-wrap{
  aspect-ratio: 4 / 3; /* adjust as needed */
  width: 100%;
  height: auto;
  overflow: hidden;
}

.used-card h2 {
  color: #088151;
}
.used-card p {
  font-size: 0.875rem;
}

/* Container box for images */
#products .used-card .img-effect {
  position: relative;
  width: 100%;
  height: 300px;             /* fixed height you wanted */
  background: #fff;
  display: flex;
  align-items: center;        /* vertical centering */
  justify-content: center;    /* horizontal centering */
  overflow: hidden;
  margin: 0 auto;
}

/* Image itself: max 75% width, keep aspect ratio, centered */
#products .used-card .img-effect img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  background: #fff;
  transform: none !important;
  transition: none !important;

  /* Centering tweaks */
  margin-top: 0;              /* reset any built-in margins */
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

/* If image loads slowly or is smaller, ensure no drift */
#products .used-card .img-effect img[src] {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  /* But because we already use flex for alignment, this may be redundant; test with and without */
}

/* Kill zoom / hover transforms */
#products .used-card .img-effect,
#products .used-card .img-effect img {
  transform: none !important;
  transition: none !important;
}
