@import url('../reset.css');
@import url('../defaults.css');

/*******************************************
:--- General ---:
*******************************************/

html {
    scroll-behavior: auto !important;
}

body, input, textarea {

}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 1.5em;
}

h1,
div.page-title {
	font-size: 3rem;
}

h2 {
	font-size: 1.75rem;
    font-family: var(--tiempos-bold);
    margin: 0 0 0.5em;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin: 0 0 1.5em;
    font-size: 1.063rem;
    color: #000;
    letter-spacing: 0.25px;
    line-height: 1.6;
}

blockquote {
	background: #f6f6f6;
	padding: 2em;
}

blockquote p {
	margin: 0;
}

a, a:active {
	outline: none;
}

a {
    transition: box-shadow 500ms cubic-bezier(.215, .61, .355, 1), color 500ms cubic-bezier(.215, .61,.355, 1);
    box-shadow: inset 0 -1px #15a1e5;
    color: #000;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
}

a:hover,
a:focus,
a:active {
    box-shadow: inset 0 -0.5em rgba(21, 161, 229, .4);
    color: #000;
}

a.bypass-block {
	background: #000;
	color: #fff;
	display: block;
	text-align: center;
	width: 100%;
}

/*******************************************
:--- Reusable ---:
*******************************************/

.live-chat, 
.download, 
.focus {
	cursor: pointer; 
}

.hide {
	display: none;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col, .no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.two-columns {
    column-count: 2;
}

/*******************************************
:--- Header ---:
*******************************************/

header.site-header {
	background: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
}

header.site-header .site-logo {
    display: block;
    max-width: 370px;
}

header.site-header .site-logo img {
    width: 100%;
}

.nav-column {
    text-align: right;
    margin-top: auto;
    margin-bottom: auto;
}

/* Desktop Menu & Hover States */

nav.site-nav .menu-item {
    display: inline-block;
    padding-right: 70px;
}

nav.site-nav .menu-item span,
nav.site-nav .menu-item span a {
    color: #767676;
    font-size: 0.875rem;
    text-decoration: none;
    font-family: var(--trade-gothic-roman);
    font-weight: 700;
    transition: all 300ms ease 0ms !important;
    box-shadow: none !important;
    text-transform: uppercase;
}

nav.site-nav .menu-item span a.nav-phone {
    font-size: 0.938rem;
}

nav.site-nav .menu-item span:hover,
nav.site-nav .menu-item span:focus,
nav.site-nav .menu-item span:active,
nav.site-nav .menu-item span a:hover,
nav.site-nav .menu-item span a:focus,
nav.site-nav .menu-item span a:active {
    color: #000;
    cursor: pointer;
    text-decoration: none;
}

/*******************************************
:--- Buttons ---:
*******************************************/

.btn {
	box-shadow: none !important;
    color: #fff;
    font-family: var(--trade-gothic);
    font-size: 1rem;
    padding: 12px 22px;
    border-radius: 30px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: all 300ms ease 0ms;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
}

.btn:hover,
.btn:focus,
.btn:active {
    background: #000;
	color: #fff;
	text-decoration: none !important;
}

.btn-red {
	background-color: var(--primary-red);
	color: #fff;
}

.btn-blue {
	background-color: var(--primary-blue);
	color: #fff;
}

.btn-white {
	background-color: #fff;
	color: #000;
}

/*******************************************
:--- Hero Section ---:
*******************************************/

.hero-wrap {
	background: var(--primary-blue);
	background-position: top center;
	background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
	position: relative;
}

.hero-wrap:before {
	background: linear-gradient(90deg, rgba(0,0,0,.6), rgba(119,119,119,0));
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.hero-wrap .hero-content {
    color: #fff;
    display: flex;
    flex-flow: column;
    height: 500px;
    /* justify-content: end; */
    padding: 0;
}

.hero-wrap .hero-content h1 {
    color: #fff;
    font-family: var(--tiempos-bold);
    font-size: 2.625rem;
    line-height: 1.3;
    margin-top: 40px;
    margin-bottom: 20px;
}

.hero-wrap .hero-content h2 {
    font-family: var(--trade-gothic);
    color: #fff;
    font-size: 1.313rem;
	line-height: 1.25;
    margin-bottom: 30px;
}

.hero-wrap .hero-content .btn {
    width: fit-content;
}

.hero-wrap.hero-alt .hero-content {
    height: 600px;
    justify-content: end;
}

.hero-wrap.hero-alt .hero-content h1 {
    font-family: var(--trade-gothic-bold-condensed);
    font-size: 4.25rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    margin-top: 40px;
}

.hero-wrap.hero-alt .hero-content .btn {
    margin: 0 auto;
}

.hero-wrap.hero-alt:before {
    background: linear-gradient(90deg, rgba(0,0,0,.3), rgba(0,0,0,.3));
}

/*******************************************
:--- Form ---:
*******************************************/

.form-section {
    background-color: var(--primary-blue);
}

.form-wrap {
    background: #fff;
    border-radius: 10px;
    margin-top: -250px;
    padding: 2.25rem;
    margin-bottom: 40px;
}

.form-wrap h2 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
    font-family: var(--tiempos-bold);
}

.form-wrap .form-blurb {
	margin-bottom: 2rem;
    color: #000;
    font-size: 1.063rem;
    line-height: 25px;
}

.form-wrap .form-blurb a {
    text-decoration: none;
    color: #000;
}

/* INPUT WRAPS */

.multistep-fields {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
    clear: both;
}

.multistep-fields .input-wrap {
	flex-grow: 1;
	width: 45%;
}

.intl-tel-input {
    margin: 0;
    width: 100%;
}

/* BUTTONS */

.form input.form-control {
    height: auto;
    font-size: 1.25rem;
    line-height: 1;
    white-space: nowrap;
    border-radius: 0.1px;
    display: inline-block;
    text-align: left;
    width: auto;
}

/* Next Button */

.form input#next {
    box-shadow: none !important;
    background: var(--primary-blue);
    color: #fff;
    font-family: var(--trade-gothic);
    font-size: 1rem !important;
    padding: 14px 26px;
    float: right;
    border-radius: 30px !important;
    border-color: transparent !important;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: all 300ms ease 0ms;
    text-transform: uppercase;
    width: auto;
}

.form input#next:hover,
.form input#next:focus,
.form input#next:active {
    color: #fff;
    text-decoration: none;
    background: #000;
    outline: none;
    border-color: transparent;
}

/* Previous Button */

.form input#previous {
    box-shadow: none !important;
    background: #fff;
    color: var(--primary-blue);
    font-family: var(--trade-gothic);
    font-size: 1rem !important;
    padding: 14px 26px;
    float: left;
    border-radius: 30px !important;
    border-color: var(--primary-blue) !important;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: all 300ms ease 0ms;
    text-transform: uppercase;
    width: auto;
}

.form input#previous:hover,
.form input#previous:focus,
.form input#previous:active {
    color: #fff;
	background: var(--primary-blue);
    text-decoration: none;
}

/* Request Button */

.form input#request {
    box-shadow: none !important;
    background: var(--primary-blue);
    border: 1px solid transparent;
    color: #fff;
    font-family: var(--trade-gothic);
    font-size: 1rem;
    padding: 14px 26px;
    float: right;
    border-radius: 30px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: all 300ms ease 0ms;
    text-transform: uppercase;
    width: auto;
}

.form input#request:hover {
    color: #fff;
    text-decoration: none;
    background: #000;
    outline: none;
    border-color: transparent;
}

.form #step3 :focus::-webkit-input-placeholder {
    opacity: 0.5;
}

.form #step3 :-ms-input-placeholder {
    /* IE 10+ */
    color: #5a5a5a;
    transition: opacity 250ms ease-in-out;
}

.form #step3 :focus:-ms-input-placeholder {
    opacity: 0.5;
}

.form #step3 ::-moz-placeholder {
    /* Firefox 19+ */
    color: #5a5a5a;
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

.form #step3 :focus::-moz-placeholder {
    opacity: 0.5;
}

.form #step3 :-moz-placeholder {
    /* Firefox 4 - 18 */
    color: #5a5a5a;
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

.form #step3 :focus:-moz-placeholder {
    opacity: 0.5;
}

/* Popover */

.popover .popover-arrow::after, 
.popover .popover-arrow::before {
	border-bottom-color: var(--secondary-yellow);
	border-top-color: var(--secondary-yellow);
}

.popover {
    background: var(--secondary-yellow);
    border: 1px solid var(--secondary-yellow) !important;
    color: #000;
    padding: 6px;
    text-align: center;
    box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.2);
}

.popover-body {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,
.bs-popover-bottom>.popover-arrow::after,
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,
.bs-popover-top>.popover-arrow::after {
    border-bottom-color: var(--secondary-yellow);
    border-top-color: var(--secondary-yellow);
}

/*******************************************
:--- Archa Form ---:
*******************************************/

/* MULTI-STEP */
.form.multi-step .step {
	margin: 0 0 20px !important;
}

.form.multi-step .step:after {
	display: none;
}

.form.multi-step .input-wrap input:focus,
.form.multi-step .select-wrap select:focus {
	outline: var(--primary-blue) solid 1px !important;
}

.form.multi-step .input-wrap {
	margin: auto !important;
}

.form.multi-step .input-wrap input {
    background: rgba(53, 76, 161, 0.05) !important;
    border: 1px solid var(--primary-blue) !important;
    border-radius: 7px !important;
	padding: 12px 15px !important;
}

.form.multi-step label {
	color: #000 !important;
	font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin: 0 0 10px !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.form.multi-step .select-wrap select {
    padding: 12px 60px 12px 15px !important;
    font-size: 1.125rem !important;
    display: block;
    background: rgba(53, 76, 161, 0.05) !important;
    border: 1px solid var(--primary-blue) !important;
    border-radius: 7px !important;
    position: relative;
    z-index: 4;
    cursor: pointer;
}

.form.multi-step .select-wrap::before {
    content: "\f0d7";
    font-size: 18px;
    font-weight: 900;
    color: #000;
    font-family: "Font Awesome 6 Pro";
    text-align: center;
    line-height: 48px;
    height: 50px;
    width: 48px;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form.multi-step #step3 {
	gap: 25px !important;
}

.form.multi-step #ai-opt-in,
.form.multi-step #sms-opt-in {
	align-items: flex-start !important;
	margin-bottom: 20px !important;
	width: 100% !important;
	clear: both;
}

.form.multi-step #sms-opt-in {
	margin-bottom: 10px !important;
}

.form.multi-step #ai-opt-in input,
.form.multi-step #sms-opt-in input {
	margin-top: 4px !important;
}

.form.multi-step #ai-opt-in label,
.form.multi-step #sms-opt-in label {
	font-size: 12px !important;
	font-weight: 400 !important;
	margin: 0 0 0 10px !important;
	letter-spacing: normal !important;
	line-height: 1.5 !important;
	text-transform: none !important;
}

.form.multi-step .international-link {
	display: none !important;
}

.form.multi-step .tcpa-multi-step {
	font-size: 12px !important;
	padding-top: 1.5em !important;
	margin: 0 !important;
	line-height: 1.5 !important;
    color: #767676 !important;
}

.form.multi-step .tcpa-multi-step a {
    color: #767676 !important;
}

.form.multi-step .privacy {
	font-size: 12px !important;
	padding-top: 18px !important;
	margin-bottom: 0 !important;
    color: #767676;
}

.form.multi-step .step-header {
    gap: 0 !important;
}

.form.multi-step .step-header div {
    float: left;
    text-align: center;
    width: 33.3333% !important;
    z-index: 2;
}

.form.multi-step .step-header div span {
    color: var(--primary-blue) !important;
    border: 2px solid var(--primary-blue) !important;
    border-radius: 50%;
    font-family: var(--tiempos-bold);
    font-size: 32px !important;
    line-height: 1.6;
    height: 56px;
    padding: 0 !important;
    text-align: center !important;
    width: 56px;
    min-height: 56px !important;
}

.form.multi-step .step-header div.active span {
    background: var(--primary-blue) !important;
    color: #fff !important;
}

.form.multi-step .step-header div.complete span {
    background: var(--primary-blue) !important;
    color: #fff !important;
}

.form.multi-step .step-header:after {
    background: var(--primary-blue) !important;
}

.form.multi-step span.error {
	color: var(--primary-red) !important;
}

.form.multi-step span.asterisk {
    color: var(--primary-red) !important;
}

/*******************************************
:--- Alt Form Styles ---:
*******************************************/

#form-layout-alt .form.multi-step .step-header div span {
    color: #fff !important;
    border: 2px solid #fff !important;
    background: var(--primary-blue) !important;
}

#form-layout-alt .form.multi-step .step-header div.active span {
    background: #fff !important;
    color: var(--primary-blue) !important;
}

#form-layout-alt .form.multi-step .step-header div.complete span {
    color: #fff !important;
    border: 2px solid #fff !important;
    background: var(--primary-blue) !important;
}

#form-layout-alt .form.multi-step .step-header:after {
    background: #fff !important;
}

#form-layout-alt h2,
#form-layout-alt p,
#form-layout-alt a {
    color: #fff;
}

#form-layout-alt a {
    box-shadow: none;
    text-decoration: underline;
    white-space: nowrap;
}

#form-layout-alt a:hover,
#form-layout-alt a:focus,
#form-layout-alt a:active {
    text-decoration: none;
}

#form-layout-alt .form.multi-step label,
#form-layout-alt .form.multi-step .tcpa-multi-step,
#form-layout-alt .form.multi-step .tcpa-multi-step a {
    color: #fff !important;
}

#form-layout-alt .form.multi-step .select-wrap select {
	background-color: #fff !important;
}

#form-layout-alt .form.multi-step .select-wrap::before {
    content: "\25BE";
    color: #000;
    text-align: center;
    height: 50px;
    width: 48px;
    z-index: 5;
    pointer-events: none;
}

#form-layout-alt .form.multi-step .input-wrap input {
	background-color: #fff !important;
}

#form-layout-alt .form.multi-step span.error {
    font-weight: 700;
    background-color: var(--secondary-yellow);
    color: #000 !important;
    padding: 3px 6px;
    font-size: 11px !important;
}

#form-layout-alt .form input#request,
#form-layout-alt .form input#next {
    background: #fff;
    color: #000;
}

#form-layout-alt .form input#request:hover,
#form-layout-alt .form input#request:focus,
#form-layout-alt .form input#request:active,
#form-layout-alt .form input#next:hover,
#form-layout-alt .form input#next:focus,
#form-layout-alt .form input#next:active {
    background: #000;
    color: #fff;
}

#form-layout-alt .form input#previous {
    background: var(--primary-blue);
    color: #fff;
    border-color: #fff !important;
}

#form-layout-alt .form input#previous:hover,
#form-layout-alt .form input#previous:focus,
#form-layout-alt .form input#previous:active {
    background: #fff;
    color: #000;
}

#form-layout-alt .form.multi-step .input-wrap input:focus,
#form-layout-alt .form.multi-step .select-wrap select:focus {
	outline: var(--secondary-yellow) solid 2px !important;
}

#form-layout-alt .form.multi-step span.asterisk,
#form-layout-alt .form.multi-step .privacy span {
    color: var(--secondary-yellow) !important;
}

/*******************************************
:--- Main Content ---:
*******************************************/

.main-content ul {
    margin: 0 0 2em 0;
}

.main-content ul li {
    list-style: disc;
    margin: 0 0 .5em 1em;
    color: #000;
}

.section {
	padding: 60px 0;
}

.benefits-section {
    background-color: #333;
    padding-top: 45px;
    padding-bottom: 20px;
}

.benefits-list {
    color: #fff;
    margin: 0 !important;
    padding-top: 20px;
}

.benefits-list > li {
    display: flex;
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin: 0 0 35px !important;
    padding: 0 !important;
    font-family: var(--trade-gothic);
    list-style: none !important;
    color: #fff !important;
}

.benefit-icon > i {
    font-size: 28px;
    width: 30px;
    font-family: "Font Awesome 6 Pro";
}

.benefits-section .benefit-icon > i {
    font-size: 38px;
    font-family: "Font Awesome 6 Pro";
}

.callout {
    padding: 45px;
    border-radius: 15px;
}

.callout p.message {
    font-family: var(--tiempos-bold);
    font-size: 1.375rem;
    line-height: 38px;
    color: #fff;
}

.callout .title {
    font-family: var(--tiempos-regular);
    font-size: 1.125rem;
    margin-bottom: 0;
    color: #fff;
}

.callout.bg-secondary-yellow .message,
.callout.bg-secondary-yellow .title {
    color: #000;
}

.section.background-image {
    background-color: #eee;
	background-position: top center;
	background-size: cover;
    margin: 0;
	position: relative;
    padding: 120px 0;
}

.concentrations .icon img {
    width: 60px;
}

.concentrations h3 {
    font-family: var(--tiempos-bold);
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.frame {
    padding: 40px 40px 20px 40px;
    border-radius: 15px;
    background-color: var(--secondary-yellow);
}

.frame img {
    margin-top: -80px;
}

/*******************************************
:--- Grid 50/50 Split ---:
*******************************************/

.container-fluid.grid-50-split {
	padding-right: 0;
	padding-left: 0;
}

.grid-50-content {
	height: 100%;
	max-width: 635px;
	padding: 80px 80px 80px 15px;
	margin: 0 0 0 auto;
}

.grid-50-content.right-side {
	padding: 80px 15px 80px 80px;
	margin: 0 auto 0 0;
}

.grid-50-img {
	background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 100%;
}

.testimonial-section blockquote {
    background-color: var(--primary-red);
    border-radius: 15px;
}

.testimonial-section.image blockquote {
    background-color: var(--primary-red);
    border-radius: 0 15px 15px 0;
}

.testimonial-section blockquote p {
    color: #fff;
    font-size: 1.4rem;
    font-family: var(--tiempos-bold);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-section blockquote p.testimonial-attribution {
    color: #fff;
    font-size: 1.063rem;
    font-family: var(--tiempos-regular);
    margin-bottom: 0;
}

.testimonial-section blockquote a {
    color: #fff;
    text-decoration: underline;
    box-shadow: none !important;
}

.testimonial-section blockquote a:hover,
.testimonial-section blockquote a:focus,
.testimonial-section blockquote a:active {
    color: #fff;
    text-decoration: none;
    box-shadow: none !important;
}

.testimonial-section .grid-50-img {
    border-radius: 15px 0 0 15px;
}

/*******************************************
:--- Footer ---:
*******************************************/

footer.page-footer {
	background: #fff;
    padding: 40px 0 55px;
}

.back-to-top__text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

#back2Top {
    position: absolute;
    top: -24px;
    right: 34px;
    border: 1px solid #000;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    transition: background-color 450ms cubic-bezier(.215, .61, .355, 1);
    align-items: center;
    background-color: #fff;
    display: flex;
    justify-content: center;
    padding: 0;
    z-index: 20;
    box-shadow: none !important;
}

#back2Top:hover,
#back2Top:focus,
#back2Top:active {
    background-color: #000;
}

#back2Top:hover svg path,
#back2Top:focus svg path,
#back2Top:active svg path {
    fill: #fff;
}

footer.page-footer .footer-wrapper {
    border-top: 3px solid #000;
    position: relative;
    padding-top: 40px;
}

footer.page-footer .footer-logo {
    display: block;
    max-width: 330px;
    margin-bottom: 20px;
}

footer.page-footer .footer-logo img {
    width: 100%;
}

footer.page-footer .address {
    color: #000;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 30px;
}

footer.page-footer a {
    color: #000;
    text-decoration: underline;
}

footer.page-footer span {
    color: #000;
    font-family: var(--tiempos-bold);
    font-size: 1.063rem;
}

footer.page-footer ul {
    margin: 0.25rem 0 0 0; 
}

footer.page-footer ul li {
    list-style-type: none;
    margin-bottom: 5px;
}

footer.page-footer a:hover,
footer.page-footer a:focus,
footer.page-footer a:active {
    text-decoration: none;
}

footer.page-footer .social-icons {
    display: flex;
    margin-bottom: 20px;
}

footer.page-footer .social-icons .icon {
    margin-right: 10px;
}

footer.page-footer .social-icons a {
    box-shadow: none !important;
    color: #000;
    transition: all 0.2s ease-in-out;
    font-size: 30px;
}

footer.page-footer .social-icons a:hover,
footer.page-footer .social-icons a:focus,
footer.page-footer .social-icons a:active {
    opacity: 0.6;
}

/*******************************************
:--- Media Queries ---:
*******************************************/

/* Large Displays */
@media (min-width: 1400px) {
	.container {
		max-width: 1280px !important;
	}
}

@media (max-width: 1400px) {

}

@media (min-width: 1200px) {

}

@media (max-width: 1200px) {
    .grid-50-content, 
    .quote {
        padding: 80px 40px !important;
    }
}

@media (min-width: 991px) {
	.container {
		max-width: 1175px;
	}

    nav.site-nav .menu-item {
        padding-right: 35px;
    }
}

@media (max-width: 991px) {

	.hero-wrap .hero-content {
		height: 100%;
		min-height: 400px;
	}

    .hero-wrap .hero-content h1 {
        font-size: 2.125rem;
        line-height: 1.4;
    }

    .form-wrap {
        padding: 35px 25px;
        margin-top: -80px;
    }

    .callout {
        margin-top: 40px;
    }

    .frame img {
        margin-top: 0;
    }

    .frame {
        padding: 25px 25px 10px;
    }

    .testimonial-section blockquote {
        padding: 1.5rem;
    }

    .testimonial-section blockquote p {
        font-size: 1.25rem;
    }
    
    .testimonial-section blockquote p.testimonial-attribution {
        font-size: 0.938rem;
    }
    
    footer.page-footer .social-icons {
        display: flex;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    
    .site-nav .btn {
        padding: 6px 12px;
        font-size: 12px;
    }

	header.site-header {
        padding-top: 18px;
        padding-bottom: 18px;
	}
	
	h2 {
		font-size: 1.375rem;
	}

    .hero-wrap .hero-content {
        min-height: 200px;
        height: 200px;
    }
	
    .hero-wrap .hero-content h1 {
        font-size: 1.25rem;
        margin-top: 10px;
    }

    .hero-wrap .hero-content h2 {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-wrap.hero-alt .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-wrap.hero-alt .hero-content {
        min-height: 300px;
        height: 300px;
        margin-bottom: 10px !important;
    }

    .form-wrap h2 {
        font-size: 20px;
    }

    .benefits-list > li {
        font-size: 1.063rem;
        margin: 0 0 25px !important;
    }

    .benefits-list > li:last-of-type {
        margin: 0 !important;
    }
    
    .benefits-list > li > img {
        width: 25px;
    }

    .testimonial-section.image blockquote {
        border-radius: 0 0 15px 15px;
    }

    .testimonial-section .mobile-testimonial-img {
        border-radius: 15px 15px 0 0;
    }

    .two-columns {
        column-count: 1;
    }
    
    .callout {
        padding: 30px 20px;
    }

    .callout .message {
        font-size: 1.25rem;
        line-height: 30px;
    }

    .grid-50-content {
        max-width: 510px;
    }

    .section.background-image {
        padding: 40px 0;
    }

}

@media (max-width: 640px) { 
	.multistep-fields .input-wrap {
        width: 100%;
        display: inline-block;
        margin-bottom: 0;
        position: relative;
	}
}

@media (max-width: 575px) {

    .section {
		padding: 40px 0;
	}

    .grid-50-content {
        max-width: 100%;
        padding: 50px 15px !important;
    }

    .form-wrap {
        margin-top: -60px;
    }
}

@media (max-width: 480px) { 
	.form input#previous {
		float: none;
		margin-bottom: 10px;
		padding: 10px 15px;
		width: auto;
	}

	.form input#next,
	.form input#request {
		float: none;
		margin-bottom: 0;
		width: 100%;
	}

    .concentrations .icon img {
        width: 45px;
    }
}


/*******************************************
:--- IE Fixes ---:
*******************************************/

.ie7 .tooltip, .ie8 .tooltip {
	display: none!important
}

.ie7 label, .ie8 label, .ie9 label {
	display: block!important;
}

.ie7 .required-ast-nolabel, .ie8 .required-ast-nolabel, .ie9 .required-ast-nolabel {
	display: none;
}
