textarea {

	min-width: 100%;
	min-height: 120px;

}

.sidebar-menu a.active {
    background-color: #3c8dbc;
    color: white;
    font-weight: bold;
}

#calendar {
    max-width: 900px;
    margin: 0 auto;
  }
  
  #title{
    color: #9c27b0;
    font-weight: 800;
    border-bottom: 3px solid coral;
    background: #ccc;
    padding: 8px 30px;
  }
  
  /***************
  input {
    display: none;
  }
  */
  
  .fc-resizer{
    color: #fff !important;
  }
  
  
  
  #btnBorrar{
    color:#fff;
    padding: 5px;
    background: #8888;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 600;
  }
  #btnCerrar:hover{
    cursor: pointer;
    background-color: #333;
  }
  
  
  
  .circu{
    padding: 25px;
    background: #ccc;
    border-radius: 50px;
  }
  
  #grupoRadio label:hover{
    cursor: pointer;
  }
  
  #grupoRadio input[type="radio"]:checked + label {
    border: 3px solid #ccc !important;  
  }
  
  
  .activado input[type=radio]:checked + label {
    border: 3px solid #555 !important;  
  }

/* Estilos para el div que contiene la imagen de fondo */
.background-image {
  background: 
    url(../img/FONDOPANTALLA02.gif);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

/* Estilos para la imagen de fondo */
.background-image img {
  max-width: 100%;
}

.tituloI{
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  opacity: 0.001;
  
}

.tituloI h3{
  top: 50px;
}
  /*Acerca de - Ingenieros*/
.containerI{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem; 

}

.cardI{
  position: relative;
  width: 100%;
  max-width: 400px; 
  height: 180px;
  background: #333;
  transition: 0.5s;
  margin: 1rem auto; 
  margin-top: 10rem;
}

@media (min-width: 768px) {
  .cardI {
    margin-top: 10rem;
  }
}

@media (min-width: 1200px) {
  .cardI {
    margin-top: 26rem;
  }
}

@media (min-width: 1024px) {
  .cardI {
    margin-top: 26rem;
  }
}

.cardI:hover{
    height: 450px;
}

.cardI .lines{
    position: absolute;
    inset: 0;
    background: #000;
    overflow: hidden;
}

.cardI .lines::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 120px;
    background: linear-gradient(transparent, #12f7ff, #12f7ff, #12f7ff, transparent);
    animation: animate 4s linear infinite;
    animation-play-state: paused;
}

.cardI:hover .lines::before{
    animation-play-state: running;
}

@keyframes animate{
    0%{
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100%{
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.cardI .lines::after{
    content: '';
    position: absolute;
    inset: 3px;
    background: #222d32;
}

.cardI .imgBxI{
    position: absolute;
    top: -90px;
    left: 50%;
    width: 210px;
    height: 210px;
    transform: translateX(-50%);
    background: #000;
    transition: 0.5s;
    z-index: 10;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardI:hover .imgBxI{
    top: 25px;
    width: 200px;
    height: 200px;
}

.cardI .imgBxI::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 150px;
    transform: translate(-50%,-50%);
    background: linear-gradient(transparent, #12f7ff, #12f7ff, #12f7ff, transparent);
    animation: animate2 6s linear infinite;
    animation-play-state: paused;
}

.cardI:hover .imgBxI::before{
    animation-play-state: running;
}

@keyframes animate2{
    0%{
        transform: translate(-50%,-50%) rotate(360deg);
    }
    100%{
        transform: translate(-50%,-50%) rotate(0deg);
    }
}

.cardI .imgBxI::after{
    content: '';
    position: absolute;
    inset: 3px;
    background: #222d32;
}

.cardI .imgBxI img{
    position: absolute;
    width: 150px;
    z-index: 1;
    transition: 0.5s;
}

.cardI:hover .imgBxI img{
    opacity: 1;
}

.cardI .contentI{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.cardI .contentI .detailsI{
    padding: 60px 40px;
    text-align: center;
    width: 810%;
    transition: 0.5s;
    transform: translateY(140px);
}

.cardI:hover .contentI .detailsI{
    transform: translateY(0px);
}

.cardI .contentI .detailsI h2{
    
    font-size: 1.5em;
    font-weight: 300;
    color: #fff;
    line-height: 1.2em;
}

.cardI .contentI .detailsI p{
    font-weight: bold;
    font-size: 1.2em;
    color: #fff;
    opacity: 0;
    transition: 0.5s;
}

.cardI .contentI .detailsI a{
    display: inline-block;
    padding: 8px 15px;
    background: #3c8dbc;
    color: #fff;
    margin-top: 10px;
    font-weight: 400;
    font-weight: bold;
    text-decoration: none;
    opacity: 0;
    transition: 0.5s;
    cursor: pointer;
    border-radius: 10px;
}

.cardI:hover .contentI .detailsI p,
.cardI:hover .contentI .detailsI a{
    opacity: 1;
}
/*Fin estilos acerca de - Ingenieros*/



