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

.navbar{
    background-color: #efefef;
    border-top: #1a2902 5px solid;
    box-shadow: -1px 7px 10px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: -1px 7px 10px 0px rgba(0,0,0,0.75);
-moz-box-shadow: -1px 7px 10px 0px rgba(0,0,0,0.75);
}

.navbar-brand img{
    width: 190px;
}

#home h1{
    font-size: 2.2rem;
}
      
#home a{
    background-image: linear-gradient(to right, #274c77 0%, #6096ba  51%, #a3cef1  100%);
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
    width: 60%;
    font-size: 1.6rem;
  }

#home a:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
 
.section-header{
    font-size: 2.2rem;
    border-left: #adc7d9 8px solid;
}

.section-header span{
    color: #adc7d9;
}

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

#about img{
    box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.2), 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px 0px 0px 1px rgba(255, 255, 255, 0.05) inset;
}

#services{
    background-color: #004e81;
}

#services .section-header{
    color: rgb(245, 245, 245);
}

.card{
    background-color: #000000;
    border-color: #fff;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.card-img{
    opacity: .4;
    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;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.card:hover .card-img{
    opacity: .6;
}

.info{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

h3.card-text{
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

#contact a{
    color: #011e49;
}

footer{
    background-color: #8b8c89;
    color: #fff;
}

footer a{
    color: #011e49;
}

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

    h3.card-text{
        font-size: 2rem;
    }
}

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

    h3.card-text{
        font-size: 1.5rem;
    }
}

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

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

    h3.card-text{
        font-size: 1.7rem;
    }
}

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

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

    h3.card-text{
        font-size: 1.2rem;
    }
}

@media (min-width: 1400px){
    h3.card-text{
        font-size: 1.4rem;
    }
}