section.services .gallery-grid {
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	display: grid;
	gap: 24px;
}

section.services h1 {
	color: var(--ColorGreen);
	font-family: var(--Barlow);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

section.services .header h2 {
	color: var(--ColorGreen);
	text-align: center;
	font-family: var(--Barlow);
	/* font-size: 45px; */
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 0;
}

section.services .header h3 {
	color: var(--ColorGreen);
	text-align: center;
	font-family: var(--Barlow);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 0;
}

section.services .gallery-item img {
	width: 100%;
	height: 100%;
	max-height: 372px;
	object-fit: cover;
	border-radius: 8px;
	cursor: pointer;
	border-radius: 30px;
	transition: transform 0.2s ease-in-out;
}

section.services .accordion {
	display: flex;
	flex-direction: column;
	gap: 24px;
	height: 100%;
}

section.services button.accordion-button.collapsed {
	gap: 16px;
	border-radius: 15px;
	border: 1px solid #018750;
	background: #fff;
}

section.services
	.accordion-item:first-of-type
	> .accordion-header
	.accordion-button {
	border-top-left-radius: 15px !important;
	border-top-right-radius: 15px !important;
}

section.services
	.accordion-item:last-of-type
	> .accordion-header
	.accordion-button.collapsed {
	border-bottom-right-radius: 15px !important;
	border-bottom-left-radius: 15px !important;
}

section.services .accordion-item {
	border-radius: 15px;
	border: 1px solid #018750;
	background: #fff;
	margin-top: 0;
	/* height: 100%; */
}

section.services .accordion-item:first-of-type {
	margin-top: 0;
}

section.services .accordion-button:focus {
	box-shadow: unset;
}

section.services button.accordion-button.collapsed,
section.services button.accordion-button {
	min-height: 105px;
	padding: 30px;
	border: 0;
}

section.services .accordion-button h3 {
	color: #212121;
	font-family: var(--Barlow);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

section.services .accordion-button:not(.collapsed) {
	background-color: unset;
	box-shadow: unset;
}

section.services .accord-box .row {
	gap: 24px 0;
}

section.services .accordion-button.static {
	color: #212121;
	font-family: var(--Barlow);
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	height: 105px;
	padding: 30px;
}

section.services .accordion-button.static::after {
	display: none;
}

section.services .accordion-body ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 0;
	margin-bottom: 0;
}

section.services .accordion-body ul li {
	color: #212121;
	font-family: var(--Lato);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

section.services .accordion-body {
	padding: 0 30px 30px;
	text-align: justify;
}

/* section.services .accordion-body ul li {
        margin-bottom: 10px;
    } */

section.services .accordion-body ul li:last-of-type {
	margin-bottom: 0;
}

section.services .accordion-item a.subfield-link {
	color: #018750;
	font-family: var(--Lato);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: unset;
}

section.services .accordion-item a.subfield-link:hover {
	color: #000;
}

section.services .media {
	display: flex;
	align-items: center;
}

@media (min-width: 1500px) {
	section.services .gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
	}
}

@media (max-width: 1499px) {
	section.services .gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	}
}

@media (max-width: 1199px) {
	section.services .accordion-item {
		margin-bottom: 0;
		margin-top: 0;
	}

	section.services .media {
		display: flex;
		align-items: center;
		flex-direction: column-reverse;
		gap: 60px;
	}
}

@media (max-width: 575px) {
	section.services .gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	section.services button.accordion-button.collapsed {
		display: flex;
		gap: 10px;
	}
}
