html,
body {
    scroll-behavior: smooth;
}


/*Algunos estilos especificos de la barra.*/

.dropdown-toggle::after {
    margin-top: 20px;
}

.b-white {
    background-color: white;
}

select {
    margin-top: 5rem;
}

.black {
    color: black;
}

.navbar-nav {
    /* margin: 0 0 0 auto; */
    width: 100%;
}

.mgauto0 {
    margin: auto 0;
}

.mg0auto {
    margin: 0 auto;
}


/* NOTIFICACIONES **/

.notificacion {
    position: fixed;
    top: 8rem;
    right: 1rem;
    padding: 1rem 3rem;
    opacity: 0;
    transition: opacity .5s ease;
}

.visible {
    opacity: 1;
}

.sombra {
    -webkit-box-shadow: 3px 4px 12px 0px rgba(0, 0, 0, .5);
    -moz-box-shadow: 3px 4px 12px 0px rgba(0, 0, 0, .5);
    box-shadow: 3px 4px 12px 0px rgba(0, 0, 0, .5);
    border-radius: 10px;
}


/*COLORES DE LAS NOTIFICACIONES */

.correcto {
    background-color: rgb(179, 241, 117);
    color: green;
}

.error {
    background-color: rgb(238, 148, 166);
    color: rgb(163, 0, 33);
}


/** Testimoniales **/

.testimoniales {
    background-color: #eaeaeb;
}

.testimoniales .carousel {
    background-color: white;
}

.testimoniales .carousel-item h4 {
    font-weight: 700;
    font-size: 1.4rem;
}

.testimoniales .carousel-item blockquote {
    font-size: 1.8rem;
    color: #676767;
    font-style: italic;
}

.testimoniales .carousel-item p {
    font-size: .8rem;
}