.help-text-toggle-block .blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.help-text-toggle-block .toggle-item {
    border: 1px solid var(--stroke-thirdly);
    border-radius: 30px;
    padding: 30px;
}
.help-text-toggle-block .toggler {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.5s;
}
.help-text-toggle-block .toggler:hover {
    color: var(--primary);
}
.help-text-toggle-block .icon {
    width: 19px;
    height: 11px;
    display: flex;
    min-width: 19px;
}
.help-text-toggle-block .toggle-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 30px;
}
.help-text-toggle-block .toggle-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.help-text-toggle-block .gallery-img {
    width: calc((100% - 165px) / 12);
    display: flex;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
}
.help-text-toggle-block .gallery-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    aspect-ratio: 1/1;
}


@media (max-width: 1400px) {
    .help-text-toggle-block .toggle-content {
        padding-top: 10px;
        gap: 10px;
    }
    .help-text-toggle-block .toggle-item {
        padding: 10px;
        border-radius: 15px;
    }
    .help-text-toggle-block .gallery-img {
        width: calc((100% - 135px) / 10);
    }
}

@media (max-width: 1200px) {
    .help-text-toggle-block .toggle-gallery {
        gap: 10px;
    }
    .help-text-toggle-block .gallery-img {
        width: calc((100% - 80px) / 9);
    }
    .help-text-toggle-block .toggler {
        font-size: 18px;
    }
    .help-text-toggle-block .icon {
        width: 16px;
        height: 10px;
        min-width: 16px;
    }
}

@media (max-width: 768px) {
    .help-text-toggle-block .gallery-img {
        width: calc((100% - 70px) / 8);
    }
}

@media (max-width: 600px) {
    .help-text-toggle-block .gallery-img {
        width: calc((100% - 50px) / 6);
    }
}

@media (max-width: 498px) {
    .help-text-toggle-block .gallery-img {
        width: calc((100% - 30px) / 4);
    }
}