body .wrapper-container {
	max-width: calc(1609px + 64px)!important;
	width: 100%!important;
	margin: 0 auto;
	padding: 0 32px;
}

@media screen and (max-width: 998px) {
	body .wrapper-container {
		padding: 24px;
	}
}

@media screen and (max-width: 768px) {
	body .wrapper-container {
		padding: 16px;
	}
}

.v-products {
	display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
  row-gap: 40px;
}

.v-products__item {
	max-width: calc(100% / 3 - 40px);
  width: 100%;
  margin: 0 20px;
	padding: 24px 34px;
	border: 0.9px solid #5C6972;
	display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.v-products__item .thumbnail {
	height: 260px;
	width: 100%;
	margin-bottom: 20px;
}

.v-products__item .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.v-products__item p {
	color: #000;
	font-family: Montserrat Alternates;
	font-size: 21px;
	font-weight: 400;
	line-height: 26.17px;
	text-align: center;
	margin: 0;
}

.v-products__item .categories {
	font-family: 'Geologica', sans-serif;
	font-size: 20px;
	font-weight: 100;
	line-height: 26.21px;
	text-align: center;
	color: #91825D;
	text-transform: capitalize;
}

.v-products__item .price {
	font-family: Montserrat Alternates;
	font-size: 21px;
	font-weight: 400;
	line-height: 26.17px;
	text-align: center;
	margin-bottom: 16px;
}

.v-products__item .order-button {
	margin-top: auto;
	font-family: Montserrat Alternates;
  font-size: 15.34px;
  font-weight: 400;
  line-height: 18.7px;
  text-align: center;
  color: #fff;
	border: 1px solid #3B63A4;
  background: #3B63A4;
  padding: 16px;
  position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 206px;
	transition: all 0.3s ease;
}

.v-products__item .order-button:hover {
	background: white;
	color: black;
}

.v-products-mobile {
	display: none;
}

.swiper.v-swiper-products-new {
	margin: 0 40px;
}

.v-products-mobile .swiper-button-prev {
	left: 0;
}

.v-products-mobile .swiper-button-next {
	right: 0;
}

.v-products-mobile .swiper-slide {
	height: auto!important;
}

@media screen and (max-width: 998px) {
	.v-products {
		display: none;
	}
	.v-products-mobile {
		display: block;
	}
	
	.v-products {
		margin: 0;
	}
	
	.v-products__item {	
		max-width: 100%;
		margin: 0;
		padding: 16px;
	}
	
	.v-products__item .order-button {
		width: fit-content;
		padding: 16px 24px;
	}
	
	.v-products__item .thumbnail {
		width: 100%;
		height: 138px;
	}
	
	.v-products__item p {
		font-size: 16px;
	}
	
	.v-products__item .categories {
		font-size: 16px;
	}
	
	.v-products__item .price {
		font-size: 16px;
	}
}