.abt__content {
	display: grid;
	grid-template-columns: 50% 50%;
    text-align: center;
    align-items: center;
}

.abt__content--wrap {
    border: 8px solid #008062;
    margin: 25px;
	padding: 15px;
	text-align: center;
}

@media screen and (max-width: 1000px) {
    .abt__content {
        grid-template-columns: 100%;
	}
}

.abt--img {
	max-height: 100%;
	max-width: 100%;
}

.abt__link {
	text-decoration: underline;
	color: #00a246;
}

.abt__grid {
    grid-auto-columns: 40% 60%;
}

.abt__content--wrap h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px; /* Adjust to be under the text */
    width: 100%;
    height: 2px;
    background-color: #008062;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-expand 2s ease forwards;
}

.map__widget--lrg{
	display: inline;
}
.map__widget--sml{
	display: none;
}
.map__widget--xsml{
	display: none;
}

@media screen and (max-width: 655px) {
	.map__widget--lrg{
		display: none;
	}
	.map__widget--sml{
		display: inline;
	}
}

@media screen and (max-width: 430px) {
	.map__widget--sml{
		display: none;
	}
	.map__widget--xsml{
		display: inline;
	}
}

.opentimes__wrapper, .address__wrapper, .contact__form, .history__wrapper {
	align-items: center;
    border: 8px solid #008062;
    margin: 25px;
	padding: 15px;
	text-align: center;
}

.history__wrapper {
	grid-column: span 2;
	justify-self: center;
}

.form--grid {
    display: grid;
    justify-content: center;
}

@media screen and (min-width: 655px) {
	.form--grid {
		grid-template-columns: 20% 50%;
	}
}

@media screen and (max-width: 655px and min-width: 430px) {
	.form--grid {
		grid-template-columns: 50% 50%;
	}
}

#contact-form label{
	grid-column: 1;
	padding-right: 25px;
	text-align: right;
}

input#contact, #contact-form text area{
	grid-column: 2;
}

.g-recaptcha {
    grid-column: 1 / 3;
    justify-self: center;
    padding: 15px;
}