.map {
    width: 100%;
    height: 555px;
}

.getInTouch {
    box-sizing: border-box;
}


.addressAndContactContainer {
    display: flex;
    margin-bottom: 32px;
	gap: 30px;
}


.mapAndContactContainer {
	display: flex;
	gap: 30px;
}

.addressAndContactContainer div.links{
	flex-grow: 1;
	background-color: #00365F;
	color: #FFFFFF;
	padding: 32px;
	border-radius: 16px;
	height: 100%;
	box-sizing: border-box;
	line-height: 1.4em;
}

.addressAndContactContainer div.links h2{
	color: #009FE3;
	font-size: 32px;
	font-weight: normal;
}

.addressAndContactContainer div.links div.buttons{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 30px;
}

@media(max-width: 1000px) {
	.addressAndContactContainer div.links div.buttons{
		grid-template-columns: 1fr;
	}
}

.addressAndContactContainer div.links div.buttons a{
	color: #009FE3;
	background-color: white;
	display: inline-block;
	font-size: 20px;
	padding: 25px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	font-family: 'Gotham Rounded';
	cursor: pointer;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition-property: background-color;
	transition-duration: 0.1s;
}

.addressAndContactContainer div.links div.buttons a:hover{
	background-color: #eee;
}

.addressAndContactContainer div.links div.buttons a img{
	width: 120px;
	display: block;
	margin: 0px auto 20px;
}

.contactForm {
    background-color: #00365F;
    padding: 32px;
    border-radius: 16px;
    width: 100%;
}

.contactForm h1 {
    font-size: 32px;
    font-weight: normal;
}

.contactForm label, .contactForm h1 {
    color: #009FE3;
}

.contactForm label {
    font-size: 21px;
}

.contactForm .live {
    display: flex;
    margin-top: 16px;
}

.contactForm .live div:first-child {
    min-width: 100px;
}

.contactForm .live div:nth-child(2) {
    flex-grow: 1;
}

.contactForm input[type="text"], .contactForm input[type="email"], .contactForm textarea {
    border-radius: 11px;
    border: none;
    padding: 16px;
    resize: none;
    width: 100%;
    box-sizing: border-box;
}

.contactForm textarea {
    height: 100px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services > div {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

@media(max-width: 1000px) {
    .addressAndContactContainer {
        flex-direction: column;
    }
	.mapAndContactContainer	 {
		flex-direction: column;
	}

    .contactForm {
        margin-right: 0px;
        width: unset;
        margin-top: 32px;
    }

    div.recaptchaContainer {
        display: block;
    }
}

.serviceText {
    margin: 20px 0 10px 0;
}

.contactForm label.labelCustom {
    font-size: unset;
    color: white;
}

.pretty {
    font-size: 18px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.pretty .state label:before {
    background-color: white;
    border-radius: 4px;
}

.submitButton {
    text-align: right;
}

.submitButton input {
    border: none;
    background-color: #009FE3;
    font-size: 18px;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 16px;
    font-weight: bold;
}

.submitButton input:hover {
    background-color: #0086CA;
}

.recaptchaContainer {
    margin-top: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.g-recaptcha {
    overflow: hidden;
}