.auto_accordion {
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    position: relative;
}

.auto_accordion:hover {
    background-color: #EEE !important;
    transition: all ease-in-out 0.12s;
    -webkit-transition: all ease-in-out 0.12s;
}

.auto_accordion.active {
    font-weight: 700 !important;
}

.auto_panel {
    background-color: white;
    display: none;
    overflow: hidden;
    width: 100%;
}

.auto_panel.active {
    display: flex;
    flex-wrap: wrap;
}

.auto_tab button {
    background-color: transparent;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 15px;
    transition: 0.3s;
    color: #2b2b2b;
}

.auto_tab button span {
    color: #2b2b2b;
}

.auto_tab button:hover,
.auto_tab button:focus {
    background-color: transparent !important;
    color: #152ba5 !important;
    transition: all ease-in-out 0.1s;
    -webkit-transition: all ease-in-out 0.1s;
    -moz-transition: all ease-in-out 0.1s;
}

.auto_tab button i {
    margin-right: 10px;
    color: inherit;
}

.auto_tab button.active {
    color: #152ba5 !important;
}

.auto_tabcontent {
    display: none;
    background: #FFF;
}

.auto_tabcontent.active {
    display: flex;
    flex-wrap: wrap;
}

.auto_tabcontent {
    animation: fadeEffect 0.4s;
}

.auto_tabcontent .project_category_title .title {
    color: #FFF;
    font-weight: 500;
}

body.not_home .main_tab_navigation {
    opacity: 0;
    display: none !important;
    pointer-events: none !important;
    transition: all ease-in-out 0.1s;
    -webkit-transition: all ease-in-out 0.1s;
    -moz-transition: all ease-in-out 0.1s;
}

.main_tab_navigation {
    height: 40px;
}

.auto_accordion:after {
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    content: '\f107';
    font-size: 13px;
    color: #777;
    right: 5px;
    position: absolute;
}

.auto_accordion.active:after {
    content: "\f106";
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/**
*/
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tab .tablink_button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 16px;
    transition: 0.15s;
}

.tab .tablink_button:hover {
    background-color: #ddd;
}

.tab .tablink_button.active {
    background-color: #ccc;
}

.auto_vertical_tab {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.auto_vertical_tab.active {
    display: flex !important;
}

.auto_vertical_tab {
    animation: fadeEffect 0.15s;
    -webkit-animation: fadeEffect 0.15s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}