.technology-tabs {
    width: 100%;
}

.technology-tabs__nav {
    display: flex;
    list-style: none;
    padding: 0;
    border-bottom: 2px solid #BDBDBD;
    white-space: nowrap;
    flex-wrap: wrap;
}

.technology-tabs__item {
    font-family: 'Inter Regular', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    color: #292929;
    cursor: pointer;
    padding: 10px 20px;
    border-bottom: 2px solid #BDBDBD;
    margin-bottom: -2px;
    font-weight: 500;
    line-height: normal;
}

.technology-tabs__item.active {
    border-bottom: 3px solid #007AFF;
    color: #007AFF;
}

.technology-tabs__content {
    margin-top: 60px;
}

.technology-tabs__panel {
    display: none;
}

.technology-tabs__panel.active {
    display: block;
}

.technology-tabs__row {
    margin-bottom: 60px;
}

.technology-tabs__row-title {
    margin-bottom: 30px;
    font-family: "Inter Bold", Helvetica, Arial, Lucida, sans-serif; !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-align: center;
    color: #001F3E
}

.technology-tabs__images {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.technology-tabs__images img {
    height: auto;
}

.technology-tabs__row-content {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .technology-tabs__images {
        gap: 40px;
    }
    .technology-tabs__item {
        font-size: 14px;
    }

}