body{
    font-family: 'Nunito', sans-serif;
}

.navbar-brand{
    font-size: .8rem;
}

.fixed-top.scrolled{
    background-color: #1d2c63;
}

.nav-link{
    color: #ffffff;
}

#home a{
    background-color: #ffffff;
}

#home a:hover{
    background-color: #e5e1e1;
}

.section-header{
    font-size: 2rem;
    border-left: 8px #1d2c63 solid;
}

#about img{
    -webkit-box-shadow: 20px -19px 0px 5px #1d2c63;
    -moz-box-shadow: 20px -19px 0px 5px #1d2c63;
    box-shadow: 20px -19px 0px 5px #1d2c63;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

#services{
    background-color: #0e32b3;
}

.card{
    border: 0;
    background-color: transparent;
    color: #ffffff;
    font-size: 1.3rem;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.card:hover{
    background-color: #ffffff;
    color: #0f0f0f;
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
}

#contact{
    background-image: linear-gradient(rgba(255, 255, 255, .6), rgba(255, 255, 255, .6)), url('../assets/contact.jpg'); background-repeat: no-repeat; background-size: cover;
}

#contact p{
    font-size: 1.1rem;
}

#contact a{
    color: #1d2c63;
}

#contact a:hover{
    color: #0e32b3;
}

footer a, footer a:hover{
    color: #1d2c63;
    font-weight: 700;
}

@media (min-width: 576px){
    .navbar-brand{
        font-size: 1.3rem;
    }

    .nav-link{
        font-size: 1.1rem;
    }

    #home h1{
        font-size: 2.5rem;
    }

    #home h2{
        font-size: 1.4rem;
    }

    .card-body{
        font-size: 1.2rem;
    }

    #contact p{
        font-size: 1rem;
    }

    #about img{
        height: 300px;
    }
}

@media (min-width: 768px){

    #home h1{
        font-size: 3rem;
    }

    #home h2{
        font-size: 1.6rem;
    }

    #contact p{
        font-size: 1.2rem;
    }
}

@media (min-width: 992px){
    #home h1{
        font-size: 3.5rem;
    }

    #home h2{
        font-size: 1.8rem;
    }

    #about p, #contact p{
        font-size: 1.1rem;
    }

    #contact p{
        font-size: 1.2rem;
    }
}