/*GENERAL*/
.img-fluid {
    max-width: 95%;
    height: auto;
}
body {
    font-family:"Roboto", serif;
}
.btn-primary{
    color: #000;
    background-color: #75CEEF;
    border-color: #75CEEF;
}
.btn-primary:hover{
    color: #000;
    background-color: #75CEEF;
    border-color: #75CEEF;
}
.title-custom{
    letter-spacing: 0.5px;
}

.text-digip {
    color: #00409D;
}

label{
    color: #00409D;
}

/*NAV*/
.px-nav {
    padding-right: .5rem;
    padding-left: .5rem;
}

.navbar-icon-custom {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url(../img/nav/bars-solid.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.navbar-toggler {
    border-color: #00409D;
}
.img-navbar{
    width: 60%;
    margin-left: 2rem;
}

.bg-navbar {
    background-color: transparent;
    transition: 0.5s ease; 
}

.bg-navbar.scrolled {
    background-color: #092E67;
}


/*NOSOTROS*/
.about-title {
    color:#00409D;
    margin-right: 640px;
}
.card-size{
    width: 45rem; 
    height: 5.2rem;
}
.card-main-size {
    width: 50rem; 
    height: 48rem;
}
.card-container {
    overflow: hidden;
    position: relative;
}

.card-animation {
    transition: all 0.6s ease;
    cursor: pointer;
    color: #00409D;
    border-color: #00409D;
    position: relative ;
    left: 20px;
    font-size: 1.25rem;
    font-weight: 500;
}

.card-animation:hover {
    transform: translateX(-90px);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
    background-color: #00409D;
    color: white;
}
.card.active {
    transform: translateX(-90px);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
    background-color: #00409D;
    color: white;
    font-size: 1.55rem;
}
.btn-outline-secondary {
    background-color: #FFFFFF;
    color: #00409D;
    border: 1px solid #00409D;
    transition: all 0.3s ease;
}
.btn-outline-secondary:hover {
    background-color: #00409D !important;
    color: #FFFFFF !important;
    border: 2px solid #00409D !important;
}
.btn-secondary {
    background-color: #00409D !important;
    color: #FFFFFF !important;
    border: 2px solid #00409D !important;
}


/*CLIENTES*/
.clients{
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #15151F;
}
.clients .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.clients .col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-clients{
    font-weight: 100;
    z-index: 1;
}

/*HOVER TITLE CLIENTS*/
.title-effect:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .title-effect::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    inset: 0 50rem 0 0;
    background: #00409D;
    z-index: -1;
    transition: transform .4s ease;
    transform: scaleX(0);
    transform-origin: bottom right;
  }
  
  .title-effect {
    position: relative;
    
  } 

/*PRODUCTO*/
.arrow-prod {
    width: 50px;
}

#slide-in-blurred-right {
	-webkit-animation: slide-in-blurred-right 0.7s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.2s both;
	        animation: slide-in-blurred-right 0.7s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.2s both;
}

 @-webkit-keyframes slide-in-blurred-right {
    0% {
      -webkit-transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
              transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
      -webkit-transform-origin: 0% 50%;
              transform-origin: 0% 50%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0) scaleY(1) scaleX(1);
              transform: translateX(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-blurred-right {
    0% {
      -webkit-transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
              transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
      -webkit-transform-origin: 0% 50%;
              transform-origin: 0% 50%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0) scaleY(1) scaleX(1);
              transform: translateX(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
  }

/*HOME*/
.subtitle {
    font-size: 1.25rem;
}
.title-home{
    font-size: 3.3rem;
}
.home {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.efect {
    --g: 4px;     /* the gap */
    --b: 2px;    /* border thickness*/
    --c: #00409D; /* the color */
    
    padding: calc(var(--g) + var(--b));
    --_c: #0000 0 25%, var(--c) 0 50%;
    --_g1: repeating-linear-gradient(90deg ,var(--_c)) repeat-x;
    --_g2: repeating-linear-gradient(180deg,var(--_c)) repeat-y;
    background:
      var(--_g1) var(--_p, 25%) 0   ,var(--_g2) 0    var(--_p,125%),
      var(--_g1) var(--_p,125%) 100%,var(--_g2) 100% var(--_p, 25%);
    background-size: 200% var(--b),var(--b) 200%;
    transition: .3s;
  }
  .efect:hover {
    --_p: 75%;
    /* --b: 10px; */
  }

  /*particles*/
.particles {
    background: hsla(240, 19%, 10%, 1);
    background: linear-gradient(-45deg, hsla(240, 19%, 10%, 1) 0%, hsla(216, 100%, 31%, 1) 92%);
    background: -moz-linear-gradient(-45deg, hsla(240, 19%, 10%, 1) 0%, hsla(216, 100%, 31%, 1) 92%);
    background: -webkit-linear-gradient(-45deg, hsla(240, 19%, 10%, 1) 0%, hsla(216, 100%, 31%, 1) 92%);   
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#15151F", endColorstr="#00409D", GradientType=1 );
    background-repeat: no-repeat;
    background-size: cover;
}
#particles-js {
    position: absolute;
    width: 100%;
}

.container {
    z-index: 2;
}


/*CONTACTO*/
#contact {
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100vh;
}

.background {
    background: #00B9EB;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 64, 157, 0.1) 0%,
        rgba(9, 46, 103, 1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: #EBF7FB;
    animation: ripple 40s infinite;
    z-index: -1;
    margin-bottom: 10rem;
}

.medium{
    width: 300px;
    height: 300px;
    left: -200px;
    bottom: 200px;
}
  .large{
    width: 500px;
    height: 500px;
    left: -300px;
    bottom: 100px;
}
.xlarge{
    width: 700px;
    height: 700px;
    left: -400px;
    bottom: 0px;
}
.xxlarge{
    width: 900px;
    height: 900px;
    left: -500px;
    bottom: -100px;
}
  
.shade1 { 
    opacity: 0.2;
}

.shade2 {   
    opacity: 0.5;
}

.shade3 {   
    opacity: 0.7;
}

.shade4 {   
    opacity: 0.8;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(0.8);
    }
}

/*FOOTER*/
.bg-footer{
    background-color: #092E67;
}

.iso-img{
    width: 30%;
}
.icon {
    width: 30px; 
    height: 30px;
    color: #092E67;
}
.icon-redes{
    width: 18px;
    height: 18px;
    fill: currentColor;
}

