/* BARRA DE NAVEGACION */

/* FONDO */
nav {
    position: fixed;
    top: 0;
    margin-left: 120px;
    padding-right: 25px;
    display: flex;
    background-color: rgba(250, 241, 229, 0.8);
    padding-top: 10px;
    padding-bottom: 5px;
    align-items: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Ajusta el valor según sea necesario para superponer el navbar sobre otros elementos */
    backdrop-filter: blur(10px); 
}

header {
    height: 50px; /* Ajusta la altura del header para evitar que el contenido se superponga cuando el navbar se vuelve fijo */
    position: relative; /* Añade posición relativa al header */
    display: flex;
    justify-content: center;
}

/* ICONO */
.img-logo, .img1, .img2, .img3{
    margin-left: 90px;
    margin-right: 70px;
}

/* TEXTO */
ul li{
    display: inline-block;
    color: black;
    padding: 0 35px;
    padding-top: 15px;
    padding-bottom: 5px;
    text-decoration: none; 
    position: relative; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: large;
}

ul li:hover {
    font-weight:600;
    color: yellow; 
}

ul li:hover::after {
    content: ""; 
    position: absolute; 
    bottom: 7px; 
    left: 0;
    width: 60%;
    height: 2px; 
    background-color: rgb(251, 207, 46); 
    margin-left: 30px;   
}

ul li a{
    text-decoration: none;
    color: black;
}

/* BOTON ENTRAR */

.boton-entrar {
    border-radius: 5px;
    color: white;
    background-color: rgb(38, 56, 100);
    margin-left: 80px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 3px 12px 3px 12px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    border: none;

}


/* BODY */
body {
    background-color: rgb(242, 248, 254);
    font-family: 'Poppins', sans-serif;
}

/* INICIO */

.aula{ 
    width: 330px;

}

.img-inicio{
    width: 85%; 
    height: auto; 
    top: 0;
    margin-left: 120px;
    margin-top: 10px;
    display: block;
}

.contenedor{
    position: relative;
}

/* TARJETAS */
.row {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;    
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 520px;
}

.col-sm-6 {
    z-index: 1; 
}
.card-body1{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #199DDD;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}
.card-body2{
    margin-top: 40px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #F1C50E;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    
}
.card{
background-color: unset;
border: none;
transition: transform 0.3s ease;

}

.card:hover{
    transform: rotate(5deg);

}

.card-body3{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #D373CA;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}
.card-body4{
    margin-top: 37px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #3EC5D9;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.card-title{
    color: #001E94;
    text-align:center;
    font-weight: bold;
    padding-top: 20px;
}

.card-text1 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 30px ;
    padding-left: 20px;
    margin-right: 20px;
    font-size: 1.0rem;
}

.card-text2 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 40px ;
    padding-left: 20px;
    margin-right: 20px;
    font-size: 1.0rem;
}
.card-text3 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 58px ;
    padding-left: 20px;
    margin-right: 20px;
    font-size: 1.0rem;
}
.card-text4 {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 4px ;
    padding-left: 20px;
    margin-right: 20px;
    font-size: 1.0rem;
}




.icon-card{
    margin-top: 30px;
    margin-left: 110px;
    display: block;   
}

/* BOTON ENTRAR GRANDE */
.boton-entrar1 {
    border-radius: 5px;
    color: white;
    background-color: #405B9A;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    border: none;
    font-size: 1.7rem;
    padding: 10px 40px 10px 40px;
    width: 297px;
    height: 70px;

}

.boton-entrar1:hover {
    
    background-color:  rgb(38, 56, 100);
}


.container {
    display: flex; 
    justify-content: space-between; 
}

.column1 {
    width: 48%; /* Establece el ancho de cada columna */
    padding: 20px; /* Agrega algún espacio interno */
    border: 1px solid #ccc; /* Agrega un borde para separar visualmente las columnas */
    box-sizing: border-box; /* Incluye el borde en el ancho total */
    border: none;
    padding-bottom: 120px;
    padding-top: 20px;
}
.column2 {
    width: 48%; /* Establece el ancho de cada columna */
    padding: 20px; /* Agrega algún espacio interno */
    border: 1px solid #ccc; /* Agrega un borde para separar visualmente las columnas */
    box-sizing: border-box; /* Incluye el borde en el ancho total */
    border: none;
    padding-right: 60px;
    font-size: 1.0rem;
    padding-top: 70px;
    text-align: justify;
}


.img1{
    margin-right: 0px;
    margin-left: 15px;
}
.img2{
    margin-left: 0px;
}

.nosotros , .servicios, .beneficios{
    font-weight: bold;
    text-align: center;
    bottom: 5px;  
}


.container2 {
    display: flex; 
    margin-left: 230px;
    margin-right: 190px;  
}

.columna1, .img-ser1,.columna3{
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}

.columna3{
    padding-right: 10px;
}

.columna8,.img-ser9, .columna10,.img-ser11{
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    }

.columna1, .columna3 , .columna5, .columna7, .columna8, .columna10{
    text-align: center;
    display: flex; 
    align-items: center; 
    font-size: medium;
    font-weight: 600;
    color: black;

}


.columna1, .columna3 , .columna5, .columna7, .columna8, .columna10, 
.columna2, .columna4, .columna6, .columna9, .columna11{
    margin-left: 10px;
    margin-bottom: 10px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.img-ser1{
    margin-left: unset;
    margin-right: unset;
}


.columna1{
    background-color: rgba(249, 200, 125, 0.33);
    padding-left: 25px;
    padding-right: 25px;
}

.columna3{
    background-color: rgba(64, 91, 154,0.33);  
    padding-left: 25px;
    padding-right: 25px; 
}

.columna5{
    background-color: rgba(211, 114, 202, 0.33);
    padding-left: 50px;
    padding-right: 50px;
}
    
.columna7{
    background-color: rgba(124, 169, 255, 0.33);
    padding-left: 25px;
    padding-right: 25px;
}

.columna8{
    background-color: rgba(7, 90, 49, 0.33);
    padding-left: 25px;
    padding-right: 25px;
}

.columna10{
    background-color: rgba(151, 71, 255, 0.33);
    padding-left: 25px;
    padding-right: 25px;
}

/* IMAGEN LAPICES */

.img-lapices{
    margin-top: 120PX;
    width: 100%;
}

/* BENEFICIOS */

.beneficios{
    margin-bottom: 10px;
    margin-top: 100px;
}

.conector {
  position: relative;
  padding-bottom: 80px;
}

#iconog {
  width: 21px; /* Tamaño del ícono */
  height: 21px; /* Tamaño del ícono */
  color: #FFBB54; /* Color del texto o icono dentro del ícono */
  display: flex;
  position: absolute;
  top: 50%;
  margin-left: 100px;
  transform: translate(-50%, -50%);
}

.linea, .otra-linea {
  height: 1px; /* Grosor de la línea */
  background-color: #000000; /* Color de la línea */
  position: absolute;
}

.linea {
  width: 5%; /* Longitud de la primera línea */
  left: 43%;
}

.otra-linea {
  width: 5%; /* Longitud de la segunda línea */
  right: 43%;
}

.contenedorr{
    padding-left: 121px;
    position: relative;
}

.img-bene,
.img-bene2 {
  position: absolute;
  
}


 #col1, #col2, #col3, #col4, #col5, #col6 { 
    position: absolute;
    background: rgba(255, 255, 255); /* Ajusta según sea necesario */
    padding: 20px; /* Ajusta según sea necesario */
    text-align: center;
    font-size: 15px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 50px;
    color: black;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 5px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

 .circulo1, .circulo2, .circulo3, .circulo4,.circulo5,.circulo6 {
    position: absolute;
    width: 94px;
    height: 96px;
    border-radius: 100%;
    background-color: #ffffff;
    border: 3px solid #405B9A;  
    z-index: 1; /*sobrepone a las imagenes */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #405B9A ;
}

.circulo1{margin-top: 30px; margin-left: 810px ;}
.circulo2{margin-top: 30px; margin-left: 1075px ;}
.circulo3{margin-top: 265px; margin-left: 810px ;}
.circulo4{margin-top: 265px; margin-left: 1075px ;}
.circulo5{margin-top: 505px; margin-left: 810px ;}
.circulo6{margin-top: 505px; margin-left: 1075px ;} 

#col1 { top: 100px; left: 855px; width: 233px; height: 126px; border-left: 20px solid #FE6F1F; }
#col2 { top: 100px; left: 1120px; width: 233px; height: 126px; border-left: 20px solid #9747FF; }
#col3 { top: 330px; left: 855px; width: 233px; height: 136px; border-left: 20px solid #258E00; }
#col4 { top: 330px; left: 1120px; width: 233px; height: 136px; border-left: 20px solid #023859; }
#col5 { top: 570px; left: 855px; width: 233px; height: 126px; border-left: 20px solid #199DDD; }
#col6 { top: 570px; left: 1120px; width: 233px; height: 126px; border-left: 20px solid #D372CA; } 


/* GRAFICO */
.contenedors{
    margin-top: 1000px;
    margin-left: 120px;
}

/* CONTACTO FORMULARIO */
.contenedor-form{
    background-color: rgba(64, 91, 154, 0.08);
    margin-left: 200px;
    margin-right: 170px;
    border-radius: 15px;
    margin-top: 70px;
    padding-bottom: 80px ;
}
F
#form-text{
    margin-left: 50px;
    margin-right: 50px;
    font-size: medium;

}

h3 {
    text-align: center;
    font-size: x-large;
    font-weight: 600;
    padding-top: 40px;
    padding-bottom: 40px;
}

.form-control {
    border: 1px solid #c6c6c6; /* Puedes ajustar el color del borde según tus preferencias */
    border-radius: 5px; /* Añade esquinas redondeadas si lo deseas */
}

.btn-entrar{
    background-color: rgba(249, 200, 125, 0.87);
    border: none;
    font-size: x-large;
    padding: 10px 100px 10px 100px ;
    margin-left: 400px;
    margin-top: 40px;
    border-radius: 5px;
}

.btn-entrar:hover {
    
    background-color:   rgb(240, 180, 88);
}

/* UBICACION */
.ubicacion-letras{
    color: black;
    font-weight: 550;
    text-align: center;
    margin-top: 100px;
}

/* FOOTER */
footer {
    background-color: #1A3843; /* Color de fondo del footer */
    color: #FFFF; /* Color del texto del footer */
    padding: 10px 0; /* Espaciado interno del footer */
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  
  .containersss {
    display: flex;

    
  }
  
  .ull {
    list-style: none;
    display: flex;
    margin-left: 100px;
    font-size: smaller;
  
  }
  
  .lii1, .aa1 {
    margin-right: 20px; /* Ajusta según sea necesario */
    color: #FFFF;
    margin-left: 100px;
  }
  
  .mail, .phono {
    margin-left: 180px;
    margin-right: 0; 
  }

  .fb{
    margin-left: 300px;
    margin-right: 20px;
  }










