

/* Text color */
.text-primary {
  color: #006dd9 !important;
}

.text-secondary{
  color: #0f1b27 !important;
}

/* Background color */
.bg-primary {
  background-color: #0f1b27 !important;
}

.bg-secondary{
  background-color: #54606c !important
}

.bg-light{
  background-color: #EAEAEA!important;
}

.bg-dark{
  background-color: #0f1b27 !important;
}

.bg-dark-img{
  background: url(../media/skin/bg-dark.webp?v=1) no-repeat top center #192939;
  background-size: 150%;
}

/* Border color */
.border-primary {
  border-color: #006dd9 !important;
}

.border-secondary{
  border-color: #333 !important;
}

.modal-content .border-secondary{
  border-color: #CCC !important
}

/* Buttons */
.btn-primary {
  background-color: #0f1b27 !important;
  border-color: #0f1b27 !important;
  color: #fff !important;
}

.btn-cta{
  background: #006dd9;
  color: #FFF!important;
}

  .btn-cta:hover{
    background: #54606c;
  }

.text-shadow{
  text-shadow: 1px 1px #000;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #0f1b27 !important;
  border-color: #0f1b27 !important;
}

/* Links */
a.text-primary:hover,
a.text-primary:focus {
  color: #0f1b27 !important;
}

.nav-link {
  color: #FFF !important;
}

.nav-link:hover,
.nav-link:focus {
  color: #006dd9 !important; /* puedes ajustar este color si deseas un efecto hover diferente */
}

/* Alerts */
.alert-primary {
  color: #fff;
  background-color: #0f1b27;
  border-color: #0f1b27;
}

/* Badges */
.badge-primary {
  background-color: #0f1b27;
}

/* Navbar */
.navbar.bg-primary {
  background-color: #0f1b27 !important;
}

.navbar .navbar-brand,
.navbar .nav-link {
  color: #fff !important;
}

/* Accordion */

.accordion-item{
  background: none !important;
}

  .accordion-button{
    background: #0f1b27 !important;
    color: #FFF !important;
    border-bottom: 0;
    font-weight: 600;
  }

  .accordion-button.collapsed{
    background: none !important;
    color: #CCC !important;
  }

  .accordion-body{
    color: #FFF;
  }

/* General styles */

body{
  background: #FFF;
  color: #000;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

.second-bg{
  background: url(../media/skin/bg-website.webp?v=1) no-repeat top right;
  background-size: 200%;
  /*! background-attachment: fixed; */
}

/* Video bg */

.video-background video, .video-background-header video{
  object-fit: cover;
}

/* Animation */

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

.zoom-hover {
  transition: transform .2s; /* Animation */
}

.zoom-hover:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

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

.icon-lg{
  max-height: 70px;
}

.icon-lg-bg{
  width: 70px;
  height: 70px;
}

.logo-experience{
  width: 100px;
  height: 100px;
}

.contentColapse{
  overflow: hidden;
  max-height: 200px;
  transition: max-height 0.4s ease;
}

@keyframes zoom-in-zoom-out {
  0% {
    scale: 100%;
  }
  50% {
    scale: 105%;
  }
  100% {
    scale: 100%;
  }
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.title{
  position: relative;
  padding-bottom: 15px;
  border-bottom: 3px solid #eaeaea;
}

  .title::before{
    content: '';
    position: absolute;
    width: 50%;
    bottom: -15px;
    border-bottom: 3px solid #006dd9;
    left: 0;
  }

/* Header */

  .logo{
    text-align: center;
  }
  
  .demo-register-btns{
    background: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  header .nav-item:hover{
    background: #0f1b27;
  }
  

/* Hero */

.hero-title{
  font-size: 3rem;
}

.hero-intro{
  font-size: .9rem;
}

/* Stats */

.stats-icon{
  width: 40px;
  height: 40px;
  color: white;
}

/* Footer */

/* Home page */

.why{
  margin-top: -5%;
}


/* Small devices (≥576px) */
@media (min-width: 576px) { 
  
 }

/* Medium devices (≥768px) */
@media (min-width: 768px) { 
  
  /* General Styles */

  .main-bg,
  .agent-software-page .main-bg,
  .live-casino-software-page .main-bg,
  .virtual-casino-software-page .main-bg,
  .racebook-software-page .main-bg,
  .sportsbook-software-page .main-bg{
    background-size: 100%;
  }

  .bg-dark-img{
    background-size: 100%;
  }


 }

/* Large devices (≥992px) */
@media (min-width: 992px) { 

  /* general styles */

  .live-casino-software-page .main-bg{
    background: url(../media/skin/Bg-products-live-casino.webp) no-repeat top center #000;
    background-size: 100%;
  }
  
  .virtual-casino-software-page .main-bg{
    background: url(../media/skin/Bg-products-casino.webp) no-repeat top center #000;
    background-size: 100%;
  }
  
  .racebook-software-page .main-bg{
    background: url(../media/skin/Bg-products-racebook.webp) no-repeat top center #000;
    background-size: 100%;
  }
  
  .sportsbook-software-page .main-bg{
    background: url(../media/skin/Bg-products-props.webp) no-repeat top center #000;
    background-size: 100%;
  }
  
  .agent-software-page .main-bg{
    background: url(../media/skin/Bg-products-agent.webp) no-repeat top center #000;
    background-size: 100%;
  }

  .second-bg{
    background: url(../media/skin/bg-website.webp?v=3) no-repeat right center;
  }

    /* Header */

    .logo{
      text-align: left;
    }

    .demo-register-btns{
      background: none;
      position: relative;
    }

    /* Hero */

    .btn-hero{
      font-size: 1.6em;
    }

    .span-subtitle{
      font-size: 1.5em;
    }

    /* */

    .become-item{
      min-height: 450px;
    }

    /* Footer */

    .closing{
      min-height: 500px;
    }
    

 }

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) { 
  
  /* Hero */

  .hero-title{
    font-size: 4.5rem;
  }

  .hero-intro{
    font-size: 1.1rem;
  }

  /* Intro */

  .list-intro{
    column-count: 2;
  }
  

 }

/* Extra extra large devices (≥1400px) */
@media (min-width: 1400px) { 


 }


 /* Font */

.titillium-web-extralight {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.titillium-web-light {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.titillium-web-regular {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.titillium-web-semibold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.titillium-web-bold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.titillium-web-black {
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.titillium-web-extralight-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.titillium-web-light-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.titillium-web-regular-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.titillium-web-semibold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.titillium-web-bold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: italic;
}