.hero {
    padding: 6rem 0;
}

.hero-container {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content-item {
    flex: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero-title-sub {
    font-size: 1rem !important;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
}

.hero-description {
    font-weight: 400;
    margin-bottom: 1rem;
    color: gray;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.features-list-item {
    height: 100%;
    width: 100%;
    display: flex;
    padding: 14px 11px;
    gap: 4px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.features-list-item .thumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-list-item .content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    justify-content: center;
}

.features-list-item .content .title {
    font-size: 1rem;
    font-weight: 700;
    color: rgb(77, 77, 77);
}

.features-list-item .content .subtitle {
    font-size: .8rem;
    font-weight: 400;
}



.hero-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    scale: 1.2;
}



.features-list-item:nth-child(1) {
    background-color: rgba(7, 161, 105, 0.1);
}
.features-list-item:nth-child(3) {
    background-color: rgba(7, 161, 105, 0.1);
}

.features-list-item:nth-child(2) {
    background-color: rgba(255, 184, 0, 0.1);
}

.features-list-item .thumb {
    width: 3rem;
    height: 3rem;
}

.hero-content-item .hero-content-right {
    width: 100%;
    height: 100%;
    position: relative;
}

.floating-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-shape-container {
    position: relative;
    height: 100%;
    width: 100%;
}
.floating-shape-container .p-absolute {
    position: absolute;
}

.floating-shape-container .shape-1 {
    top: 24%;
    left: 50%;
    z-index: 100;
}

.floating-shape-container .shape-2 {
    bottom: 22%;
    left: 7%;
}

.floating-shape-container .shape-3 {
    top: 22%;
    left: 42%;
}

.floating-shape-container .shape-4 {
    top: 15%;
    left: 21%;
}

.floating-shape-container .shape-5 {
    top: 34%;
    left: 58%;
}

.floating-shape-container .shape-6 {
    top: 12%;
    right: 13%;
}









@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: .4rem;
    }

    .hero-container {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }
    .hero-content-left {
    }
    .hero-content {
        flex-direction: column;
        gap: 4rem;
    }
    .hero-content-item {
    }
    .floating-shape-container .shape-2 {
        display: none;
    }
    .features-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .hero-image {
        scale: 1;
    }

}