/* Fonts */
:root {
  --ff1: 'Bruno Ace', cursive;
  --ff2: 'Orbitron', sans-serif;
}

/* Colors */
:root {
  --color-default: #ffffff;
  --brand-text: #ffb600;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
/* Padding */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li {
  margin: 0;
  padding: 0;
}

/* scrollbar style */
html::-webkit-scrollbar {
  width: 1.30vw;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--brand-text);
}

html::-webkit-scrollbar-thumb:hover {
  background-color: var(--brand-text);
}

html::-webkit-scrollbar-track {
  background-color: #000;
}

html::-webkit-scrollbar-track:hover {
  background-color: #000;
}

/* blink based browser */

/* geckeo based browser */
html {
  /* scrollbar-width: bold; */
  scrollbar-color: var(--brand-text) #000;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                      Common css start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
body {
  color: var(--color-default);
  background-color: #000;
}

a {
  color: var(--brand-text);
  text-decoration: none;
}

li {
  list-style: none;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                      Common css end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    Sections css start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #2e0f55;
}

.section-bg2 {
  background-color: #450e8b;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}


.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-family: var(--ff1);
  background: linear-gradient(180deg, #FFC876 -1.75%, #FF6E04 100.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  margin: 0;
  font-size: 42px;
  font-weight: 800;
  font-family: var(--ff1);
  background: -webkit-linear-gradient(bottom, #fdb125 0%, #e07e1e 40%, #fcb100 45%);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px #4d0148);
  text-transform: capitalize;
}

.section-header h6 {
  margin: 0;
  font-size: 26px;
  font-weight: 400;
  font-family: var(--ff1);
  background: -webkit-linear-gradient(bottom, #fdb125 0%, #e07e1e 40%, #fcb100 45%);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px #4d0148);
  text-transform: capitalize;
}

.section-header h6 {
  margin: 0;
  font-size: 25px;
  font-weight: 800;
  font-family: var(--ff1);
  background: -webkit-linear-gradient(bottom, #fdb125 0%, #e07e1e 40%, #fcb100 45%);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px #4d0148);
  text-transform: capitalize;
}


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    Sections css end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    go-top css start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.go-top {
  color: #ffffff;
  position: fixed;
  z-index: 4;
  top: 0;
  right: 15px;
  width: 45px;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  line-height: 45px;
  border-radius: 5px;
  background-color: var(--brand-text);
  -webkit-transition: .9s;
  transition: .9s;
  cursor: pointer;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.go-top i {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0 auto;
}

.go-top i:last-child {
  top: 60%;
  opacity: 0;
  visibility: hidden;
}

.go-top::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	border-radius: 5px;
	background-color: rgb(103, 58, 183);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.go-top:hover,
.go-top:focus {
  color: #ffffff;
}

.go-top:hover::before,
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    go-top css end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    Breadcrumbs css start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
#Breadcrumb {
  padding: 150px 0;
  padding-top: calc(150px + 147px);
  background-size: cover;
  background-position: center;
  position: relative;
}

#Breadcrumb #particles-js {
  top: 0;
}

.Breadcrumb_header h3 {
  font-size: 100px;
  font-weight: 800;
  font-family: var(--ff1);
  background: -webkit-linear-gradient(bottom, #fdb125 0%, #e07e1e 40%, #fcb100 45%);
  background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.breadcrumb {
  display: inline-block;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border-radius: 5px;
  /*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
  counter-reset: flag;
}

.breadcrumb a {
  text-decoration: none;
  outline: none;
  display: block;
  float: left;
  font-size: 12px;
  line-height: 36px;
  color: white;
  /*need more margin on the left of links to accomodate the numbers*/
  padding: 0 10px 0 60px;
  background: #666;
  background: linear-gradient(#666, #333);
  position: relative;
  font-weight: 800;
  font-family: var(--ff2);
}

/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb a:first-child {
  padding-left: 46px;
  border-radius: 5px 0 0 5px;
  /*to match with the parent's radius*/
}

.breadcrumb a:first-child:before {
  left: 14px;
}

.breadcrumb a:last-child {
  border-radius: 0 5px 5px 0;
  /*this was to prevent glitches on hover*/
  padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb a.active,
.breadcrumb a:hover {
  background: #333;
  background: linear-gradient(#333, #000);
}

.breadcrumb a.active:after,
.breadcrumb a:hover:after {
  background: #333;
  background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
  content: '';
  position: absolute;
  top: 0;
  right: -18px;
  /*half of square's length*/
  /*same dimension as the line-height of .breadcrumb a */
  width: 36px;
  height: 36px;
  /*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
  transform: scale(0.707) rotate(45deg);
  /*we need to prevent the arrows from getting buried under the next link*/
  z-index: 1;
  /*background same as links but the gradient will be rotated to compensate with the transform applied*/
  background: #666;
  background: linear-gradient(135deg, #666, #333);
  /*stylish arrow design using box shadow*/
  box-shadow:
    2px -2px 0 2px rgba(0, 0, 0, 0.4),
    3px -3px 0 2px rgba(255, 255, 255, 0.1);
  /*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
  border-radius: 0 5px 0 50px;
}

/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
  content: none;
}

/*we will use the :before element to show numbers*/
.breadcrumb a:before {
  content: counter(flag);
  counter-increment: flag;
  /*some styles now*/
  border-radius: 100%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin: 8px 0;
  position: absolute;
  top: 0;
  left: 30px;
  background: #444;
  background: linear-gradient(#444, #222);
  font-weight: bold;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                      Breadcrumbs css end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                   Scroll top button css start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--brand-text);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 1px dashed transparent;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #eee;
  border: 1px dashed var(--brand-text);
}

.scroll-top:hover i {
  color: var(--brand-text);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    Scroll top button css end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                      Preloader css start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.ctn-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99999999;
}

.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid #2e0f55;
  border-top-color: #ffb600;
  /* No se identa por orden alfabetico para que no lo sobre-escriba */
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
  font: bold 5em var(--ff1);
  text-align: center;
  user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #ffb600;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(255, 255, 255, 0.3);
  position: relative;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.ctn-preloader .loader-section {
  background:#450e8b;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
  left: 0;
}

.ctn-preloader .loader-section.section-right {
  right: 0;
}

/* Efecto de fade en la animación de cargando */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

/* Efecto de cortina */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

/* Animación del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

/* Animación de las letras cargando del preloader */
@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* Tamaño de portatil hacia atras (portatil, tablet, celular) */
@media screen and (max-width: 767px) {

  /* Preloader */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }

  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 3.5em var(--ff1);
  }
}

@media screen and (max-width: 500px) {

  /* Prelaoder */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 2em var(--ff1);
  }
}
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                      Preloader css end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                      Header css start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.header {
  background: rgba(36, 9, 69, 0.5);
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  box-shadow: 0 8px 28px rgba(255, 109, 4, 0.2);
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--ff2);
}

.logo h1 span {
  color: var(--brand-text);
}

.btn-style span {
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  font-family: var(--ff2);
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
}

.btn-style {
  font-size: 14px;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(255, 109, 4, 0.2);
}

.btn-style:hover {
  box-shadow: 0 8px 28px rgba(235, 0, 216, 0.45);
}

.btn-style::before {
  background: linear-gradient(180deg, #FFC876 -1.75%, #FF6E04 100.23%);
}

.btn-style::before,
.btn-style::after {
  inset: 0;
  content: "";
  transition: all ease 0.5s;
  position: absolute;
  border-radius: 50px;
}

.btn-style::after {
  background: linear-gradient(180deg, #FF6E04 -1.75%, #FFC876 100.23%);
  opacity: 0;
}

.btn-style:hover::before {
  opacity: 0;
}

.btn-style:hover::after {
  opacity: 1;
  box-shadow: 0 8px 28px rgba(255, 109, 4, 0.45);
}

.btn-style:hover,
.btn-style:focus:hover {
  color: #fff;
  background: rgba(235, 0, 216, 0.8);
}

section {
  scroll-margin-top: 90px;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                      Header css end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  Hero css start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
#particles-js {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
}

.hero-banner img {
  position: relative;
}

.hero-banner img {
  animation: flying 2s ease-in-out infinite alternate;
}

@keyframes flying {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-24px);
  }
}

.hero {
  width: 100%;
  background-size: cover;
  position: relative;
  min-height: 60vh;
  padding: 160px 0 60px 0;
  box-shadow: inset 10px 0px 50px 0px rgba(31, 7, 67, 0.5);
  background: linear-gradient(to right, #5109a7 21%, #450e8b 100%);
}

.hero .btn-style {
  display: inline-block;
  padding: 12px 36px;
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  background: linear-gradient(180deg, #FFC876 -1.75%, #FF6E04 100.23%);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero .btn-watch-video i {
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
  background: linear-gradient(180deg, #FFC876 -1.75%, #FF6E04 100.23%);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .btn-watch-video:hover {
  color: var(--brand-text);
}

.hero .btn-watch-video:hover i {
  color: rgba(206, 18, 18, 0.8);
}

.jack_pot {
  padding-bottom: 20px;
}

.jackpot_info {
  font-size: 66px;
}

.jack_pot i {
  color: #ffb600;
  font-size: 92px;
  filter: drop-shadow(0 0 35px #ffb600);
}

.jack_pot h2 {
  color: #ffb600;
  font-family: var(--ff1);
  filter: drop-shadow(0 0 5px #ffb600);
}

.jack_pot h6 {
  color: #ffb600;
  font-family: var(--ff1);
  filter: drop-shadow(0 0 5px #ffb600);
}

.dollar {
  color: #ffffff;
  background: #ffb600;
  border-radius: 50%;
  margin-right: 8px;
  line-height: 94px;
  width: 100px;
  height: 100px;
  font-size: 85px;
  display: block;
  position: relative;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-slot-machine {
  display: inline-block;
  vertical-align: middle;
  vertical-align: auto;
  zoom: 1;
  display: inline;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-slot-machine .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  vertical-align: auto;
  zoom: 1;
  display: inline;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-slot-machine .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: middle;
  vertical-align: auto;
  zoom: 1;
  display: inline;
  visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-slot-machine .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-slot-machine .odometer-digit .odometer-ribbon {
  display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-slot-machine .odometer-digit .odometer-ribbon-inner {
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-slot-machine .odometer-digit .odometer-value {
  display: block;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-slot-machine .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-slot-machine.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-slot-machine.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-slot-machine.odometer-animating-down .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-slot-machine.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-slot-machine {
  background-size: 100%;
  padding: 0.15em;
  color: #ffb600;
  line-height: 52px;
  -webkit-text-stroke: 0.05em #000;
  border-radius: 0px 20px 20px 0px;
  background: transparent;
  font-size: 52px;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-slot-machine .odometer-digit {
  -moz-box-shadow: inset 0 0 0.1em rgba(0, 0, 0, 0.5), 0 0 0 0.03em #fff, 0 0 0 0.05em rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 0 0.1em rgba(0, 0, 0, 0.5), 0 0 0 0.03em #fff, 0 0 0 0.05em rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0.1em rgba(0, 0, 0, 0.5), 0 0 0 0.03em #fff, 0 0 0 0.05em rgba(0, 0, 0, 0.2);
  -moz-border-radius: 0.2em;
  -webkit-border-radius: 0.2em;
  border-radius: 0.2em;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NjY2NjYyIvPjxzdG9wIG9mZnNldD0iMjAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSI4MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjY2NjY2MiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cccccc), color-stop(20%, #ffffff), color-stop(80%, #ffffff), color-stop(100%, #cccccc));
  background-image: -moz-linear-gradient(top, #cccccc 0%, #ffffff 20%, #ffffff 80%, #cccccc 100%);
  background-image: -webkit-linear-gradient(top, #cccccc 0%, #ffffff 20%, #ffffff 80%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #cccccc 0%, #ffffff 20%, #ffffff 80%, #cccccc 100%);
  border: 0.03em solid #444;
  padding: 0.1em 0.15em 0;
}

.odometer.odometer-auto-theme .odometer-digit:first-child,
.odometer.odometer-theme-slot-machine .odometer-digit:first-child {
  -moz-box-shadow: inset 0.05em 0 0.1em rgba(0, 0, 0, 0.5), 0 0 0 0.03em #fff, 0 0 0 0.05em rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0.05em 0 0.1em rgba(0, 0, 0, 0.5), 0 0 0 0.03em #fff, 0 0 0 0.05em rgba(0, 0, 0, 0.2);
  box-shadow: inset 0.05em 0 0.1em rgba(0, 0, 0, 0.5), 0 0 0 0.03em #fff, 0 0 0 0.05em rgba(0, 0, 0, 0.2);
}

.odometer.odometer-auto-theme .odometer-digit:last-child,
.odometer.odometer-theme-slot-machine .odometer-digit:last-child {
  -moz-box-shadow: inset -0.05em 0 0.1em rgba(0, 0, 0, 0.5), 0 0 0 0.03em #fff, 0 0 0 0.05em rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset -0.05em 0 0.1em rgba(0, 0, 0, 0.5), 0 0 0 0.03em #fff, 0 0 0 0.05em rgba(0, 0, 0, 0.2);
  box-shadow: inset -0.05em 0 0.1em rgba(0, 0, 0, 0.5), 0 0 0 0.03em #fff, 0 0 0 0.05em rgba(0, 0, 0, 0.2);
}

.odometer.odometer-auto-theme .odometer-digit+.odometer-digit,
.odometer.odometer-theme-slot-machine .odometer-digit+.odometer-digit {
  margin-left: 0.15em;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-slot-machine .odometer-digit .odometer-digit-inner {
  padding-top: 0.08em;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-slot-machine .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-slot-machine .odometer-digit .odometer-value.odometer-last-value {
  left: 0;
  right: 0;
  text-align: center;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  Hero css end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    About css start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.about .content ul{
  margin-top: 17px;
}
.about h3 {
	font-weight: 800;
	font-size: 17px;
	font-family: var(--ff2);
	background: linear-gradient(180deg, #FFC876 -1.75%, #FF6E04 100.23%);
	background-clip: border-box;
	background-clip: border-box;
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding: 3px 0;
}

.about ul li p {
  font-weight: 600;
  font-size: 12px;
  font-family: var(--ff1);
  line-height: 12px;
  background: linear-gradient(180deg, #FFC876 -1.75%, #FF6E04 100.23%);
  background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about ul li img{
  animation-name: myframes;
  animation: myframes 6s linear infinite;
  -webkit-animation: myframes 6s linear infinite;
} 

  @keyframes myframes {
    0% {
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
}
100% {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}
  }

.about ul li img {
	margin-right: 10px;
	background: #2e0f55;
	padding: 20px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	box-shadow: 0 0px 5px 2px var(--brand-text);
	margin: 2px 9px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  font-size: 22px;
  font-weight: 800;
  font-family: var(--ff2);
  align-items: center;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--brand-text);
}

.about .content p {
  color: #fff;
  font-family: var(--ff2);
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--brand-text) 50%, rgba(255, 183, 0, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 183, 0, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--brand-text);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    About css end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    Why Us start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.why-us .why-box {
  padding: 30px;
  color: #fff;
  -webkit-box-shadow: inset 10px 0px 50px 0px rgba(31, 7, 67, 0.5);
  -moz-box-shadow: inset 10px 0px 50px 0px rgba(31, 7, 67, 0.5);
  box-shadow: inset 10px 0px 50px 0px rgba(31, 7, 67, 0.5);
  background: #9e4efc;
  background: -moz-linear-gradient(left, #9e4efc 0%, #570dc8 100%);
  background: -webkit-linear-gradient(left, #9e4efc 0%, #570dc8 100%);
  background: linear-gradient(to right, #9e4efc 0%, #570dc8 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#9e4efc', endColorstr='#570dc8', GradientType=1);
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
  font-family: var(--ff2);
  text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.4);
  text-align: center;
  text-transform: capitalize;
}

.why-us .why-box p {
  margin-bottom: 30px;
  font-family: var(--ff2);
  font-size: 14px;
  text-align: center;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .icon-box {
	text-align: center;
	background: #fff;
	padding: 65px 30px;
	width: 100%;
	height: 100%;
	transition: 0.3s;
	background: linear-gradient(180deg, #FFC876 -1.75%, #FF6E04 100.23%);
	-webkit-box-shadow: inset 10px 0px 50px 0px rgba(31, 7, 67, 0.5);
	-moz-box-shadow: inset 10px 0px 50px 0px rgba(31, 7, 67, 0.5);
	box-shadow: inset 10px 0px 50px 0px rgba(31, 7, 67, 0.5);
	background: #9e4efc;
	background: -moz-linear-gradient(left, #9e4efc 0%, #570dc8 100%);
	background: -webkit-linear-gradient(left, #9e4efc 0%, #570dc8 100%);
	background: linear-gradient(to right, #9e4efc 0%, #570dc8 100%);
}

.why-us .icon-box i {
  color: var(--brand-text);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(235, 0, 216, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.why-us .icon-box h3 {
  font-size: 59px;
  font-weight: 800;
  font-family: var(--ff2);
  background: -webkit-linear-gradient(top, #fdb125 45%, #e07e1e 48%, #fcb100 85%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 36px #ffb600);
}

.why-us .icon-box h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 30px 0;
  font-family: var(--ff1);
  color: #fff;
  text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.4);
}

.why-us .icon-box p {
  font-size: 14px;
  color: #fff;
  font-family: var(--ff2);
  text-transform: capitalize;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    Why Us end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    faq part start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.faq_header h6 {
  position: relative;
}

.faq_header h6::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: -17px;
  width: 100%;
  height: 3px;
  color: #fcb100;
  background: #000000;
  background: -moz-linear-gradient(top, #000000 67%, #450e8b 67%);
  background: -webkit-linear-gradient(top, #000000 67%, #450e8b 67%);
  background: linear-gradient(to bottom, #000000 67%, #450e8b 67%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#450e8b', GradientType=0);
}

.faq_form .form-floating>.form-control-plaintext~label::after,
.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after {
  background-color: transparent;
  color: var(--brand-text);
}

.faq_form .form-control:focus {
  color: var(--brand-text);
  border-color: #450e8b;
  box-shadow: 0 8px 28px rgba(68, 14, 139, 0.5);
}

.faq_form .form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  color: var(--brand-text);
}

.faq_form .form-floating>label {
  color: var(--brand-text);
}

.faq_form .form-control {
  background-color: transparent;
  border-color: #450e8b;
}

.faq_button {
  text-align: center;
  margin-top: 12px;
}

.swal2-title {
  color: var(--brand-text) !important;
  font-family: var(--ff1) !important;
}

.swal2-content {
  color: var(--brand-text) !important;
  font-family: var(--ff2) !important;
}

.swal2-popup {
  background: #000 !important;
}

.swal2-styled.swal2-confirm {
  background-color: #450e8b !important;
  color: #fff !important;
}

.accordion-button:not(.collapsed) {
  color: var(--brand-text);
  background-color: #444;
}

.accordion-item {
  border: none;
  font-family: var(--ff2);
}

.accordion-body {
  background: #000;
  color: var(--brand-text);
}

.accordion-button:not(.collapsed) {
  box-shadow: 0px 3px 4px 0px #450e8b;
}

.accordion-button {
  color: var(--brand-text);
  background-color: #444;
}

.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: none;
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f055";
}

.accordion-button:not(.collapsed)::after {
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  content: "\f056";
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    faq part end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    Testimonials start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--brand-text);
  font-family: var(--ff2);
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
}

.testimonials .testimonial-item .testimonial-img {
  margin: 0 auto;
  border-radius: 50%;
  padding: 23px 0;
  filter: drop-shadow(0 0 12px #ffb600);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #fff;
  margin: 0 0 10px 0;
  font-family: var(--ff2);
}

.testimonials .testimonial-item .stars i {
  margin: 0 1px;
  background: -webkit-linear-gradient(bottom, #fdb125 0%, #e07e1e 40%, #fcb100 45%);
  background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials .testimonial-item i {
  color: var(--brand-text);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .fa-quote-left {
  display: inline-block;
  left: 0px;
  position: relative;
}

.testimonials .testimonial-item .fa-quote-right {
  display: inline-block;
  right: 0px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  color: #fff;
  font-family: var(--ff2);
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--brand-text);
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    Testimonials start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    gallery start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.gallery-item {
  position: relative;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.gallery-item .gallery_overlay {
  position: absolute;
  background: rgba(68, 14, 139, 0.2);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  overflow: hidden;
}

.gallery-item .gallery_overlay .view {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 50px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.gallery-item:hover .gallery_overlay {
  display: block;

}

.gallery_overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: -600px;
  width: 197px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  -webkit-transform: skewX(-30deg);
  -moz-transform: skewX(-30deg);
  -ms-transform: skewX(-30deg);
  -o-transform: skewX(-30deg);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.gallery_overlay:hover::before {
  left: 999px;
}

.gallery .container-fluid {
  padding: 0;
}

.gallery .gallery-item {
  background-size: cover;
  background-position: center;
  min-height: 600px;
  padding: 30px;
}

.gallery .gallery-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
}

.gallery .gallery-item .price {
  color: #fff;
  border-bottom: 2px solid var(--brand-text);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.gallery .gallery-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--brand-text);
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                    gallery end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  Free Spin start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.free_spin_details {
  margin: 16% 0;
}

#main {
  width: 100%;
  display: flex;
  justify-content: center;
}

#main div {
  font-family: var(--ff2);
}

#wheelOfFortune {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

#wheel {
  display: block;
  width: 500px;
  height: 500px;
}

#spin {
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25%;
  height: 25%;
  margin: -12%;
  background: #fff;
  color: #ffffff;
  box-shadow: 0 0 0 8px currentColor, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: 0.8s;
  font-weight: 800;
}

#spin::after {
  content: "";
  position: absolute;
  top: -17px;
  border: 10px solid transparent;
  border-bottom-color: currentColor;
  border-top: none;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  Free Spin end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  app start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.app_text {
  position: relative;
}

.app_text p {
  font-size: 12px;
  font-family: var(--ff1);
}

.app_text h6::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: -17px;
  width: 100%;
  height: 3px;
  color: #fcb100;
  background: #000000;
  background: -moz-linear-gradient(top, #000000 67%, #450e8b 67%);
  background: -webkit-linear-gradient(top, #000000 67%, #450e8b 67%);
  background: linear-gradient(to bottom, #000000 67%, #450e8b 67%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#450e8b', GradientType=0);
}

.app_links {
  text-align: center;
}

.app_links:first-child img {
  margin-bottom: 12px;
}

.qr_link img {
  width: 40%;
}

.qr_link h4 {
  text-align: center;
  align-items: center;
  display: flex;
}

.app_device img {
  animation: flying 2s ease-in-out infinite alternate;
}

@keyframes flying {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-24px);
  }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  app end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  competition start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.competition_header h6 {
  position: relative;
}

.competition_header h6::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: -17px;
  width: 100%;
  height: 3px;
  color: #fcb100;
  background: #000000;
  background: -moz-linear-gradient(top, #000000 67%, #450e8b 67%);
  background: -webkit-linear-gradient(top, #000000 67%, #450e8b 67%);
  background: linear-gradient(to bottom, #000000 67%, #450e8b 67%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#450e8b', GradientType=0);
}

.competition-games {
  position: relative;
  margin-bottom: 1.5rem;
}

.competition-games .overlay_game {
  position: absolute;
  top: 10px;
  left: 20px;
  bottom: 10px;
  right: 20px;
  background: rgba(68, 14, 139, 0.5);
  border: 5px ridge #450e8b;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.competition-games:hover .overlay_game {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.overlay_game .game_info {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 28px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.game_info a {
  font-size: 12px;
}

.game_info h4 {
  font-family: var(--ff2);
  font-size: 22px;
  font-weight: 800;
  background: -webkit-linear-gradient(bottom, #fdb125 0%, #e07e1e 40%, #fcb100 45%);
  background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
}

.game_info p {
  font-family: var(--ff2);
}

.competition-col {
  overflow: auto;
  height: 404px;
}

.competition-row {
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: var(--ff2);
  background: #000;
  margin-bottom: 1px;
}

.competition-row i {
  color: var(--brand-text);
}

.winner {
  margin-bottom: 15px;
}

.winner h3 {
  text-transform: capitalize;
  font-weight: 800;
  font-size: 17px;
  font-family: var(--ff2);
  background: linear-gradient(180deg, #FFC876 -1.75%, #FF6E04 100.23%);
  background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.winner a {
  text-transform: capitalize;
  font-weight: 800;
  font-size: 17px;
  font-family: var(--ff2);
  background: linear-gradient(180deg, #FFC876 -1.75%, #FF6E04 100.23%);
  background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  border-bottom: 1px solid var(--brand-text);
}

.winner a:hover {
  color: var(--brand-text);
  letter-spacing: 2px;
}

.flipper {
  color: #333;
  display: block;
  font-size: 50px;
  line-height: 100%;
  padding: 0;
  margin: 0;
  height: 1.7em;
}

.flipper.flipper-invisible {
  font-size: 0px !important;
}

.competition-time h4 {
	font-family: var(--ff1);
	background: linear-gradient(180deg, #FFC876 -1.75%, #FF6E04 100.23%);
	background-clip: border-box;
	background-clip: border-box;
	background-clip: border-box;
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding: 4px 0;
}

.flipper-group {
  position: relative;
  white-space: nowrap;
  display: block;
  float: left;
  padding: 0;
  margin: 0;
}

.flipper-group label {
  position: absolute;
  color: #fff;
  font-size: 29%;
  top: 100%;
  line-height: 1em;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  text-align: center;
  padding-top: .5em;
  font-family: var(--ff2);
}

.flipper-digit {
  white-space: nowrap;
  position: relative;
  padding: 0;
  margin: 0;
  display: block;
  float: left;
  height: 1.2em;
  overflow-y: hidden;
}

.flipper-digit span {
  font-size: 25%;
}

.flipper-delimiter {
  white-space: nowrap;
  display: block;
  float: left;
  padding: 0;
  margin: 0;
  color: #fff;
  min-width: .1em;
  white-space: nowrap;
  display: block;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  line-height: 1em;
}

.digit-face {
  display: block;
  visibility: hidden;
  position: relative;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
  padding-right: 0.1em;
  box-sizing: border-box;
  text-align: center;
}

.digit-next {
  display: block;
  position: relative;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  height: 1.2em;
  background: #fff;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
  padding-right: 0.1em;
  box-sizing: border-box;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.digit-top {
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  position: absolute;
  background: #fff;
  padding-top: 0.1em;
  padding-bottom: 0;
  padding-left: 0.1em;
  padding-right: 0.1em;
  border-top-left-radius: 0.1em;
  border-top-right-radius: 0.1em;
  box-sizing: border-box;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background 0s linear, -webkit-transform 0s linear;
  transition: transform 0s linear, background 0s linear;
  transition: transform 0s linear, background 0s linear, -webkit-transform 0s linear;
  -webkit-transform-origin: 0 0.6em 0 !important;
  transform-origin: 0 0.6em 0 !important;
  -webkit-transform-style: preserve-3d !important;
  transform-style: preserve-3d !important;
  z-index: 20;
}

.digit-top.r {
  transition: background 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, background 0.2s linear;
  transition: transform 0.2s linear, background 0.2s linear, -webkit-transform 0.2s linear;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  background: #cccccc;
}

.digit-top2 {
  visibility: hidden;
  position: absolute;
  height: 50%;
  left: 0;
  right: 0;
  background: #cccccc;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  line-height: 0em !important;
  top: 50% !important;
  bottom: auto !important;
  padding-top: 0;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
  padding-right: 0.1em;
  border-bottom-left-radius: 0.1em;
  border-bottom-right-radius: 0.1em;
  overflow: hidden;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background 0s linear, -webkit-transform 0s linear;
  transition: transform 0s linear, background 0s linear;
  transition: transform 0s linear, background 0s linear, -webkit-transform 0s linear;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-style: preserve-3d !important;
  transform-style: preserve-3d !important;
  -webkit-transform-origin: 0 0 0 !important;
  transform-origin: 0 0 0 !important;
  z-index: 20;
}

.digit-top2.r {
  visibility: visible;
  transition: background 0.2s linear 0.2s, -webkit-transform 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s, background 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s, background 0.2s linear 0.2s, -webkit-transform 0.2s linear 0.2s;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  background: #fff;
}

.digit-bottom {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  background: #fff;
  height: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  line-height: 0em;
  padding-top: 0;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
  padding-right: 0.1em;
  border-bottom-left-radius: 0.1em;
  border-bottom-right-radius: 0.1em;
  box-sizing: border-box;
  text-align: center;
  transition: none;
}

.digit-bottom.r {
  transition: background 0.2s linear;
  background: #cccccc;
}

.flipper-digit:after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(0, 0, 0, 0.5);
  top: 50%;
  display: block;
  z-index: 30;
  left: 0;
  right: 0;
}

.flipper-dark {
  color: #fff;
}

.flipper-dark .flipper-delimiter {
  color: #333;
}

.flipper-dark .digit-next {
  background: #333;
}

.flipper-dark .digit-top {
  background: #333;
}

.flipper-dark .digit-top.r {
  background: black;
}

.flipper-dark .digit-top2 {
  background: black;
}

.flipper-dark .digit-top2.r {
  background: #333;
}

.flipper-dark .digit-bottom {
  background: #333;
}

.flipper-dark-labels .flipper-group label {
  color: #333;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  competition end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  Game single start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.game_single_header h6::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: -17px;
  width: 100%;
  height: 3px;
  color: #fcb100;
  background: #000000;
  background: -moz-linear-gradient(top, #000000 67%, #450e8b 67%);
  background: -webkit-linear-gradient(top, #000000 67%, #450e8b 67%);
  background: linear-gradient(to bottom, #000000 67%, #450e8b 67%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#450e8b', GradientType=0);
}

.single_game_details .gl-star-rating .gl-star-rating--stars>span {
  --gl-star-size: 42px;
}

.form-1 {
  justify-content: center;
  display: flex;
}

.single_game_details .game-detail {
  font-size: 14px;
  margin: 14px 0;
}

.single_game_more_details ul li i {
  color: var(--brand-text);
  margin-right: 2px;
}

.single_game_more_details ul li{
  padding: 10px 0;
}

.single_game_more_details ul li p {
  font-size: 16px;
  font-weight: 800;
}

.single_game_details {
  margin: 107px 0px;
}

#game_single .swiper-button-next,
#game_single .swiper-button-prev {
  color: var(--brand-text);
}

#game_single .swiper-pagination-bullet-active {
  background: #450e8b;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  Game single end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  promotion start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
#promotion .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

#promotion .swiper-3d .swiper-slide-shadow {
  background: none;
}

.bonus_promotion {
	display: flex;
	padding: 16px 0;
}

.bonus_promotion i {
  line-height: 25px;
  color: var(--brand-text);
  margin-right: 7px;
}

.bonus_promotion p {
  font-family: var(--ff1);
  font-size: 16px;
  text-transform: capitalize;
}

#promotion .swiper {
  width: 323px;
  height: 562px;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  promotion end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  Gift Card  start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.gift_card_txt {
  text-align: center;
}

.gift_card_txt h3 {
  font-size: 163px;
  font-weight: 800;
  font-family: var(--ff2);
  background: -webkit-linear-gradient(top, #fdb125 45%, #e07e1e 48%, #fcb100 85%);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 36px #ffb600);
}

.gift_card_txt h4 {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  font-family: var(--ff1);
}

.gift_card_txt h5 {
  font-size: 88px;
  font-weight: 800;
  color: #fff;
  font-family: var(--ff1);
}

#gift_card img {
  animation: flying 2s ease-in-out infinite alternate;
}

@keyframes flying {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-24px);
  }
}


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  Gift Card  end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  pricing start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
.pricingTable {
	text-align: center;
	margin: 0 38px;
	padding-bottom: 50px;
	position: relative;
	z-index: 1;
}
.pricingTable:before {
  content: '';
  height: 80%;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  -webkit-clip-path: polygon(50% 93%, 100% 100%, 100% 0, 0 0, 0 100%);
  clip-path: polygon(50% 93%, 100% 100%, 100% 0, 0 0, 0 100%);
  transition: all 0.3s;
  background: linear-gradient(180deg, #FFC876 -1.75%, #FF6E04 100.23%);
  -webkit-box-shadow: inset 10px 0px 50px 0px rgba(31, 7, 67, 0.5);
  -moz-box-shadow: inset 10px 0px 50px 0px rgba(31, 7, 67, 0.5);
  box-shadow: inset 10px 0px 50px 0px rgba(31, 7, 67, 0.5);
  background: #9e4efc;
  background: -moz-linear-gradient(left, #9e4efc 0%, #570dc8 100%);
  background: -webkit-linear-gradient(left, #9e4efc 0%, #570dc8 100%);
  background: linear-gradient(to right, #9e4efc 0%, #570dc8 100%);
}

.pricingTable:hover:before {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3) inset;
}

.pricingTable .price-value {
	color: #fff;
	background-color: var(--brand-text);
	padding: 80px 70px 25px;
	border-radius: 100% 100% 0 0;
	display: inline-block;
}
.pricingTable .amount {
	font-size: 54px;
	font-weight: 700;
	line-height: 70px;
}

.pricingTable .month {
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  display: block;
}

.pricingTable .title {
  color: var(--brand-text);
  background-color: #222;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 0 12px;
  margin: 0 -15px 10px;
  position: relative;
  font-weight: 800;
  font-family: var(--ff2);
}

.pricingTable .title::before,
.pricingTable .title::after {
  content: '';
  background: linear-gradient(225deg, #888 48%, transparent 50%);
  height: 15px;
  width: 15px;
  position: absolute;
  left: 0;
  bottom: -15px;
}

.pricingTable .title:after {
  transform: rotateY(180deg);
  left: auto;
  right: 0;
}

.pricingTable .pricing-content {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 40px;
  list-style: none;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
  font-family: var(--ff2);
  font-weight: 800;
}

.pricingTable .btn-style {
  padding: 8px 50px !important;
}


@media only screen and (max-width: 990px) {
  .pricingTable {
    margin: 0 15px 30px;
  }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  pricing end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  Contact part start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
/* animation */
.content-block::before,
.content-block::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.content-block {
  width: 200px;
  height: 200px;
  margin: auto;
  color: #ffffff;
  position: relative;
}

.content-block img {
  box-shadow: 0px 0px 29px 0px #fff;
}

.content-block::before,
.content-block::after {
  content: "";
  z-index: 0;
  margin: -5%;
  animation: clipMe 8s linear infinite;
  -webkit-animation: clipMe 8s linear infinite;
}

.content-block::after {
  box-shadow: inset 0 0 0 2px var(--brand-text);
}

.content-block::before {
  box-shadow: inset 0 0 0 2px var(--brand-text);
}

.content-block::before {
  animation-delay: -4s;
}

@keyframes clipMe {

  0%,
  100% {
    clip: rect(0px, 220px, 2px, 0px);
  }

  25% {
    clip: rect(0px, 2px, 220px, 0px);
  }

  50% {
    clip: rect(218px, 220px, 220px, 0px);
  }

  75% {
    clip: rect(0px, 220px, 220px, 218px);
  }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  Contact part end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  coming soon part start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
#coming_soon {
  position: relative;
}

.parallax-window {
  min-height: 115vh;
  min-width: 95vw;
  padding-top: 150px;
  background: transparent;
}

.coming_soon_details h4 {
  color: var(--brand-text);
  text-transform: uppercase;
  font-size: 40px;
  text-align: center;
  font-weight: 800;
  font-family: var(--ff2);
}

.coming_soon_details h3 {
  color: red;
  text-transform: uppercase;
  font-size: 70px;
  text-align: center;
  font-family: var(--ff2);
  text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 50px rgba(255, 255, 255, .8), 0 0 75px rgba(255, 255, 255, .6), 0 0 76px rgba(255, 255, 255, .4), 0 0 77px rgba(255, 255, 255, .5), 0 0 78px rgba(255, 255, 255, .4), 0 0 79px rgba(255, 255, 255, .3), 0 0 80px rgba(255, 255, 255, .2), 0 0 85px rgba(255, 255, 255, .1);
}

.coming_soon_details p {
  color: #fff;
  text-transform: capitalize;
  font-size: 21px;
  text-align: center;
  font-weight: 800;
  padding: 14px 0;
}

.coming_soon_details .btn-primary {
  background: var(--brand-text);
}

.coming_soon_details .btn-primary,
.btn-dark {
  border: 0;
  border-radius: 3px;
  padding: 12px 20px 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  transition: 350ms;
  font-size: 14px;
}

.coming_soon_details .form-control {
  font-weight: 800;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.7);
  border: #fff;
}

.coming_soon_details .form-group {
  display: block;
  z-index: 999;
}

.coming_soon_details .form-control {
	box-shadow: none;
	border: 1px solid #dadada;
	padding: 5px 20px;
	height: 43px;
	background: #fff;
	color: #959595;
	font-size: 14px;
	border-radius: 0;
}
.coming_soon_details .btn-style{
  display: flex;
  justify-content: center;
}
 
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  coming soon end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  error part start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
#error {
  position: relative;
}

.error-page .error-body .btn {
  margin-top: 30px;
  font-weight: 700;
}

.error-message h3 {
  color: red;
  text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 50px rgba(255, 255, 255, .8), 0 0 75px rgba(255, 255, 255, .6), 0 0 76px rgba(255, 255, 255, .4), 0 0 77px rgba(255, 255, 255, .5), 0 0 78px rgba(255, 255, 255, .4), 0 0 79px rgba(255, 255, 255, .3), 0 0 80px rgba(255, 255, 255, .2), 0 0 85px rgba(255, 255, 255, .1);
  font-size: 40px;
  font-family: var(--ff2);
}

.error-page .error-body .btn-style {
  margin-top: 30px;
  font-weight: 700;
  display: inline-block;
}

.error-body p {
  font-size: 22px;
  font-family: var(--ff1);
  font-weight: 800;
}

.glitch {
  font-size: 100px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}

.glitch {
  animation: glitch 1000ms infinite;
  display: inline-block;
}

.glitch span {
  position: absolute;
  top: 0;
  left: 0;
}

.glitch span:first-child {
  animation: glitch 650ms infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  transform: translate(-0.05em, -0.025em)
}

.glitch span:last-child {
  animation: glitch 650ms infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(0.05em, 0.025em)
}


@keyframes glitch {
  0% {
    text-shadow:
      0.05em 0 0 rgba(255, 0, 0, .75),
      -0.025em -0.05em 0 rgba(0, 255, 0, .75),
      0.025em 0.05em 0 rgba(0, 0, 255, .75);
  }

  14% {
    text-shadow:
      0.05em 0 0 rgba(255, 0, 0, .75),
      -0.025em -0.05em 0 rgba(0, 255, 0, .75),
      0.025em 0.05em 0 rgba(0, 0, 255, .75);
  }

  15% {
    text-shadow:
      -0.05em -0.025em 0 rgba(255, 0, 0, .75),
      0.025em 0.025em 0 rgba(0, 255, 0, .75),
      -0.05em -0.05em 0 rgba(0, 0, 255, .75);
  }

  49% {
    text-shadow:
      -0.05em -0.025em 0 rgba(255, 0, 0, .75),
      0.025em 0.025em 0 rgba(0, 255, 0, .75),
      -0.05em -0.05em 0 rgba(0, 0, 255, .75);
  }

  50% {
    text-shadow:
      0.025em 0.05em 0 rgba(255, 0, 0, .75),
      -0.025em -0.05em 0 rgba(0, 255, 0, .75),
      0 -0.05em 0 rgba(0, 0, 255, .75);
  }

  99% {
    text-shadow:
      0.025em 0.05em 0 rgba(255, 0, 0, .75),
      -0.025em -0.05em 0 rgba(0, 255, 0, .75),
      0 -0.05em 0 rgba(0, 0, 255, .75);
  }

  100% {
    text-shadow:
      -0.025em 0 0 rgba(255, 0, 0, .75),
      -0.025em -0.025em 0 rgba(0, 255, 0, .75),
      -0.025em -0.05em 0 rgba(0, 0, 255, .75);
  }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  error soon end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  signup_login part start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
#signup_login {
  position: relative;
  z-index: 99;
}

.form {
  background: #000000;
  padding: 40px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
  position: relative;
}

.tab-group {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.tab-group:after {
  content: "";
  display: table;
  clear: both;
}

.tab-group li a {
  display: block;
  text-decoration: none;
  padding: 15px;
  background: #222;
  color: #fff;
  font-size: 20px;
  float: left;
  width: 48%;
  text-align: center;
  transition: .5s ease;
  font-family: var(--ff2);
  font-weight: 800;
  margin: 0 2px;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
}

.tab-group li a:hover {
  background: var(--brand-text);
  color: #fff;
}

.tab-group .active a {
  background: var(--brand-text);
  color: #ffffff;
}

.tab-content>div:last-child {
  display: none;
}

.tab-content h1 {
  text-align: center;
  font-weight: 300;
  margin: 0 0 40px;
  color: #ffb600;
  font-family: var(--ff1);
  filter: drop-shadow(0 0 5px #ffb600);
}

.tab-content label {
  position: absolute;
  transform: translateY(6px);
  left: 13px;
  color: #ffffff;
  transition: all 0.25s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  font-size: 22px;
}

.tab-content label .req {
  margin: 2px;
  color: var(--brand-text);
}

label.active {
  transform: translateY(50px);
  left: 2px;
  font-size: 14px;
}

label.active .req {
  opacity: 0;
}

label.highlight {
  color: #ffffff;
}

.tab-content input,
textarea {
  font-size: 22px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  background: none;
  background-image: none;
  border: 1px solid rgba(255, 183, 0, 0.6);
  color: #ffffff;
  border-radius: 0;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.tab-content input:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(255, 183, 0, 0.6);
}

textarea {
  border: 2px solid rgba(255, 183, 0, 0.6);
  resize: vertical;
}

.field-wrap {
  position: relative;
  margin-bottom: 40px;
}

.top-row:after {
  content: "";
  display: table;
  clear: both;
}

.top-row>div {
  float: left;
  width: 48%;
  margin-right: 4%;
}

.top-row>div:last-child {
  margin: 0;
}

.tab-content .button {
  border: 0;
  outline: none;
  border-radius: 0;
  padding: 15px 0;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--brand-text);
  color: #ffffff;
  transition: all 0.5s ease;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--ff2);
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
}

.tab-content .button:hover,
.tab-content .button:focus {
  background: var(--brand-text);
  filter: drop-shadow(0 0 5px #ffb600);
}

.tab-content .button-block {
  display: block;
  width: 100%;
}

.forgot {
  margin-top: -20px;
  text-align: right;
  font-family: var(--ff2);
  font-size: 12px;
}


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  signup_login part end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  subscribe start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
#subscribe {
  background: #9e4efc;
  background: -moz-linear-gradient(top, #9e4efc 0%, #570dc8 100%);
  background: -webkit-linear-gradient(top, #9e4efc 0%, #570dc8 100%);
  background: linear-gradient(to bottom, #9e4efc 0%, #570dc8 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#9e4efc', endColorstr='#570dc8', GradientType=0);
  -webkit-box-shadow: 0px 6px 0px 0px rgba(58, 0, 144, 1);
  -moz-box-shadow: 0px 6px 0px 0px rgba(58, 0, 144, 1);
  box-shadow: 0px 6px 0px 0px rgba(58, 0, 144, 1);
}

.subscribe_details {
  text-align: start;
}

.paycard {
  text-align: end;
}

.subscribe_text h3 {
	color: var(--brand-text);
	font-family: var(--ff1);
	font-size: 38px;
	font-weight: 800;
	text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.4);
}

.subscribe_text .input-group {
	font-family: var(--ff2);
	box-shadow: 0 8px 28px rgba(68, 14, 139, 0.4);
	margin-top: 12px;
}
.subscribe_text .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: var(--brand-text);
  outline: 0;
  box-shadow: 0 8px 28px rgba(255, 109, 4, 0.45);
}

.subscribe_text .input-group-text {
  border: 1px solid #450e8b;
  background: #450e8b;
  color: var(--brand-text);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.subscribe_text .input-group-text:hover {
  border: 1px solid #000;
  background: #000;
  color: var(--brand-text);
}

.subscribe_text .paycard a {
  margin-right: 10px;
  margin-top: 10px;

}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  subscribe end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  Footer start
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
#footer {
  background-color: #000 ;
  background-size: cover;
}

.footer {
  font-size: 14px;
  background-color: #1f1f24;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .social-links  {
  padding-top: 7px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--brand-text);
  border-color: var(--brand-text);
}

.footer_menu li {
  margin-right: 22px;
  margin-top: 47px;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                  Footer end
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */


.app_device img {
    width: 78px;
    height: 350px;
}