h2 {
    font-weight: bolder;
}

.btn-primario {
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-family: "Montserrat", Sans-serif;
    background-color: #8D2B2D;
    line-height: 1;
    padding: 12px 24px;
    text-align: center;
    border-color: #8D2B2D;
    border-radius: 100px 100px 100px 100px;
    transition: all .3s;
}

.btn-primario:hover {
    color: #8D2B2D;
    display: inline-block;
    font-size: 15px;
    font-family: "Montserrat", Sans-serif;
    background-color: #fff;
    border: 1px solid #8D2B2D;
    line-height: 1;
    padding: 12px 24px;
    text-align: center;
    border-radius: 100px 100px 100px 100px;
    transition: all .3s;
}

.btn-secundario {
    color: #8D2B2D;
    display: inline-block;
    font-size: 15px;
    font-family: "Montserrat", Sans-serif;
    background-color: #fff;
    border: 1px solid #8D2B2D;
    line-height: 1;
    padding: 12px 24px;
    text-align: center;
    border-radius: 100px 100px 100px 100px;
    transition: all .3s;
}

.btn-secundario:hover {
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-family: "Montserrat", Sans-serif;
    background-color: #8D2B2D;
    line-height: 1;
    padding: 12px 24px;
    text-align: center;
    border-color: #8D2B2D;
    border-radius: 100px 100px 100px 100px;
    transition: all .3s;
}

.btn-secondary-xs {
    color: #8D2B2D;
    background-color: #fff;
    border: 2px solid #8D2B2D;
}

.btn-primary-xs {
    color: #fff;
    background-color: #8D2B2D;
    border-color: #8D2B2D;
}

span.primary {
    color: #8D2B2D;
}

.nav-tabs .nav-link {
    border-radius: 0;
    border: none;
    padding-top: 30px;
    font-weight: bolder;
}

.nav-tabs .nav-link.active {
    background-color: #fff;
    color: #8D2B2D;
}

body {
    margin-bottom: 60px; /* Espacio para el footer */
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px 0;
}

span.ul-title {
    font-weight: bolder;
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Alineación hacia la izquierda */
    height: 15em; /* Ajusta según sea necesario */
    width: 75%; /* Ajusta según sea necesario */
    margin: auto;
    padding: 10px;
    background-color: #222
}

.text-container h1, .text-container a {
    color: whitesmoke;
    margin: 0;
    text-align: left; /* Opcional para asegurar el alineamiento */
}

.text-container a {
    text-decoration: none; /* Sin subrayado */
}

.text-container a:hover {
    text-decoration: underline; /* Subrayado al pasar el mouse */
}