

.production__wrapper{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.production_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(448px, 1fr));
    gap: 20px;
}
.production_grid__item{
    display: flex;
    gap: 10px;
    background-color: var(--white);
    padding: 20px;
    align-items: center;
}
.production_grid__item .flex:before{
    content: '';
    background-image: url("../../../../assets/images/check.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    display: block;
    width: 21px;
    min-width: 21px;
    height: 21px;
}
.production_stages{
    display: flex;
    gap: 30px;
    justify-content: space-between;
    position: relative;
}
.round{
    display: block;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    border: 2px solid var(--secondary-color-1);
    border-radius: 100%;
    background-color: var(--white);
    position: relative;
}
.production_stages hr{
    position: absolute;
    top: 12px;
    width: 100%;
    height: 1px;
    border: 0;
    background: linear-gradient(90deg, var(--secondary-color-1) 90%, rgba(255, 88, 16, 0.00) 100%);
}
.production_stages__item{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.production_carousel{
    width: 100%;
}
.swiper-nav{
    display: flex;
    justify-content: center;
    padding-top: 30px;
    gap: 40px;
    color: var(--secondary-color-1);
}
.swiper-nav .swiper-button-prev, .swiper-nav .swiper-button-next{
    position: relative;
    width: 25px;
    height: 32px;
    margin: 0;
}
.swiper-nav .swiper-button-prev:after, .swiper-nav .swiper-button-next:after {
    content: '';
    background-image: url('../../../../assets/images/arrow-next.svg');
    width: 25px;
    height: 32px;
}
.swiper-nav .swiper-button-prev:after{
    background-image: url('../../../../assets/images/arrow-prev.svg');

}
.production__item.h4{
    padding: 0px 238px;
    text-align: center;

}
.production__item img{
    margin-left: auto;
    margin-right: auto;
    display: block;
}
@media (max-width: 992px) {
    .production__item.h4{
        padding: 0px;
        text-align: left;
    }
    .production_stages{
        flex-direction: column;
    }
    .production_stages__item{
        flex-direction: row;
    }
    .production_stages hr{
        width: 1px;
        height: 100%;
        background: linear-gradient(180deg, var(--secondary-color-1) 90%, rgba(255, 88, 16, 0.00) 100%);
        left: 12px;
    }
}
@media (max-width: 768px) {
    .production_grid{
        grid-template-columns: 1fr;
    }
}