.internal{
    width: 85%;
    margin: 0 auto;
}

i{
    color: #fff;
}

.flex-box{
    display: flex;
    justify-content: space-between;
}

.flex{
    display: flex;
    justify-content: center;
}

.flex-start{
    display: flex;
    justify-content:flex-start;
}

 
  ::-webkit-scrollbar {
    width: 12px; /* Vertical scrollbar width */
}

/* Scrollbar track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
    background: #6baa57;
    border-radius: 6px;
    height: 20px; /* Minimum thumb height */
}

/* Scrollbar thumb hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #7eb30c;
}

.more{
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 3rem;
    background-color:#6baa57;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}