.header-section-ndis {
    width: 100%;
    height: 40vh;
    background: #992F8F;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-section-main-ndis {
    width: 80%;
    height: 100%;
    /* background: red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-section-text-ndis {
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-section-text-ndis h1 {
    font-size: 3.5vw;
    color: white;
    font-family: 'Dosis', sans-serif;
}

.header-image-ndis {
    width: 50%;
    /* background: green; */
    height: 100%;
}

.header-image-ndis img {
    width: 120%;
    height: 90%;
    border-radius: 0 0 0px 150px;
    box-shadow: -10px 10px 0px 20px #994e91;
}

.contents {
    margin-top: 0% !important;
}

.header-section-text-ndis button {
    width: 40%;
    height: 5vh;
    font-size: 1vw;
    border: none;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    color: white !important;
    border: 2px solid white;
    font-family: 'Dosis', sans-serif;
    transition: 0.8s;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.header-section-text-ndis button::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 00%;
    background: white;
    transition: 0.5s;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

.header-section-text-ndis button:hover::before {
    height: 180%;
}

.header-section-text-ndis button:hover{
    color: #992F8F !important;
    z-index: 5;
    font-weight: bold;
    font-size: 1.3vw;
}



@media only screen and (max-width: 1080px) {
    .header-section-ndis {
        height: 20vh;
    }
    .header-section-main-ndis button {
        height: 2.7vh;
    }
}

@media only screen and (max-width: 700px) {
    .header-image-ndis {
        display: none;
    }
    .header-section-main-ndis {
        width: 100%;
        justify-content: center;
    }
    .header-section-text-ndis {
        height: 65%;
        align-items: center;
    }
    .header-section-text-ndis h1 {
        font-size: 8vw;
    }
    .header-section-text-ndis button {
        font-size: 2vw;
        border-radius: 3px;
    }
}