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

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

#header-text{
    width: 280px;
}

#home h1{
    color: #fff;
    font-size: 2rem;
}

#home h2{
    font-size: 1.5rem;
    color: #d6d6d6
}

#home a{
    background-color: #0c387f;
    font-size: 1.5rem;
    color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

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

.navbar{
    background-color: #ffffff;
}

.section-header{
    color: #0c387f;
    font-size: 1rem;
    position: relative;
}


#services{
    background: linear-gradient(to bottom right, #e9e9e9e5, #ffffffea), url('../assets/abstract-luxury-blur-dark-grey-black-gradient-used-as-background-studio-wall-display-your-products.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#services p{
    font-weight: bold;
    font-size: 1.3rem;
}

#services .img-holder{
    position: relative;
}

#services .img-holder::after{
    position: absolute;
    content: '';
    bottom: -15px;
    right: -15px;
    height: 90px;
    width: 140px;
    background-color: #0d185a83;
}

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

#gallery{
    background-color: #e9e9e9;
}

.gal-container img{
    object-fit: cover;
    aspect-ratio: 1 / 1;
    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;
}

.gal-container img:hover{
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

#contact{
    background-color: #0d185a;
    color: rgb(198, 198, 198);
}

#contact a{
    color: rgb(198, 198, 198);
}

@media (min-width: 576px){
    #header-text{
        width: 400px;
    }

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

    #services .img-holder::after{
        position: absolute;
        content: '';
        bottom: -25px;
        right: -25px;
        height: 110px;
        width: 180px;
        background-color: #0d185a83;
    }

    .section-header{
        font-size: 1.1rem;
    }
}

@media (min-width: 768px){
    #header-text{
        width: 500px;
    }

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

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

@media (min-width: 992px){
    #home p{
        color: #fff;
        font-size: 1.6rem;
    }
}

@media (min-width: 1200px){
    #header-text{
        width: 600px;
    }

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

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

    #home p{
        font-size: 1.9rem;
    }
}