body{
    font-family: 'Charis SL', serif;
}

.navbar{
    background-color: #1d265a;
}

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

.nav-link{
    color: #ffffff;
}

.nav-link:hover{
    background-color: #3546a7;
}

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

#home a:hover{
    background-color: #3546a7;
}

hr{
    width: 80%;
    border: 0;
    background-color: #1d265a;
    opacity: 1;
}

hr:not([size]){
    height: 8px;
}

.section-header{
    border-left: 6px solid #3546a7;
    font-size: 1.8rem;
}

#team{
    background: linear-gradient(to bottom right, #fbfcffec, #7698ed28), url('../assets/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#team .card{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

#team .card .card-body{
    background-color: #fff;
}

#team .card:hover .card-body{
    background-color: #a0acef;
}

#services{
    background-color: #bdbdbd;
}

.card{
    border: 0;
}

.card-body{
    font-weight: 700;
    font-size: 1.2rem;
    background-color: #d6dcff;
    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 .card-body{
    background-color: #6b7cdc;
}

#contact a{
    text-decoration: underline;
    color: #3546a7;
    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;
}

#contact a:hover{
    color: #1d265a;
}

footer{
    background-color: #1d265a;
    color: #ffffff;
}

footer a, footer a:hover{
    color: #adadad;
}

@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;
    }
}

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

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

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

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

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

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

    #team .card{
        width: 220px;
        margin: auto;
    }
}