@font-face {
    font-family: 'Lato-Black';
    src: url('./Tipografia/Lato-Black.ttf') format('truetype');
}

@font-face {
    font-family: 'Lato-Regular';
    src: url('./Tipografia/Lato-Regular.ttf') format('truetype');
}

body,
html {
    overflow-x: hidden;
    color: black;
    font-family: 'Lato-Regular';
}

.dis{
    visibility: hidden !important;
}

.dis2{
    visibility: visible !important;
}

.navbar {
    background-color: white;
}

.nav-item {
    color: #000;
    border-bottom: 10px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-item:hover {
    border-bottom:10px solid #116e9a;
}

.btn-primary {
    border-radius: 50px;
    padding: 5px 50px; 
    background-color: #116e9a;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #0b4b69; /* Cambia el color de fondo al pasar el cursor */
}

footer{
    background-color: #116e9a;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    text-decoration: none;
    font-size: 25px;
    margin: 5px;
    text-decoration: none !important;
}

.icon-circle:hover {
    color: #0b4b69; /* Color del icono al pasar el ratón (opcional) */
    background-color: #e9ecef; /* Fondo al pasar el ratón (opcional) */
    text-decoration: none !important;
}

.full-width-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.image-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}