* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Slab', serif;
}


#navbar {
    z-index: 99;
}
.active {
    background-color: lightgreen;
}
.hero-image {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    border-bottom-right-radius: 200px;
}

.hero-image::after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
}



.about-session img {
    width: 100%;
}

.service-session {
    background-color: whitesmoke;
}

.service-session h2:hover {
    color: lightskyblue;
    transition: 0.5s;
}

hr{
    width: 3rem;
    height: 20px;
    border-top: 7px solid forestgreen;
}

.pricing .card{
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
}