.custom_section_1 {
    margin: 0 auto;
    min-height: 400px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

.custom_section_1 .nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--margin);
    align-items: center;
    height: 300px;
}

.custom_section_1 .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    background: #e9f7f5;
    border-radius: var(
    --border-radius_1);
    padding: 10px;
    font-size: var(--text-size-8);
}

.custom_section_1 .nav-link.active,
.custom_section_1 .nav-link:hover {
    background: var(--primary_1);
    color: #fff;
    transition: all 0.3s;
}

.custom_section_1 .nav-link span {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap-mode: nowrap;
    font-size: var(--text-size-9);
}

.custom_section_1 .nav-icon {
    width: 80px;
    height: 80px;
}

.custom_section_1 .tab-content {
    position: relative;
}

.custom_section_1 .tab-content>.tab-pane {}

.custom_section_1 .section_image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom_section_1 .section_image img {
    width: 100%;
}

.custom_section_1 .section_header {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: var(--margin-2);
}

.custom_section_1 .section_description {
    color: var(--text-color-dark-2);
    text-align: justify;
    line-height: 26px;
    font-size: 14px;
}

.custom_section_1 .section_description.hideContent {
    height: 276px;
}

.custom_section_1 .section_description ul {
    list-style: disc;
    padding-right: 15px;
}

.custom_section_1 .section_content {
    position: relative;
}

.custom_section_1 a {
    padding: var(--margin-2);
    width: 180px;
    font-size: 18px;
    margin: 0 auto;
}

.custom_section_1 .tab-pane {
    opacity: 0; 
    position: absolute;
    display: block;
    width: 100%;
}

@media (max-width: 992px) {
    .custom_section_1 .section_image img {
        width: 70%;
    }    
    .custom_section_1 .nav-list {
        display: flex;
        flex-wrap: nowrap;
        gap: var(--margin-2);
        align-items: center;
        height: unset;
    }
    .custom_section_1 .nav-icon {
        width: 45px;
        height: 45px;
    }
    .custom_section_1 .nav-link {
        width: 95px !important;
        height: 95px;
        font-size: 13px;
    }
    .nav-wrapper {
        height: fit-content;
    }
    .custom_section_1 .tab-content {
        position: relative;
        padding: 25px 0 0 0;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
    .custom_section_1 {
        margin: 0 auto;
        min-height: unset;
        flex-direction: column;
        overflow: unset;
    }
    
    .custom_section_1 .tab-content>.tab-pane.show {
        position: relative;
    }
}


