.container {
    font-family: "Poppins";
    padding: 0px 20px 0px 35px;
}

.navbar-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-content: space-between;
    align-items: center;
    height: 15vh;
}

/* .img_div {} */

.img_div>img {
    width: 65%;
}

.grow-list {
    flex: 2;
}

.grow-list {
    flex: 1;
}

.list {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding-left: 0;
}

.list-item {
    color: #cbcbcb;
    font-size: 0.9em;
    transition: all 200ms ease-in-out;
}

.list-item:hover {
    color: #000;
    font-size: 1rem;
    cursor: pointer;
}

.nav-button {
    color: #fff;
    background-color: #5955b3;
    border-radius: 10px;
    padding: 17px 30px;
    border: none;
    margin-right: 30px;
    font-size: 1rem;
    transition: all 200ms ease-in-out;

}

.nav-button:hover {
    padding: 18px 32px;
    cursor: pointer;
    font-size: 1.1rem;
}

/* ------------------------*/
/*---------Banner----------*/
/* ------------------------*/
.banner-container {
    display: flex;
    flex-direction: row;
    height: 80vh;
    padding-top: 3%;
}

.banner-container div img {
    width: 65%;
    position: absolute;
    right: 0;
    top: 21%;
}

.heading-text {
    color: #3c2f60;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.heading-text span {
    color: #5955b3;
}

.description {
    color: #bdbcbc;
    padding-bottom: 40px;
}

.nav-button.btn {
    padding: 25px 40px;
    font-size: 1.2rem;
    transition: all 200ms ease-in-out;
}

.nav-button.btn:hover {
    padding: 27px 42px;
}