@media (min-width: 0em) {

	*, *::before, *::after {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		vertical-align: top;
	}
	html {
		font-size: 14px;
	}
	body {
		font-family: "museo-sans", sans-serif;
		color: #54585A;
		background-color: #fff;
		overflow: hidden;
	}

	#required-field {
		margin: 0 0 10px 0;
		padding: 0;
		line-height: 24px;
		font-size: 12px;
		color: #54585a;
	}
	p.error {
		padding: 10px 10px 0 10px;
		color: #c00;
	}

	form button {
		border: none;
		padding: 1rem;
		background: #031736;
		color: #fff;
	}

	form button{
		background-color: #ce0f69;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: none;
    transition: all .25s ease-in-out;
    cursor: pointer;
		margin-top: 1rem;
	}

	h3 {
		text-transform: uppercase;
	    text-align: center;
	    color: #002D72;
	    font-weight: 800;
	    font-size: 1.125rem;
	}

	.form-field {
		display: block;
		position: relative;
	}
	.form-field ~ .form-field {
		margin-top: 10px;
	}
	.form-field.row-split {
		float: left;
		margin: 0;
		padding: 0 5px 10px 0;
		width: 50%;
	}
	.form-field.row-split + div,
	.form-field.row-split + div + p {
		float: left;
	}
	.form-field.row-split + div + .form-field.row-split {
		padding: 0 0 10px 5px;
	}
	.form-field:not(.row-split) {
		clear: both;
	}
	.form-field:not(.pd-checkbox) input {
		display: block;
		margin: 0;
		border: 2px solid #031736!important;
		border-radius: 4px;
		padding: 12px 8px 0;
		width: 100%;
		height: 44px;
		font-size: 16px;
		color: #54585a;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		-webkit-transition: all 0.25s;
		transition: all 0.25s;
	}
	.form-field select {
		height: 44px;
		width: 100%;
   		border: 2px solid #031736;
   		border-radius: 4px;
   		background-color: #fff;
	}
	.form-field:not(.pd-checkbox) input:focus {
		border: 2px solid #00a9e0;
		outline: none;
		box-shadow: none !important;
	}
	.form-field textarea {
		display: block;
		margin: 0;
		border: 2px solid #031736;
		padding: 12px 8px 0;
		width: 100%;
		height: 144px;
		font-size: 16px;
		color: #54585a;
		resize: none !important;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		-webkit-transition: all 0.25s;
		transition: all 0.25s;
	}
	.form-field textarea:focus {
		border: 2px solid #00a9e0;
		outline: none;
		box-shadow: none !important;
	}
	.form-field:not(.pd-checkbox) span {
		display: block;
		margin: 0;
		padding: 0 0 0 12px;
		line-height: 48px;
		font-size: 16px;
		font-weight: 500;
		color: #7c878e;
		pointer-events: none;
		position: absolute;
		top: 0;
		left: 0;
		-webkit-transition: all 0.25s;
		transition: all 0.25s;
	}
	.form-field.has-val span,
	.form-field *:focus + span {
		line-height: 24px;
		font-size: 12px;
		color: #00a9e0;
	}

	.form-field.pd-checkbox {
	    width: 100%;
	    border-radius: 4px;
	    background-color: #fff;
	    padding-left: .5rem;
	}
	.form-field.pd-checkbox span {
		font-size: 16px;
	}

	.form-field.pd-checkbox span.value {
	    margin-top: 30px;
	    position: relative;
	}
	.form-field.pd-checkbox span.value > span {
		padding-right: 2rem;
	}

	.form-field.pd-checkbox span.value label.inline {
	    position: relative;
	    left: 5px;
	    top: -4px;
	}

	/* Collapse Form */
	body.collapse form > * {
		display: none;
	}
	body.collapse form .form-field.email {
		display: block;
	}

}
