@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700|Play&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  margin: 0 auto;
  color: #191919;
  font-display: swap;
}
a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
  color: #666;
  width: 100%;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .carousel-item {
  position: relative;
  display: none;
  animation: 0.6s ease-in-out;
}
.carousel-inner.main-slide .carousel-item {
  height: auto;
}
.carousel-item > .carousel-img {
  width: 100%;
  height: auto;
}
.carousel-inner > .active,
.carousel-inner > .next {
  display: block;
}
.carousel-inner > .next {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .to-left {
  animation-name: left;
}
.carousel-inner > .from-right {
  animation-name: right;
}
.carousel-inner > .to-right {
  animation-name: right;
  animation-direction: reverse;
}
.carousel-inner > .from-left {
  animation-name: left;
  animation-direction: reverse;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  cursor: pointer;
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
@keyframes left {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}
@keyframes right {
  from {
    left: 100%;
  }
  to {
    left: 0;
  }
}
.carousel-video {
  display: block;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.carousel-item video {
  width: 100%;
}
.mobile_banner {
  display: none;
}
img.gs-icon {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
#preloader {
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #9370db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ba55d3;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f0f;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
h1 {
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}
h1 strong {
  font-weight: 900;
}
h2 {
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}
h2 strong {
  font-weight: 900;
}
h3 {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 1px;
}
#return-to-top {
  position: fixed;
  bottom: 150px;
  right: 20px;
  background: rgba(145, 0, 255, 0.7);
  width: 50px;
  height: 50px;
  text-decoration: none;
  border-radius: 35px;
  display: none;
  transition: all 0.3s ease;
}
#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 17px;
  top: 14px;
  font-size: 19px;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background: rgba(145, 0, 255, 0.9);
}
#return-to-top:hover i {
  color: #fff;
  top: 5px;
}
#mini-contact-btn {
  position: fixed;
  bottom: 220px;
  left: 20px;
  background: rgba(145, 0, 255, 0.7);
  width: 50px;
  height: 50px;
  text-decoration: none;
  border-radius: 35px;
  transition: all 0.3s ease;
}
#mini-contact-btn i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 14px;
  font-size: 19px;
  transition: all 0.3s ease;
}
#mini-contact-btn .mini-contact-btn-text {
  visibility: hidden;
  width: 150px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 110%;
  opacity: 0;
  transition: opacity 1s;
}
#mini-contact-btn .mini-contact-btn-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #000 transparent transparent;
}
#mini-contact-btn:hover .mini-contact-btn-text {
  visibility: visible;
  opacity: 1;
}
#mini-contact-btn:hover {
  background: rgba(145, 0, 255, 0.9);
}
#subscribe-btn {
  position: fixed;
  bottom: 150px;
  left: 20px;
  background: rgba(145, 0, 255, 0.7);
  width: 50px;
  height: 50px;
  text-decoration: none;
  border-radius: 35px;
  transition: all 0.3s ease;
}
#subscribe-btn i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 17px;
  top: 14px;
  font-size: 19px;
  transition: all 0.3s ease;
}
#subscribe-btn .subscribe-btn-text {
  visibility: hidden;
  width: 150px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 110%;
  opacity: 0;
  transition: opacity 1s;
}
#subscribe-btn .subscribe-btn-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #000 transparent transparent;
}
#subscribe-btn:hover .subscribe-btn-text {
  visibility: visible;
  opacity: 1;
}
#subscribe-btn:hover {
  background: rgba(145, 0, 255, 0.9);
}
#linktree-btn {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: rgba(145, 0, 255, 0.7);
  width: 50px;
  height: 50px;
  text-decoration: none;
  border-radius: 35px;
  transition: all 0.3s ease;
}
#linktree-btn i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 17px;
  top: 14px;
  font-size: 19px;
  transition: all 0.3s ease;
}
#linktree-btn .linktree-btn-text {
  visibility: hidden;
  width: 150px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 110%;
  opacity: 0;
  transition: opacity 1s;
}
#linktree-btn .linktree-btn-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #000 transparent transparent;
}
#linktree-btn:hover .linktree-btn-text {
  visibility: visible;
  opacity: 1;
}
#linktree-btn:hover {
  background: rgba(145, 0, 255, 0.9);
}
#floating-button {
  width: 50px;
  height: 50px;
  border-radius: 35px;
  background: rgba(145, 0, 255, 0.7);
  position: fixed;
  bottom: 150px;
  left: 20px;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.floating-button-more {
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  right: 0;
  padding: 0;
  margin: auto;
  line-height: 55px;
  animation: floating-button-more-out 0.3s;
  transition: all 0.3s;
}
#container-floating {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 30px;
  left: 30px;
  z-index: 50px;
}
#container-floating:hover {
  height: 400px;
  width: 90px;
  padding: 30px;
}
#container-floating:hover .floating-button-more {
  animation: floating-button-more-in 0.15s linear;
  animation-fill-mode: forwards;
}
.floating-button-crossx {
  color: #fff;
  font-size: 38px;
  position: absolute;
  top: 0;
  display: block;
  bottom: 0;
  left: 16px;
  right: 0;
  padding: 0;
  margin: 0;
  line-height: 45px;
  opacity: 0;
  transform: rotateZ(-70deg);
  font-weight: 300;
  transition: all 0.3s;
  animation: floating-button-crossx-out 0.3s;
}
#container-floating:hover .floating-button-crossx {
  animation: floating-button-crossx-in 0.2s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}
@keyframes floating-button-crossx-in {
  from {
    opacity: 0;
    transform: rotateZ(-70deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
@keyframes floating-button-crossx-out {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(-70deg);
  }
}
@keyframes floating-button-more-in {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(180deg);
  }
}
@keyframes floating-button-more-out {
  from {
    opacity: 0;
    transform: rotateZ(180deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
.floating-items {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  z-index: 300;
  transform: scale(0);
  cursor: pointer;
}
.floating-item3 {
  background: #d3a411;
  right: 40px;
  bottom: 120px;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
.floating-item2 {
  background: #3c80f6;
  right: 40px;
  bottom: 180px;
  animation-delay: 0.15s;
  animation-fill-mode: forwards;
}
.floating-item1 {
  background: #ba68c8;
  right: 40px;
  bottom: 240px;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}
@keyframes bounce-floating-items {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounce-out-floating-items {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}
#container-floating:hover .floating-items {
  animation: bounce-floating-items 0.1s linear;
  animation-fill-mode: forwards;
}
#container-floating:hover .floating-item2 {
  animation-delay: 0.08s;
}
#container-floating:hover .floating-item1 {
  animation-delay: 0.15s;
}
#container-floating:hover .floating-item3 {
  animation-delay: 0.2s;
}
.modal-dialog.news {
  max-width: 470px;
}
.modal-content.news {
  background: none;
  border: none;
  overflow: auto;
  border-radius: 4px;
}
.news-wrapper {
  background: url("../../images/newsletter-bg.jpg") no-repeat top center;
  background-size: cover;
  color: #fff;
  padding: 80px 20px 20px;
  height: 600px;
}
.subscribe-title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 3px 2px 1px rgba(0, 0, 0/70%);
  line-height: 1;
}
.sign-title {
  margin-top: 15px;
}
.sign-title span {
  text-shadow: 2px 2px 1px rgba(0, 0, 0);
  font-size: 19px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.sign-title span::before {
  content: "";
  background: #286ccf;
  width: 104%;
  height: 17px;
  position: absolute;
  top: 12px;
  left: -5px;
  z-index: -1;
}
.form-subs {
  margin-top: 25px;
}
.input-effect {
  position: relative;
  height: 50px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 330px;
  padding-top: 15px;
}
.input-effect input::placeholder {
  opacity: 0;
}
.input-effect input:not(:placeholder-shown) ~ label {
  display: none;
}
.input-effect input {
  border: none;
  background: none;
  padding: 5px 10px;
}
.input-effect input:focus {
  outline: none;
}
.effect-16 ~ label {
  position: absolute;
  left: 10px;
  width: 100%;
  top: 15px;
  color: #aaa;
  transition: 0.3s;
  pointer-events: none;
  letter-spacing: 0.5px;
  margin: 0;
  font-weight: 600;
}
.effect-16:focus ~ label,
.has-content.effect-16 ~ label {
  top: 5px;
  font-size: 11px;
  color: #5f5f5f;
  font-weight: 700;
  transition: 0.3s;
}
.has-content.effect-16 ~ .focus-border {
  width: 100%;
  transition: 0.4s;
}
button.subscribe-btn {
  background: linear-gradient(
    to bottom,
    rgba(56, 148, 254, 1) 0%,
    rgba(38, 74, 237, 1) 100%
  );
  color: #fff;
  border: none;
  border-radius: 30px;
  height: 60px;
  width: 80%;
  margin: 150px auto 15px;
  font-size: 24px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
button.subscribe-btn:hover {
  font-size: 26px;
}
button.close-news {
  position: relative;
  z-index: 2;
  padding: 0;
  border: none;
  background: none;
  color: #fff;
  font-size: 35px;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .subscribe-title {
    font-size: 9vw;
  }
  .sign-title span {
    font-size: 16px;
  }
  .sign-title span::before {
    height: 12px;
  }
  .news-wrapper {
    padding: 70px 20px 20px;
  }
  button.subscribe-btn {
    width: 90%;
  }
}
::-webkit-scrollbar {
  width: 0.5rem;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    to bottom,
    rgba(145, 0, 255, 1) 0%,
    rgba(236, 41, 122, 1) 100%
  );
  border-radius: 20px;
}
::-webkit-scrollbar-track {
  background: #2c2c2c;
}
.t-header {
  max-width: 100%;
  padding: 0;
  background: linear-gradient(
    to right,
    rgba(145, 0, 255, 1) 0%,
    rgba(236, 41, 122, 1) 100%
  );
  padding: 0 0 2px 0;
  z-index: 999;
  width: 100%;
}
.header-top {
  background: #000;
  background-size: cover;
  color: #fff;
  padding: 0;
  position: relative;
}
.logo {
  padding: 4px 0;
}
.logo img {
  max-width: 235px;
}
.main-menu-wrapper {
  display: grid;
  align-self: center;
  justify-content: end;
}
.menu-grid {
  display: grid;
}
.dropdown-submenu a {
  color: #fff;
}
.dropdown-menu a {
  color: #000;
}
.dropdown-submenu {
  position: relative;
  padding: 5px 15px;
}
.sub-dropdown {
  position: relative;
}
ul.dropdown-menu li a {
  padding: 7px 20px;
  display: block;
  font-size: 14px;
  line-height: 1.2;
}
ul.dropdown-menu li a:hover {
  background: #ab0cd8;
  color: #fff;
}
.dropdown-submenu:hover .drop-item {
  color: rgba(255, 255, 255, 0.5);
}
.sub-dropdown:hover .innerdrop {
  background: #ab0cd8;
  color: #fff;
}
.dropdown-submenu > .dropdown-menu {
  right: 0;
  margin-top: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.dropdown-submenu > #changeLang.dropdown-menu {
  right: 0 !important;
  left: unset;
}
.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu.hovered > .dropdown-menu {
  -webkit-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}
.dropdown-menu {
  border: none;
  min-width: max-content;
  padding: 0;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  transform: scale(1, 0);
  display: block;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
.sub-dropdown > .sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: -1px;
  min-width: 180px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 14px;
}
.sub-dropdown:hover > .sub-dropdown-menu {
  -webkit-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}
.sub-dropdown-menu {
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  transform: scale(1, 0);
  display: block;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
ul.dropdown-menu.language {
  background: rgba(0, 0, 0, 0.8);
}
.float-menu-btn {
  display: none;
  float: right;
  background: transparent;
  border: none;
  padding: 0;
}
.float-menu-btn:focus {
  outline: 0;
}
.nav-icon {
  width: 28px;
  margin: 0;
}
.nav-icon:after,
.nav-icon:before,
.nav-icon div {
  background-color: #fff;
  border-radius: 3px;
  content: "";
  display: block;
  height: 4px;
  margin: 5px 0;
  transition: all 0.2s ease-in-out;
}
.nav-icon:hover:before {
  transform: translateY(6px) rotate(135deg);
}
.nav-icon:hover:after {
  transform: translateY(-12px) rotate(-135deg);
}
.nav-icon:hover div {
  transform: scale(0);
}
.shock {
  animation: glowing 3000ms infinite;
}
@keyframes glowing {
  0% {
    text-shadow: 0 0 0 rgba(236, 41, 122, 1);
    color: #fff;
  }
  25% {
    text-shadow: 0 0 10px rgba(236, 41, 122, 1);
    color: #ec297a;
  }
  50% {
    text-shadow: 0 0 0 rgba(236, 41, 122, 1);
    color: #fff;
  }
  75% {
    text-shadow: 0 0 10px rgba(236, 41, 122, 1);
    color: #ec297a;
  }
  100% {
    text-shadow: 0 0 0 rgba(236, 41, 122, 1);
    color: #fff;
  }
}
.footer-top {
  background: #1e1e1e;
  color: #fff;
  padding: 45px 0;
}
.proft {
  display: grid;
  grid-template-columns: 250px auto;
  grid-gap: 10px;
}
.ftp-box h4 {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
}
.ftp-box a {
  color: #fff;
  font-weight: 300;
  font-size: 13px;
  line-height: 2;
  display: block;
}
.ftp-box a:hover {
  color: #cc43ff;
}
.ftp-box hr {
  border: 1px solid #606060;
  margin-top: 0.5rem;
}
.footer-btm {
  background: #000;
  color: #888;
}
.social-media-wrapper a {
  color: #888;
  display: inline-block;
  border-top: 2px solid transparent;
  margin-right: 24px;
  font-size: 36px;
  padding-top: 12px;
  width: 36px;
  text-align: center;
}
.social-media-wrapper a:hover {
  color: #cc43ff;
  border-top: 2px solid #cc43ff;
}
.logo-ft {
  text-align: right;
  padding: 20px 0 5px;
}
.logo-ft img {
  max-width: 300px;
}
.copyright {
  text-align: center;
  font-size: 11px;
  padding: 15px 0;
}
button.close-homepopup {
  background: none;
  border: none;
  font-weight: 600;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  position: absolute;
  right: 110px;
  top: 5px;
}
@media (max-width: 767px) {
  button.close-homepopup {
    display: none;
  }
}
.mobile-slider {
  display: none;
}
.partner-sec {
  background: #fefefe url("../../images/partner-bg.jpg") no-repeat bottom center;
  padding: 60px 0;
  background-size: cover;
}
.ic-box {
  text-align: center;
}
.icarrow-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: #626262;
  padding: 0;
  margin: auto;
  line-height: 1;
}
.icarrow-btn:hover {
  color: #ab0cd8;
}
.icarrow-btn:focus {
  outline: none;
}
.slick-carousel img {
  width: 367px;
  height: auto;
  margin: auto;
  transition: 0.3s;
}
.slick-carousel img:hover {
  filter: drop-shadow(0 0 4px rgba(236, 41, 122, 0.7)) brightness(1.1);
  transition: 0.3s;
}
.why-sec {
  background: #fff;
  padding: 60px 0 0;
  text-align: center;
}
.wpoint-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 70px 10px;
  text-align: center;
  padding: 50px 0 60px;
}
.wpoint-wrapper2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 10px;
  text-align: center;
  padding: 50px 0 50px;
}
.usp-box .counter-value {
  color: #000;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
}
.count-caption {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  width: 155px;
  margin: auto;
  margin-top: 12px;
  text-align: center;
  line-height: 1.3;
}
.why-wrapper {
  position: relative;
  padding: 30px;
  max-width: 1050px;
  height: auto;
  border-left: 15px solid #9100ff;
  border-right: 15px solid #ec297a;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 20px;
  -moz-background-size: 100% 15px;
  background-size: 100% 15px;
  background-image: linear-gradient(135deg, #9100ff 0%, #ec297a 100%),
    linear-gradient(135deg, #9100ff 0%, #ec297a 100%);
}
.why-wrapper::before {
  content: url(../../images/chips.png);
  display: block;
  position: absolute;
  left: -208px;
  z-index: 9;
  bottom: -304px;
}
.why-wrapper h1 {
  background: #fff;
  max-width: 455px;
  margin: auto;
  margin-top: -44px;
  margin-bottom: 30px;
  line-height: 1;
}
.why-wrapper2 {
  position: relative;
  padding: 30px;
  max-width: 1050px;
  height: auto;
  border-left: 15px solid #9100ff;
  border-right: 15px solid #ec297a;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 100% 20px;
  -moz-background-size: 100% 15px;
  background-size: 100% 15px;
  background-image: linear-gradient(135deg, #9100ff 0%, #ec297a 100%),
    linear-gradient(135deg, #9100ff 0%, #ec297a 100%);
}
.why-wrapper2::before {
  display: none;
}
.why-wrapper2 h1 {
  background: #fff;
  max-width: 455px;
  margin: auto;
  margin-top: -44px;
  margin-bottom: 30px;
  line-height: 1;
}
.why-wrapper2 .usp-box img {
  display: block;
  margin: auto;
  margin-bottom: 5px;
  transform: scale(0.7);
}
.usp-box sup {
  font-size: 25px;
  font-weight: 700;
  vertical-align: top;
  top: 15px;
}
.client-sec {
  background: #fcfcfc url(../../images/our-client-bg.png) no-repeat center
    center;
  padding: 250px 0 15px;
  min-height: 800px;
  text-align: center;
}
.latest-news-sec {
  background: #fcfcfc url(../../images/our-client-bg.png) no-repeat center top;
  padding: 150px 0 15px;
  min-height: 800px;
  font-size: 16px;
}
.crs-btn {
  color: #000;
  font-size: 45px;
}
.gsbanner-crs-btn {
  color: #fff;
  font-size: 45px;
}
.exp-sec {
  background: #fff url(../../images/GS-index_02.webp) no-repeat top right;
  position: relative;
  min-height: 700px;
  background-size: contain;
  padding: 80px 0 30px;
}
.exp-sec h1 {
  position: relative;
  z-index: 1;
}
.exp-content {
  font-size: 16px;
  max-width: 520px;
  position: relative;
  z-index: 1;
  margin-top: 22px;
}
.label-pc {
  position: absolute;
  top: -161px;
  right: 0;
  z-index: 0;
  pointer-events: none;
}
.exp-sec .learn-btn {
  margin-top: 110px;
}
.learn-btn {
  color: #fff;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 5px 36px;
  border-radius: 4px;
  display: inline-block;
  background-size: auto 200%;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background-image: linear-gradient(
    to bottom,
    #ec297a 0%,
    #9100ff 40%,
    #9100ff 60%,
    #ec297a 100%
  );
  transition: 0.5s;
}
.theme-btn:focus,
.theme-btn:hover,
.learn-btn:focus,
.learn-btn:hover {
  color: #fff;
}
.theme-btn:hover,
.learn-btn:hover {
  transition: all 0.4s ease-in-out;
  background-position: bottom center;
}
.theme-btn {
  color: #fff;
  letter-spacing: 1px;
  display: inline-block;
  background-size: auto 200%;
  background-image: linear-gradient(
    to bottom,
    #ec297a 0%,
    #9100ff 40%,
    #9100ff 60%,
    #ec297a 100%
  );
  transition: 0.5s;
  padding: 8px 18px !important;
}
.theme-text {
  background: #fc5c7d;
  position: relative;
  background: #7551a1;
  background-image: linear-gradient(177deg, #7551a1 0%, #ea2b7d 100%);
  background-image: -moz-linear-gradient(177deg, #7551a1 0%, #ea2b7d 100%);
  background-image: -webkit-linear-gradient(177deg, #7551a1 0%, #ea2b7d 100%);
  background-image: -ms-linear-gradient(177deg, #7551a1 0%, #ea2b7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 1s all;
  font-weight: 700;
}
a.theme-text:hover {
  background: #7551a1;
  background-image: linear-gradient(calc(177deg * 2), #7551a1 0%, #ea2b7d 100%);
  background-image: -moz-linear-gradient(
    calc(177deg * 2),
    #7551a1 0%,
    #ea2b7d 100%
  );
  background-image: -webkit-linear-gradient(
    calc(177deg * 2),
    #7551a1 0%,
    #ea2b7d 100%
  );
  background-image: -ms-linear-gradient(
    calc(177deg * 2),
    #7551a1 0%,
    #ea2b7d 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 1s all;
}
.theme-border {
  padding: 8px 12px;
  border: 1px solid #7551a1;
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: -moz-linear-gradient(177deg, #7551a1 0%, #ea2b7d 100%);
  border-image-source: -webkit-linear-gradient(
    177deg,
    #7551a1 0%,
    #ea2b7d 100%
  );
  border-image-source: -ms-linear-gradient(177deg, #7551a1 0%, #ea2b7d 100%);
  border-image-source: linear-gradient(177deg, #7551a1 0%, #ea2b7d 100%);
}
.talk-sec {
  background: #fff;
}
.talk-sec {
  background: #fcfcfc;
  padding: 15px 0 90px;
  font-size: 16px;
}
.game-api-sec {
  background: #fff;
  padding: 40px 0 60px;
  font-size: 16px;
}
.whygamingsoft-sec {
  background: #fff;
  max-width: 41.666667%;
  text-align: left;
}
.gs-slots-sec {
  background: #fff url("../../images/slots_bg.webp") no-repeat center bottom;
  position: relative;
  min-height: 700px;
  font-size: 16px;
  padding: 80px 0 30px;
}
.partner-1-sec {
  padding: 0 0 80px;
}
.partner-1-sec .carousel-control-prev {
  left: -100px;
}
.partner-1-sec .carousel-control-next {
  right: -100px;
}
.talk-to-us {
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
}
.talk-to-us-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.talk-to-us-bg:before {
  z-index: 1;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 60vh;
  background-image: linear-gradient(
    -180deg,
    #fff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.talk-to-us-bg:after {
  z-index: 1;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 20vh;
  background-image: linear-gradient(
    0deg,
    #ebebeb 0%,
    rgba(235, 235, 235, 0) 100%
  );
}
.squares {
  height: 100%;
  display: flex;
  justify-content: space-around;
  overflow: hidden;
}
.square {
  animation: squares 9.5s linear infinite;
  align-self: flex-end;
  width: 1em;
  height: 1em;
  transform: translateY(100%);
  background: #9100ff26;
}
.square:nth-child(2) {
  height: 1.5em;
  width: 3em;
  animation-delay: 1s;
  animation-duration: 17s;
  -webkit-filter: blur(5px);
}
.square:nth-child(3) {
  height: 2em;
  width: 1em;
  animation-delay: 1.5s;
  animation-duration: 8s;
  -webkit-filter: blur();
}
.square:nth-child(4) {
  height: 1em;
  width: 1.5em;
  animation-delay: 0.5s;
  -webkit-filter: blur(3px);
  animation-duration: 13s;
}
.square:nth-child(5) {
  height: 1.25em;
  width: 2em;
  animation-delay: 4s;
  -webkit-filter: blur(2px);
  animation-duration: 11s;
}
.square:nth-child(6) {
  height: 2.5em;
  width: 2em;
  animation-delay: 2s;
  -webkit-filter: blur(1px);
  animation-duration: 9s;
}
.square:nth-child(7) {
  height: 5em;
  width: 2em;
  -webkit-filter: blur(2.5px);
  animation-duration: 12s;
}
.square:nth-child(8) {
  height: 1em;
  width: 3em;
  animation-delay: 5s;
  -webkit-filter: blur(6px);
  animation-duration: 18s;
}
.square:nth-child(9) {
  height: 1.5em;
  width: 2em;
  -webkit-filter: blur(0.5px);
  animation-duration: 9s;
}
.square:nth-child(9) {
  height: 3em;
  width: 2.4em;
  animation-delay: 6s;
  -webkit-filter: blur(0.5px);
  animation-duration: 12s;
}
@keyframes squares {
  from {
    transform: translateY(100%) rotate(-50deg);
  }
  to {
    transform: translateY(calc(-100vh + -100%)) rotate(20deg);
  }
}
@media (max-width: 480px) {
  .partner-1-sec .carousel-control-prev {
    left: 0;
  }
  .partner-1-sec .carousel-control-next {
    right: 0;
  }
  .talk-content {
    text-align: center;
  }
  .talk-to-us-character {
    transform: scale(0.8);
  }
  .talk-to-us {
    align-items: center;
  }
}
.social-sec {
  background: #f5f5f5 url("../../images/about-top-bg.jpg") no-repeat top center;
  min-height: 786px;
  padding: 30px 0;
}
.welcome-box {
  position: absolute;
  max-width: 700px;
  color: #fff;
  font-size: 18px;
  top: 160px;
}
.welcome-box::after {
  content: "";
  background: url(../../images/frame_about.png) no-repeat center;
  width: 772px;
  height: 389px;
  position: absolute;
  top: -91px;
  left: 222px;
}
.sld-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
}
.sld-sm-title {
  font-weight: 600;
  font-size: 22px;
}
.social-img {
  margin-top: 65px;
}
.mission-sec {
  background: #f5f5f5 url("../../images/about-bg.jpg") no-repeat right bottom;
  background-size: 100%;
  position: relative;
  padding: 45px 0;
  font-size: 16px;
}
.mission-content {
  max-width: 480px;
}
img.fairy-img {
  position: absolute;
  right: -123px;
  top: -468px;
}
.value-sec {
  background: #f5f5f5 url("../../images/value-bg.jpg") no-repeat center;
  position: relative;
  padding: 45px 0 80px;
  font-size: 16px;
  text-align: center;
}
.value-box {
  padding: 15px 0 45px;
}
.value-box img {
  filter: contrast(0) brightness(0);
  transition: 0.3s;
}
.value-box img:hover {
  filter: contrast(1) brightness(1) drop-shadow(0 0 3px rgba(145, 0, 255, 0.4));
  transition: 0.3s;
}
.value-box h3 {
  margin-top: 14px;
  margin-bottom: 14px;
}
.flagship-sec {
  background: #f5f5f5 url("../../images/flagship-bg.jpg") no-repeat bottom left;
  padding: 60px 0 60px;
  font-size: 16px;
  text-align: center;
}
.flagship-box {
  max-width: 700px;
  margin: auto;
}
.community-sec {
  background: linear-gradient(
    to right,
    rgba(145, 0, 255, 1) 0%,
    rgba(236, 41, 122, 1) 100%
  );
  padding: 80px 0;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.commu-box {
  max-width: 700px;
  margin: auto;
  margin-bottom: 45px;
}
.comm-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cmbox {
  padding: 25px 15px;
}
.cmbox .counter-value {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
.cmcaption {
  max-width: 235px;
  margin: auto;
  margin-top: 5px;
  line-height: 1.2;
  letter-spacing: 1px;
}
.cmbox sup {
  font-size: 30px;
  font-weight: 500;
  top: -12px;
  line-height: 1;
}
.cmbox img {
  display: block;
  margin: auto;
  margin-bottom: 8px;
}
.bm1 {
  border-bottom: 2px solid #fff;
}
.bm2 {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}
.tm2 {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}
.about-us-contact-btn {
  margin: auto;
  margin-top: 50px;
}
.about-us-contact-btn a {
  color: #b92d3a;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 5px 36px;
  border-radius: 4px;
  display: inline-block;
  background-size: auto 200%;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 11%), 0 1px 3px rgba(0, 0, 0, 8%);
  background-image: linear-gradient(
    to bottom,
    #f8f9fa 0%,
    #fcfcfc 40%,
    #f8f9fa 60%,
    #fcfcfc 100%
  );
  transition: 0.5s;
}
.about-us-contact-btn a:focus {
  color: #9100ff;
}
.about-us-contact-btn a:hover {
  color: #9100ff;
  transition: all 0.4s ease-in-out;
  background-position: bottom center;
}
.label-sec {
  background: #fff url("../../images/gsglobal/global_bg_03.jpg") no-repeat
    bottom center;
  padding: 180px 0 45px;
  font-size: 16px;
  min-height: 800px;
}
.deco,
.deco-right {
  position: relative;
  margin-bottom: 32px;
  margin-top: 65px;
}
.deco {
  margin-left: 60px;
}
.deco-right {
  margin-right: 60px;
  text-align: right;
}
.deco::before {
  content: url(../../images/border-deco.png);
  display: block;
  position: absolute;
  left: -60px;
  top: -65px;
}
.deco-right::after {
  content: url(../../images/border-deco.png);
  display: block;
  position: absolute;
  right: -60px;
  top: -65px;
  transform: rotate(90deg);
}
.wlcontent {
  max-width: 480px;
  margin-top: 20px;
  font-size: 16px;
}
img.gapi-img {
  animation: float 3s ease-in-out infinite;
}
img.pc-img {
  position: absolute;
  right: 116px;
  top: 33px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translatey(0);
  }
  50% {
    transform: translatey(-25px);
  }
  100% {
    transform: translatey(0);
  }
}
.solution-sec {
  background: url("../../images/white-label_04.jpg") no-repeat bottom right;
  padding: 60px 0;
}
.label-box {
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  height: 366px;
  max-width: 319px;
  margin: 25px auto;
  transition: 0.3s;
}
.label-box:hover {
  border-radius: 30px 0 30px 0;
  transition: 0.3s;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}
.label-box h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.lb-caption {
  margin-top: 85px;
  padding: 0 30px;
}
.lb-1 {
  background: url("../../images/label_01.jpg") no-repeat center;
  background-size: cover;
}
.lb-1:hover {
  background: linear-gradient(
      to bottom,
      rgba(236, 41, 122, 1) 0%,
      rgba(145, 0, 255, 1) 100%
    ),
    url(../../images/label_01.jpg) no-repeat center;
  background-blend-mode: screen;
}
.lb-2 {
  background: url("../../images/label_02.jpg") no-repeat center;
  background-size: cover;
}
.lb-2:hover {
  background: linear-gradient(
      to bottom,
      rgba(236, 41, 122, 1) 0%,
      rgba(145, 0, 255, 1) 100%
    ),
    url(../../images/label_02.jpg) no-repeat center;
  background-blend-mode: screen;
}
.lb-3 {
  background: url("../../images/label_03.jpg") no-repeat center;
  background-size: cover;
}
.lb-3:hover {
  background: linear-gradient(
      to bottom,
      rgba(236, 41, 122, 1) 0%,
      rgba(145, 0, 255, 1) 100%
    ),
    url(../../images/label_03.jpg) no-repeat center;
  background-blend-mode: screen;
}
.lb-4 {
  background: url("../../images/label_04.jpg") no-repeat center;
  background-size: cover;
}
.lb-4:hover {
  background: linear-gradient(
      to bottom,
      rgba(236, 41, 122, 1) 0%,
      rgba(145, 0, 255, 1) 100%
    ),
    url(../../images/label_04.jpg) no-repeat center;
  background-blend-mode: screen;
}
.lb-5 {
  background: url("../../images/label_05.jpg") no-repeat center;
  background-size: cover;
}
.lb-5:hover {
  background: linear-gradient(
      to bottom,
      rgba(236, 41, 122, 1) 0%,
      rgba(145, 0, 255, 1) 100%
    ),
    url(../../images/label_05.jpg) no-repeat center;
  background-blend-mode: screen;
}
.lb-6 {
  background: url("../../images/label_06.jpg") no-repeat center;
  background-size: cover;
}
.lb-6:hover {
  background: linear-gradient(
      to bottom,
      rgba(236, 41, 122, 1) 0%,
      rgba(145, 0, 255, 1) 100%
    ),
    url(../../images/label_06.jpg) no-repeat center;
  background-blend-mode: screen;
}
.feature-sec {
  background: url("../../images/white-label_05.jpg") no-repeat bottom center;
  background-size: cover;
  padding: 120px 0;
  color: #fff;
  font-size: 16px;
}
.feature-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 12px;
  margin-top: 40px;
}
.feature-box {
  padding: 20px 30px;
}
.feature-box h4 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  max-width: 180px;
  margin: auto;
  margin-bottom: 10px;
}
.feature-box img {
  display: block;
  margin: auto;
  text-align: center;
  margin-bottom: 15px;
}
.feature-box ul {
  padding: 0;
}
.feature-box ul li {
  margin-left: 20px;
  padding-bottom: 10px;
}
.tb-1 {
  border-bottom: 2px solid #fff;
}
.tr-1 {
  border-right: 2px solid #fff;
}
.stats-sec {
  background: #fcfcfc url("../../images/white-label_07.jpg") no-repeat bottom
    center;
  font-size: 16px;
  padding: 120px 0 100px;
  text-align: center;
  min-height: 700px;
  background-size: cover;
}
.stat-box {
  margin: 30px 0;
}
.stat-box img {
  display: block;
  margin: auto;
  margin-bottom: 12px;
}
.stat-box .counter-value {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
.stat-box sup {
  font-size: 30px;
  font-weight: 600;
}
.stat-caption {
  line-height: 1.2;
  margin: auto;
  margin-top: 7px;
  width: 150px;
}
.grow-sec {
  background: #fcfcfc;
  font-size: 16px;
  padding: 45px 0 60px 0;
  min-height: 700px;
}
.city-img {
  position: absolute;
  right: 50px;
  top: 0;
  animation: float 3s ease-in-out infinite;
}
.custom-sec {
  background: #fff url("../../images/custom_02.jpg") no-repeat top center;
  padding: 280px 0 80px;
  font-size: 16px;
}
.ci-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
  max-width: 800px;
  margin: auto;
  text-align: center;
  margin-top: 90px;
}
.cibox img {
  filter: brightness(0);
  transition: 0.3s;
}
.cibox:hover img {
  filter: brightness(1);
  transition: 0.3s;
}
.cibox h5 {
  font-weight: 700;
  font-size: 16px;
  max-width: 150px;
  margin: auto;
  margin-top: 10px;
}
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.cibox img {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.cibox:hover img {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.retention-sec {
  background: #fff url("../../images/custom_04.jpg") no-repeat center center;
  padding: 150px 0 160px;
  font-size: 16px;
}
.payment-sec {
  background: #fff url("../../images/custom_05.jpg") no-repeat center top;
  font-size: 16px;
  padding: 170px 0 0;
}
.pg-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-top: 90px;
}
.api-sec {
  background: #fff url("../../images/custom_06.jpg") no-repeat top center;
  padding: 240px 0 100px;
  font-size: 16px;
  text-align: center;
  min-height: 680px;
}
.contact-sec {
  background: #fff url("../../images/contact-bg.jpg") no-repeat top center;
  padding: 160px 0 50px;
  font-size: 16px;
}
.contact-sec h2 {
  margin-bottom: 30px;
}
.form-wrapper {
  max-width: 450px;
}
.form-wrapper-1 {
  font-size: 15px;
  color: #717171;
}
.contact-emailreminder {
  color: #f00;
}
.contact-social-media-wrapper a {
  color: #888;
  display: inline-block;
  border-top: 2px solid transparent;
  margin-right: 24px;
  font-size: 36px;
  padding-top: 12px;
  width: 36px;
  text-align: center;
}
.contact-social-media-wrapper a:hover {
  color: #cc43ff;
}
.field-cf {
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.field-cf input {
  padding: 3px 35px 2px 54px;
  font-size: 16px;
  height: calc(1.5em + 0.75rem + 2px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.field-cf select {
  font-size: 16px;
  height: calc(1.5em + 0.75rem + 2px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.field-cf input:focus,
.field-cf select:focus {
  outline: none;
  border: 1px solid #9502f9;
}
.mrg {
  margin-top: 20px;
}
img.redstar {
  position: absolute;
  right: 13px;
  top: 9px;
}
img.lbimg {
  position: absolute;
  left: 12px;
  top: 5px;
}
label.require {
  color: #f00;
  font-size: 9px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  margin: 2px 0 8px;
  display: block;
  text-align: right;
}
.rqm-title {
  font-size: 22px;
  color: #717171;
  font-weight: 600;
  letter-spacing: 1px;
}
.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  font-size: 15px;
  margin-bottom: 4px;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 16px;
  height: 16px;
  background: #d0d0d0;
  border-radius: 5px;
}
.styled-checkbox:hover + label:before {
  background: #9402f9;
}
.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
  background: #9402f9;
}
.styled-checkbox:disabled + label {
  color: #b9b9b9;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #d0d0d0;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
textarea.ftx-field {
  font-size: 15px;
  padding: 10px 12px;
  background: #e5e5e5;
  border: 1px solid transparent;
  height: 170px;
  color: #717171;
  border-radius: 3px;
  margin-top: 4px;
}
textarea.ftx-field:focus {
  outline: none;
  border: 1px solid #9502f9;
}
.submit-btn {
  color: #fff;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 5px 50px;
  border-radius: 4px;
  border: none;
  display: inline-block;
  background-size: auto 200%;
  color: #fff;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background-image: linear-gradient(
    to bottom,
    #ec297a 0%,
    #9100ff 40%,
    #9100ff 60%,
    #ec297a 100%
  );
  transition: 0.5s;
}
.submit-btn:focus,
.learn-btn:hover {
  color: #fff;
}
.submit-btn:hover {
  transition: all 0.4s ease-in-out;
  background-position: bottom center;
}
.pnc {
  font-size: 11px;
  color: #717171;
  text-align: center;
  margin-top: 30px;
}
.shocktober-sec {
  background: #032527 url("../../images/shock_bg.jpg") no-repeat top center;
  padding: 45px 0;
}
.shock-title {
  margin-top: 230px;
}
.gs-shock {
  margin-top: 80px;
  margin-bottom: 60px;
}
.shocking-content {
  color: #fff0bf;
  font-weight: 700;
  font-size: 30px;
}
.promo-shock-wrapper {
  display: grid;
}
.promo-shock-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
  margin: auto;
  grid-gap: 15px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.ps-box img {
  filter: drop-shadow(0 0 8px rgba(255, 249, 89, 0.6));
}
.ps-box img:hover {
  -webkit-animation-name: shake;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-transform-origin: 50% 100%;
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(2px, 1px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-3px, 0) rotate(3deg);
  }
  30% {
    -webkit-transform: translate(0, 2px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
  }
  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(2px, 1px) rotate(-2deg);
  }
  90% {
    -webkit-transform: translate(2px, 2px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
  }
}
.talk-btn img {
  transition: 0.3s;
}
.talk-btn img:hover {
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.7));
  transform: scale(1.03);
  transition: 0.3s;
}
.shock-tnc {
  color: #8dbfc4;
  letter-spacing: 1px;
}
.shock-tnc ol {
  padding: 0 10px 0 20px;
}
.shock-tnc ol li {
  padding-bottom: 4px;
}
.games-api-sec {
  background: url("../../images/api_02.jpg") no-repeat top center;
  padding: 200px 0 45px 0;
  font-size: 16px;
}
.market-sec {
  background: url(../../images/api_04.jpg) no-repeat top center;
  padding: 200px 0 105px 0;
  font-size: 16px;
  min-height: 640px;
}
.free-bundle-sec {
  background: url("../../images/api_06.jpg") no-repeat top center;
  padding: 200px 0 70px 0;
  font-size: 16px;
}
.custom-game-sec {
  background: url("../../images/custom-game-bg.jpg") no-repeat top center;
  padding: 240px 0 100px 0;
  font-size: 16px;
}
.retention-system-sec {
  background: url("../../images/rentation-bg.jpg") no-repeat top center;
  padding: 100px 0 120px 0;
  font-size: 16px;
}
.webdesign-sec {
  background: url("../../images/web-design-bg.jpg") no-repeat top center;
  padding: 120px 0 80px 0;
  font-size: 16px;
}
.free-services-sec {
  background: url("../../images/free-consult-bg.jpg") no-repeat top center;
  padding: 210px 0 100px 0;
  font-size: 16px;
}
.MultiCarousel {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  position: relative;
}
.MultiCarousel .MultiCarousel-inner {
  transition: 1s ease all;
  float: left;
}
.MultiCarousel .MultiCarousel-inner .item {
  float: left;
}
.MultiCarousel .MultiCarousel-inner .item > div {
  text-align: center;
}
.MultiCarousel .leftLst,
.MultiCarousel .rightLst {
  position: absolute;
  border-radius: 50%;
  top: calc(50% - 20px);
}
.MultiCarousel .leftLst {
  left: 0;
}
.MultiCarousel .rightLst {
  right: 0;
}
.MultiCarousel .leftLst.over,
.MultiCarousel .rightLst.over {
  pointer-events: none;
  color: #8e8e8e;
}
.btn-arrow {
  font-size: 24px;
  background: transparent;
}
.btn-arrow:hover,
.btn-arrow:focus {
  outline: none;
  box-shadow: none;
}
.payment-product-logo {
  transition: transform 0.5s;
}
.payment-product-logo:hover {
  transform: scale(0.9);
}
.gateway-sec {
  background: url("../../images/Payment-Gateway_02.jpg") no-repeat center;
  padding: 200px 0 60px 0;
  font-size: 16px;
}
.trusted-sec {
  background: url("../../images/Payment-Gateway_04.jpg") no-repeat top center;
  padding: 50px 0 60px 0;
  font-size: 16px;
  text-align: center;
}
.vendor-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px 0;
  max-width: 800px;
  margin: 30px auto 40px;
}
.trstbox {
  max-width: 800px;
  margin: auto;
}
.vendor-logo {
  align-self: center;
}
.sportsbook-sec {
  background: url("../../images/sports/sport_03.jpg") no-repeat bottom center;
  padding: 100px 0 120px 0;
  text-align: center;
  font-size: 16px;
}
.sportsbook-sec h1 {
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
}
.sportsbook-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: justify;
}
.sports-vendor-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 12px;
}
.vbox {
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
  width: 100%;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.vbox * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.vbox:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(236, 25, 152, 1) 0%,
    rgba(89, 38, 114, 1) 100%
  );
  opacity: 0.9;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.vbox figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vbox h2 {
  margin: 0;
  opacity: 0;
  font-weight: 600;
  font-size: 14px;
}
.vbox h2 {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.vbox a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.vbox:hover:before {
  top: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.vbox:hover h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.vbox:hover h2 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.product-list-h3 {
  width: 80%;
}
.slots-bundle-sec {
  background: url("../../images/sports/sport_38.jpg") no-repeat top center;
  background-size: cover;
  padding: 150px 0 180px;
  text-align: center;
  font-size: 22px;
}
.bundle-wrapper {
  font-weight: 700;
  line-height: 1.5;
  margin-top: 20px;
}
.other-categ-sec {
  padding: 30px 0 60px;
}
.ctg-box h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 12px;
}
.categ-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 12px;
}
.categbox {
  position: relative;
  overflow: hidden;
  max-width: 194px;
  margin: auto;
  width: 100%;
  color: #000;
  text-align: center;
  -webkit-perspective: 50em;
  perspective: 50em;
}
.categbox * {
  -webkit-box-sizing: padding-box;
  box-sizing: padding-box;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.categbox figcaption {
  top: 50%;
  left: 20px;
  right: 20px;
  position: absolute;
  opacity: 0;
  z-index: 1;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.categbox h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.categbox:after {
  background: linear-gradient(
    to bottom,
    rgba(236, 25, 152, 1) 0%,
    rgba(89, 38, 114, 1) 100%
  );
  position: absolute;
  opacity: 0.8;
  content: "";
  display: block;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0;
}
.categbox a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.categbox:hover figcaption {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.categbox:hover:after {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  opacity: 0.9;
}
.s-sports-vendor-sec {
  background: url("../../images/sports/sportsbook_02.jpg") no-repeat top center;
  height: 850px;
  color: #fff;
}
.sport-logo {
  margin-top: 80px;
}
.sportcaption {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.sport-char {
  margin-top: 90px;
}
.sports-about-sec {
  background: url("../../images/sports/sportsbook_03.jpg") no-repeat top center;
  font-size: 16px;
  padding: 60px 0 60px;
  text-align: center;
}
.sports-about-sec h1 {
  font-weight: 700;
  text-transform: none;
  font-size: 50px;
}
.sport-about-wrapper {
  text-align: justify;
}
.sports-inner-sec {
  padding: 30px 0 60px;
  font-size: 16px;
}
.sports-inner-sec h1,
.esports-inner-sec h1 {
  text-align: center;
}
.tp-wrapper h2 {
  font-size: 22px;
  font-weight: 700;
}
.sports-inner-sec img {
  box-shadow: 4px 4px 5px 0 rgba(0, 0, 0, 0.45);
}
.zaq-sec {
  background: url("../../images/sports/sportsbook_05.jpg") no-repeat top center;
  background-size: cover;
  padding: 80px 0 60px;
  font-size: 16px;
}
.zaq-sec h1,
.ezaq-sec h1 {
  font-weight: 700;
}
.zaq-content {
  max-width: 800px;
  margin: auto;
}
.sports-inner-sec .row {
  padding-top: 30px;
}
.esports-vendor-sec {
  background: url("../../images/sports/esports_02.jpg") no-repeat top center;
  height: 850px;
  color: #fff;
}
.ezaq-sec {
  background: url("../../images/sports/esports_05.jpg") no-repeat bottom center;
  background-size: cover;
  padding: 80px 0 60px;
  font-size: 16px;
}
.esports-about-sec {
  background: url("../../images/sports/esports_04.jpg") no-repeat right center;
  background-size: contain;
  font-size: 16px;
  padding: 60px 0 60px;
  text-align: center;
}
.esports-inner-sec {
  background: url("../../images/sports/esports_03.jpg") no-repeat center center;
  padding: 30px 0 60px;
  font-size: 16px;
}
.esports-about-sec h1 {
  font-weight: 700;
  text-transform: none;
  font-size: 50px;
}
.bg-black {
  background: #000;
}
.g2e-middle-sec {
  background: url("../../images/g2e/middle-g2e-bg.png") no-repeat center top;
  height: 1400px;
  margin-top: -42%;
  padding-top: 300px;
  position: relative;
  z-index: 2;
}
.g2e-bottom-sec {
  background: url("../../images/g2e/bottom-g2e-bg_02.jpg") no-repeat top center;
  background-size: cover;
  height: 1300px;
  font-family: "Play", sans-serif;
  color: #ffd58d;
  font-size: 20px;
  text-align: center;
  padding: 0 0 60px;
  margin-top: -510px;
}
.g2e-bottom-sec .container-fluid {
  position: relative;
  z-index: 2;
}
.g2e-bottom-sec h1 {
  font-size: 64px;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 700;
}
.g2e-bottom-sec h1::after {
  content: "";
  background: url(../../images/g2e/spark.png) no-repeat bottom center;
  background-size: contain;
  display: block;
  position: absolute;
  height: 138px;
  top: 0;
  left: 0;
  right: 0;
}
.g2e-bottom-sec h2 {
  font-size: 45px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.g2e-bottom-sec h4 {
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 15px;
}
.g2e-bottom-sec h5 {
  font-size: 27px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}
.date-g2e {
  padding: 30px 0;
}
.ge-box {
  max-width: 900px;
  margin: 60px auto;
  font-size: 25px;
}
.click-btn {
  display: block;
  max-width: 321px;
  margin: auto;
  transition: 0.3s;
}
.click-btn:hover {
  transform: scale(0.97);
  filter: brightness(1.05);
  transition: 0.3s;
}
@media (max-width: 991px) {
  .g2e-bottom-sec h1 {
    font-size: 38px;
  }
  .g2e-middle-sec {
    background-size: cover;
    height: 1100px;
  }
  .g2e-bottom-sec {
    height: auto;
    margin-top: -450px;
  }
  .g2e-bottom-sec h1::after {
    width: 320px;
    height: 70px;
    margin: auto;
  }
  .g2e-bottom-sec h2 {
    font-size: 34px;
  }
  .ge-box {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .g2e-middle-sec {
    height: 990px;
    margin-top: -74%;
  }
}
.genesis-body {
  background: #2c0c21 url("../../images/genesis/genesis_bg.jpg") no-repeat top
    center;
  color: #fff;
}
.genesis-top-sec {
  position: relative;
  z-index: 1;
  text-align: center;
}
.genesis-about-sec {
  position: relative;
  background: url("../../images/genesis/painter.png") no-repeat top center;
  padding: 230px 0 60px;
  text-align: center;
  font-family: "Play", sans-serif;
  margin-top: -270px;
}
.gen-box img {
  display: block;
  margin: auto;
}
.gen-box {
  position: absolute;
  top: 19%;
  left: 0;
  right: 0;
}
.gen-content {
  font-size: 25px;
  max-width: 800px;
  margin: 30px auto 80px;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.9);
}
.gen-content h2 {
  font-size: 45px;
  text-transform: none;
}
.genesbox {
  margin: 25px auto;
}
.fun-btn {
  background: linear-gradient(
    to bottom,
    rgba(250, 221, 133, 1) 0%,
    rgba(215, 155, 15, 1) 12%,
    rgba(215, 155, 15, 1) 49%,
    rgba(246, 218, 93, 1) 60%,
    rgba(246, 218, 93, 1) 93%,
    rgba(255, 255, 255, 1) 96%,
    rgba(255, 255, 255, 1) 100%
  );
  color: #000;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  max-width: 165px;
  margin: 30px auto 5px;
  padding: 0 5px;
  border-radius: 11px;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.69);
  border: 3px solid #000;
}
.fun-btn:hover {
  background: linear-gradient(
    to top,
    rgba(250, 221, 133, 1) 0%,
    rgba(215, 155, 15, 1) 12%,
    rgba(215, 155, 15, 1) 49%,
    rgba(246, 218, 93, 1) 60%,
    rgba(246, 218, 93, 1) 93%,
    rgba(255, 255, 255, 1) 96%,
    rgba(255, 255, 255, 1) 100%
  );
  color: #000;
}
.bomb {
  position: absolute;
  left: 0;
  top: 25%;
}
.cards {
  position: absolute;
  top: -6%;
  right: 0;
}
@media (max-width: 1299px) {
  .bomb {
    display: none;
  }
  .cards {
    display: none;
  }
}
@media (max-width: 991px) {
  .gen-box img {
    max-width: 83%;
  }
}
@media (max-width: 480px) {
  .gen-content {
    font-size: 17px;
  }
}
.gsglobal-top-sec {
  background: url("../../images/gsglobal/global_bg_02.jpg") no-repeat top center;
  padding: 100px 0;
  text-align: center;
}
.connect-top-sec {
  background: url("../../images/connect/connect_bg_02.jpg") no-repeat top center;
  padding: 100px 0;
  text-align: center;
}
.gs-connect-sec {
  background: url(../../images/connect/connect_bg_04.jpg) no-repeat top center;
  padding: 140px 0 130px 0;
  font-size: 16px;
}
.connect-api-sec {
  background: url(../../images/connect/connect_bg_05.jpg) no-repeat top center;
  padding: 140px 0 215px 0;
  font-size: 16px;
}
.modern-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  max-width: 600px;
  margin: auto;
  text-align: center;
  margin-top: 90px;
}
.modern-sec {
  background: url(../../images/connect/connect_bg_07.jpg) no-repeat top center;
  background-size: cover;
  padding: 30px 0 50px 0;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 480px) {
  .gs-connect-sec {
    background-size: cover;
    padding: 65px 0 50px 0;
  }
  .connect-api-sec {
    background-size: cover;
    padding: 65px 0 70px 0;
  }
  .modern-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
    grid-gap: 30px;
  }
}
@media (max-width: 1400px) {
  img.fairy-img {
    position: absolute;
    top: -468px;
    right: 0;
    max-width: 680px;
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .dropdown-submenu {
    padding: 5px 10px;
  }
  img.fairy-img {
    position: absolute;
    top: -468px;
    max-width: 650px;
  }
  img.pc-img {
    position: absolute;
    right: 0;
  }
  .city-img {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 445px;
  }
  .why-wrapper2 {
    max-width: 600px;
    width: auto;
  }
  .wpoint-wrapper2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .logo-ft {
    text-align: center;
  }
  .logo {
    text-align: center;
  }
  .ftp-box {
    margin-bottom: 20px;
  }
  .social-media-wrapper {
    text-align: center;
  }
  .logo-ft img {
    max-width: 260px;
  }
  .menu-grid {
    display: none;
  }
  .float-menu-btn {
    display: block;
    position: absolute;
    right: 35px;
    top: 17px;
  }
  .wpoint-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .usp-box .counter-value {
    font-size: 40px;
  }
  .client-sec {
    background: #fcfcfc url(../../images/our-client-bg.png) no-repeat center top;
    padding: 90px 0 60px;
    min-height: 520px;
    background-size: cover;
  }
  .latest-news-sec {
    background: #fcfcfc url(../../images/our-client-bg.png) no-repeat center top;
    padding: 90px 20px 60px 20px;
    min-height: 520px;
    background-size: cover;
  }
  .why-wrapper::before {
    display: none;
  }
  .why-wrapper2::before {
    display: none;
  }
  .label-pc {
    position: initial;
    top: unset;
  }
  .exp-sec {
    padding: 30px 0 60px;
    background-position: center;
    background-position-y: 425px;
  }
  .exp-content {
    margin: auto;
    text-align: center;
  }
  .exp-sec .learn-btn {
    margin-top: 0;
  }
  img.fairy-img {
    position: absolute;
    top: -560px;
    max-width: 650px;
  }
  .label-sec {
    padding: 130px 0 45px;
    background-size: cover;
  }
  img.pc-img {
    position: initial;
    display: block;
    margin: auto;
    margin-top: 60px;
  }
  .feature-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .tr-1,
  .tb-1 {
    border: 0;
  }
  .city-img {
    position: initial;
    display: block;
    margin: auto;
    margin-top: 80px;
    width: 100%;
  }
  .sports-vendor-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .s-sports-vendor-sec {
    height: auto;
    background-size: cover;
  }
  .esports-vendor-sec {
    height: auto;
    background-size: cover;
  }
  .sport-logo {
    margin-top: 40px;
  }
  .mission-content {
    margin: auto;
    text-align: center;
  }
  .center-md {
    text-align: center;
  }
  .welcome-box {
    top: 15px;
  }
  .welcome-box::after {
    content: none;
  }
}
.mobile-slider {
  display: none !important;
}
.desktop-slider {
  display: block !important;
}
@media (max-width: 767px) {
  .mobile-slider {
    display: block !important;
  }
  .desktop-slider {
    display: none !important;
  }
  .comm-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .bm1,
  .bm2,
  .tm1,
  .tm2 {
    border: 0;
  }
  .custom-sec {
    padding: 140px 0 80px;
  }
  .pg-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .ci-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .api-sec {
    padding: 140px 0 100px;
  }
  .crs-btn {
    font-size: 35px;
    opacity: 0.3;
  }
  .gsbanner-crs-btn {
    font-size: 35px;
    opacity: 0.3;
  }
  .shocktober-sec {
    background-size: contain;
  }
  .shock-title {
    margin-top: 30px;
  }
  .promo-shock-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .game-api-sec {
    text-align: center;
  }
  .whygamingsoft-sec {
    text-align: center;
    position: center;
    max-width: 100%;
    padding: 60px 0 30px;
  }
  .gs-slots-sec {
    text-align: center;
    padding: 60px 0 30px;
  }
  #GameCarousel {
    margin-top: 30px;
  }
  .sportsbook-sec {
    padding: 50px 0 120px 0;
  }
  .sportsbook-sec h1 {
    font-size: 36px;
  }
  .categ-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .sports-inner-sec .row {
    padding-top: 0;
  }
  .sports-about-sec h1,
  .esports-about-sec h1 {
    font-size: 36px;
  }
  .zaq-sec,
  .ezaq-sec {
    padding: 30px 0 60px;
  }
}
@media (max-width: 480px) {
  .logo img {
    max-width: 210px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 24px;
  }
  .float-menu-btn {
    right: 16px;
    top: 12px;
  }
  .social-media-wrapper a {
    font-size: 28px;
    width: 28px;
    margin: 0 12px;
  }
  .wpoint-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 50px 10px;
  }
  .wpoint-wrapper2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px 10px;
  }
  .why-wrapper h1 {
    margin-top: -50px;
    font-size: 24px;
    max-width: 220px;
  }
  .why-wrapper2 h1 {
    margin-top: -50px;
    font-size: 24px;
    max-width: 220px;
  }
  .exp-sec h1 {
    font-size: 24px;
  }
  .social-sec {
    background: #f5f5f5 url(../../images/about-top-bg.jpg) no-repeat bottom
      center;
    min-height: 460px;
    padding: 30px 0;
  }
  .social-img {
    margin-top: 25px;
  }
  img.fairy-img {
    position: absolute;
    top: -320px;
    max-width: 380px;
  }
  .value-sec {
    padding: 45px 0 20px;
  }
  .comm-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
  }
  .deco,
  .deco-right {
    margin-top: 0;
    text-align: center;
  }
  .deco {
    margin-left: 0;
  }
  .deco-right {
    margin-right: 0;
  }
  .deco::before {
    content: none;
  }
  .deco-right::after {
    content: none;
  }
  .label-sec {
    padding: 50px 0 45px;
  }
  .custom-sec {
    padding: 50px 0 80px;
  }
  .retention-sec {
    padding: 69px 0 60px;
  }
  .payment-sec {
    padding: 60px 0 0;
  }
  .ci-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }
  .pg-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }
  .feature-sec {
    padding: 60px 0;
  }
  .stats-sec {
    padding: 40px 0 60px;
  }
  .contact-sec {
    padding: 50px 0 50px;
  }
  .ic-box {
    padding: 5px 20px;
  }
  .games-api-sec {
    padding: 50px 0 45px 0;
  }
  .market-sec {
    background: url(../../images/api_04.jpg) no-repeat top center;
    background-size: cover;
    min-height: auto;
    padding: 30px 0 105px 0;
  }
  .free-bundle-sec {
    background: url(../../images/api_06.jpg) no-repeat top center;
    background-size: cover;
    padding: 60px 0 70px 0;
  }
  .btn-arrow {
    color: #fff;
    opacity: 0.8;
  }
  .custom-game-sec {
    padding: 40px 0 30px 0;
  }
  .retention-system-sec {
    padding: 35px 0 30px 0;
  }
  .webdesign-sec {
    padding: 45px 0 90px 0;
  }
  .free-services-sec {
    background: url(../../images/free-consult-bg.jpg) no-repeat top center;
    background-size: cover;
    padding: 30px 0 50px 0;
  }
  .gateway-sec {
    padding: 60px 0 0;
  }
  .vendor-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .sports-vendor-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .slots-bundle-sec {
    font-size: 16px;
    padding: 80px 0 100px;
  }
  .sportcaption {
    font-size: 20px;
  }
  .sport-logo {
    margin-top: 20px;
  }
  .welcome-box {
    top: 0;
    font-size: 13px;
  }
  .sld-title {
    font-size: 28px;
    line-height: 1.3;
  }
  .sld-sm-title {
    font-size: 15px;
  }
}
.t-body.spice {
  background: #000 url("../../images/spice/spice-bg.jpg") no-repeat top center;
  color: #fff;
}
.spice-sec {
  background: url("../../images/spice/smoke-star.png") no-repeat center;
  background-size: cover;
  padding: 30px 0 45px;
  text-align: center;
}
.spice-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 10px;
}
.goa-frame {
  max-width: 776px;
  margin: auto;
  font-size: 64px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  color: #ffae00;
  border: 9px solid #ffae00;
  padding: 25px;
}
.goa-title {
  font-size: 25px;
}
.consultant-sec {
  background: url("../../images/spice/line-fade-bg.png") no-repeat top center;
  background-size: 100% 100%;
  padding: 30px 0;
}
.guarantee {
  font-size: 19px;
  font-weight: 700;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
  text-align: center;
}
.spice-form {
  max-width: 450px;
  margin: 15px auto;
  position: relative;
  z-index: 1;
}
.spice-form input:focus,
.spice-form textarea:focus,
button:focus {
  outline: none;
  border: 1px solid #ffae00;
}
input.spice {
  background: #fff;
  color: #000;
  border: 1px solid #ee2dff;
  padding: 2px 10px;
  height: 38px;
  border-radius: 4px;
  font-weight: 500;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
}
textarea.spice-msg {
  background: #fff;
  color: #000;
  border: 1px solid #ee2dff;
  padding: 5px 10px;
  height: 75px;
  border-radius: 4px;
  font-weight: 500;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
}
button.submit-spice {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 30px;
  border-radius: 4px;
  border: none;
  display: inline-block;
  background-size: auto 200%;
  color: #fff;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background-image: linear-gradient(
    to bottom,
    #ec297a 0%,
    #9100ff 40%,
    #9100ff 60%,
    #ec297a 100%
  );
  transition: all 0.4s ease-in-out;
}
button.submit-spice:hover {
  transition: all 0.4s ease-in-out;
  background-position: bottom center;
}
.spice-img-sec {
  margin-top: -28%;
}
@media (max-width: 991px) {
  .spice-img-sec {
    margin-top: -18%;
  }
}
@media (max-width: 480px) {
  .spice-title {
    font-size: 24px;
    line-height: 1.2;
  }
  .goa-frame {
    font-size: 38px;
  }
  .goa-title {
    font-size: 20px;
    margin-top: 10px;
  }
  .guarantee {
    font-size: 16px;
  }
}
.casino-sec {
  background: url("../../images/product_background/live-casino_bg.jpg"),
    url("../../images/product_background/casino_btm.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  padding: 255px 0 120px 0;
  text-align: center;
  font-size: 16px;
  min-height: 880px;
  margin-bottom: -130px;
}
.title-wrap {
  position: relative;
  max-width: 300px;
  width: fit-content;
  margin: auto;
  text-align: left;
}
.poker-sec .title-wrap {
  max-width: 350px;
}
.fishing-sec .title-wrap {
  max-width: 350px;
}
.others-sec .title-wrap {
  max-width: 450px;
}
.casino-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: justify;
  margin-top: 60px;
}
.slots-sec {
  background: url(../../images/product_background/slot_bg.jpg),
    url(../../images/product_background/slot_btm.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  padding: 201px 0 60px 0;
  text-align: center;
  font-size: 16px;
  min-height: 780px;
  margin-bottom: -90px;
}
.slots-product,
.casino-product,
.poker-product,
.others-product,
.sports-product,
.fishing-product {
  padding-bottom: 60px;
}
.poker-product {
  margin-top: 150px;
}
.fishing-product {
  margin-top: 170px;
}
.others-product {
  margin-top: 150px;
}
.sports-product {
  margin-top: 50px;
}
.poker-sec {
  background: url(../../images/product_background/poker_bg.jpg),
    url(../../images/product_background/poker_btm.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  padding: 250px 0 120px 0;
  text-align: center;
  font-size: 16px;
  min-height: 990px;
  margin-bottom: -180px;
}
.fishing-sec {
  background: url(../../images/product_background/fishing_bg.png),
    url(../../images/product_background/fishing_btm.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  padding: 250px 0 120px 0;
  text-align: center;
  font-size: 16px;
  min-height: 1000px;
  margin-bottom: -170px;
}
.sports-sec .sports-vendor-wrapper {
  margin-top: 200px;
}

.others-sec {
  background: url("../../images/product_background/others_bg.jpg"),
    url(../../images/product_background/poker_btm.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  padding: 280px 0 120px 0;
  text-align: center;
  font-size: 16px;
  min-height: 970px;
  margin-bottom: -180px;
}
@media (max-width: 480px) {
  .sports-sec {
    padding: 60px 0 30px 0;
    background-size: contain;
    margin-bottom: 0;
    min-height: auto;
  }
  .slots-sec {
    background-size: contain;
    padding: 60px 0 120px 0;
    min-height: auto;
    margin: 0;
  }
  .casino-sec {
    background-size: contain;
    padding: 80px 0 120px 0;
    min-height: auto;
    margin: 0;
  }
  .poker-sec {
    background-size: contain;
    padding: 60px 0 80px 0;
    min-height: auto;
    margin: 0;
  }
  .fishing-sec {
    background-size: contain;
    padding: 60px 0 80px 0;
    min-height: auto;
    margin: 0;
  }
  .others-sec {
    background-size: contain;
    padding: 60px 0 80px 0;
    min-height: auto;
    margin: 0;
  }
  .casino-wrapper,
  .poker-product,
  .others-product,
  .sports-product,
  .fishing-product {
    margin-top: 0;
  }
  .sports-vendor-wrapper {
    margin-top: 30px;
  }
  .vbox {
    background: #fff;
  }
}
.gspay {
  font-family: "Play", sans-serif;
}
.gstop-sec {
  background: url("../../images/gspay/gspay_03.jpg") bottom center;
  background-size: 100%;
  text-align: center;
  padding-bottom: 30px;
}
h2.gstitle {
  text-transform: none;
  letter-spacing: 0;
}
.gscontent {
  max-width: 700px;
  font-size: 16px;
  margin: 15px auto;
}
a.gs-click {
  background: linear-gradient(
    to right,
    rgba(14, 99, 184, 1) 0%,
    rgba(66, 219, 250, 1) 100%
  );
  background-size: 100%;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-size: 16px;
  padding: 5px 20px;
  margin-top: 10px;
  border-radius: 30px;
  display: inline-block;
  transition: 0.5s;
}
a.gs-click:hover {
  background-size: 180%;
  transition: 0.5s;
}
.whygspay-sec {
  background: url("../../images/gspay/gspay_04.jpg") top center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 45px 0 60px;
}
.whygs-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1050px;
  margin: auto;
  margin-bottom: 30px;
}
.whygs-wrapper-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 710px;
  margin: auto;
}
.gsbox {
  background: linear-gradient(
    to bottom,
    rgba(44, 187, 219, 1) 0%,
    rgba(2, 28, 54, 1) 100%
  );
  padding: 2px;
  font-size: 16px;
  max-width: 289px;
  margin: 10px auto;
  border-radius: 2px;
}
.gstext {
  background: #000;
  padding: 15px 25px;
  min-height: 220px;
}
.bluetitle {
  color: #00f0ff;
}
.supportbank-sec {
  background: url("../../images/gspay/gspay_05.jpg") no-repeat bottom center;
  background-size: cover;
  padding: 60px 0 80px;
}
.bank-table {
  overflow: auto;
}
.bank-table::-webkit-scrollbar {
  display: none;
}
table.table-bank {
  max-width: 900px;
  margin: auto;
}
.table-bank tr th {
  background: #363636;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  padding: 7px;
  font-weight: 400;
}
.table-bank tr td {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #fff;
  text-align: center;
  padding: 7px;
  font-weight: 700;
}
.banklist img {
  max-width: 150px;
}
.gsinteresed-sec {
  background: url("../../images/gspay/gspay_06.png") no-repeat top center;
  background-size: cover;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.interbox {
  font-size: 16px;
  margin: 15px 0;
}
@media (max-width: 991px) {
  .whygs-wrapper,
  .whygs-wrapper-1 {
    display: grid;
    grid-template-columns: auto;
    margin-bottom: 0;
  }
}
.videobox {
  max-width: 700px;
  margin: 65px auto 0;
}
.leader-title {
  text-align: center;
  padding: 15px 0;
}
.red-frame {
  font-size: 20px;
  font-weight: 700;
  margin-top: 50px;
}
.red-frame::before {
  content: "";
  background: url(../../images/bti/red-deco.png) no-repeat center;
  background-size: 100% 100%;
  width: 75px;
  height: 75px;
  display: block;
  position: absolute;
  left: -15px;
  top: -9px;
}
.parti ol {
  padding: 0;
  padding-left: 15px;
}
.parti ol li {
  padding-bottom: 5px;
}
table.kickoff-table tr th {
  background: linear-gradient(
    to bottom,
    rgba(229, 32, 62, 1) 0%,
    rgba(146, 30, 47, 1) 100%
  );
  color: #fff;
  padding: 6px;
  border: 1px solid #fff;
  text-align: center;
}
table.kickoff-table tr td {
  background: #e5e5e5;
  color: #000;
  padding: 6px;
  border: 1px solid #fff;
  text-align: center;
  font-weight: 600;
}
table.kickoff-table tr td.grey {
  background: #ccc;
}
.howplay {
  margin-top: 45px;
}
.btileader-sec {
  background: #fff url("../../images/bti/leader-bg.jpg") no-repeat bottom center;
  padding: 30px 0;
  background-size: cover;
}
table.leaderboard-table tr th {
  background: #ccc;
  color: #000;
  padding: 6px;
  border: 1px solid #fff;
  text-align: center;
  font-weight: 600;
}
table.leaderboard-table tr td {
  background: #e5e5e5;
  color: #000;
  padding: 6px;
  border: 1px solid #fff;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 767px) {
  .red-frame::before {
    content: none;
  }
  .howplay {
    margin-top: 15px;
  }
  .red-frame {
    margin-top: 0;
  }
  table.kickoff-table {
    font-size: 13px;
  }
  .red-frame {
    font-size: 18px;
  }
  .leader-title {
    max-width: 300px;
    margin: auto;
  }
}
.modal-dialog.modal-leader {
  max-width: 750px;
  border-radius: 10px;
  overflow: auto;
}
.leader-content {
  background: url("../../images/bti/stadium-bg.jpg") no-repeat center;
  background-size: cover;
  color: #000;
}
.leader-wrapper {
  overflow: auto;
  height: 550px;
  padding: 15px 30px;
}
.leader-wrapper::-webkit-scrollbar-thumb {
  background: #b02539;
  border-radius: 20px;
}
.leader-wrapper::-webkit-scrollbar-track {
  background: #878892;
  border-radius: 20px;
}
.leader-header {
  background: linear-gradient(
    to bottom,
    rgba(228, 32, 62, 1) 0%,
    rgba(147, 30, 48, 1) 100%
  );
  color: #fff;
  display: grid;
  grid-template-columns: 50% 50%;
  text-align: center;
  padding: 9px 5px;
  font-weight: 500;
}
a.refresh-btn {
  color: #fff;
  margin: 0 10px;
}
.leader-table tr td {
  background: rgba(255, 255, 255, 0.7);
  padding: 5px;
  border: 1px solid #000;
  text-align: center;
  font-weight: 600;
}
.leader-table tr td:nth-child(2) {
  background: rgba(255, 255, 255, 0.5);
}
.prize-grid {
  display: grid;
}
.sitemap-sec {
  background: #f5f5f5 url("../../images/sitemapbg.png") no-repeat right bottom;
  background-size: 100%;
  position: relative;
  padding: 45px 0;
  font-size: 16px;
}
#homeFeedPic {
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
#homeFeedPic:hover {
  opacity: 0.5;
}
#homeFeedWord {
  color: #000;
  display: inline-block;
  line-height: 1em;
  overflow: hidden;
  transition: 0.5s;
}
#homeFeedWord:hover {
  color: #1e90ff;
}
.container404 {
  font-size: 18px;
}
.container404 a {
  background: -webkit-linear-gradient(#8312a5, #0037a5);
  font-weight: 500;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.container404 a:hover {
  background: -webkit-linear-gradient(#ff69b4, #f00);
  font-weight: 500;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.container404 h1 {
  display: block;
  font-size: 40px;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
  background: -webkit-linear-gradient(319deg, #663dff 0%, #a0f 37%, #c49 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.list404 ul {
  list-style: none;
}
.euro-sec {
  background: url("../../images/road-to-euro/euro-bg.jpg") no-repeat top center;
  background-size: cover;
  padding: 30px 0;
}
.hype-content {
  padding: 15px 0;
  font-size: 17px;
  font-weight: 500;
}
.table-wrapper {
  overflow: auto;
  margin-bottom: 30px;
  line-height: 1.1;
}
.table-wrapper::-webkit-scrollbar {
  display: none;
}
table.table-qualify tr td {
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-weight: 600;
  padding: 15px 10px;
}
table.table-qualify tr td {
  background: rgba(83, 151, 239, 0.1);
}
table.table-qualify tr td:nth-child(2n + 0) {
  background: rgba(85, 101, 236, 0.1);
}
table.table-qualify tr.title-qualify td {
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(83, 164, 240, 1)),
    color-stop(100%, rgba(85, 92, 235, 1))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(83, 164, 240, 1) 0%,
    rgba(85, 92, 235, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(83, 164, 240, 1) 0%,
    rgba(85, 92, 235, 1) 100%
  );
  color: #fff;
  border: none;
}
.blue-frame {
  font-size: 20px;
  font-weight: 700;
  margin-top: 50px;
}
.blue-frame::before {
  content: "";
  background: url("../../images/road-to-euro/blue-deco.png") no-repeat center;
  background-size: 100% 100%;
  width: 75px;
  height: 75px;
  display: block;
  position: absolute;
  left: -15px;
  top: -9px;
}
ol.tnc-road {
  padding: 0;
  padding-left: 16px;
}
ol.tnc-road li {
  font-weight: 500;
  padding-bottom: 6px;
}
.winner-list-wrapper {
  text-align: center;
}
.winner-date {
  display: inline-block;
  width: 25%;
  margin: 2px -2px;
}
.total-ticket-count {
  background: -webkit-linear-gradient(#fff, #f5f5f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 100px;
  font-family: palatino;
  z-index: 1;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .winner-date {
    width: 33%;
  }
  .total-ticket-count {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .blue-frame::before {
    content: none;
  }
  .winner-date {
    width: 50%;
  }
  .total-ticket-count {
    font-size: 60px;
  }
}
.winner-content {
  background: url(../../images/road-to-euro/pop-bg_03.jpg) no-repeat center;
  background-size: cover;
  color: #000;
  border: none;
}
.date-winner {
  background: linear-gradient(
    to bottom,
    rgba(83, 164, 240, 1) 0%,
    rgba(85, 92, 235, 1) 100%
  );
  color: #fff;
  text-align: center;
  padding: 9px 5px;
  font-weight: 600;
}
button.close-winner {
  background: none;
  border: none;
  font-weight: 600;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  position: absolute;
  right: 7px;
  top: 8px;
}
.winnerlist-wrapper {
  overflow: auto;
  height: 200px;
  padding: 15px 30px;
  margin-top: 90px;
  margin-bottom: 15px;
  text-align: center;
}
.winnerlist-wrapper::-webkit-scrollbar {
  width: 5px;
}
.winnerlist-wrapper::-webkit-scrollbar-thumb {
  background: #555deb;
  border-radius: 20px;
}
.winnerlist-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}
.winnerlist-wrapper p {
  font-size: 18px;
}
.winnerlist-table tr td {
  background: rgba(255, 255, 255, 0.7);
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  text-align: center;
  font-weight: 600;
}
.winnerlist-table tr td:nth-child(2) {
  background: rgba(255, 255, 255, 0.5);
}
.prize-grid {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media (max-width: 480px) {
  .winnerlist-wrapper {
    padding: 15px 15px;
  }
}
.box-select-custom {
  position: absolute;
  transform: translate(-50%, -50%);
}
.box-select-custom select {
  background-color: #6617cb;
  background-image: linear-gradient(315deg, #6617cb 0%, #cb218e 74%);
  color: #fff;
  padding: 12px;
  width: 250px;
  border: none;
  font-size: 14px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  -webkit-appearance: button;
  appearance: button;
  outline: none;
}
.box-select-custom::before {
  content: "ᐁ";
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 45px;
  color: rgba(255, 255, 255, 0.5);
  background-color: #a43cc1;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.box-select-custom:hover::before {
  color: rgba(255, 255, 255, 0.6);
  background-color: #a85bbe;
}
.box-select-custom select option {
  padding: 30px;
  background-color: #9c6da9;
}
@media (max-width: 767px) {
  .box-select-custom select {
    width: 200px;
    font-size: 12px;
  }
  .box-select-custom::before {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .box-select-custom {
    right: 0;
  }
}
.provider-demo-button {
  background-color: #3f0d12;
  background-image: linear-gradient(315deg, #3f0d12 0%, #a71d31 74%);
  border: none;
  color: #fff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  border-radius: 10px;
  opacity: 1;
  float: right;
  transition: 0.3s;
}
.provider-demo-button:hover {
  opacity: 0.7;
  color: #fff;
}
.provider-back-button {
  background: linear-gradient(to top, #0e0f10 0%, #3d3d3d 38%);
  border: 3px inset #808080;
  color: #fff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 20px;
  transition: 0.3s;
}
.provider-back-button:hover {
  background: linear-gradient(to top, #0e0f10 100%, #3d3d3d 100%);
  color: #fff;
  border: 3px inset #fff;
}
.product-poker-ul {
  list-style: none;
}
.product-poker-ul li::before {
  content: "";
  background-image: url(/Content/v2/images/new-product-page/item-list-image-poker-colorfill-100px.png);
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  top: 0.1rem;
  margin-right: 0.2rem;
}
.product-poker-symbol-ul {
  list-style: none;
  padding: 0;
  font-size: 18px;
  display: inline-block;
  text-align: left;
  font-weight: 500;
}
.product-poker-symbol-ul li:nth-of-type(4n + 1)::before {
  content: "";
  background-image: url(/Content/v2/images/new-product-page/poker-image-list-1.png);
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  top: 0.1rem;
  margin-right: 0.2rem;
}
.product-poker-symbol-ul li:nth-of-type(4n + 2)::before {
  content: "";
  background-image: url(/Content/v2/images/new-product-page/poker-image-list-2.png);
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  top: 0.1rem;
  margin-right: 0.2rem;
}
.product-poker-symbol-ul li:nth-of-type(4n + 3)::before {
  content: "";
  background-image: url(/Content/v2/images/new-product-page/poker-image-list-3.png);
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  top: 0.1rem;
  margin-right: 0.2rem;
}
.product-poker-symbol-ul li:nth-of-type(4n + 4)::before {
  content: "";
  background-image: url(/Content/v2/images/new-product-page/poker-image-list-4.png);
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  top: 0.1rem;
  margin-right: 0.2rem;
}
.supported-info-container {
  margin: 20px auto;
  background-color: #fff;
  display: grid;
  grid-template-columns: 500px 500px;
  grid-template-rows: 250px 250px;
  grid-row: auto auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.supported-info-box {
  background-color: #333;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: sans-serif;
}
@media (max-width: 600px) {
  .supported-info-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-platform-new {
  color: #710000;
  font-size: 0.9rem;
  font-weight: bold;
}
.product-platform-new i {
  color: #710000;
  font-size: 1rem;
  margin: 0 0.3rem;
  line-height: 25px;
  font-weight: bold;
}
@media (max-width: 460px) {
  .product-platform-new i {
    line-height: 25px;
    font-size: 1rem;
  }
}
.product-content-text {
  color: #000;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 768px) {
  .product-content-text {
    font-size: 1.1rem;
  }
}
.product-border-wrap {
  border: 3px inset;
  border-image: linear-gradient(to top left, #000 0%, #350052 48%) 1;
  padding: 10px 10px 10px 10px;
}
.top-product-img-container {
  display: block;
  text-align: center;
}
.top-product-img {
  border: 3px inset #a52a2a;
  border-radius: 10%;
}
.top-product-container {
  color: #000;
  padding: 10px 10px 10px 10px;
}
.top-product-title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #a52a2a;
}
.top-product-text {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}
.new-product-slotgame-background {
  background-image: url(/Content/v2/images/new-product-page/background-demo.jpg);
  background-repeat: repeat-y;
}
.product-additionalinfo-text {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .product-additionalinfo-text {
    font-size: 14px;
  }
}
.product-game-type-img {
  padding: 5px;
  width: 150px;
}
.demoiframe-wrap {
  width: 1050px;
  height: 665px;
  padding: 0;
  overflow: hidden;
}
.demoiframe-frame {
  width: 1500px;
  height: 950px;
  border: 0;
  -moz-transform: scale(0.7, 0.7);
  -webkit-transform: scale(0.7, 0.7);
  -o-transform: scale(0.7, 0.7);
  -ms-transform: scale(0.7, 0.7);
  transform: scale(0.7, 0.7);
  -moz-transform-origin: top left;
  -webkit-transform-origin: top left;
  -o-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}
@media (max-width: 1200px) {
  .demoiframe-wrap {
    width: 840px;
    height: 595px;
  }
  .demoiframe-frame {
    width: 1200px;
    height: 850px;
  }
}
@media (max-width: 980px) {
  .demoiframe-wrap {
    width: 665px;
    height: 525px;
  }
  .demoiframe-frame {
    width: 950px;
    height: 750px;
  }
}
@media (max-width: 768px) {
  .demoiframe-wrap {
    width: 525px;
    height: 350px;
  }
  .demoiframe-frame {
    width: 750px;
    height: 500px;
  }
}
@media (max-width: 580px) {
  .demoiframe-wrap {
    display: none;
  }
}
.facebook-pixel-code {
  height: 1px;
  width: 1px;
  display: none;
}
#display-infront {
  z-index: 1;
}
#home-margin-auto {
  margin: auto;
}
#homeRSS-textalign-left {
  text-align: left;
}
.google-tag-manager {
  display: none;
  visibility: hidden;
}
#customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}
#customers td,
#customers th {
  border: 1px solid #ddd;
  padding: 8px;
}
#customers tr:nth-child(even) {
  background-color: #f2f2f2;
}
#customers tr:hover {
  background-color: #ddd;
}
#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #4caf50;
  color: #fff;
}
.adminpage-button {
  background-color: #4caf50;
  border: none;
  color: #fff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
.admin-login-btn {
  display: block;
  width: 100%;
  border: none;
  background-color: #4caf50;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}
.admin-login-btn:hover {
  background-color: #ddd;
  color: #000;
}
.admin-sidenav {
  width: 150px;
  position: fixed;
  z-index: 1;
  top: 80px;
  left: 10px;
  background-color: #111;
  overflow-x: hidden;
  padding: 8px 0;
}
.admin-sidenav h5 {
  color: #fff;
  padding: 3px 4px 3px 8px;
}
.admin-sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 18px;
  color: #818181;
  display: block;
}
.admin-sidenav a:hover {
  color: #f1f1f1;
}
.admin-main {
  margin-left: 160px;
  padding: 0 10px;
}
.admin-email-main {
  margin-left: 160px;
  padding: 0 10px;
}
.admin-euro20-credit-btn {
  background-color: #32cd32;
  border: none;
  color: #fff;
  padding: 10px 10px;
  font-size: 14px;
  cursor: pointer;
}
.admin-euro20-topredict-btn {
  background-color: #1e90ff;
  border: none;
  color: #fff;
  padding: 10px 10px;
  font-size: 14px;
  cursor: pointer;
}
.admin-euro20-active-btn {
  background-color: #dc143c;
  border: none;
  color: #fff;
  padding: 10px 10px;
  font-size: 14px;
  cursor: pointer;
}
@media screen and (max-height: 450px) {
  .admin-sidenav {
    padding-top: 15px;
  }
  .admin-sidenav a {
    font-size: 14px;
  }
  .admin-sidenav h5 {
    font-size: 14px;
  }
}
.vbox-topgame {
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
  width: 100%;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.vbox-topgame #topgame-playbutton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  opacity: 0;
  animation: fadeInTopGame 0.5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
@keyframes fadeInTopGame {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.vbox-topgame:hover > #topgame-playbutton {
  display: none;
}
.vbox-topgame * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.vbox-topgame:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(236, 25, 152, 1) 0%,
    rgba(89, 38, 114, 1) 100%
  );
  opacity: 0.9;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.vbox-topgame figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vbox-topgame h3 {
  margin: 0;
  opacity: 0;
  font-weight: 600;
  font-size: 14px;
}
.vbox-topgame h3 {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.vbox-topgame a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.vbox-topgame:hover:before {
  top: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.vbox-topgame:hover h3 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.vbox-topgame:hover h3 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.allgame-float {
  position: fixed;
  top: 10%;
  left: 10px;
  z-index: 9;
  max-width: 200px;
  transition: all 0.2s;
}
.allgame-float:hover {
  left: 30px;
}
.allgame-float-text {
  position: absolute;
  top: 27px;
  left: 85px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 2px 2px black;
  line-height: 1.3;
}
.allgame-float-text-2 {
  position: absolute;
  top: 28px;
  left: 87px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 2px 2px black;
  line-height: 1.3;
}
.slots-vendor-sec {
  background: url(../../images/new-provider/slot_02.jpg) no-repeat top center;
  min-height: 789px;
  color: #fff;
}
.slots-logo {
  max-width: 320px;
  margin-top: 110px;
}
.sl_title {
  font-size: 60px;
  font-weight: 700;
}
.fact-m {
  font-size: 20px;
  font-weight: 600;
}
.fact-list ul {
  column-count: 2;
  padding: 0;
  padding-left: 17px;
  margin: 10px 0;
}
.fact-list ul li {
  font-size: 17px;
  padding-bottom: 5px;
  word-wrap: normal;
  word-break: keep-all;
}
.slot-character img {
  max-height: 700px;
}
.interested-sec {
  padding: 0 0 50px;
  text-align: center;
}
.interestitle {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2px;
  max-width: 700px;
  margin: 0 auto 25px;
}
.support-feature-sec {
  padding: 55px 0 45px;
  background: #efefef;
}
.supp-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  text-align: center;
  max-width: 750px;
  margin: auto;
}
.suptitle {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 12px 0 10px;
}
.suppoint {
  font-weight: 600;
}
.suppoint.plat i {
  font-weight: 400;
}
.suppoint i {
  margin-right: 4px;
}
.more-sup {
  font-size: 9px;
  color: #b050f9;
  text-decoration: underline;
}
.more-sup:hover {
  color: #000;
}
.more-sup i {
  font-size: 12px;
  margin-right: 2px;
  vertical-align: middle;
}
.suppoint img {
  max-width: 14px;
  margin-right: 5px;
}
.about-slot-sec {
  background: url("../../images/new-provider/slot_03.jpg") no-repeat center;
  background-size: auto;
  padding: 60px 0;
}
.about-text {
  padding: 15px 0;
  font-size: 16px;
}
.slotpart-sec {
  background: url("../../images/new-provider/slot_04.jpg") no-repeat top center;
  background-size: 100%;
  font-size: 16px;
  position: relative;
}
.top-games {
  padding-top: 80px;
}
.slotmx {
  max-width: 600px;
  margin: auto;
}
.slts-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: unset;
}
.shdimg {
  box-shadow: 3px 4px 7px rgba(0, 0, 0, 0.45);
}
.nflex-center {
  display: flex;
  align-items: center;
}
.othersoftware-sec {
  background: url(../../images/new-provider/slot_06.jpg) no-repeat top center;
  background-size: contain;
  padding-top: 25%;
  margin-top: -13%;
  font-size: 16px;
}
.gametype-sec {
  background: url("../../images/new-provider/slot_07.jpg") no-repeat center;
  background-size: 100%;
  padding: 60px 0;
}
.gametype-wrapper {
  display: flex;
  justify-content: space-between;
  text-align: center;
  max-width: 950px;
  margin: 30px auto;
}
.gtbox img {
  display: block;
  margin: 0 auto 10px;
}
.gtbox {
  font-size: 14px;
  font-weight: 700;
  max-width: 100px;
  margin: 0 auto;
}
.slot-contact-sec {
  background: url("../../images/new-provider/slot_08.jpg") no-repeat center;
  background-size: cover;
  padding: 0 0 60px;
}
.more-web {
  margin: 15px 0;
  font-size: 17px;
}
.more-web a {
  color: #9301fb;
  background: -webkit-linear-gradient(#ec297b, #9000ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  margin: 15px 0;
  font-size: 17px;
}
.supported-currency-grid-wrapper {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-gap: 10px;
  padding: 10px;
}
.supported-currency-grid-wrapper > div {
  text-align: left;
  padding: 20px 0;
}
.supported-grid-wrapper {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
  padding: 10px;
}
.supported-grid-wrapper > div {
  text-align: left;
  padding: 20px 0;
}
@media (max-width: 991px) {
  .sl_title {
    font-size: 48px;
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  .slot-character {
    text-align: center;
  }
  .slot-character img {
    max-width: 70%;
  }
  .interestitle {
    font-size: 30px;
    letter-spacing: 1px;
  }
  .supp-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 5px;
  }
  .gametype-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .about-text,
  .slts-wrapper {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .vbox-topgame {
    background: #fff;
  }
  .allgame-float {
    max-width: 130px;
  }
  .allgame-float-text {
    top: 17px;
    left: 55px;
    font-size: 8px;
  }
  .allgame-float-text-2 {
    top: 17px;
    left: 55px;
    font-size: 9.5px;
  }
  .fact-list ul li {
    font-size: 15px;
  }
  .slots-logo {
    margin-top: 90px;
  }
  .slts-wrapper h2 {
    font-size: 24px;
  }
  .fact-list ul {
    column-count: 1;
  }
  .gametype-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .more-web a {
    font-size: 13px;
  }
  .interest-cta .learn-btn {
    margin-bottom: 15px;
  }
}
.youtube-iframe-parent {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.youtube-iframe-parent iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.game-slider-container {
  width: 100%;
}
.latest-games-sec {
  background: url(../../images/product_background/latest-game_bg.png) no-repeat
    center;
  background-size: cover;
}
.latest-games-header {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  margin: 0;
  text-transform: uppercase;
  color: #404040;
}
#latest-games-tabs {
  display: flex;
  width: 100%;
  margin: 0;
}
#latest-games-ul {
  list-style-type: none;
  max-height: 500px;
  overflow: auto;
}
#latest-games-ul li a {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #404040;
  border-top: solid 2px #e9e9e9;
  padding: 20px 5px;
  z-index: 1;
  opacity: 0.5;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
#latest-games-ul li:focus,
a:focus {
  outline: none;
}
#latest-games-ul li:nth-child(1) a {
  border-top: none;
}
#latest-games-ul li a.active {
  opacity: 1;
}
.latest-games-findoutmore {
  font-weight: bold;
  margin-top: 10px;
  padding: 0;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1px;
  border: none;
  font-family: "Montserrat";
  color: #2b2b2b;
  background-color: transparent;
  transition: all 0.2s;
}
.latest-games-findoutmore:hover {
  color: #ee82ee;
}
.latest-games-tab {
  position: relative;
  width: 100%;
}
.latest-games-icon {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(to bottom right, #8c65e6 44%, #ec9ce6 100%);
  border-radius: 100%;
  vertical-align: middle;
}
.latest-games-icon-counter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #fff;
}
.latest-games-title {
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 10px;
  vertical-align: middle;
  color: #404040;
}
.latest-games-provider {
  color: #9d55ec;
  font-size: 0.9rem;
  font-family: sans-serif;
}
.latest-games-addon {
  position: relative;
  width: 80%;
  top: -25px;
  margin-left: 70px;
  letter-spacing: 0;
  font-size: 13px;
  color: #404040;
  opacity: 1;
  font-family: "Montserrat";
  font-weight: 500;
}
.latest-games-addon p {
  text-align: justify;
  width: auto;
}
.latest-games-addon.fadein {
  opacity: 1;
}
.latest-games-subtab {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.latest-games-subtab img {
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 88%;
}
.latest-games-imgcontainer {
  display: none;
}
@media screen and (max-width: 1199px) {
  .latest-games-title {
    font-size: 0.75rem;
    padding: 5px;
  }
  .latest-games-provider {
    font-size: 0.7rem;
  }
  .latest-games-addon {
    margin-left: 65px;
  }
  .latest-games-findoutmore {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 991px) {
  .latest-games-title {
    font-size: 0.62rem;
    padding: 2px;
  }
  .latest-games-provider {
    font-size: 0.6rem;
  }
  .latest-games-addon {
    margin-left: 42px;
    margin-top: 5px;
  }
  .latest-games-findoutmore {
    font-size: 0.6rem;
  }
  .latest-games-icon {
    width: 30px;
    height: 30px;
  }
  .latest-games-icon-counter {
    font-size: 0.9rem;
  }
  #latest-games-ul {
    padding: 0;
    margin: 0;
  }
  .latest-games-addon p {
    word-spacing: 1px;
  }
}
@media screen and (max-width: 767px) {
  .latest-games-addon {
    margin-left: 8px;
    margin-top: 8px;
  }
  .latest-games-icon {
    display: none;
  }
  .latest-games-addon p {
    word-spacing: 1px;
    line-height: 18px;
  }
}
@media screen and (max-width: 480px) {
  .latest-games-icon {
    display: inline-block;
  }
  .latest-games-addon {
    margin-left: 42px;
  }
  .latest-games-left {
    display: none;
  }
  #latest-games-tabs {
    padding: 20px;
  }
  .latest-games-imgcontainer {
    display: block;
  }
  .latest-games-imgcontainer img {
    width: 90%;
  }
  .latest-games-header {
    font-size: 22px;
  }
}
.gs-event-sec {
  background: url("../../images/gs_event-bg.jpg");
  background-repeat: repeat-y;
  padding: 150px 0 45px 0;
  font-size: 16px;
}
.event-main-category {
  color: #fff;
  background-image: linear-gradient(
    180deg,
    #ec297a 0%,
    #9100ff 80%,
    #9100ff 100%,
    #ec297a 100%
  );
  padding: 10px;
  font-family: "MONTSERRAT";
  font-weight: 500;
  font-size: 1.3em;
}
.event-main-directory {
  color: #fff;
  background-size: auto 200%;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 11%), 0 1px 3px rgba(0, 0, 0, 8%);
  background-image: linear-gradient(
    to bottom,
    #ec297a 0%,
    #9100ff 40%,
    #9100ff 60%,
    #ec297a 100%
  );
  transition: 0.5s;
  padding: 10px;
  font-family: "MONTSERRAT";
  font-weight: 500;
  font-size: 1em;
  border-radius: 20px;
  margin-left: 30px;
  margin-right: 30px;
}
.event-main-directory:hover {
  color: #fff;
  transition: all 0.4s ease-in-out;
  background-position: bottom center;
}
.event-list-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.event-directory-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.single-event-img-container {
  position: relative;
}
.single-event-date {
  color: #9100ff;
  font-weight: 500;
}
.single-event-img-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #9100ff;
}
.single-event-img-container:hover .single-event-img-overlay {
  opacity: 0.8;
}
.single-event-img {
  opacity: 1;
  transition: all 0.5s;
  display: block;
  width: 100%;
  height: auto;
}
.single-event-img-text {
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.single-event-title {
  font-family: "MONTSERRAT";
  font-weight: 500;
  font-size: 1.3em;
  margin-top: 10px;
  color: #000;
  transition: all 0.2s ease-in;
}
.single-event-title:hover {
  color: #9100ff;
}
.single-event-readmore {
  color: #000;
  transition: all 0.2s ease-in;
  font-weight: 500;
}
.single-event-readmore:hover {
  color: #9100ff;
}
@media (max-width: 991px) {
  .event-list-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .event-directory-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gs-event-sec {
    padding: 50px 0 45px 0;
  }
  .event-list-wrapper {
    margin-top: 30px;
  }
  .event-list-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .event-directory-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.globalc {
  background: #f5f5f5;
}
.globalc-top {
  background: url("../../images/globalc/banner.png") no-repeat bottom center;
  background-size: auto;
  position: relative;
}
.global-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 765px;
}
.globalc-img {
  padding-bottom: 140px;
}
.bitcoin-deco {
  position: absolute;
  bottom: 1%;
  left: 15%;
}
.globalc-sec {
  background: url(../../images/globalc/bg-globalc_02.jpg) no-repeat top center;
  background-size: auto;
  padding: 270px 0 60px;
  margin-top: -219px;
}
.container-fluid.maxglob {
  max-width: 1170px;
  margin: auto;
}
.blue-gradient {
  font-weight: 700;
  background: linear-gradient(
    to bottom,
    rgba(44, 187, 219, 1) 0%,
    rgba(2, 28, 54, 1) 85%,
    rgba(2, 28, 54, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.global-text-wrap {
  max-width: 800px;
  margin: 15px auto;
  font-size: 16px;
}
.global-interest-btn {
  color: #fff;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 5px 36px;
  border-radius: 4px;
  display: inline-block;
  background-size: auto 200%;
  color: #fff;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 11%), 0 1px 3px rgba(0, 0, 0, 8%);
  background-image: linear-gradient(
    to bottom,
    rgba(44, 187, 219, 1) 0%,
    rgba(17, 52, 88, 1) 40%,
    rgba(17, 52, 88, 1) 60%,
    rgba(44, 187, 219, 1) 100%
  );
  transition: 0.5s;
}
.global-interest-btn:hover {
  color: #fff;
  transition: all 0.4s ease-in-out;
  background-position: bottom center;
}
.benefit-sec {
  margin-top: 100px;
}
.benefit-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  text-align: center;
  max-width: 1040px;
  margin: 15px auto;
}
.crypto-sec {
  margin-top: 60px;
}
.crypto-support {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
}
.crypto-box {
  text-align: center;
  margin: 15px 30px;
}
.crypto-img {
  position: relative;
}
.crypto-coin {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  animation: float 3s ease-in-out infinite;
}
.crypto-text {
  font-size: 17px;
  font-weight: 500;
  padding-top: 10px;
  letter-spacing: 1px;
}
.globac-partner-sec {
  background: url("../../images/globalc/bg-globalc_03.jpg") no-repeat top center;
  background-size: cover;
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.partner-logo {
  margin: 10px auto 0;
  max-width: 1170px;
}
.partner-logo img {
  padding: 2px 7px;
}
@media (max-width: 991px) {
  .global-img-wrap {
    height: 90vw;
  }
  .globalc-img {
    padding-bottom: 40%;
    max-width: 90%;
  }
  .bitcoin-deco {
    position: absolute;
    bottom: 1%;
    left: 0;
    right: 0;
    text-align: center;
    max-width: 50%;
    margin: auto;
  }
  .global-text-wrap {
    text-align: center;
  }
  .benefit-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .crypto-support {
    display: block;
  }
  .crypto-box {
    text-align: center;
    margin: 40px 0;
  }
}
@media (max-width: 767px) {
  .benefit-wrapper {
    display: grid;
    grid-template-columns: auto;
  }
  .partner-logo img {
    padding: 2px 5px;
    max-height: 55px;
  }
  .globalc-sec {
    padding-bottom: 30px;
  }
}
.xmas-moving-header {
  position: relative;
  overflow-x: hidden;
  height: 100px;
}
.xmas-moving-header.active {
  display: none;
}
.divheader-christmas1 {
  position: absolute;
  background: url(../../images/xmas-header/header-bg-red.webp);
  height: 100px;
  width: 100%;
  background-repeat: repeat-x;
  animation: animate-right 50s linear infinite;
  background-position: 0 0;
  top: 0;
  left: 0;
  z-index: 1;
}
.divheader-christmas2 {
  position: absolute;
  background: url(../../images/xmas-header/header-deco.webp);
  height: 100px;
  width: 100%;
  background-size: cover;
  background-repeat: repeat-x;
  animation: animate 30s linear infinite;
  background-position: 0 0;
  z-index: 2;
}
.divheader-christmas3 {
  position: absolute;
  background: url(../../images/xmas-header/header-gift.webp);
  height: 100px;
  width: 100%;
  background-size: cover;
  background-repeat: repeat-x;
  animation: animate 15s linear infinite;
  background-position: 0 0;
  z-index: 3;
}
@keyframes animate {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1920px 0;
  }
}
@keyframes animate-right {
  from {
    background-position: 1920px 0;
  }
  to {
    background-position: 0 0;
  }
}
@media only screen and (max-width: 600px) {
  .divheader-christmas4 {
    right: 50px;
    top: 30px;
  }
  .divheader-christmas1,
  .divheader-christmas2,
  .divheader-christmas3 {
    height: 100px;
  }
}
.video-service-sec {
  padding: 100px 0 45px 0;
  font-size: 16px;
}
.vs-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.vs-content {
  max-width: 900px;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
}
.vs-title-wrap.v2 {
  margin-top: 100px;
}
.vs-img-2 {
  margin-top: -10%;
}
.video-portfolio-sec {
  background: url("../../images/video-service/video-bg.jpg") no-repeat right
    center;
  background-size: auto;
  text-align: center;
  padding: 30px 0;
}
h1.grad-title {
  background: linear-gradient(to right, #ec297b, #9000ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 45px;
}
.prt-title {
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.engage-sec {
  padding: 30px 0 50px 0;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 480px) {
  .video-service-sec {
    padding: 40px 0 20px 0;
    font-size: 16px;
  }
  .vs-title-wrap.v2 {
    margin-top: 0;
  }
  .vs-img,
  .vs-img-2 {
    max-width: 50%;
    margin: 0 auto 15px;
  }
  .vs-title-wrap {
    display: block;
    text-align: center;
  }
}
#glowing-contactus {
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #e60073, 0 0 20px #e60073,
      0 0 25px #e60073, 0 0 30px #e60073, 0 0 35px #e60073;
  }
  to {
    text-shadow: 0 0 10px #fff, 0 0 15px #ff4da6, 0 0 20px #ff4da6,
      0 0 25px #ff4da6, 0 0 30px #ff4da6, 0 0 35px #ff4da6, 0 0 40px #ff4da6;
  }
}
.cny-moving-header {
  position: relative;
  overflow-x: hidden;
  height: 100px;
}
.cny-moving-header.active {
  display: none;
}
.divheader-cny1 {
  position: absolute;
  background: url(../../images/cny-header/header-bg.png);
  height: 100px;
  width: 100%;
  background-repeat: repeat-x;
  animation: animate-right 50s linear infinite;
  background-position: 0 0;
  top: 0;
  left: 0;
  z-index: 1;
}
.divheader-cny2 {
  position: absolute;
  background: url(../../images/cny-header/header-deco.png);
  height: 100px;
  width: 100%;
  background-size: cover;
  background-repeat: repeat-x;
  animation: animate 30s linear infinite;
  background-position: 0 0;
  z-index: 2;
}
.divheader-cny3 {
  position: absolute;
  background: url(../../images/cny-header/header-object.png);
  height: 100px;
  width: 100%;
  background-size: cover;
  background-repeat: repeat-x;
  animation: animate 15s linear infinite;
  background-position: 0 0;
  z-index: 3;
}
@keyframes animate {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1920px 0;
  }
}
@keyframes animate-right {
  from {
    background-position: 1920px 0;
  }
  to {
    background-position: 0 0;
  }
}
@media only screen and (max-width: 600px) {
  .divheader-cny1,
  .divheader-cny2,
  .divheader-cny3 {
    height: 100px;
  }
}
.demo-bg-sec {
  background: #f5f5f5 url("../../images/about-bg.jpg") repeat-y right top;
  background-size: 100%;
  position: relative;
  padding: 45px 0;
  font-size: 16px;
}
.demo-header-sec {
  background: #f5f5f5 url("../../images/demo-top-bg.jpg") no-repeat top center;
  min-height: 586px;
  padding: 30px 0;
}
.demo-border-box {
  position: absolute;
  max-width: 700px;
  color: #fff;
  font-size: 18px;
  top: 160px;
}
.demo-border-box::after {
  content: "";
  background: url(../../images/frame_demo.png) no-repeat center;
  width: 500px;
  height: 252px;
  position: absolute;
  top: -90px;
  left: 200px;
}
.demo-vendor-sec {
  background: url(../../images/new-provider/slot_02.jpg) no-repeat bottom center;
  min-height: 600px;
  color: #fff;
}
.demo_detail_category {
  font-size: 50px;
  font-weight: 700;
}
.demo-detail-logo {
  max-width: 320px;
  margin-top: 110px;
}
.demo-learn-more {
  display: inline-block;
  position: relative;
  font-size: 24px;
  color: #9100ff;
  text-decoration: none;
  font-weight: 700;
  vertical-align: top;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.demo-learn-more:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #9100ff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.demo-learn-more:hover {
  color: #9100ff;
}
.demo-learn-more:hover:after {
  color: #9100ff;
  transform: scaleX(1);
  transform-origin: bottom left;
}
@media (max-width: 991px) {
  .demo_detail_category {
    font-size: 40px;
    font-weight: 700;
  }
  .demo-border-box {
    top: 15px;
  }
  .demo-header-sec {
    min-height: 300px;
    padding-top: 100px;
  }
  .demo-border-box::after {
    content: none;
  }
}
@media (max-width: 480px) {
  .demo-detail-logo {
    margin-top: 80px;
  }
  .demo-learn-more {
    font-size: 20px;
  }
  .demo-vendor-sec {
    min-height: 789px;
  }
  .demo-header-sec {
    background: #f5f5f5 url(../../images/demo-top-bg.jpg) no-repeat top center;
    min-height: 200px;
    padding-top: 70px;
  }
  .demo-border-box {
    top: 0;
    font-size: 13px;
  }
}
#contactus-subs {
  display: none;
}
.contactus-subs-checkbox {
  cursor: pointer;
  position: relative;
  padding-left: 40px;
  padding-top: 5px;
  font-weight: 600;
  font-size: 14px;
}
.contactus-subs-checkbox:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #9602f8;
  text-align: center;
  left: 4px;
  top: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contactus-subs-checkbox:after {
  position: absolute;
  content: "✔";
  font-family: "Dosis", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: #fff;
  left: 9px;
  top: 7px;
  transform: scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#contactus-subs:checked + .contactus-subs-checkbox:after {
  transform: scale(1);
}
