.tech-section {
    display: flex;
    gap: 3rem;
    flex-flow: column;
    max-width: 91.5rem;
    width: 100%;
    margin: 0 auto;
    padding: 1.125rem;
}

.tech-section__head {
    max-width: 91.5rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    gap: 1rem;
    padding: 0;
}

.tech-section__title {
    font-size: 4rem;
}

.tech-section__subtitle, .tech-section__block-title {
    font-size: 1.5rem;
}

.tech-section__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-section__list-item {
    padding: .5rem 1rem;
    display: flex;
    gap: .875rem;
    background-color: #000C13;
    border: 1px solid #011C2D;
    border-radius: .25rem;
    align-items: center;
}

.tech-section__wrapper {
    display: flex;
    flex-flow: column;
    gap: 1rem;
}

.tech-section__list-item-image {
    width: 1.5rem;
}

@media (max-width: 992px) {
    .tech-section__title {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .tech-section__subtitle, .tech-section__block-title {
        font-size: 0.875rem;
    }

    .tech-section__list-label {
        font-size: 0.875rem;
    }

    .tech-section {
        gap: 1rem;
    }
}