/* Elementor section/container CSS classes */

.image-text .elementor-heading-title,
.image-text h1,
.image-text h2 {
	font-weight: 500 !important;
}

.image-text .no-p-margin p,
.image-text .elementor-widget-container .no-p-margin p {
	font-family: "new-spirit", serif !important;
	font-weight: 500 !important;
}

.button-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
	row-gap: 24px;
	margin-bottom: 24px;
}

@media only screen and (max-width: 830px) {
	.button-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media only screen and (max-width: 500px) {
	.button-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 16px;
	}
}

.button-grid p {
	margin: 0 !important;
}

.button-grid .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	box-sizing: border-box;
	background: #39323b;
	color: #fbf8f4 !important;
	font-family: "itc-avant-garde-gothic-pro", sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: box-shadow 0.2s;
}

.button-grid .btn:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 600;
	box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.3);
	color: #fbf8f4 !important;
}

.elementor-btn a {
    transition: all 0.2s;
    text-transform: uppercase;
}

.elementor-btn a:hover {
    font-weight: 500 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.3) !important;
	color: #fbf8f4 !important;
}

