.tech-stack-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 60px;
    margin: 60px auto auto;

    width: 888px;
    height: 392px;
}

.tech-stack-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 32px;

    width: 796px;
    height: 162px;
}

.tech-stack-section-title {
    font-style: normal;
    font-size: 32px;
    line-height: 130%;
    color: #1F1D22;
}

.tech-stack-section-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 88px;
    padding: 0px;
    gap: 32px;
}

.tech-stack-section-item {
    height: 100%;
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.tech-stack-section-item img {
    width: 60px;
    height: 60px;
    border: 0.75px solid rgba(31, 29, 35, 0.05);
    border-radius: 15px;
}


.tech-stack-section-item p {
    font-style: normal;
    font-size: 12px;
    line-height: 130%;
}


@media screen and (max-width: 575px) {
    .tech-stack-block {
        display: flex;
        flex-direction: column;
        gap: 60px;
        margin-top: 32px;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        height: auto;
    }

    .tech-stack-section {
        width: 100%;
        height: auto;
    }

    .tech-stack-section-title {
        text-align: center;
    }

    .tech-stack-section-content {
        justify-content: center;
        width: 100%;
        height: auto;
        row-gap: 32px;
        column-gap: 24px;
        flex-wrap: wrap;

    }

    .tech-stack-section-item {
    }

    .tech-stack-section-item img {
    }


    .tech-stack-section-item p {
    }

}