.technologies-block .technologies-block__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
}

.technologies-block .item-technologies {
    margin-bottom: 30px;
}

.technologies-block .item-technologies__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(1.25rem, -7.96rem + 12.36vw, 6.875rem);
    border-radius: 5px;
    width: 100%;
    height: 100%;
    padding: 30px 20px 20px;
    background: var(--head-primary);
    overflow: hidden;
}

.technologies-block .item-technologies__content::before,
.technologies-block .item-technologies__content::after {
    content: "";
    position: absolute;
    width: 392px;
    height: 392px;
    border-radius: 50%;
    background: #006033;
    filter: blur(120px);
    -webkit-filter: blur(120px);
    opacity: 0.7;
}

.technologies-block .item-technologies__content::before {
    top: -118px;
    left: -82px;
}

.technologies-block .item-technologies__content::after {
    bottom: -219px;
    right: -64px;
}

.technologies-block .item-technologies__top,
.technologies-block .item-technologies__img {
    position: relative;
    z-index: 2;
}

.technologies-block .item-technologies__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.technologies-block .item-technologies__name {
    text-align: center;
    color: var(--background);
}

.technologies-block .item-technologies__desc {
    text-align: center;
    color: var(--main-text-thirdly);
}

.technologies-block .item-technologies__img {
    flex-shrink: 0;
    max-width: 320px;
    width: 100%;
    max-height: 200px;
    height: auto;
    border-radius: 5px;
    margin: 0 auto;
    overflow: hidden;
}

.technologies-block .item-technologies__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.technologies-block .item-technologies__btn {
    margin: 0px auto;
}

@media (max-width: 1192px) {
    .technologies-block .technologies-block__items {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
    }
    .technologies-block .item-technologies {
        margin-bottom: 20px;
    }
    .technologies-block .item-technologies__btn {
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .technologies-block .technologies-block__items {
        column-gap: 10px;
    }
    .technologies-block .item-technologies {
        margin-bottom: 10px;
    }
    .technologies-block .item-technologies__top {
        gap: 10px;
    }
    .technologies-block .item-technologies__btn {
        margin-top: 20px;
    }
}
@media (max-width: 650px) {
    .technologies-block .technologies-block__items {
        display: flex;
        flex-direction: column;
    }
    .technologies-block .item-technologies__btn {
        margin-top: 0;
    }
}