//	Free Estimate Form
.free-estimate-form {
	background: $base-accent-color;
	color: $white;
	padding: 1.5em;
	margin: 2em auto;
	max-width: 600px;

	p.title {
		color: $base-accent-color;
		font-weight: 500;
		font-size: 1.2em;
		letter-spacing: -1px;
		text-align: center;

		@media (min-width: $large-screen){
			font-size: 1.25em;
		}
	}

	p.sub-title {
		color: #022601;
		font-weight: 500;
		font-size: 1.2em;
		letter-spacing: -1px;
		text-transform: capitalize;
		margin-bottom: 1rem;

		@media (min-width: $large-screen){
			font-size: 1.5em;
		}

		@media (min-width: $wide-container){
			font-size: 2em;
		}
	}

	form.wpcf7-form {
		padding-bottom: 0;

		textarea {
//			height: 90px;
			resize: none;
			border-radius: 0;
		}

		input {
			border-radius: 0;

			&[type=submit] {
				background: #25594A;
				color: $white;

				&:hover {
//					transform: translateY(0);
				}
			}
		}

		p {
			margin-bottom: 0;
		}
	}
}