body{background-color: #F1FCFF;
    margin: 0px;
padding: 0px;}

.fade {
    animation: fadein 2s;
}
.heading {
margin-top:10vh;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
h1 {
    font-family: "Lobster Two";
    font-style: normal;
    font-size: 64px;
    font-weight: 700;
    line-height: normal;
    color: #00569F;
}
h4
{
    font-family: "Inknut Antiqua";
    font-style: normal;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    color: #00569F;
}
p {
    font-family: "Inknut Antiqua";
    font-style: normal;
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    color: #00569F;
}
.servicePageWrapper{

    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 20vh 0px;
}
.servicePageWrapper img{
    width : 40vw;
    height: 40vh;
    object-fit: cover;
    border-radius: 20px;
}
.serviceDiscreption{
    text-align: left;
    width: 40vw;
    height: 40vh;
}
@media (max-width: 1100px) {
    .servicePageWrapper {
        flex-direction: column-reverse;
        justify-content: flex-start;
        margin: 5vh 0px;
        
    }
    .servicePageWrapper img{
        width : 80vw;
        height: 40vh;
        object-fit: cover;
        border-radius: 20px;
    }
    .serviceDiscreption{
        text-align: left;
        width: 80vw;
    }
    
}