body {
    background-image: url(../images/background/home-background.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.main-home-container {
    max-width: 80vw;
    margin: auto;
}

.home__top-section {
    /* height: 45vw;
    display: flex; */
}

.home__top-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    margin: auto;
    padding-top: 10vw;
    padding-bottom: 20vw;
}

.home__heading-container {
    display: inline;
    text-align: right;
}

.home__subheading-container {
    padding-top: 70px;
}

.home__hi-span {
    display: inline;
    font-size: 120px;
}

.home__heading-h1 {
    font-size: 50px;
    font-weight: 500;
}

.home__heading-h2 {
    font-size: 50px;
    font-weight: 100;
    display: inline;
}

.subheading-orange-h2,
.subheading-orange {
    font-size: 40px;
    font-weight: 100;
    color: #ff5200;
}

@media only screen and (max-width: 520px){
    .home__top-container {
        grid-template-columns: 1fr;
        padding-top: 5vw;
        padding-bottom: 5vw;
    }

    .home__heading-container {
        text-align: left;
    }

    .home__subheading-container {
        padding-top: 0;
    }
}


@media only screen and (max-width: 520px){
    .home__hi-span {
        font-size: 60px;
    }

    .home__heading-h2 {
        font: 40px;
    }

}


