.technologies-block {
    text-align: center;
}

.technologies-block .tech-main-title {
    color: #1A1A1A;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; 
    margin: 0;
    letter-spacing: 2px;
}
.technologies-block .tech-tabs{
    /* padding: 0 133px; */
}
.technologies-block .tech-tabs-container {
    position: relative;
}
.technologies-block .tech-tabs-nav-wrapper{
    border-bottom: 2.5px solid rgba(0, 0, 0, 0.10);
    margin: 26px 0 50px 0;
}

.technologies-block .tech-tabs-nav {
    color: #808080;
    gap:40px;
    display: flex;
    justify-content: center;
    border-bottom: none;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.technologies-block .tech-tab-button {
    color: #808080;
    text-align: center;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    position: relative;
    padding-bottom: 14px;
    border: none;
    white-space: nowrap;
    margin-bottom: -2.4px;
}

.technologies-block .tech-tab-button:hover {
    color: #000;
     border: none;
}
.technologies-block .nav-tabs .nav-link {
    border: none; 
    border-bottom: 2.5px solid transparent; 
    transition: border-color 0.3s ease; 
    padding-left: 5px;
    padding-right: 5px;
}

.technologies-block .nav-tabs .nav-link.active {
    color: #000;
    background-color: transparent;
    border-bottom: 2.5px solid;
    border-image-source: linear-gradient(131deg, #544FF8 70.42%, #2EB6AE 102.7%);
    border-image-slice: 1;
}

.technologies-block .nav-tabs .nav-link:not(.active) {
    border-color: transparent; 
}

.technologies-block .tech-tab-pane {
    display: none;
}

.technologies-block .tech-tabs-content-wrapper .tech-tab-radio:checked + .tech-tab-pane {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

 .technologies-block .tech-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px 57px;
    align-items: center;
    justify-content: center;
}

.technologies-block .tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* flex-basis: 100%; */
}

.technologies-block .tech-logo-item img {
     /* width: 76.364px;
     height: 76.364px; */
}

.technologies-block .tech-logo-item span {
    font-size: 14px;
    color: #6c757d;
}

.technologies-block .tech-scroll-arrow {
    display: none;
}

/* Breakpoints */
@media (max-width: 1399.98px) { 
   
}
@media (max-width: 1199.98px) { 
   .technologies-block .tech-tabs{
        padding: 0;
    }
}
@media (max-width: 991.98px) { 
    .technologies-block {
        padding: 0px;
    }
     .technologies-block .tech-main-title {
        font-size: 38px;
    }
    .technologies-block .tech-logos-grid {
        gap:38px 26px;
    }
    .technologies-block .tech-tabs-nav-wrapper {
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .technologies-block .tech-tabs-nav-wrapper::-webkit-scrollbar {
        display: none;
    }
    .technologies-block .tech-tabs-nav{
        justify-content: flex-start;
    }
    .technologies-block .nav-tabs .nav-link.active {
        border-bottom: 2.5px solid;
        border-image-source: linear-gradient(131deg, #544FF8 70.42%, #2EB6AE 102.7%);
        border-image-slice: 1;
    }
    .technologies-block .tech-scroll-arrow{
        display: block;
        position: absolute;
        right: 0px;
        top: 15px;
        cursor: pointer;
        z-index: 5;
    }
}
@media (max-width: 767.98px) { 
    .technologies-block {
        padding: 0px 20px 0px;
    }
    .technologies-block .tech-main-title {
        font-size: 34px;
    }
    .technologies-block .tech-tab-button {
        font-size: 20px;
    }
    /* .technologies-block .tech-logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    } */
    .technologies-block .tech-logo-item {
        flex-basis: calc((100% - (3 * 40px)) / 4);
    }
    .tech-tabs-nav-wrapper{
        margin: 26px 0 22px 0;
    }
    
}
@media (max-width: 575.98px) { 
    .technologies-block .tech-logos-grid {
        /* grid-template-columns: repeat(3, 1fr); */
    }
}