body{
    font-family: Arial, sans-serif;
}

.hero-section{
    min-height:100vh;

    background-image:
    linear-gradient(
        rgba(0,0,0,.6),
        rgba(0,0,0,.6)
    ),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.service-card{
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
}

.navbar-brand img{
    max-height:50px;
    width:auto;
}

.navbar-brand span{
    font-weight:600;
    font-size:1.2rem;
}

.required-field::after {
    content: " *";
    color: red;
    font-weight: bold;
}

.iti {
    width: 100%;
}

.iti input {
    width: 100%;
}

/* About Us page */

.about-card{
    border-radius:16px;
}

.about-card .card-body{
    font-size:1.1rem;
    line-height:1.9;
}

.about-card p:last-child{
    margin-bottom:0;
}