/* ======= Google Font  ======= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
:root{
    --primary-color:#333;
    --white-color:#fff;
    --dark-gray:#3c4857;
    --light-gray:#dedede;
    --card-shadow:0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2),
        0 1px 5px 0 rgba(0, 0, 0, 0.12);
    --image-shadow:0 16px 38px -12px rgba(0, 0, 0, 0.56),
        0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
body{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
}

a,
a:hover { 
    text-decoration: underline;
}

p {
    color: var(--dark-gray);
    font-size: 14px;
}

header {
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
} 

h2{
    font-size: 2em;
    line-height: 1.6em;
    margin: 15px 0 15px;
    font-weight: 700;
    font-family: "Roboto Slab", "Times New Roman", serif;
    text-align: center;
} 
h4{
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.55em;
}  
h6{
    font-size: 0.9em;
    font-weight: 500;
} 

/*=== Main Content ===*/
.service{
    text-align: center;
   /* padding-top: 100px;
     height: 800px; */
}
serviceTitle{
    text-align: center;
    padding-top: 100px;
   /*  height: 800px; */
}
 .section-cards{
     padding-top:50px;
 }
 .section-cards .card{
    display: inline-block;
    position:relative;
    object-fit: contain;
    width:100%;
     margin:30px 0;
     border-radius: 6px;
     color:rgba(0,0,0,0.87);
     background-color:var(--white-color);
     box-shadow: var(--card-shadow);
 }
 .section-cards .card .card-image{
     height:60%;
     position:relative;
     overflow:hidden;
     width: 100%;
height: 30vh;
object-fit: contain;
     margin-left: 15px;
     margin-right: 15px;
     margin-top:-30px;
     border-radius: 6px;
     box-shadow: var(--image-shadow);
 }
 .section-cards .card .content{
     padding:15px 30px;
 } 
 .section-cards .card-caption,
 .section-cards .card-caption a{
     color:var(--primary-color);
     text-decoration: none;
 }
    
