.header-section-inhome {
    width: 100%;
    height: 50vh;
    background: #298347;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-section-main-inhome{
    width: 80%;
    height: 90%;
    /* background-color: red; */
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header-section-image-inhome {
    width: 50%;
    height: 90%;
    /* background-color: blue; */
    margin-top: 13%
}

.header-section-image-inhome img {
    width: 100%;
    height: 100%;
}

.header-section-text-inhome {
    /* background: yellow; */
    width: 40%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.header-section-text-inhome h1 {
    font-size: 3vw;
    color: white;
    font-family: 'Open Sans', sans-serif;
}

.header-section-text-inhome p{
    font-size: 1vw;
    color: white;
    font-family: 'Inter', sans-serif;
}

.header-section-text-inhome button {
    width: 30%;
    height: 5vh;
    font-size: 1vw;
    color: #298347;
    border: none;
    border-radius: 3px;
    background: white;
    cursor: pointer;
}


.contents {
    margin-top: 5%;
}

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

    .header-section-text-inhome p{
        font-size: 1.5vw;
    }

    .header-section-text-inhome button {
        height: 2vh;
        width: 40%;
        font-size: 1.4vw;
    }
}

@media only screen and (max-width: 700px) {

    .header-section-image-inhome {
        display: none;
    }

    .header-section-text-inhome h1 {
        font-size: 6vw;
    }

    .header-section-text-inhome p {
        font-size: 2vw;
    }

    .header-section-text-inhome button {
        width: 80%;
        border-radius: 3px;
        font-size: 1.5vw;
    }
}