*{
    font-family: 'Inter', sans-serif;
}

.section-header{
    font-size: 2.1rem;
    letter-spacing: 6px;
}

.navbar{
    background-color: #dddddd;
}

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

.nav-link{
    border-bottom: 2px solid #0077b600;
}

.nav-link:hover{
    border-bottom: 2px solid #0077b6;
}

#home h1{
    font-size: 2.1rem;
    color: #00b4d8;
}

#home a{
    border: 2px solid rgb(232, 232, 232);
    color: rgb(232, 232, 232);
}

#home a:hover{
    background-color: #ffd230;
    color: rgb(25, 25, 25);
    border: none;
}

#about img{
    border-radius: 0;
    box-shadow: 6px 6px 5px #cccccc;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

#services{
    background:url('../assets/services/bg.jpg');
}

#services p{
    font-size: .9rem;
    color: rgb(25, 25, 25);
}

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

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

.info{
    left: 50%;
    top: 40%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.info h3{
    font-size: 1.6rem;
}

#contact{
    background-color: #456b9d;
    color: #cccccc;
}

hr{
    border: none;
    opacity: 1;
    border-top: 2px solid #0077b6;
}

hr.footer-hr{
    border-color:rgb(232, 232, 232);
}

#contact ul{
    font-size: .9rem;
    line-height: 35px;
}

#contact p, footer, footer a{
    font-size: .8rem;
}

#contact a{
    color: #cccccc;
    font-weight: normal;
}

#contact iframe{
    width: 320px;
    height: 200px;
}

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

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

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

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

    .info h3{
        font-size: 1.3rem;
    }
}

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

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

    .info h3{
        font-size: 1.5rem;
    }

    #contact iframe{
        width: 250px;
    }

    .small{
        width: 30%;
    }
}

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

    #contact iframe{
        width: 360px;
        height: 200px;
    }
}