.pg_homePhone {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr 1fr auto;
	padding-top: 15px;
	background: #fff;
	border-radius: 25px;
}

.pg_homePhone_banner {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.pg_homePhone_contentColumn {
	padding: 20px;
}

.pg_homePhone_contentColumn section {
	display: flex;
	flex-direction: column;
	height: auto;
}

.pg_homePhone_contentColumn section:not(:last-child) {
	margin-bottom: 15px;
}


.pg_homePhone_contentColumn section svg {
	margin-right: 5px;
}

.pg_homePhone_contentColumn section span {
	font-size: 16px;
	font-weight: bold;
	display: flex;
	align-items: center;
}

.pg_homePhone_form {
	margin-top: 15px;
	padding: 30px;
	background: #fff;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
}

.pg_homePhone_form section {
	color: #001D8C;
	font-size: 24px;
	font-family: Montserrat-SemiBold, sans-serif;
	margin-bottom: 30px;
}

.pg_homePhone_form form {
	display: flex;
	flex-direction: column;
}

.pg_homePhone_form input {
	margin-right: 0;
	margin-bottom: 15px;
	padding: 10px;
	border-radius: 10px;
	outline: none;
	border: 1px solid rgb(217 217 217);
	font-size: 16px;

	height: 48px;
    width: 251px;
}

input::placeholder {
    color: rgb(217, 217, 217);
    opacity: 1;
}

.pg_homePhone_form a {
	font-size: 14px;
	border-radius: 25px;
	padding: 15px 59px;
}

.pg_homePhone_streetInput, .pg_homePhone_phoneInput {
	width: 100%;
}

.pg_homePhone_houseInput {
	width: 100%;
}

@media (min-width: 998px) {
	.pg_homePhone_streetInput, .pg_homePhone_phoneInput {
		width: 200px;
	}

	.pg_homePhone_houseInput {
		width: 100px;
	}

	.pg_homePhone_form input {
		margin-right: 10px;
		margin-bottom: 0;
	}

	.pg_homePhone_contentColumn {
		padding: 50px 30px 0;
	}

	.pg_homePhone_contentColumn section {
		height: 150px;
	}

	.pg_homePhone_contentColumn section:not(:last-child) {
		margin-bottom: 0;
	}

	.pg_homePhone {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 1fr;
	}
}

@media (min-width: 998px) {
	.pg_homePhone_form form {
		flex-direction: row;
	}
}