.production {
    margin-top: 160px;
}

.production h2 {
    color: #394648;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;

    position: relative;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 50px;
}

.wpcf7-spinner{
	display:none;
}

.production h2:before {
    content: url(../../../assets/images/title-img.svg);
    position: absolute;
    left: -20px;
    top: -20%;
    z-index: -9;
}

.production-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    justify-content: space-between;
}

.production-content .product .product-img{
	margin-bottom:30px;
	border-radius:20px;
	height:350px;
	display:flex;
	justify-content:center;
	overflow:hidden;
}

.production-content .product .product-img img{
	width:100%;
	height:100%;
	display:block;
}

.production-content .product:nth-child(1) .product-img img{
	min-width: 107%;
    height: 107%;
}

.production-content .product h3 {
    text-align: center;
    color: #394648;
    text-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.01);
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;

    margin-top: 35px;
    margin-bottom: 15px;
}

.product-content {
    display: grid;
    gap: 10px;
	padding-left:12px;
    justify-content: center;
    align-items: center;
    justify-self: flex-start;
    /*grid-template-columns: min-content 1fr;*/
}

.product-content ul {
    list-style: none;
}

.product-content ul li {
    display: grid;
    grid-template-columns: min-content 1fr;
    gap: 10px;

    color: #394648;
    text-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.01);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.product-content .content-img {
    width: 10px;
    display: grid;
    justify-content: center;
    align-items: center;
}

.product-content .content-sign{
	color:#83CB31;
}

.production a.order-production {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    border-radius: 100px;
    background: #83CB31;
    text-decoration: none;

    padding: 20px 105px;
    margin: 0 auto;
    margin-top: 50px;
    display: block;
    width: fit-content;
}

.production a.order-production:hover {
    background: #394648;
}

.production .wrap-product-content{
    justify-content:start;
    align-items: start;
    display: flex;
	flex-direction:column
}


 .order-btn {
        background: #83CB31;
        color: white;
        border: none;
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
        margin-top: 10px;
        transition: background 0.3s;
    }

    .order-btn:hover {
        background: #45a049;
    }

    .order-form-wrapper {
        margin-top: 15px;
        padding: 20px;
        background: #f9f9f9;
        border-radius: 8px;
        border-left: 4px solid #83CB31;
    }

    .product-order-form {
        margin: 0;
    }

    .product-order-form .wpcf7-form-control {
        width: 100%;
        padding: 8px 12px;
        margin: 5px 0;
        border: 1px solid #ddd;
        border-radius: 4px;
		box-sizing:border-box;
    }

    .product-order-form .wpcf7-submit {
        background: #83CB31;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    .product-order-form .wpcf7-submit:hover {
        background: #45a049;
    }

@media (min-width: 1024px) and (max-width: 1279px) {
	.production-content .product .product-img{
		height:600px;
	}
}

@media screen and (max-width: 1023px) {
	.production-content .product .product-img{
		height:500px;
	}
}


@media (min-width: 751px) and (max-width: 1024px) {
    .production-content{
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media screen and (max-width: 750px) {
    .production a.order-production{
        width: calc(100% - 210px);
    }
    .production-content{
        grid-template-columns: 1fr;
        gap: 40px;
    }
}