:root {
  --primary: #e01705;
  --secondary: #0a1f44;
  --primary-invert: #fff;
  --secondary-invert: #fff;

   /* DEFAULT COLOR OF ALERT TEXT */
   --alert-text-primary: #fff;
   
  /* DEFAULT COLOR OF TEXTS */
  --text-primary: #0a1f44;
  
  /* FOR BUTTONS & INPUTS */
  --elements-roundness: 10rem;

  --space-between-blocks: 5.3rem;
  /* for mobiles */
  --space-between-blocks-small-screens: 3rem;
}

body,h1, h2, h3, h4, h5, h6,p, span {
  font-family: 'Poppins', sans-serif;
      font-family: 'Poppins', sans-serif !important;
  color: var(--alert-text-primary);
}

.space-between-blocks {
  padding-top: var(--space-between-blocks-small-screens);
  padding-bottom: var(--space-between-blocks-small-screens);
}

@media(min-width: 992px) {
  .space-between-blocks {
    padding-top: var(--space-between-blocks);
    padding-bottom: var(--space-between-blocks);
  }
}

/* ----------------- BUTTONS ------------------- */

button {
  color: inherit;
  padding: 0;
  background: none;
  border: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.btn {
  font-size: .87rem;
  padding: .8rem 1.6rem;
  border-radius: var(--elements-roundness);
  transition: .2s all;
}

@media(min-width: 992px) {
  .btn {
    padding: .8rem 2rem;
  }
}

.btn,
.btn:hover,
.btn:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.btn:hover,
.btn:focus {
  transform: scale(1.05);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary);
  color: var(--primary-invert);
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--secondary);
  color: var(--secondary-invert);
}

.btn-sm {
  padding: .8rem;
}

/* ============================================== */

.offer-alert {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background-color: #4B0082;
  font-size: .9rem;
  cursor: pointer;
  z-index: 1;
  background-image: url(rectangle.png);
  color: #fff;
}

.offer-alert__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media(min-width: 992px) {
  .offer-alert__container {
    display: block;
  }
}

.offer-alert__btn {
  color: var(--primary-invert);
  background-color: var(--primary);
  padding: .5rem .8rem;
  margin-top: .5rem;
  border-radius: 5px;
  transition: .2s all;
}

@media(min-width: 922px) {
  .offer-alert__btn {
    margin: 0 .5rem;
  }
}

.offer-alert__btn:hover,
.offer-alert__btn:focus {
  background-color: var(--primary);
  color: var(--primary-invert);
  text-decoration: none;
  transform: scale(1.1);
}

/* ============================================== */

.hero {
  --hero-nav-height: 100px;
  --block-background: white;
/*  --block-text-color: var(--text-primary);*/
  background: #0E0E10;
  color: var(--block-text-color);
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 98px;
    --block-text-color: #fff;
    padding: 0;
}

@media(min-width: 992px) {
  .hero {
    margin-top: 53px;
  }
}

.hero-nav {
  margin: 0 -1rem;
  width: 100%;
  height: var(--hero-nav-height);
  display: flex;
  align-items: center;
  /*background: #2E2334;*/
  max-width: 100%;
  background: transparent;
}


.hero-nav__item {
  /*text-align: center;*/
  text-align: left;
  font-size: 1.1rem;
}

@media(min-width: 992px) {
  .hero-nav__item {
    margin: 0 1rem;
  }
}

@media(min-width: 992px) {
  .nav--lg-side {
    flex-direction: row-reverse;
  }
}

.hero-nav__logo {
  height: 35px;
}

.hero-nav__link {
  color: inherit;
  opacity: .9;
  font-size: 14px;
  font-weight: 500 !important;
  line-height: 32px;
}

.hero-nav__link:hover,
.hero-nav__link:focus {
  color: var(--primary);
  color: #ff001e;
  text-decoration: none;
  opacity: 1;
}

.hero__row {
  height: 100%;
}

.hero_empty-column {
  height: 100%;
}

.hero__image-column {
  height: 100%;
  background-position: center;
  background-size: cover;
}

.hero__content {
  text-align: initial;
  padding-top: 2rem;
  padding-bottom: 0rem;
}

@media(min-width:992px) {
  .hero__content {
    padding-top: 4rem;
    padding-bottom: 0rem;
  }
}

.hero__title {
    font-size: 65px !important;
    font-weight: 900;
    text-align: center;
    margin-top: 40px;
    color: #fff;
}

.hero__paragraph {
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: .9;
}

@media (min-width: 576px) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 1.17;
  }
  
  .hero__paragraph {
    width: 80%;
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media(min-width: 992px) {
  .hero__title {
    width: 95%;
    font-size: 3rem;
    line-height: 1.17;
  }

  .hero__paragraph {
    font-size: 1rem;
    width: 70%;
  }
}

@media(min-width: 1200px) {
  .hero__title {
    font-size: 3.5rem;
    line-height: 1.17;
  }
}

.cta-p {
  text-align: center;
  font-size: .75rem;
  opacity: .9;
}

@media(min-width: 992px) {
  .cta-p {
    text-align: initial;
  }
}

.hero__btns-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  margin: auto;
}

.hero__btn {
  display: inline-block;
  width: 100%;
}

@media(min-width: 992px) {
  .hero__btns-container {
    width: auto;
    flex-direction: row;
  }

  .hero__btn {
    width: auto;
  }
}

.highlight {
   color: #FF001E;
  font-weight: 800;
  font-style: normal;
}

.hero__title p{
  font-size: 20px;
  margin-top: 5px;
  font-weight: 500;
}

@media(max-width: 768px) {
  /*.hero__title p{
    font-size: 16px !important;
  }
  .hero__title{
    font-size: 32px !important;
  }*/
}

/* ----------------------------- */

.ft-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media (print),
(prefers-reduced-motion: reduce) {
  .ft-menu {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

.ft-menu .hero-nav__item {
  width: 100%;
  margin-top: .75rem;
  margin-bottom: .75rem;
/*  color: #000;*/
}

@media(min-width: 992px) {
  .ft-menu .hero-nav__item {
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.ft-menu--js-show {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;

  visibility: visible !important;
  opacity: 1 !important;
}

.ft-menu::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
/*  background: var(--primary);*/
background: #2E2334;
  opacity: .9;
  z-index: -1;
}

@media(min-width: 992px) {
  .ft-menu {
    -webkit-animation-name: none;
    animation-name: none;
    position: static;
    z-index: auto;
  }

  .ft-menu::before {
    content: none;
  }
}

.ft-menu__slider {
  width: 80%;
  height: 100%;
  /*background: var(--block-background);*/
  background: #000;
  overflow: hidden;
  transform: translateX(-100%);
  transition: .5s transform;
}

@media(min-width: 992px) {
  .ft-menu__slider {
    width: auto;
    height: auto;
    background: none;
    transform: none;
    display: flex;
    align-items: center;
  }
}

.ft-menu--js-show .ft-menu__slider {
  transform: translateX(0%);
}

.ft-menu__close-btn {
  color: var(--primary-invert);
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2rem;
  margin: 1rem;
  transform: translateX(100%);
  transition: .5s transform;
}

@media(min-width: 992px) {
  .ft-menu__close-btn {
    display: none;
  }
}

.ft-menu--js-show .ft-menu__close-btn {
  transform: translateX(0%);
}

.ft-menu__close-btn:hover,
.ft-menu__close-btn:focus {
  color: var(--primary-invert);
}

.pattern {
  position: absolute;
  height: 47%;
  width: 17%;
  opacity: .5;
}

.pattern--primary {
  color: var(--primary);
}

.pattern--left-bottom {
  bottom: 0;
  left: 0;
}

.pattern--right {
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* ------------------------------- */

/* Fade in */

@-webkit-keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

/* Fade out */

@-webkit-keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }

  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }

  to {
    visibility: hidden;
    opacity: 0;
  }
}

.hero__img-container {
  border-radius: .5rem;
  overflow: hidden;
}

/* ===================================== */

.block-5 {
  --block-background: #f8f8f8;
  --block-text-color: var(--text-primary);
/*  background: var(--block-background);*/
  background: #0E0E10;
/*  color: var(--block-text-color);*/
  color: #fff;
}

.block__header {
  margin-bottom: 4rem;
}

.block__pre-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
}

@media(min-width: 992px) {
  .block__title {
    font-size: 2.5rem;
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: .9;
}

.card-2 {
  margin-bottom: 2.1rem;
}

.card-2:last-child {
  margin-bottom: 0;
}

.card-2__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  height: 3.25rem;
  width: 3.25rem;
  border: 1px solid var(--primary);
  border-radius: var(--elements-roundness);
  background: white;
  color: var(--primary);
}

@media(min-width: 992px) {
  .card-2__symbol {
    height: 3.8rem;
    width: 3.8rem;
  }
}

.card-2__title {
      font-size: 18px;
    font-weight: 500;
    line-height: 1.46;
    color: #fff;
    margin-top: 20px;
}

.card-2__paragraph {
 font-size: 12px;
    line-height: 1.5;
    opacity: 1;
    margin: 0;
    color: #858585;
}

/* ========================================================= */

.block-11 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
}

.block__header {
  margin-bottom: 4rem;
}

.block__pre-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}

@media(min-width: 992px) {
  .block__title {
    font-size: 2.5rem;
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: .9;
}

.card-1 {
  height: 100%;
  
/*  border: 1px solid rgba(0,0,0,0.1);*/
  transition: .1s all;
  background: linear-gradient(0deg, #161616 68.5%, #2D2D2D 100%);

border-radius: 12px;
padding: 24px;
    align-content: end;

}

.card-1:hover,
.card-1:focus {
 /* color: white;
  background: var(--primary);
  border-color: var(--primary);*/
}

.card-1__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  height: 3.25rem;
  width: 3.25rem;
  border: 1px solid var(--primary);
  border-radius: var(--elements-roundness);
  background: white;
  color: var(--primary);
}

@media(min-width: 992px) {
  .card-1__symbol {
    height: 4.25rem;
    width: 4.25rem;
  }
}

.card-1__title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(75, 0, 130, 1);
  margin-top: 15px;

}

.card-1__paragraph {
  font-size: 14px;
  line-height: 1.5;
  opacity: .8;
}

/* UTILITIES */
.mb-2-1rem {
  margin-bottom: 2.1rem;
}

/* ======================================= */

.block-20 {
  --block-background: #f8f8f8;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
}

.block__header {
  margin-bottom: 4rem;
}

.block__pre-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}

@media(min-width: 992px) {
  .block__title {
    font-size: 2.5rem;
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: .9;
}

.testimonial-card-1 {
  padding: 1.5rem;
  padding-top: 10rem;
  margin-top: 58px;
  margin-bottom: 25px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  position: relative;
  z-index: 0;
}

.testimonial-card-1__paragraph {
  font-size: .87rem;
  opacity: .9;
  line-height: 1.7;
}

.testimonial-card-1__quote-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--primary-invert);
  font-size: 1.3rem;
  border: 2px solid white;
  border-radius: 10rem;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
}

.block-20__person {
  text-align: center;
  position: absolute;
  top: -58px;
  left: 0;
  right: 0;
  margin: auto;
}

.block-20__person-avatar {
  padding: 6px;
  width: 116px;
  height: 116px;
  background: white;
  border-radius: 10rem;
  border: solid 2px #eff0f9;
}

.block-20__person-rating {
  font-size: .75rem;
  color: #ffe200;
}

.block-20__person-name {
  font-size: .87rem;
  font-weight: 600;
}

.block-20__person-info {
  font-size: .8rem;
  font-weight: 600;
  opacity: .6;
}

/* ========================================= */

.block-17 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
  padding-top: 5.8rem;
  padding-bottom: 5.8rem;
}

.block-17__header {
  padding-bottom: 3.6rem;
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}

@media(min-width: 992px) {
  .block__title {
    font-size: 2.5rem;
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: .9;
}

@media(min-width: 768px) {
  .block-17__paragraph {
    width: 80%;
  }
}

@media(min-width: 992px) {
  .block-17__paragraph {
    width: 50%;
  }
}

.plan-switch {
  font-size: 1.2rem;
  margin-top: 3.6rem;
}

.plan-switch__type {
  font-size: .87rem;
  font-weight: 600;
  opacity: .9;
}

.plan-switch__type--selected {
  color: var(--primary);
  opacity: 1;
}

.testimonial-card-3 {
  background: var(--primary);
  color: var(--primary-invert);
  padding: 3.1rem 2.1rem;
  position: relative;
  z-index: 1;
}

.testimonial-card-3__paragraph {
  font-size: .87rem;
  opacity: .9;
  line-height: 1.7;
}

.testimonial-card-3__quote-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--primary-invert);
  font-size: 1.3rem;
  border: 2px solid white;
  border-radius: 10rem;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
}

.person__avatar {
  padding: 3px;
  width: 68px;
  height: 68px;
  background: white;
  border-radius: 10rem;
}

.person__rating {
  font-size: .75rem;
  color: #ffe200;
}

.person__name {
  font-size: .87rem;
  font-weight: 600;
}

.person__info {
  font-size: .8rem;
  font-weight: 600;
  opacity: .8;
}

.plan-card {
  padding: 3.5rem 2rem;
  border: 2px solid var(--primary);
  background: white;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.discount {
  transform: scale(1.2);
}

.discount__old-price {
  font-size: 1.9rem;
  text-decoration: line-through;
  opacity: .7;
}

.discount__percentage {
  font-size: .87rem;
  color: var(--primary-invert);
  background: var(--primary);
  padding: .3rem .9rem;
  border-radius: 10rem;
}

.plan-card--recommended {
  background: var(--primary);
  color: var(--primary-invert);
  padding-top: 5rem;
  position: relative;
  z-index: 1;
}

.plan-card--recommended .btn-primary {
  background: var(--primary-invert);
  color: var(--primary);
}

.plan-card--recommended .plan-features__icon {
  background-color: rgba(255, 255, 255, 0.3) !important;
  color:white !important;
}

@media(min-width: 992px) {
  .plan-card--recommended {
    height: calc(100% + 50px);
    width: calc(100% + 25px);
    margin-left: -12.5px;
    margin-top: -25px;
    padding-bottom: calc(3.5rem + 25px);
  }
}

.plan-card__tag {
  font-size: .75rem;
  padding: .6rem .8rem;
  border-bottom-left-radius: .8rem;
  border-bottom-right-radius: .8rem;
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 40%;
  margin: auto;
  background: var(--primary);
  color: var(--primary-invert);
}

.plan-card__name {
  font-size: 1.5rem;
  font-weight: 600;
}

.plan-card__price {
  font-size: 4.3rem;
  font-weight: 600;
}

.plan-card__duration {
  font-size: .87rem;
  font-weight: 600;
  text-transform: uppercase;
}

.plan-features {
  text-align: initial;
  margin: auto;
}

@media(min-width: 1200px) {
  .plan-features {
    width: 60%;
  }
}

.plan-features__li {
  font-size: 1rem;
  margin-bottom: 1.3rem;
  display: flex;
}

.plan-features__li-icon {
  color: #33c58d;
  transform: scale(1.5);
}

/* ********************************* */

.switch {
  font-size: 1em;
  position: relative;
  --switch-background--default: var(--primary);
  --switch-btn-background: white;
  --switch-background--checked: var(--primary);
  --switch-background--disabled: #ccc;
}
.switch input {
  position: absolute;
  height: 1px;
  width: 1px;
  background: none;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  padding: 0;
}
.switch input + label {
  position: relative;
  min-width: calc(calc(2.375em * .8) * 2);
  border-radius: calc(2.375em * .8);
  height: calc(2.375em * .8);
  line-height: calc(2.375em * .8);
  display: inline-block;
  cursor: pointer;
  outline: none;
  user-select: none;
  vertical-align: middle;
  text-indent: calc(calc(calc(2.375em * .8) * 2) + .5em);
}
.switch input + label::before,
.switch input + label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(calc(2.375em * .8) * 2);
  bottom: 0;
  display: block;
}
.switch input + label::before {
  right: 0;
  background-color: var(--switch-background--default);
  border-radius: calc(2.375em * .8);
  transition: 0.2s all;
}
.switch input + label::after {
  top: .25em;
  left: .25em;
  width: calc(calc(2.375em * .8) - calc(.25em * 2));
  height: calc(calc(2.375em * .8) - calc(.25em * 2));
  border-radius: 50%;
  background-color: var(--switch-btn-background);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.45);
  transition: 0.2s all;
}
.switch input:checked + label::before {
  background-color: var(--switch-background--checked);
}
.switch input:checked + label::after {
  margin-left: calc(2.375em * .8);
}
.switch input:focus + label::before {
  outline: none;
  box-shadow: 0 0 0 0.2em rgba(0,0,0,0.1);
}
.switch input:disabled + label {
  color: #868e96;
  cursor: not-allowed;
}
.switch input:disabled + label::before {
  background-color: var(--switch-background--disabled);
}
.switch + .switch {
  margin-left: 1em;
}

/* ======================================= */

.block-39 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
}

.block__header {
  margin-bottom: 4rem;
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}

@media(min-width: 992px) {
  .block__title {
    font-size: 2.5rem;
  }
}

.content-block {
  text-align: initial;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.content-block__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
}

@media(min-width: 992px) {
  .content-block__title {
    font-size: 1.5rem;
  }
}

.content-block__paragraph {
  font-size: 1rem;
  opacity: .9;
  line-height: 1.7;
}

/* ========================================= */

.block-28 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background-color: var(--block-background);
  color: var(--block-text-color);
  background-image: linear-gradient(to bottom, #f8f8f8 50%, transparent 0);
}

@media(min-width: 992px) {
  .block-28 {
    background-image: linear-gradient(to right, #f8f8f8 50%, transparent 0);
  }
}

.block-28__content-side,
.block-28__form-side {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.contact-info,
.contact-form {
  width: 90%;
  margin: auto;
}

.contact-info {
  font-size: .9rem;
}

.contact-form__title,
.contact-info__title {
  font-size: 2rem;
  font-weight: 600;
}

.contact-info__paragraph {
  line-height: 1.7;
  opacity: .9;
}

.contact-info__title-2 {
  font-weight: 600;
}

.contact-info__title-2
.contact-info__item {
  opacity: .9;
}

.contact-form__paragraph {
  font-size: 1rem;
  opacity: .9;
  line-height: 1.7;
  width: 90%;
}

.contact-form__input {
  color: var(--text-primary);
  font-size: .87rem;
  padding: .87rem 1.4rem;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(0,0,0,0.01);
  width: 100%;
  margin-bottom: .87rem;
}

textarea.contact-form__input {
  height: 130px;
  resize: none;
}

.contact-form__input:focus {
  border: 1px solid var(--primary);
  outline: none;
  box-shadow: none;
}

.btn--loading {
  opacity: 1;
  cursor: progress;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--loading::before,
.btn--loading::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.btn--loading::before {
  background: var(--primary);
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.btn--loading::after {
  margin: auto;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top: 2px solid var(--primary-invert);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-animation: spin .5s linear infinite; /* Safari */
  animation: spin .5s linear infinite;
  z-index: 2;
}

/* UTILITY CLASSES */

.h-100 {
  height: 100% !important;
}

/* ============================================== */

.block-32 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
}

.block__header {
  margin-bottom: 4rem;
}

.block__pre-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}

@media(min-width: 992px) {
  .block__title {
    font-size: 2.5rem;
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: .9;
}

/* ====================================== */

.block-44 {
  --block-background: #0a1f44;
  --block-text-color: white;
  --text-primary: var(--block-text-color);
  background: var(--block-background);
  color: var(--block-text-color);
  font-size: .87rem;
  text-align: center;
}

@media(min-width: 992px) {
  .block-44 {
    text-align: initial;
  }
}

.block-44__logo-container {
  width: 100%;
  margin-bottom: 2.5rem;
}

@media(min-width: 992px) {
  .block-44__logo-container {
    width: auto;
    flex-grow: 1;
    margin-bottom: 0;
  }
}

.block-44__logo {
  height: 36px;
  filter: brightness(1000);
}

.block-44__list {
  display: flex;
  flex-wrap: wrap;
}

.block-44__li-1 {
  margin: 0 1.2rem;
  margin-bottom: .6rem;
}

@media(min-width: 992px) {
  .block-44__li-1 {
    margin: 0 1.8rem;
  }

  .block-44__li-1:last-child {
    margin: 0;
  }
}

.block-44__link {
  color: var(--text-primary);
  opacity: .8;
}

.block-44__link:hover,
.block-44__link:focus {
  color: var(--primary);
}

.block-44__divider {
  margin: 2.4rem 0;
  border-color: rgba(255, 255, 255, 0.1);
}

.block-44__extra-links {
  justify-content: center;
}

@media(min-width: 768px) {
  .block-44__extra-links {
    justify-content: flex-start;
  }
}

.block-44__copyrights {
  color: var(--text-primary);
  font-size: .87rem;
  line-height: 1.7;
  opacity: .8;
}




.hero{
    background-image: url(Main_BG.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    max-width: 100%;
}
#product .block__title{
text-align: left ;
}
#product .block__title p{
  font-size: 14px;
    font-weight: 600;
}

#product  .block__paragraph{
  text-align: left;
  
}
.feature-img img{
  width: 100% !important;

}
#product .card-2{
  flex-direction: column;
  text-align: center;
}
.block__title p {
    font-size: 14px;
    font-weight: 600;
}
.block__title {
    text-align: left;
}
.map{
  width: 100%;
      margin-top: 50px;
}

#find-out p{
  font-size: 14px;
}


.card-1 img{
  width: 100px;
      margin-top: -60px;
}
.referImg{
  width: 150px !important;
}

.card-sec{
  padding-top: 40px;
}

@media(max-width: 768px) {
.promos-sec{
  padding-bottom: 40px;
}
}

#footer{
  background: rgba(0, 0, 0, 1);
  padding-bottom: 20px;
}

#footer .ft-logo{
  width: 100px;
  margin-bottom: 10px;
}
#footer h1{
  font-size: 22px;
  margin-top: 20px;
  line-height: 30px;
}
#footer p{
  font-size: 16px;
  color: rgba(113, 113, 123, 1) !important;
}

#footer a{
  color: rgba(113, 113, 123, 1);
}
.copyright{
  color: rgba(82, 82, 92, 1);
  font-size: 14px;
  font-weight: 600;
}

.ft-link p{
  font-size: 16px !important;
  /*color: rgba(113, 113, 123, 1) !important;*/
}

#footer ul li{
  margin-right: 10px;
}

#product {
    background-image: url(bg-pro.png);
    background-position: center;
}

#how-work{
   background-image: url(bg2.jpg);
   background-position: center;
    background-repeat: no-repeat;
}
#footer h6{
  color: #fff;
}



/**
 * Tabs Container
 */
.tabs-container {
  padding: 2rem;
  padding-bottom: 0 !important;
}

/**
 * Tabs Block
 */
.tabs-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

/**
 * Tabs
 */
.tabs {
  display: flex;
}

.tabs > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 15%;
}

.tabs > ul li {
  display: block;
      margin-bottom: 50px;
      border-radius: 12px;
      position: relative;
}

.tabs > ul li:not(:last-child) {
/*  border-bottom: 1px solid #262626;*/
}

.tabs > ul li a,
.tabs > ul li a:visited {
  display: flex;
  border-bottom: none;
  text-decoration: none;
/*  background-color: transparent;*/
  background: linear-gradient(0deg, rgba(45, 45, 45, 0.4) 0%, rgba(22, 22, 22, 0.4) 60%);

  color: #fff;
  padding: 1rem 1.5rem;
  transition: all 0.2s ease-in-out;
  word-wrap: break-word;
  border-radius: 12px;
  gap: 5px;
}

.tabs > ul li a:hover,
.tabs > ul li a:focus,
.tabs > ul li a:active {
  border-bottom: none;
  outline: 0;
}

.tabs > ul li a.active {
/*  background-color: #fff;*/
  background: linear-gradient(90deg, rgba(45, 0, 78, 0.4) 0%, rgba(22, 22, 22, 0.4) 60%);

  color: #0067b8;
}

.tabs > ul li a:hover:not(.active) {
  color: #0067b8;
}

.tabs > ul li a > span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tabs > ul li a > span.tab-label {
  color: #fff;
}
.tabs > ul li a p {
  color: #858585;
  font-size: 12px;
  margin: 0 !important;
}

.tabs section {
  width: 50%;
  background-color: transparent;
/*  padding: 1rem;*/
  display: none;
  word-wrap: break-word;
/*  border-bottom: 6px solid #0067b8;*/
}

.tabs section > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s, transform 0.2s;
}

.tabs section > *:nth-child(1) {
  transition-delay: 0.2s;
}

.tabs section > *:nth-child(2) {
  transition-delay: 0.3s;
}

.tabs section > *:nth-child(3) {
  transition-delay: 0.4s;
}

.tabs section > *:nth-child(4) {
  transition-delay: 0.5s;
}

.tabs section > *:nth-child(5) {
  transition-delay: 0.6s;
}

.tabs section > *:nth-child(6) {
  transition-delay: 0.7s;
}

.tabs section > *:nth-child(7) {
  transition-delay: 0.8s;
}

.tabs section > *:nth-child(8) {
  transition-delay: 0.9s;
}

.tabs section > *:nth-child(9) {
  transition-delay: 1s;
}

.tabs section > *:nth-child(10) {
  transition-delay: 1.1s;
}

.tabs section > *:nth-child(11) {
  transition-delay: 1.2s;
}

.tabs section > *:nth-child(12) {
  transition-delay: 1.3s;
}

.tabs section > *:nth-child(13) {
  transition-delay: 1.4s;
}

.tabs section > *:nth-child(14) {
  transition-delay: 1.5s;
}

.tabs section > *:nth-child(15) {
  transition-delay: 1.6s;
}

.tabs section > *:nth-child(16) {
  transition-delay: 1.7s;
}

.tabs section > *:nth-child(17) {
  transition-delay: 1.8s;
}

.tabs section > *:nth-child(18) {
  transition-delay: 1.9s;
}

.tabs section > *:nth-child(19) {
  transition-delay: 2s;
}

.tabs section > *:nth-child(20) {
  transition-delay: 2.1s;
}

.tabs section.active {
  display: block;
}

.tabs section.active-content > * {
  opacity: 1;
  transform: translateY(0);
}

.tabs section img{
  width: 330px;
}

.step-1 a.active:after {
    content: "";
    width: 158px;
    height: 97px;
    background: url(step-1.png);
    bottom: -85px;
    position: absolute;
    display: inline-block;
    left: -122px;
    z-index: 0;
    background-repeat: no-repeat;
}

.step-2 a.active:after {
    content: "";
    width: 158px;
    height: 97px;
    background: url(step-2.png);
    bottom: 0px;
    position: absolute;
    display: inline-block;
    left: -122px;
    z-index: 0;
    background-repeat: no-repeat;
}

.step-3 a.active:after {
    content: "";
    width: 158px;
    height: 97px;
    background: url(step-3.png);
    top: -55px;
    position: absolute;
    display: inline-block;
    left: -122px;
    z-index: 0;
    background-repeat: no-repeat;
}



@media (min-width: 576px) {

  .tabs > ul {
    width: 407px;
  }

  .tabs > ul li a {
    flex-wrap: wrap;
  }

  .tabs > ul li a > span {
    width: 100%;
  }

  .tabs > ul li a > span.tab-label {
    width: 100%;
    display: block;
    margin-top: 0.2rem;
    text-align: left;
  }


  .tabs section {
    width: calc(100% - 150px);
/*    padding: 2rem 2rem;*/
  }
}
@media (min-width: 768px) {

  body {
    font-size: 1.125rem;
  }

  .tabs-container {
    padding: 4rem 4rem;
  }
}
@media (min-width: 992px) {

  .tabs {
/*    width: 800px;*/
  }
}


.hero__menu-content ul.nav{
    place-self: flex-end;
    justify-content: end;
}

.hero-nav__item .app-logo{
  width: 20px;
}
.hero-nav ul.nav{
  padding: 0 95px;
}
.hero-nav__item:last-child{
  margin-left: 0;
  padding-left: 80px;
}
.ex-offer{
  color: #FFC107;
    font-size: 16px;
    font-weight: 800;
    font-style: italic;
}
.offer-alert__container{
    padding: 0 10px;
}
.offer-span{
  margin: 0 10px;
}





div.highway-slider {
  display:flex;
  justify-content:center;
  width:100%;
/*  height:150px;*/
  div.highway-barrier {
    overflow:hidden;
    position:relative;
  }
  ul.highway-lane {
    display:flex;
    height:100%;
    margin: 0;
    li.highway-car {
/*      flex:1;*/
      display:flex;
      justify-content:center;
      align-items:center;
/*      background:#fff;*/
/*      color:#343434;*/
    }
  }
}

@keyframes translatestf {
  0% { transform:translateX(100%);  }
  100% { transform:translateX(-500%);  }
}
#stffull div.highway-barrier {
  ul.highway-lane {
    width:500%;
    li.highway-car {
      animation:translatestf 30s linear infinite;
      h4 { font-size:28px; }
    }
  }
}

@keyframes translateinfinite {
  100% { transform:translateX(calc(-180px * 12));  }
}
#infinite div.highway-barrier {
  /*background:#fff;
  box-shadow:0 3px 10px -3px rgba(0,0,0,0.3);*/
  /*&::before,
  &::after {
    content: " ";
    position:absolute;
    z-index:9;
    width:180px;
    height:100%;  
  }*/
  &::before {
    top:0;left:0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  }
  &::after {
    top:0;right:0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  }
  ul.highway-lane {
    width:calc(180px * 24);
    li.highway-car {
/*      width:180px;*/
      animation:translateinfinite 25s linear infinite;
      span.fab {
        font-size:65px;
      }
    }
  }
}

ul.highway-lane{
  line-height: 6px;
}
body{
      font-family: 'Poppins', sans-serif !important;
}
.span-6{
      color: #854BAF;
    font-size: 22px;
    font-weight: 800;
    font-style: italic;
}











/*testimonial css*/


/*-----Testimonial-------*/

.testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    background: url(img/testimonial.bg-top.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}

.testimonial {
   /* min-height: 375px;
    position: relative;
    background: url(https://i.ibb.co/PTJDkgb/testimonials.jpg);
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
        background-size: cover;*/
}
#testimonial4 .carousel-inner:hover{
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active{
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item{
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators{
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #9dd3af;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar{
  height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{
  background: #eeeeee;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control{
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1);
  transition: all 0.6s cubic-bezier(0.3,1,0,1);
}
.testimonial4_control_button .carousel-control.left{
  left: 7%;
  top: 50%;
  right: auto;
}
.testimonial4_control_button .carousel-control.right{
  right: 7%;
  top: 50%;
  left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover{
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header{
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
.testimonial4_header h4{
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial4_slide{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  margin: auto;
  padding: 24px;
  position: relative;
  text-align: center;
      background: linear-gradient(0deg, #161616 68.5%, #2D2D2D 100%);
      border-radius: 12px;
}
.testimonial4_slide img.client-logo{
    top: 0;
    left: 0;
    right: 0;
    width: 80px;
    height: 80px;
    margin: auto;
    margin-top: 20px;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}
.testimonial4_slide p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
/*    margin: 40px 0 20px 0;*/
}
.testimonial4_slide h4 {
  color: #ffffff;
  font-size: 16px;
}

.testimonial .carousel {
  padding-bottom:50px;
}
.testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}

.star-div .fa{
  color: #228B22;
}
.star-div p{
  color: #858585;
  font-size: 14px;
  margin-top: 10px;
}

.desc-client {
  font-size: 16px !important;
      margin: 50px 0;
}
.star-div h3{
  color: #fff;
}
.star-img{
 /* display: flex;
  gap: 5px;*/
}
.star-img img{
  width: 20px;
  margin:0 5px;
}
#our-player {
    background-image: url(easy6-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}
.hero{
  margin-top: 53px !important;
}
/* ------testimonial  close-------*/


.get-in{
      margin: 20px 0;
    font-size: 22px;
}

.store-div{
  width: 100%;
/*  display: flex;*/
}
.store-div img{
  width: 180px;
}
.g-icon{
  margin-right: 5px;
}

@media (max-width: 768px) {
    .container {
         max-width: 100% !important; 
    }
    .tabs section {
      width: 50%;
    }
    .tabs > ul{
       width: 50%;
      margin-top: 20px;
    }
    .tabs section img {
      width: 100%;
  }
  .tabs > ul li a, .tabs > ul li a:visited{
    flex-direction: column;
    padding: 10px;
    gap: 0px;
  }
  .tabs > ul li a > span{
    text-align: left;
        display: block;
  }

  .hero__img{
    width: 100%;
  }
  .barcode{
/*    width: auto;*/
  }
  .tabs > ul li{
    margin-bottom: 20px;
  }
  .tabs > ul li a > span.tab-label{
    font-size: 12px;
  }
  .step-2 a.active:after{
    top: 0;
  }
}


@media (max-width: 992px) {
.ft-menu{
    visibility: hidden;
  }
  .hero-nav__link{
    /*color: #2E2334;*/
    color: #fff;
  }
}

.logo-app{
  /*display: flex;*/
    gap: 30px;
    margin: auto;
    justify-self: center;
    align-items: center;
    padding-top: 15px;
    text-align: center;
}

.logo-app img{
    width: 120px;
    height: 100%;
}
.logo-app img:nth-child(1) {
  width: 180px;
  margin-right: 20px;
}

.what-is-btn a{
  text-decoration: none;
  padding: 6px 20px;
  text-decoration: none;
  border: 1px solid rgba(136, 136, 136, 1);
  border-radius: 40px;
  font-size: 18px;
}
.what-is-btn a:hover{
   text-decoration: none;
   color: #FF001E;
}
body{
  background: #0C0C0E;
}

/* Card Style */
.feature-card {
    /*background: linear-gradient(180deg, #15151c, #0e0e14);*/
        background: linear-gradient(135deg, rgba(24, 24, 27, 0.5) 0%, rgba(9, 9, 11, 0.5) 100%);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Glow effect */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    /*background: radial-gradient(circle at top left, rgba(255,0,60,.25), transparent 60%);*/
    opacity: 0.4;
    pointer-events: none;
}

/* Icon Box */
.feature-icon {
    /*width: 44px;
    height: 44px;
    background: rgba(255, 0, 60, 0.15);
    color: #ff2e63;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;*/
}

/* Text */
.feature-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    margin-top: 16px;
}

.feature-text {
    font-size: 16px;
    color: #b5b5c3;
}
.feature-card img{
  width: 25px;
  height: 25px;
}

/* Card */
.step-card{
    background: linear-gradient(180deg, #15151c70, #0c0c1270);
    border-radius:20px;
    padding:20px 26px;
    height:100%;
    position:relative;
    border:1px solid rgba(255,255,255,.08);
    overflow:hidden;
}

/* subtle glow */
.step-card::before{
    content:"";
    position:absolute;
    inset:0;
    /*background:radial-gradient(circle at top left, rgba(255,0,80,.25), transparent 60%);*/
    opacity:.35;
    pointer-events:none;
}

/* Step Number */
.step-number{
    /*position:absolute;*/
    /*top:20px;*/
    right:24px;
    font-size:48px;
    font-weight:700;
    color:rgba(255,255,255,.08);
    letter-spacing: 0.26px;
    font-family: 'Poppins';
    text-align: right;
}

/* Icon */
.step-icon{
   width: 58px;
    height: 58px;
    background: #27141d;
    color: #ff2e63;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    border: 1px solid rgba(251, 44, 54, 0.2);
}

/* Text */
.step-title{
    font-size:18px;
    font-weight:800;
    margin-bottom:16px;
}

.step-text{
    font-size:14px;
    color:#b5b5c3;
    line-height:1.5;
    font-weight: 500;
}

.step-card img{
  width: 25px;
  height: 25px;
}

.three-img img{
        max-width: 67%; 
    }

    .what-is-btn h3{
      font-size: 40px;
      font-weight: bold;
      margin-top: 30px;
    }
    .hero{
      background: transparent;
    }
    body{
      /*background: radial-gradient(60% 50% at 50% 20%, rgba(255, 0, 60, 0.15), transparent 60%), radial-gradient(40% 40% at 90% 40%, rgba(160, 70, 255, 0.18), transparent 65%), radial-gradient(40% 40% at 10% 60%, rgba(255, 0, 60, 0.18), transparent 65%), linear-gradient(180deg, #0b0b0f 0%, #050507 100%);*/
    }

    /* Section */
.game-types{
    padding:80px 0;
    position:relative;
}

/* Tag */
.section-tag{
    display:inline-block;
    padding:5px 20px;
    border-radius:20px;
    font-size:18px;
    color:#FF001E;
    border:1px solid #FF001E;
    margin-bottom:16px;
    border: 1px solid rgba(136, 136, 136, 1) !important;
    font-weight: 900;
}

/* Heading */
.game-title{
    font-size:40px;
    font-weight:700;
    line-height:1.2;
}

.game-title span{
    color:#FF001E;
}

.game-desc{
    color:#b5b5c3;
    max-width:420px;
}

/* Right Card */
.best-card{
    background:linear-gradient(180deg,#14141b,#0c0c12);
    border-radius:18px;
    padding:28px;
    /*border:1px solid #FF001E;*/
    position:relative;
    box-shadow:0 0 40px rgba(255,46,99,.12);
    border: 2px solid rgba(111, 31, 31, 1)
}

/* Icon */
.best-icon{
    width:75px;
    height:75px;
    border-radius:10px;
    background:rgba(255,46,99,.15);
    color:#ff2e63;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    margin-bottom:16px;
}

.best-icon img{
  width: 37px;
  height: 37px;
}
/* Numbers */
.pick-row{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:12px;
    margin-top:20px;
}

.pick-box{
    height:85px;
    width: 85px;
    border-radius:10px;
    /*border:1px solid rgba(255,255,255,.15);*/
    border: 0.81px solid rgba(251, 44, 54, 0.3);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    /*background:rgba(255,255,255,.02);*/
    background: linear-gradient(135deg, rgba(251, 44, 54, 0.1) 0%, rgba(0, 0, 0, 0) 100%);

}

.game-card h5{
  font-size: 33px;
  font-weight: 800;
}
.game-card p{
  font-size: 16px;
}

/* Section */
.game-modes{
    padding:100px 0;
}

/* Tag */
.section-pill{
    display:inline-block;
    padding:6px 18px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,.25);
    color:#ff2e63;
    font-size:12px;
    letter-spacing:.08em;
    margin-bottom:16px;
}

/* Headings */
.game-heading{
    font-size:40px;
    font-weight:800;
    line-height:1.15;
}

/* Cards */
.mode-card{
    height:100%;
    background:linear-gradient(180deg,#15151c,#09090e);
    border-radius:22px;
    padding: 34px;
    position:relative;
}

/* Red card */
.mode-card.red{
    border:2px solid #fb2c36;
    /*box-shadow:0 0 50px rgba(255,46,99,.2);*/
    background: linear-gradient(135deg, rgba(251, 44, 54, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Dark card */
.mode-card.dark{
    border:2px solid rgba(255,255,255,.15);
}

/* Pills */
.badge-pill{
    padding:6px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:900;
}

.badge-red{    
      background: rgba(251, 44, 54, 0.2);
      color: rgba(255, 0, 30, 1);
      border: 1px solid rgba(251, 44, 54, 0.5)

}
.mode-card h3{
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.37px;
  margin: 24px 0;
}
.txt-phase{
    font-size: 20px;
    font-weight: 500;
    line-height: 135%;
    letter-spacing: 0.07px;
}

.badge-green{
  /*background:rgba(34,197,94,.15);
  color:#22c55e;*/

  border: 1px solid rgba(0, 201, 80, 1);
  background: rgba(0, 201, 80, 0.2);
  color: rgba(0, 201, 80, 1);
}
.badge-purple{
  color: #a855f7;
  border: 1px solid rgba(173, 70, 255, 0.5);
  background: rgba(173, 70, 255, 0.2);
}

/* Lists */
.feature{
    display:flex;
    gap:14px;
    margin-top:22px;
}

.feature-icon{
    width:66px;
    height:66px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    background: #27141d;
    color: #ff2e63;
    border-radius: 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(251, 44, 54, 0.2);
}

.icon-red{
  background:rgba(255,46,99,.18);color:#ff2e63;
  border:1px solid rgba(251, 44, 54, 0.2);
  background: #27141d;
}
.icon-purple{
  color: #a855f7;
    background: rgba(173, 70, 255, 0.1);
    border: 1px solid rgba(173, 70, 255, 0.3);
}

.feature h6{
    margin:0;
    font-size:16px;
    font-weight:900;
    text-align: left;
}

.feature p{
    margin:0;
    font-size:14px;
    color:#b5b5c3;
    font-weight: 400;
    line-height: 20px;
}

.feature-icon img{
  width: 25px;
  height: 25px;
}
.txt-phase{
  color: #ffffff;
  text-align: left;
}



/* Section */
.faq-section{
    padding:40px 0;
}

/* Tag */
.faq-pill{
    display:inline-block;
    padding:6px 18px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,.25);
    color:#ff2e63;
    font-size:12px;
    letter-spacing:.08em;
    margin-bottom:28px;
}

/* Accordion */
.accordion-item{
    background:linear-gradient(180deg,#121217,#0a0a0f);
    border-radius:16px;
    /*border:1px solid rgba(255,255,255,.12);*/
    margin-bottom:16px;
    overflow:hidden;
    border: 1px solid rgba(39, 39, 42, 1);
}

.accordion-button{
    background:transparent;
    color:#fff;
    font-size:18px;
    font-weight:800;
    padding:22px 26px;
    width: 100%;
    display: inline-block;
    text-align: left;
}

.accordion-button:not(.collapsed){
    background:transparent;
    color:#fff;
    box-shadow:none;
}

/* Chevron */
.accordion-button::after{
    background-image:none;
    content:"\F282";
    font-family:"Bootstrap-icons";
    font-size:14px;
    color:#b5b5c3;
    transform:rotate(0deg);
    transition:.3s;
        float: right;
}

.accordion-button:not(.collapsed)::after{
    transform:rotate(180deg);
    color:#ff2e63;
}

.accordion-body{
    color:#b5b5c3;
    padding:0 26px 24px;
    font-size: 14px !important;
    font-weight: 300 !important;
}

.accordion-button:focus{
    box-shadow:none;
}
.accordion-header{
  margin: 0;
}

.states-avl img{
  width: 80%;
}
.ftHead{
  text-transform: uppercase;
  font-weight: 600;
}

.exacta-card{
  position: absolute;
  top: 100px;
  left: 100px;
  z-index: -1;
}

/* Card */
.exacta-card{
    /*width:100%;
    max-width:560px;*/
    background: radial-gradient(circle at top left, #2b173e, #0e0e12 70%);
    border-radius:18px;
    padding:24px;
    color:#fff;
    box-shadow:0 20px 40px rgba(0,0,0,.6);
    width: 100%;
}
.icon-box i{
  /*width: 26px;
  height: 26px;*/
  font-size: 37px;
}
/* Header */
.icon-box{
    width:75px;
    height:75px;
    border-radius:10px;
    background:linear-gradient(135deg,#a855f7,#7c3aed);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    margin-bottom:12px;
}

.subtitle{
    color:#b8b8c7;
    font-size:14px;
}

/* Pick rows */
.exacta-card .pick-row{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:14px;
    border: 1px solid #a855f7;
    border-radius: 5px;
    padding: 5px;
}

.pick-number{
    width:26px;
    height:26px;
    border-radius:6px;
    background:#3b1b5a;
    color:#c084fc;
    font-size:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}

.pick-bar{
    flex:1;
    height:6px;
    border-radius:10px;
    background:linear-gradient(90deg,#7c3aed,#a855f7);
    opacity:.65;
}
.icon-box .bi-list-ol::before{
      font-size: 25px;
    height: 25px;
}

.app-overlay{
  height: 520px;
  background: linear-gradient(0deg, #0C0C0E 41.54%, rgba(12, 12, 14, 0) 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
  align-content: end;
    padding-bottom: 50px;
}
.app-overlay p{
      font-size: 14px;
    color: #9B9B9B;
}
.downIcon{
    height: 15px;
    width: 15px;
    margin-right: 8px;
}
.rightTop{
  width: 64px;
    height: 64px;
    position: absolute;
    right: 0;
    top: -10px;
    /*background: linear-gradient(135deg, rgba(251, 44, 54, 0.2) 0%, rgba(0, 0, 0, 0) 84%);*/
     background: linear-gradient(135deg, rgba(251, 44, 54, 0.1) 0%, rgba(0, 0, 0, 0) 84%);
    rotate: 45deg;
}
.curveimg{
  position: absolute; 
  top: 42%; 
  z-index: -1;
}
.game-types .section-tag, .game-modes .section-tag{
    font-weight: 800;
    border: 1px solid rgba(136, 136, 136, 1);
    padding: 4px 25px;
}

.circleBg{
    width: 500px;
    height: 500px;
    filter: blur(60px);
    border-radius: 50%;
    background: rgba(251, 44, 54, 0.4);
    vertical-align: middle;
    align-items: center;
    text-align: center;
    margin: auto;
    z-index: -1;
    position: relative;
}

  .three-img img{
      margin-top: -490px;
      z-index: 1;
    }

    .hamberImg{
      width: 25px;
    }
.whatIs{
  background: rgba(12, 12, 14, 1);
  padding-top: 25px;
}

.slinks img{
  width: 20px;
  height: 20px;
}
#footer ul li{
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 48px;
  width: 48px;
  align-items: center;
  display: flex;
  justify-content: space-around;
  border-radius: 14px;
}
.mode-card {
  text-align: left ;
}
@media screen and (min-device-width: 276px) and (max-device-width: 576px) {
    #footer .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.whatIsP{
  width: 800px;
  margin: auto;
}
.simpleG{
  color: #fff !important;
}

.game-slider {
  position: relative;
  height: 350px;
}

/* Common card style */
.game-card {
  height: 365px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.8s ease;
  opacity: 0;
  transform: scale(0.92) translateY(25px);
  z-index: 1;
  /*pointer-events: none;*/
}

/* Active card (top) */
.game-card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 3;
  pointer-events: auto;
}

/* Card behind active */
.game-card.behind {
  opacity: 0.5;
    transform: scale(0.95) translateY(50px);
    z-index: 2;
    left: 100px;
    top: 40px;
}
.howork{
  position: relative;
}
.best-icon{
  width: 75px;
  height: 75px;
  border: 0.93px solid rgba(251, 44, 54, 0.3);
}

.game-modes .feature-icon{
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px;
  margin-bottom: 0;
}
.game-modes .feature-icon img{
   width: 20px !important;
  height: 20px !important;
}









/* Default: Desktop */
.desktop-app {
  display: inline-block;
}

.mobile-app {
  display: none;
}

/* Mobile view (less than 768px) */
@media (max-width: 768px) {
  
  .accordion-button{
    font-size: 16px;
    font-weight: 700;
  }
  .desktop-app {
    display: none;
  }

  .mobile-app {
    display: block;
  }
}


@media (max-width: 800px) {
.whatIsP{
  width: 100% !important;
}
}
@media (max-width: 992px) {
.hero-nav__item:last-child{
  padding-left: 0;
}
.downIcon{
    /*filter: invert(1);*/
  }
  .hero-nav ul.nav{
    justify-self: flex-start;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}


@media (max-width: 768px) {
  .icon-box i{
    font-size: 18px;
    display: flex;
  }
  .game-card{
    padding: 15px;
  }
  .game-slider .icon-box, .game-slider .best-icon{
        width: 38px;
    height: 38px;
  }
  .best-icon img{
    width: 18px;
    height: 18px;
  }
  .game-card {
    height: 100%;
}
  .game-card p {
    font-size: 12px;
    font-weight: 500;
}
  .game-card h5 {
    font-size: 16px;
    font-weight: 800;
}
  .mode-card{
        padding: 30px 20px;
  }
  .game-heading{
    margin-bottom: 20px !important;
  }
  .game-card {
      position: initial;
      transition: all 0.8s ease;
      opacity: 1;
      transform: none;
    }

/* Active card (top) */
.game-card.active {
  opacity: 1;
  transform: none;
}

/* Card behind active */
.game-card.behind {
  opacity: 0.5;
  transform: none;
  z-index: 2;
}
  #footer p {
    font-size: 14px;
    color: rgba(113, 113, 123, 1);
  }
  #footer .ft-logo {
      width: 86px;
  }
  .feature-icon img{
    width: 27px;
    height: 27px;
  }
  .feature-icon{
    width: 56px;
    height: 56px;
    margin-bottom: 2px;
    border-radius: 11px;
  }
  .mode-card.red{
    /*padding-bottom: 5px !important;*/
  }
  .mode-card h3{
    text-align: left;
    font-size: 24px;
  }
      .txt-phase {
        font-size: 14px;
    }
    .cashCome{
      display: block;
    }
      .pick-row {
        grid-template-columns: repeat(6, 1fr) !important
      }
    .pick-box {
      background: linear-gradient(135deg, rgba(251, 44, 54, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
        height: 45px !important;
        width: 45px !important;
        border-radius: 4px !important;
    }
  .game-card{
      animation: none !important;
      opacity: 1 !important;
      position: initial !important;
  }
  .game-slider {
    position: initial !important;
    height: auto !important;
    overflow: auto !important;
}
  .game-desc{
    font-size: 14px;
  }
  .section-tag{
    font-size: 14px;
    padding: 4px 18px;
  }
  .linevertical{
    background-image: url('curve-vertical.png');
    background-repeat: no-repeat;
            background-size: contain;
        background-position: center;
  }
  .linevertical .lastCh{
    margin-bottom: 0 !important;
  }
  .curveimg{
    display: none !important;
  }
  .step-number{
    position: absolute;
    bottom: 0;
    right: 20px;
    font-size: 60px;
  }
  .what-is-btn a{
    font-size: 14px;
  }
  .skillBase, .simpleG{
    display: block;
  }
  .what-is-btn p{
    font-size: 14px;
    padding-top: 10px !important;
  }
  .what-is-btn{
    padding-top: 16px;
  }
  

    .app-overlay{
      height: 180px;
      background: linear-gradient(0deg, #0C0C0E 54.54%, rgba(12, 12, 14, 0) 100%);
          padding-bottom: 25px;
    }
    .logo-app{
      flex-direction: column;
    }

   .three-img img,.states-avl img{
        max-width: 100%; 
        width: 100%;
    }
   
    .step-card{
      margin-bottom: 10px;
    }
    .feature-card{
       margin-bottom: 10px;
    }
    .what-is-btn h3,.game-title,.game-heading{
      font-size: 26px;
      line-height: 110%;
    }
    .hero__title p{
    font-size: 16px !important;
    margin-top: 15px;
  }
  .hero__title{
     padding: 10px !important;
    font-size: 34px !important;
    margin-top: 0;
  }
  .exacta-card{
    position: initial;
    top: 0;
    left: 0;
    margin-top: 10px;
  }
  .pick-box {
    font-size: 12px;
    height: 40px;
    width: 100%;
  }
  .game-modes, .game-types{
    padding: 30px 0;
  }
  .three-img img{
    margin-top: 0;
    padding: 0 20px;
  }

  .three-img img{
        max-width: 100%; 
        padding: 0;
    }

    .hero-nav ul.nav{
      padding: 0;
    }
    .hero-nav__logo{
      width: 70px;
      height: 100%;
    }
    .hero__content{
      padding-top: 0;
    }
    .logo-app img {
    width: 120px;
  }
    .logo-app img:nth-child(1) {
        width: 149px;
        margin: auto;
        margin-bottom: 20px;
        display: block;
    }
    .logo-app{
      gap: 15px;
          padding-top: 0;
    }
    .hero__title{
      margin-bottom: 0 !important;
    }

}


@media (max-width: 650px) {
   .three-img img{
      margin-top: -290px;
      z-index: 1;
    }
    .circleBg {
      width: 300px;
      height: 300px;
    }    
}

@media (max-width: 568px) {
    .pick-row{
      grid-template-columns: repeat(3, 1fr);
      width: 100%;
    } 
}
/*

.page-hide {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.page-hide.show {
  opacity: 1;
  transform: translateY(0);
}



.game-slider {
  position: relative;
  height: 350px; 
  overflow: hidden;
}

.game-card {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(60px);
  animation: slideCards 6s infinite;
}

.best6 {
  animation-delay: 0s;
}

.exacta6 {
  animation-delay: 3s;
}

@keyframes slideCards {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  15% {
    opacity: 1;
    transform: translateY(0);
  }
  45% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 0;
  }
}
*/

