*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Set the base font size for the root element */
}

/* Cover start */
.cover{
    width: 100%;
    height: 40vh;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.cover .bg{
    width: 100%;
    height: 100%;

    position: absolute;
    
    object-fit: cover;

    z-index: -1;

    /* border: 1px solid red; */
}

.cover .heading{
    /* border: 1px solid blue; */

    color: #fff;
    /* border: 1px solid #fff; */
    font-size: 50px;
    width: 90%;
    padding: 40px;
    padding-left: 20%;
    padding-right: 20%;

    text-align: center;

    background-color: #70A42F;
}

/* Cover End */