@font-face {
    font-family: 'MankSans';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    }
    *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'MankSans', sans-serif;
    color: #2c466b;}
body{
    margin: auto;
    justify-content: center;
    align-items: center;
    background:#ddeaff;
}
.menu{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    
}
.contenedor{
    margin-bottom: 100px;
}
.navigation {
    position: fixed; /* Cambiado a "fixed" para que quede fijo en la parte inferior */
    bottom: 0; /* Alineado en la parte inferior */
    left: 0; /* Ajusta la posición horizontal según tus necesidades */
    width: 100%; /* Opcional: ocupa todo el ancho */
    height: 70px;
    background: #2c466b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    z-index: 1;
}
.line{
    border-radius:10px 10px 0 0;;
    background-color: #fff;
    bottom: 70px; 
    left: 0; 
    width: 100%; 
    height: 10px;
    position: fixed
    
}


.navigation ul{
    display: flex;
    width: 350px;
}
.navigation ul li{
    position: relative;
    list-style: none;
    width: 70px;
    height: 70px;
    z-index: 1;
}

.navigation ul li a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    font-weight: 500;
}
.navigation ul li a .icon{
    position: relative;
    display: block;
    line-height: 75px;
    font-size: 1.5em;
    text-align: center;
    transition: 0.5s;
    color: #ffff;
}

.navigation ul li.active a .icon{
    transform: translateY(-32px);
}

.navigation ul li a .text{
    position: absolute;
    color: #ffff;
    font-weight: 400;
    font-size: 0.75em;
    letter-spacing:0.05em ;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(20px);
}

.navigation ul li.active a .text{
    opacity: 1;
    transform: translateY(10px);
}

.indicator{
    position: absolute;
    top: -50%;
    width: 70px;
    height: 70px;
    background-color: #2c466b;
    border-radius: 50%;
    border: 6px solid #ffff;
    transition: 0.5s;
}
.indicator::before{
    content: '';
    position: absolute;
    top:50%;
    left: -22px;
    width: 20px;
    height: 20px;
    background: transparent;
    border-top-right-radius:20px;
    box-shadow: 1px -10px 0 0 #ffffff;
}
.indicator::after{
    content: '';
    position: absolute;
    top:50%;
    right: -22px;
    width: 20px;
    height: 20px;
    background: transparent;
    border-top-left-radius:20px;
    box-shadow: -1px -10px 0 0 #fff;
}

.navigation ul li:nth-child(1).active ~ .indicator{
    transform: translateX(calc(70px * 0));
}

.navigation ul li:nth-child(2).active ~ .indicator{
    transform: translateX(calc(70px * 1));
}

.navigation ul li:nth-child(3).active ~ .indicator{
    transform: translateX(calc(70px * 2));
}

.navigation ul li:nth-child(4).active ~ .indicator{
    transform: translateX(calc(70px * 3));

}.navigation ul li:nth-child(5).active ~ .indicator{
    transform: translateX(calc(70px * 4));
}


.menu ion-icon{
    color: #fff;
}

header{
    display: flex; align-items: center; justify-content: end; 
}
header ion-icon{
    background-color: #2c466b;
    border-radius: 50%;
    padding: 2px;
    border: 1px solid #ffff;
    font-size: 25px;
    margin: 10px;
}
iframe{
    border-radius: 20px;
    padding: 10px;
   }
.separacion{padding-left: 15px;
    padding-right: 15px;}
   .mapa{
    background-color: #ffffff; border-radius: 20px; margin-top: 10px; box-shadow: 15px 16px 12px 0px #5f779f28;
    -webkit-box-shadow: 15px 16px 12px 0px #5f779f28;
    -moz-box-shadow: 15px 16px 12px 0px #5f779f28;
   }
   .mapa h3  {
    margin-left: 10px;
}
.mapa p  {
    margin: 10px;
    padding-bottom: 20px;
    
    
}
.texto{
    background-color: rgb(255, 255, 255);
    margin: 10px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 15px 16px 12px 0px #5f779f28;
-webkit-box-shadow: 15px 16px 12px 0px #5f779f28;
-moz-box-shadow: 15px 16px 12px 0px #5f779f28;
}

.texto a{
    text-decoration: none;
}

main{
    background-color: #E0F1FF; padding: 1px; border-radius: 20px; margin: 8px;
}

