#start .text {
    position: absolute;
    width: 55%;
}

#start h1 {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5px;
    margin-top: 2px;
}

#start p {
    font-size: 20px;
    padding-left: 10px;
    margin: 5px ,10px;
    line-height: 1.5;
}

#start img
{
    position: absolute;
    width: 40%;
    right: 2%;
    border-radius: 1%;
}

.heading-background {
    background-color: #225045;
    color: #ECEBE4;
    padding: 5px;
    border-radius: 5px;
}

.logo-img {
    display: none;
}

/* TABLET VIEW */
@media (max-width: 1024px) {
    #start {
        margin-top: 3%;
    }

    #start h1 {
        font-size: 26px;
    }

    #start h2 {
        font-size: 26px;
    }

    #start p {
        font-size: 18px;
    }

    #start .text {
        width: 50%;
    }

    #start img {
        width: 46%;
    }
    .logo-img {
        display: unset;
        padding-top: 55%;
    }

}

/* PHONE VIEW */

@media (max-width: 560px) {
    #start img {
        width: 100%;
        right: 1px;
    }
    #start .text {
        padding-top: 150%;
        width: 100%;
    }
    .logo-img {
        display: none;
    }
}