.gutenberg.picture-cards .container{
	max-width: 1350px;
	margin: 0 auto;
	width: 100%;
}

.gutenberg.picture-cards .picture-cards__text {
	max-width: 930px;
	padding: 0 20px;
	margin: 0 auto 50px auto;
}
.gutenberg.picture-cards .picture-cards__text h2 {
	font-family: Montserrat;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 42px; /* 131.25% */
	letter-spacing: 0.32px;
	color: #26333C;
	margin-bottom: 20px;
}
.gutenberg.picture-cards .picture-cards__text p {
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	color: #26333C;
	margin-bottom: 12px;
}

.gutenberg.picture-cards .picture-cards__items {
	display: flex;
	flex-wrap: wrap;
	row-gap: 40px;
	margin-bottom: 40px;
}

.gutenberg.picture-cards .picture-cards__items .col-4	{
	width: 33.3333%;
	padding: 0 15px;
}

.gutenberg.picture-cards .picture-cards__item {
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	height: 100%;
}
.gutenberg.picture-cards .picture-cards__img{
	overflow: hidden;
}

.gutenberg.picture-cards .picture-cards__img img {
	width: 100%;
	height: auto;
	max-width: 100%;
	border-radius: 10px;
	transition: .5s;
}
.gutenberg.picture-cards .picture-cards__img:hover img{
	transform: scale(1.1);
}

.gutenberg.picture-cards .picture-cards__title {
	margin-top: 20px;
	font-family: Montserrat;
	color: #26333C;
	
}

.gutenberg.picture-cards .picture-cards__title h3{
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px; 
	margin-bottom: 16px;
}
@media (max-width: 991px) {
	.gutenberg.picture-cards .picture-cards__items .col-4 {
		width: 50%;
	}
}

@media (max-width: 768px) {
	.gutenberg.picture-cards .picture-cards__items .col-4 {
		width: 100%;
	}
}