:root {
    --primary: #50b747
}

body {
    font-family: 'Nunito', sans-serif;
}

.text-wm {
    color: var(--primary);
}

.fw-bold {
    font-weight: 700;
}

.d-flex {
    display: flex;
}

.flex-wrap {
	flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* CATEGORY PRODUCT */
.category-list {
    margin-top: 30px;
}

.category-item {
    width: 100%;
    padding-bottom: 100%;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0px 0px 6.01px 0px #00000040;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}

.category-item:hover {
    transform: scale(1.05);
}

.category-btn {
    padding: 8px 40px;
    background: var(--primary);
    border: 0;
    color: #fff !important;
    border-radius: 28px;
}

.category-btn:hover {
    opacity: 90%;
}

/* MAIN-SEO */
.main-seo {
    margin: 60px 0;
    padding: 32px 16px;
    box-shadow: 0px 0px 8px 0px #00000040;
    border-radius: 20px;
}

.main-seo h1, .main-seo h2, .main-seo h3, .main-seo h4, .main-seo h5, .main-seo h6 {
	color: var(--primary);
	font-weight: 600;
}

/* PROJECT */
.project {
    background: #F4F4F4;
    padding: 50px 0;
}

.project-list {
    margin-top: 40px;
}

.project-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
	margin-bottom: 10px;
}

.project-item::after {
    content: "";
    display: block;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 98, 33, 0.651);
}

.project-item * {
    position: relative;
    z-index: 2;
}

.project-btn {
    display: inline-block;
    padding: 8px 40px;
    margin-top: 15px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.project-btn:hover {
    background: var(--primary);
    color: #fff;
}
