@media screen and (max-width:1025px){
	.custom-form input::placeholder,
	.custom-form textarea::placeholder,
	.custom-form select{
		font-size: 14px !important;
	}
	.custom-form input,
	.custom-form select,
	.custom-form textarea{
		padding: 10px !important;
	}
	.custom-form input[type="submit"]{
		font-size: 14px !important;
		padding: 12px 20px !important;
	}
	.custom-form select{
		padding: 11px 10px !important;
	}
	.form-note{
		font-size: 14px !important;
	}
	.custom-form .row{
		margin-bottom: 12px;
		gap: 12px;
	}
}
@media screen and (max-width:768px){
	.custom-form input,
	.custom-form select,
	.custom-form textarea{
		padding: 8px !important;
	}
	.custom-form select{
		padding: 10px 8px !important;
	}
	.custom-form .row{
		margin-bottom: 10px;
		gap: 10px;
	}
}
@media screen and (max-width:481px){
	.custom-form .col {
	  width: 100%;
	}
	.custom-form .row{
		flex-wrap: wrap;
	}
}