#home-section {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}
#home-section > .normal-hero-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-end;
}
#home-section > .normal-hero-container > .normal-hero-text {
    flex: 1 1 600px;
}
#home-section > .normal-hero-container > .normal-hero-text > .normal-hero-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 48px;
    text-align: left;    
    color: #FFB93B;
    margin-bottom: 20px;
}
#home-section > .normal-hero-container > .normal-hero-text > .normal-hero-description {
    font-size: 19px;
    font-weight: 400;
    text-align: left;
    color: #E1E1E1;
    margin-bottom: 15px;
}
#home-section > .normal-hero-container > .normal-hero-text > .normal-hero-button-contianer > button {
    padding: 8px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 15px;
    border: none;
    color: #4A4A7E;
    background: rgb(226,162,44);
    background: linear-gradient(180deg, rgba(226,162,44,1) 0%, rgba(255,206,116,1) 100%);
}


#home-section > .normal-hero-container > .normal-hero-image {
    flex: 1 1 1;
}
#home-section > .normal-hero-container > .normal-hero-image > img {
    max-width: 600px;
}


@media (max-width: 1600px) {
    #home-section > .normal-hero-container > .normal-hero-text > .normal-hero-title {
        font-size: 30px;
        margin-bottom: 0px;
    }
    #home-section > .normal-hero-container > .normal-hero-text > .normal-hero-description {
        font-size: 16px;
    }
    #home-section > .normal-hero-container > .normal-hero-text > .normal-hero-button-contianer > button{
        font-size: 16px;
    }
}

@media (max-width: 1000px) {
    #home-section > .normal-hero-container {
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    #home-section > .normal-hero-container > .normal-hero-text {
        flex: 1 1 1px;
        margin-bottom: 40px;
    }
    
    #home-section > .normal-hero-container > .normal-hero-text > .normal-hero-title {
        text-align: center;
        margin-bottom: 10px;
    }
    #home-section > .normal-hero-container > .normal-hero-text > .normal-hero-description {
        text-align: justify;
    }
    #home-section > .normal-hero-container > .normal-hero-text > .normal-hero-button-contianer{
        display: flex;
        justify-content: center;
    }
    #home-section > .normal-hero-container > .normal-hero-text > .normal-hero-button-contianer > button{
        text-align: center;
    }
    #home-section > .normal-hero-container > .normal-hero-image > img{
        max-width: 100%;
    }
}