* {
    font-family: poppins;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: poppins;
}

/*==Navigation=====================================*/
.navbar {
    display: flex;
    position: sticky;
    top: 0;
    left: 0;
    justify-content: space-between;
    align-items: center;
    padding: 35px;
    width: 100%;
    max-height: 85px;
    margin: auto;
    background-color: white;
    box-shadow: 0px 0px 10px 0px grey;
    z-index: 100;
}

/* nav-logo */
.navlogo {
    margin-left: 25px;
}

.navlogo a {
    display: flex;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #202020;
}

.navlogo a span {
    color: #40aa54;
}

/* nav-menu */
.menu ul {
    display: flex;
}

.menu li a {
    padding: 3px 10px;
    margin: 0px 15px;
    color: #3b3b3b;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all ease 0.3s;
}

.menu li a:hover {
    color: #4eb060;
}

/* nav-search */
.search {
    width: max-content;
}

.search-box {
    background-color: #e3e3e3;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0px 5px 0px 20px;
    border-radius: 30px;
}

.search-box i {
    font-size: 1.3rem;
    color: #3b3b3b;
    margin: 0px 10px;
}

.search-box .search-input {
    height: 40px;
    border: none;
    width: 100%;
    padding: 0px 10px;
    outline: none;
}

.search-box .search-btn {
    width: 220px;
    height: 40px;
    border-radius: 30px;
    background-color: #4eb060;
    border: none;
    color: #ffffff;
    outline: none;
    cursor: pointer;
    transition: all ease 0.3s;
}

.search-box .search-btn:hover {
    background-color: #5ccf71;
    transition: all ease 0.3s;
}

/* nav-right */
.nav-right {
    margin-right: 25px;
}

.nav-right i {
    margin: 0px 20px;
}