.preloader img{
    height: 100px;
    animation: pulseLogo 1s ease-in-out infinite;
}
.menu {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;  
    gap: 15px;
    justify-content: space-around;
   

  }

.menu li {
    flex: 0 0 auto;
    position: relative; 
}

.submenu {
    position: fixed;      
    top: 150px;            
    left: 0;              
    min-width: 150px;
    background: var(--primary-dark);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
}

.dropdown.active >.submenu {
    opacity: 1;
    visibility: visible;
}

.text{
    width: 80%;
}
.contacto{
    justify-content: center;
    align-items: center;   
    min-height: 80vh;
    padding: 10px;
}
.grid{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.contentContact h1{
    color: #233f67;
    font-size: 17pt;
}

.contentContact h3{
    font-size: 11pt;
    font-weight: 500;
    width: 100%;
    text-align: justify;
    margin-bottom: 10px;
}
.ubicacion{
    padding: 10px;
    width: 100%;
}
.ubicacion iframe{
    width: 100%;
}
.info{
    display: flex;
    flex-direction: column;
}
.info h3{
    text-align: center;
}
.phones{
    display: flex;
    text-align: center;
    flex-direction: column;
    margin-bottom: 5px;
    
}
.phones a{
    text-decoration: none;
    color: #1b3353;
    text-decoration: underline;
}
.boton{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}
.boton a{
    text-decoration: none;
    padding:5px;
    background-color: #1b3353;
    color: #dcdcdc;
    border-radius: 3px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}
.formulario input,textarea{
    padding: 5px;
    border-color: #1b3353;
    border-style: solid;
    border-width: 1px;
    border-radius: 3px;
}
.formulario input[type="submit"] {
    background-color: #1b3353;
    color: #dcdcdc;
    border-radius: 3px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    padding: 5px;
}