.carousel-caption{
    top: 50%;
    transform: translateY(-50%);
    bottom: initial;
  }

.nav-link {
    position: relative;
    color: #ffffff;
    font-size: 1.2em;
    /* font-family: 'Roboto Condensed', sans-serif; */
}

.nav-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 3px;
    background: red;
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s;
}

.nav-link:hover::after{
    transform-origin: left;
    transform: scaleX(1);
}

body{
    /* font-family: 'Nunito Sans', sans-serif !important; */
    font-family: 'Roboto', sans-serif !important;
}

h1, h2, h3{
    /* font-family: 'Roboto Condensed', sans-serif; */
    /* font-family: 'Roboto', sans-serif !important; */
    /* font-family: 'Nunito Sans', sans-serif; */
    /* font-family: 'Montserrat', sans-serif; */
    font-weight: 500;
    
}

h4, h5, h6, p, .nav-link, .btn{
    /* font-family: 'Roboto', sans-serif !important; */
    /* font-family: 'Nunito Sans', sans-serif; */

    font-weight: 400;
}