.bg-tecnm{
    background-color: #1A396B !important;
}

@font-face {
    font-family: 'monserrat';
    src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
* {
    font-family: 'monserrat', sans-serif;
}
.bienvenido {
  color:#fff;height:100vh;
  background-size:cover;
  background-attachment:fixed !important;
}

.bienvenido .input-group{
    box-shadow: #000 0px 10px 10px 0px;
    width: 600px;
} 


/* sliders */
.demo-slider {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 10;
    min-height: 0;
  }
  
  .swiper-material {
    height: 300px;
    width: calc(100% - 32px);
    max-width: 800px;
  }
  
  .demo-material-image {
    position: absolute;
    left: 0%;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--swiper-material-slide-border-radius);
  }
  
  .demo-material-label {
    position: absolute;
    font-size: 24px;
    color: #fff;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    box-sizing: border-box;
    padding: 24px;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    justify-content: flex-end;
    align-items: center;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2) 50%);
  }
.shine-effect {
  position: relative;
  overflow: hidden;
}
.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-45deg);
  transition: none;
  animation: shine 2s infinite;
}
@keyframes shine {
  0% {
      left: -100%;
  }
  50% {
      left: 100%;
  }
  100% {
      left: 100%;
  }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}