.crirical {
    background-image: url("../images/tractor.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100vw;
    padding: 180px 180px 180px 180px;
}

.crirical__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 45px;
}

.crirical__container h2 {
    color: #FFF;
text-align: center;
font-family: "Montserrat", sans-serif;
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 110%;
letter-spacing: -0.32px;
/* width: fit-content; */
}

.crirical__scroll-wrap {
    display: contents;
}

.crirical__row {
    display: contents;
}

.crirical__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.crirical__item {
    display: flex;
width: 399px;
height: 149px;
padding: 0 22px;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 10px;
border-radius: 10px;
background: rgba(0, 0, 0, 0.49);
backdrop-filter: blur(3.049999952316284px);
}

.crirical__item span {
    color: #FFF;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 132%;
} 

.crirical__item p {
    color: #DEDEDE;
font-family: "Inter", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 150%;
}

@media (max-width: 768px) {
    .crirical {
        padding: 24px 0px;
        box-sizing: border-box;
    }

    .crirical__container {
        width: 100%;
        max-width: 100%;
        gap: 24px;
        align-items: stretch;
        box-sizing: border-box;
        overflow: hidden;
    }

    .crirical__container h2 {
        font-size: 24px;
        padding: 0;
        max-width: 100%;
    }

    .crirical__content {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        padding-left: 26px;
    }

    .crirical__content.crirical__content--auto-scrolling {
        scroll-snap-type: none;
    }

    .crirical__content::-webkit-scrollbar {
        height: 5px;
    }

    .crirical__content::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.25);
        border-radius: 3px;
    }

    .crirical__scroll-wrap {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: max-content;
        padding-left: 16px;
    }

    .crirical__row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .crirical__item {
        flex: 0 0 auto;
        width: calc(100vw - 64px);
        min-width: calc(100vw - 64px);
        min-height: auto;
        padding: 16px;
        overflow: visible;
        box-sizing: border-box;
        scroll-snap-align: start;
        min-height: 180px ;
    }

    .crirical__item span {
        display: block;
        overflow: visible;
        text-overflow: initial;
        white-space: normal;
    }

    .crirical__item p {
        margin: 0;
        /* line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical; */
    }
}

@media (min-width: 769px) {
    .crirical {
        padding: 180px 80px 180px 80px;
    }
    .crirical__item {
        width: auto;
    }
}