.tabs-wrapper {
    margin-bottom: 60px;
}
.tabs-wrapper .tab-sec-head {
    color: #000;
}
.active-tab-heading {
    /* Add styling for the active tab heading */
    margin-top: 20px; /* Space between tab navigation and active heading */
}

.tabs-nav.desktop {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: center;*/
    gap: 10px;
    /*margin-bottom: 50px;*/
	/*max-width:900px;*/
	/*margin-left:auto;
	margin-right:auto;*/

}
.tab-button {
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 4px;
    padding: 20px 23px !important;
    font-family: 'noto_sansbold', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #ffffff;
    background-color: #00718d;
    text-decoration: none;
    display: block;
    transform: scale(1);
    transition: all 0.25s ease;
    width: 130px;
    padding: 10px !important;
}
.tab-button:hover {
transform: scale(1.1);
}

.tab-button.duck-blue {
  background-color: #00728d;
}

.tab-button.purple {
  background-color: #553c72;
}

.tab-button.yellow {
  background-color: #ffbd00;
  color: #553c72;
}

.tab-button .tab-button__icon {
    display: block;
    position: relative;
    max-width: 60px;
    margin: 0 auto 10px;
}
.tab-button .tab-button__icon::before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%;
}
.tab-button .tab-button__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
}

.tabs-select.mobile {
    display: none;
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
}

.tab-content {
    display: none;
}
.tab-content h2 {
    color: #00718d;
    font-size: 30px;
    line-height: 1.2;
}

.tab-content.active {
    display: block;
}

.desktop-tab-wrapp {
    display: flex;
	flex-direction: column;
}

.tab-heading-title {
    /*width: 390px;*/
    color: #00718d;
    font-size: 30px;
    line-height: 1.2;
    margin: 0;
}
.tab-heading-title:empty {
    display: none !important;
}

/* Responsive: Show dropdown on mobile */
@media (max-width: 768px) {
    .tabs-nav.desktop {
        display: none;
    }
    .tabs-select.mobile {
        display: block;
    }
    .tab-heading-title {
        margin-bottom: 10px;
    }
}
