.whatwedo {
	 text-align: center;
	 padding: var(--space-2);
	 background: var(--primary);
}
 .whatwedo .modal {
	 text-align: left;
	 z-index: 2;
}
 .whatwedo .modal .whatwedo__photo {
	 height: 500px;
}
 .whatwedo__title {
	 color: var(--primary);
	 font-family: var(--lovelace);
}
 .whatwedo__pretitle {
	 font-size: var(--font-size-18);
	 text-transform: uppercase;
}
 .whatwedo__grid {
	 display: grid;
	 grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	 grid-auto-flow: dense;
	 gap: 2rem;
}
 .whatwedo__grid.main_whatwedo .whatwedo__photo {
	 height: 400px;
}
 .whatwedo__item {
	 display: flex;
	 flex-flow: column;
	 align-items: center;
	 cursor: pointer;
}
 .whatwedo__item.is-hidden {
	 display: none;
}
 .whatwedo__photo {
	 display: block;
	 border-radius: var(--rounded-sm);
	 overflow: hidden;
	 position: relative;
	 width: 100%;
	 height: 250px;
	 background: var(--yellow);
}
 .whatwedo__photo img {
	 position: absolute;
	 top: 0;
	 left: 0;
	 height: 100%;
	 width: 100%;
	 object-position: center;
	 object-fit: cover;
	 border: 0;
	 transition: var(--transition);
}
 .whatwedo__photo:hover img {
	 transform: scale(1.1);
}
 .whatwedo__name {
	 color: var(--primary);
}
 @media (min-width: 992px) {
	 .whatwedo__grid.main_whatwedo {
		 grid-template-columns: repeat(3, minmax(0, 1fr));
		 gap: 4rem;
	}
	.whatwedo__grid.main_whatwedo .whatwedo__item:first-child {
        grid-column: 1 / -1;
    }
	 .whatwedo__grid.main_whatwedo .whatwedo__photo {
        height: 500px;
    }
}

.whatwedo__title {
	margin: 0 auto;
	font-family: var(--font-regular);
	font-weight: 300;
	line-height: 1.05;
	letter-spacing: -0.05em;
	color: var(--secondary-40);
}

.whatwedo__text {
	margin: 0 auto;
	color: var(--white);
	font-size: 1rem;
	line-height: 1.7;
}

.whatwedo .label {
    border-color: var(--white);
    color: var(--white);
}

.whatwedo .regular_grid {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	gap: 20px;
	margin-top: 8px;
	width: 100%;
}

.whatwedo .regular_grid__item {
	height: 100%;
	flex-grow: 1;
  	width: 100%;
}

.whatwedo .regular_grid__content {
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: 100%;
	padding: 28px 26px;
	border-radius: 24px;
	background: var(--primary-05);
	text-align: left;
	transition: var(--transition);
}

.whatwedo .regular_grid__content:hover {
	background: var(--secondary-30);
	min-height: 320px;
}

.whatwedo .regular_grid__content img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.whatwedo .regular_grid__number {
	color: var(--primary);
	font-family: var(--lovelace);
	font-size: 30px;
	line-height: 1;
}

.whatwedo .regular_grid__text {
	font-size: 16px;
	line-height: 1.65;
}

.whatwedo .labels {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: auto;
}

.whatwedo .regular_grid__text,
.whatwedo .labels {
	display: flex;
}

.whatwedo .regular_grid__content:hover .regular_grid__text,
.whatwedo .regular_grid__content:hover .labels {
	display: flex;
}

.whatwedo .labels .label {
    color: var(--primary);
    border: 1px solid var(--primary);
	margin: 0px;
}

@media (min-width: 992px) {
	.whatwedo .regular_grid {
		gap: 28px;
	}
	.whatwedo .regular_grid__item {
		width: calc(33% - 1rem);
	}

	.whatwedo .regular_grid__content {
		min-height: 220px;
		justify-content: end;
	}
	.whatwedo .regular_grid__text,
	.whatwedo .labels {
		display: none;
	}
	.whatwedo .regular_grid__number {
		font-size: 40px;
	}
}
