.mainAreaInstruments {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 72px;
}

.inAreaInstruments {
    max-width: 1240px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
    display: flex;
}

.titleInstruments {
    width: 100%;
    display: flex;
    color: #282828;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.boxitemsInstruments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.itemInstrument {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
    padding: 16px;
    box-sizing: border-box;
    height: 100%;
    border-radius: 12px;
    transition: 0.24s;
    background: linear-gradient(90deg, #E0561E 0%, #C9440D 100%);
}

.itemInstrument:hover {
    transform: scale(1.02);
}

.nameInstrument {
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.topInstrumentBox {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.areaStages {
    margin-bottom: 113px;
}

@media screen and (max-width: 1280px) {
    .inAreaInstruments {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .titleInstruments {
        font-size: clamp(24px, 4vw, 32px);
    }
}

@media screen and (max-width: 1100px) {
    .boxitemsInstruments {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media screen and (max-width: 840px) {
    .boxitemsInstruments {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .nameInstrument {
        font-size: 18px;
    }
    .mainAreaInstruments{
        margin-top: 24px;
    }
    .inAreaInstruments{
        gap: 24px;
    }
}

@media screen and (max-width: 630px) {
    .boxitemsInstruments {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
}