#header {
    background-image: url(../Images/background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    width: 100%;
}

#header h1 {
    font-size: 40px;
    background-color: #2A1C69;
    padding: 30px;
    border-radius: 16px;
    color: #fff;
    display: inline-block;
    position: relative;
    bottom: 0px;
}

#header .banner-heading,
#header .banner-heading2 {
    display: flex;
    align-items: flex-end;
    height: 560px;
    padding-bottom: 105px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    #header {
        /* max-height: 50dvh; */
        background-image: url(../Images/Mobile-bg.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #header .banner-heading,
    #header .banner-heading2 {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        height: 400px;
    }

    #header .banner-heading2 {
        padding-bottom: 60px;
    }

    #header h1 {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    #header {
        max-height: 40dvh;
        background-image: url(../Images/Tablet-bg.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #header .banner-heading,
    #header .banner-heading2 {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        height: 400px;
    }

    #header .banner-heading2 {
        padding-bottom: 0px;
    }
}