body {
    margin: 0%;
    padding: 0%;
    outline: 0ch;
}

.container {
    font-family: "Montserrat";

}

/* ------------------- */
/* ------Navbar------- */
/* ------------------- */

.navbar {
    display: flex;
    align-items: center;
    height: 10vh;
    padding: 0 4%;
    background-color: #000;
    font-family: "Poppins";
}

.first_div {
    width: 10%;
}

.logo {
    width: 70%;
}

.line {
    border-left: solid 1px #fff;
    height: 80%;
}

.grow-list {
    flex: 2;
}


.list {
    display: flex;
    gap: 3rem;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    list-style: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0px 35px;
    margin-left: 1.5rem;
    position: relative;
}

.list-item {
    transition: all 200ms ease-in-out;
    position: sticky;
}

.list-item>i {
    margin: 3px 3px 0px 3px;
}

.list-item:hover {
    font-weight: bolder;
    cursor: pointer;
    font-size: 1.1rem;
}

.button-small {
    font-size: 0.9rem;
    font-weight: 500;
    background-color: #be5dc5;
    padding: 6px 25px;
    border: none;
    color: #fff;
    font-family: "Poppins";
    border-radius: 5px;
    transition: all 300ms ease-in-out;
}

.button-small:hover {
    font-weight: bold;
    padding: 10px 30px;
    cursor: pointer;
}

/* ------------------------- */
/* ------Hero Section------- */
/* ------------------------- */

.hero {
    height: 90vh;
    background: url(./assets/bg.png) no-repeat center center fixed;
    background-size: cover;
    background-position: top;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;

}

.hero-heading {
    margin: 0px;
    font-weight: bold;
    font-size: 4.2rem;
    text-align: center;
    line-height: 1.2;
}

.hero-description {
    font-family: "Poppins";
    font-weight: 500;
    font-size: 1.6rem;
    margin-top: 2px;
    margin-bottom: 2rem;
    text-align: center;
}

.button-large {
    background-color: #be5dc5;
    border: none;
    border-radius: 10px;
    font-size: x-large;
    font-family: "Poppins";
    color: #fff;
    font-weight: 500;
    padding: 15px 15px;
    transition: all 300ms ease-in-out;
    position: absolute;
    bottom: 18%;
}

.button-large:hover {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
}