.about-main {
    width: 100%;
    height: calc(100vh - 65px);
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-bg-soft);
}

.about-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 0;
}

.about-desc-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 16px 16px 16px;
    box-sizing: border-box;
}

.about-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
}

.about-desc p {
    text-align: justify;
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--color-text);
    font-weight: 450;
    margin: 0;
}

.about-desc-logo-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-slogan {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 4px;
}

.about-slogan h5{
    text-align: center;
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--color-secondary);
    font-weight: 600;
    margin: 0;
}

.team-target-vision-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 16px 16px;
    width: 100%;
    box-sizing: border-box;
}

.team-target-vision-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background-color: var(--color-bg);
    box-shadow: 0px 2px 4px rgba(10, 10, 10, 0.1);
    border-radius: 10px;
    padding: 16px;
    box-sizing: border-box;
}

.team-target-vision-card h6 {
    text-align: center;
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--color-text);
    font-weight: 550;
    margin: 0;
    margin-bottom: 16px;
}

.team-target-vision-card img {
    display: flex;
    align-self: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    user-select: none;
    pointer-events: none;
    padding: 5px;
    margin-bottom: 8px;
    background-color: var(--color-primary-hover);
}

.team-target-vision-card p {
    text-align: justify;
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--color-text);
    font-weight: 450;
    margin: 0;
}


.members-team-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 0;
}

.members-team-container-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 16px 16px 0 16px;
    box-sizing: border-box;
}

.members-team-slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 16px;
    gap: 16px;
    box-sizing: border-box;
    scrollbar-width: none;
}
.members-team-slider::-webkit-scrollbar {
    display: none;
}

.members-team-slide {
    display: flex;
    flex: 0 0 25%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-snap-align: center;
    padding: 16px;
    box-sizing: border-box;
    background-color: var(--color-bg);
    box-shadow: 0px 2px 4px rgba(10, 10, 10, 0.1);
    border-radius: 10px;
}

.members-team-slide-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.members-team-slide-img-container img {
    pointer-events: none;
    user-select: none;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.members-team-slide-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.member-name {
    text-align: center;
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--color-text);
    font-weight: 500;
    margin: 0;
}

.member-role {
    text-align: center;
    font-size: clamp(10px, 1.2vw, 12px);
    color: #989898;
    font-weight: 450;
    margin: 0;
}











/* Mobile */
@media (max-width: 991.999px) {
    .about-main {
        height: calc(100vh - 133px);
    }
    .team-target-vision-container {
        flex-direction: column;

    }
    .team-target-vision-card {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 1100px) {
    .members-team-slide {
        flex: 0 0 30%;
    }
}

/* Mobile */
@media (max-width: 790px) {
    .members-team-slide {
        flex: 0 0 40%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .members-team-slide {
        flex: 0 0 50%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .members-team-slide {
        flex: 0 0 100%;
    }
}