:root {
    --title-main-mobile-size: 3rem;
    --title-sub-mobile-size: calc(var(--title-main-mobile-size) / 2);
    --paragraph-mobile-size: calc(var(--title-main-mobile-size) / 3);
}

.section-applications-of-products__title {
    text-align: center;
}

.title {
    font-size: var(--title-main-mobile-size);
    letter-spacing: 0.5rem;
}

.title--colorful-green {
    color: #5c9f24;
}

.title--sub-title {
    font-size: var(--title-sub-mobile-size);
}

.paragraph {
    color: black;
    font-size: var(--paragraph-mobile-size);
    line-height: 1.5rem;
}

.paragraph--more-space-ln-hght {
    line-height: 3rem;
}

.main-part-main-page__section-applications-of-products {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    width: 100%;
   
}

.section-applications-of-products__wrapper-title {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-inline: 1rem;
}

.section-applications-of-products__title-paragraph {
    text-align: center;
}

.section-applications-of-products__list-applications {

   
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
}

.section-applications-of-products__list-applications-item {
    position: relative;
    width: 16rem;
    height: 16rem;
}

.section-applications-of-products__list-applications-item:hover .section-applications-of-products__wrapper-industry-image {
    transform: translateY(-5%);
}

.section-applications-of-products__list-applications-item::before {
    content: '';
    position: absolute;
    bottom: -4.37rem;
    background: radial-gradient(rgba(0, 0, 0, 0.15), transparent, transparent);
    width: 100%;
    height: 3.75rem;
    border-radius: 50%;
    transition: 0.5s all ease-in-out;
}

.section-applications-of-products__list-applications-item:hover:before {
    opacity: 0.8;
    transform: scale(0.8);
}

.section-applications-of-products__wrapper-industry-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
    transition: 0.5s all ease-in-out;
}

.section-applications-of-products__industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 401px) {
    :root {
        --title-main-mobile-size: 4rem;
    }

    .section-applications-of-products__list-applications-item {
        width: 18rem;
        height: 18rem;
    }
}

@media screen and (min-width: 768px) {
    .section-applications-of-products__list-applications {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-applications-of-products__list-applications-item {
        width: 15rem;
        height: 15rem;
    }
}

@media screen and (min-width: 1024px) {
    .section-applications-of-products__list-applications {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-applications-of-products__list-applications-item {
        width: 15rem;
        height: 15rem;
    }
}

@media screen and (min-width: 1440px) {
    .section-applications-of-products__list-applications {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-applications-of-products__list-applications-item {
        width: 15rem;
        height: 15rem;
    }
}