/* 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;
}

/* Text color */
.text-primary {
  color: #5874f7 !important;
}

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

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

/* Border color */
.border-primary {
  border-color: #5874f7 !important;
}

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

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

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

.btn-cta{
  background: #3da200;
  color: #FFF;
}

  .btn-cta:hover{
    background: #bdc9ff;
    color: #000;
  }

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

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

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

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

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

/* Badges */
.badge-primary {
  background-color: #5874f7;
}

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

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

/* Accordion */

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

  .accordion-button{
    background: #5874f7 !important;
    color: #FFF !important;
    border-bottom: 0;
  }

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

  .accordion-body{
    color: #FFF;
  }

/* General styles */

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

.main-bg{
  background: url(../media/skin/bg.jpg) no-repeat center 10px #000;
  background-size: 200%;
}

.second-bg{
  background: url(../media/skin/bg-website.jpg) no-repeat right center;
}

/* 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;
}

@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 #5874f7;
  color: #bdc9ff;
}

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

/* Header */

header{
  border-top: 10px solid #5874f7;
}

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

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

/* Hero */

.span-title{
  font-size: 2.5em;
}

/* Stats */

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

/* Footer */

footer{
  background: url(../media/skin/bg-closing.jpg) no-repeat center top;
  background-size: 100%;
}

/* Home page */

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

.agents-players-software{
  background: url(../media/skin/bg-lines.jpg) no-repeat;
  background-position: center;
}


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

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

  .main-bg{
    background-size: 100%;
  }

 }

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

  /* general styles */

  .section-bg-left, .section-bg-right{
    overflow: hidden;
  }
  
    .section-bg-left:before, .section-bg-right:before{
        content: '';
        position: absolute;
        top: 0;
        background: url(../media/skin/bg-section.svg) no-repeat left center;
        width: 50%;
        height: 105%;
        z-index: 0;
    }
  
      .section-bg-left:before{
        left: 0;
      }
  
      .section-bg-right:before{
        right: 0;
        rotate: 180deg
      }

    /* Header */

    header{
      border-top: 20px solid #5874f7;
    }

    .logo{
      text-align: left;
    }

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

    /* Hero */

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

    /* */

    .agents-players-software{
      background: url(../media/skin/bg-lines.jpg) no-repeat;
      background-position: center right;
    }

    /* Footer */

    .closing{
      min-height: 500px;
    }

 }

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

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