@import url('../ou.min.css');
@import url('../reset.css');

/*******************************************
:--- Main styles ---:
*******************************************/

.live-chat,
#about_click {
    cursor: pointer;
}

.tab-content ul li {
    list-style: disc;
    margin: 10px 30px;
}

.nav-tabs>li>a:focus {
    outline: none;
}

/*******************************************
:--- Accessibility ---:
*******************************************/

.form.multi-step input[type="file"]:focus,
.form.multi-step input[type="radio"]:focus,
.form.multi-step input[type="checkbox"]:focus {
    outline: thin dotted !important;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

a:focus-visible {
    outline: 2px solid !important;
}


/*******************************************
:--- Alert - Global ---:
*******************************************/

#alert-container,
#alert-container .alert {
    background: #0046A6 !important;
}

#alert-container .alert {
    border: none;
    border-radius: 0;
    color: #FFF;
    margin-bottom: 0;
    padding: 1em 4em 1em 1em;
}

#alert-container .alert-heading {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#alert-container .alert-body {
    margin-bottom: 0;
    max-width: 80%
}

#alert-container .alert-primary .alert-link {
    color: #FFB400 !important;
    text-decoration: underline;
}

#alert-container .alert-primary .alert-link:hover,
#alert-container .alert-primary .alert-link:focus,
#alert-container .alert-primary .alert-link:active {
    color: #FFB400;
    text-decoration: none;
}

#alert-container button.btn-close:hover {
    color: #FFF;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 1.25rem 1rem;
    color: #fff;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;
    border: 0;
    border-radius: 0.375rem;
    opacity: .5;
}

.alert-dismissible .btn-close:hover {
    opacity: 1;
}

.btn-close-white:hover {
    filter: none;
}

@media (max-width: 768px) {
    #alert-container .alert-body {
        max-width: 100%
    }
}


/*******************************************
:--- Defaults ---:
*******************************************/

div,
article,
section,
header,
footer,
nav,
li {
    position: relative;
}

.group:after {
    display: block;
    height: 0;
    clear: both;
    content: ".";
    visibility: hidden;
    /* For clearing */
}

body {
    background: #fff;
    color: #333;
    font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 18px;
}

::-moz-selection {
    background: #ff0;
    color: #333;
}

::selection {
    background: #ff0;
    color: #333;
}

* {
    text-rendering: optimizeLegibility;
    outline: none!important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


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

body,
input,
textarea {}

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

h1,
div.page-title {
    font-size: 2em;
}

h2 {
    color: #000d74;
    font-size: 30px;
    font-weight: 700;
}

h3 {
    font-size: 22px;
    font-weight: 700;
}

p {
    margin: 0 0 1em;
}

a {
    color: #2C6BAC;
}

a:hover,
a:focus,
a:active {
    color: #2C6BAC;
    text-decoration: underline;
}

a,
a:active {
    outline: none;
}

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


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

header.page-header {
    background: rgba(0, 13, 116, .75);
    /*#000d74*/
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 5;
    width: 100%;
}

header.page-header .site-logo {
    display: block;
    max-width: 100%;
    width: 100%;
    margin: 3px 0;
}

header.page-header .page-nav {
    display: block;
    text-align: right;
}

header.page-header .page-nav li {
    display: inline-block;
}

header.page-header .page-nav a {
    color: #FFF;
    display: block;
    font-size: 18px;
    font-weight: 400;
    margin: 0 10px;
    padding: 11px 0;
}

header.page-header .page-nav .fas {
    font-size: 16px;
    margin-right: 5px;
}


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

.hero-wrap {
    background-color: #000;
    background-position: 15% center;
    background-size: cover;
    padding: 150px 0 50px;
}

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

.hero-wrap .hero-content h1 {
    font-size: 45px;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.hero-wrap .hero-content .sub-heading {
    border: none;
    color: #FFF;
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0;
    text-transform: uppercase;
}


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

.form-wrap {
    background: #000d74;
    padding: 50px 0;
}

.form-box {
    background: #FFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 35px 35px;
    margin-top: -335px;
}

.form-wrap h2 {
    color: #2C6BAC;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-wrap p.section-intro {
    margin-bottom: 10px;
}

.form-wrap a {
    color: #2C6BAC;
    font-weight: 700;
    text-decoration: underline;
}

.form-wrap a:hover {
    text-decoration: none;
}

.form-wrap #syndicate_form #info-step1 label,
.form-wrap #syndicate_form #info-step2 label {
    color: #000;
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-wrap #syndicate_form input[type="button"]#continueBtn,
.form-wrap #syndicate_form input[type="button"]#backBtn,
.form-wrap #syndicate_form input[type="button"].submit_y {
    border: none;
    border-radius: 0;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
}

#backButton {
    width: 45%;
}

#finalSubmission .formfooter-section {
    width: 55%;
}

.form-wrap #syndicate_form input[type="button"]#continueBtn {
    background: #2C6BAC;
    color: #FFF;
}

.form-wrap #syndicate_form input[type="button"]#continueBtn:hover,
.form-wrap #syndicate_form input[type="button"]#continueBtn:focus,
.form-wrap #syndicate_form input[type="button"]#continueBtn:active {
    background: #093552;
    color: #FFF;
}

.form-wrap #syndicate_form input[type="button"]#backBtn {
    background: #EFEFEF;
    color: #555555;
    width: auto;
}

.form-wrap #syndicate_form input[type="button"]#backBtn:hover,
.form-wrap #syndicate_form input[type="button"]#backBtn:focus,
.form-wrap #syndicate_form input[type="button"]#backBtn:active {
    background: #41516C;
    color: #FFF;
}

.form-wrap #syndicate_form input[type="button"].submit_y {
    background: #2C6BAC;
    color: #FFF;
}

.form-wrap #syndicate_form input[type="button"].submit_y:hover,
.form-wrap #syndicate_form input[type="button"].submit_y:focus,
.form-wrap #syndicate_form input[type="button"].submit_y:active {
    background: #093552;
}

.form-wrap #syndicate_form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f6f6f6;
    border: 1px solid #ccc;
    border-radius: 0;
    margin: 0 0 .8em;
    padding: 0.5em 1em;
    width: 100%;
}

.form-wrap #syndicate_form select:focus,
.form-wrap #syndicate_form input:focus {
    border-color: #FFD100;
    outline: 0;
}

.form-wrap #syndicate_form input[type="text"],
.form-wrap #syndicate_form input[type="email"],
.form-wrap #syndicate_form input[type="tel"] {
    background-color: #f6f6f6;
    border: 1px solid #ccc;
    border-radius: 0;
    line-height: inherit;
    padding: 0.5em 1em;
    width: 100%;
}

.form-wrap #syndicate_form .contact-fields .fields,
.form-wrap #syndicate_form .name-fields .fields {
    margin-bottom: .8em;
}

.form-wrap #trustbuilder .required-ast {
    color: #FF0000;
}

.form-wrap .required-ast-nolabel {
    color: #FF0000;
    position: absolute;
    right: -10px;
    top: -6px;
}

.form-wrap .errors,
.form-wrap .errors .error {
    color: #FF0000;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase !important;
}

.form-wrap a.international-link {
    display: none !important;
}

.form-wrap .tcpa-3step p {
    line-height: 1.5em;
    margin-top: 10px;
}


/* Step Headers */

.info-step1-header,
.info-step2-header,
.info-step3-header {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    height: 65px;
    margin: 0 0 15px;
    width: 100%;
}

.info-step1-header {
    background-image: url("../../images/ppc-a/form-header-1.svg");
}

.info-step2-header {
    background-image: url("../../images/ppc-a/form-header-2.svg");
}

.info-step3-header {
    background-image: url("../../images/ppc-a/form-header-3.svg");
}

#sms-opt-in {
    margin-bottom: 10px !important;
}

#ai-opt-in label,
#sms-opt-in label {
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
}


/* Popover */

.popover {
    background: #FFB400;
    border: 1px solid #FFB400;
    color: #333;
    padding: 6px;
    text-align: center;
}

.popover-body {
    color: #333;
}

.popover .arrow::after,
.popover .arrow::before {
    border-bottom-color: #FFB400;
    border-top-color: #FFB400;
}

.no-phone-message {
    display: flex;
    font-size: 13px;
    margin: 20px 0 0;
}

.no-phone-message .fas {
    font-family: "Font Awesome 5 Pro";
    font-size: 9px;
    display: inline-block;
    border-radius: 50%;
    padding: 0.5em;
    color: #2C6BAC;
    border: 2px solid #2C6BAC;
    background-color: transparent;
}

.no-phone-message .fa-stack {
    display: inline-block;
    height: 1.625em;
    line-height: 0.625em;
    position: relative;
    vertical-align: middle;
    width: 1.625em;
    margin-right: 8px;
}

.no-phone-message p {
    margin: 0;
    font-weight: 700;
}

.no-phone-message span.live-chat {
    font-weight: 700;
    color: #0046A6;
}

.no-phone-message span.live-chat:hover {
    text-decoration: underline;
}


/*******************************************
:--- Program Benefits ---:
*******************************************/

.program-benefits ul {
    margin-left: 20px;
}

.program-benefits ul li {
    font-size: 19px;
    color: #FFF;
    width: 100%;
    padding: 6px 10px;
    display: block;
}

.program-benefits ul li .fas {
    color: #2C6BAC;
    font-size: 16px;
    margin-right: 10px;
    margin-left: -30px;
}


/*******************************************
:--- Goal Tiles ---:
*******************************************/

.goal-tile-section .tile-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    grid-auto-rows: minmax(65px, auto);
}

.goal-tile-section .tile {
    padding: 19px;
    text-align: center;
    font-weight: 700;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 16px;
    line-height: 1.3;
    min-height: 82px;
}

.goal-tile-section .tile.rounded-corners {
    border-radius: 10px;
}

.goal-tile-section .tile.rounded-corners:hover {
    background-color: #0071B3;
}

.tile-wrapper {
    overflow: hidden;
    cursor: pointer;
}

.goal-tile-section .tile-wrapper>img.img-fluid {
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.goal-tile-section .tile-wrapper:hover>img.img-fluid {
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -ms-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}


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


/* About Program */

#about-program {
    padding: 50px 0;
}


/* About School */

#about-school {
    background: #EFEFEF;
    padding: 50px 0;
}


/* Callout */

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

.callout .heading-alt {
    display: block;
    font-size: 25px;
    font-weight: 300;
    text-transform: uppercase;
}

.callout .btn {
    margin: 10px 0 0 !important;
    width: 100%;
}


/* Cards */

.custom-path .card,
.degree-benefits .card {
    border: none;
    border-radius: 0;
}

.custom-path .card-body,
.degree-benefits .card-body {
    font-size: 16px;
    padding: 30px;
}

.custom-path .card-body h3,
.degree-benefits .card-body h3 {
    color: #2C6BAC;
    font-size: 22px;
    text-transform: none;
}

.custom-path .card-body ul,
.degree-benefits .card-body ul {
    border-top: 1px solid #EEE;
}

.custom-path .card-body ul li,
.degree-benefits .card-body ul li {
    border-bottom: 1px solid #EEE;
    line-height: 1.25em;
    padding: 8px 0;
}

.degree-benefits .card {
    background: #F6F6F6;
}


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

footer.page-footer {
    background: #000d74;
    color: #FFF;
    font-size: 14px;
    padding: 50px 0;
}

footer.page-footer .footer-logo {
    display: block;
    max-width: 500px;
}

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

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

footer.page-footer hr {
    border-top: 1px solid rgba(255, 255, 255, .25);
    margin: 20px 0;
}


/*******************************************
:--- Background Color ---:
*******************************************/

.bg-blue {
    background: #000d74;
}

.bg-dark-blue {
    background: #0046A6;
}

.bg-light-blue {
    background: #2C6BAC;
}

.bg-gray {
    background: #EFEFEF;
}

.bg-white {
    background: #FFFFFF;
}


/*******************************************
:--- Text Color ---:
*******************************************/

.txt-blue {
    color: #000d74;
}

.txt-light-blue {
    color: #2C6BAC;
}

.txt-white {
    color: #FFFFFF;
}


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

.btn {
    border-radius: 0;
    box-shadow: none !important;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    min-width: 280px;
    padding: 12px 5px;
    margin: 15px 0;
}

.btn.btn-blue {
    background: #2C6BAC;
    border: 2px solid #2C6BAC;
    color: #FFF;
}

.btn.btn-blue:hover,
.btn.btn-blue:focus,
.btn.btn-blue:active {
    background: #000d74;
    border: 2px solid #000d74;
    text-decoration: none;
}

.btn.btn-ghost {
    background: transparent;
    border: 2px solid #2C6BAC;
    color: #FFF;
}

.btn.btn-ghost:hover,
.btn.btn-ghost:focus,
.btn.btn-ghost:active {
    background: #FFF;
    color: #000d74;
    text-decoration: none;
}


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


/* Step Headers */

.form.multi-step .step {
    margin: 0 0 20px !important;
}


/* Step Headers */

.step-header-one,
.step-header-two,
.step-header-three {
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 100% !important;
    height: 65px !important;
    margin: 0 0 15px !important;
    width: 100% !important;
    display: none !important;
}

.form.multi-step .step-header-one.active {
    background-image: url("../../images/ppc-a/form-header-1.svg");
    display: block !important;
}

.form.multi-step .step-header-two.active {
    background-image: url("../../images/ppc-a/form-header-2.svg");
    display: block !important;
}

.form.multi-step .step-header-three.active {
    background-image: url("../../images/ppc-a/form-header-3.svg");
    display: block !important;
}


/* Archa Style Overides */

.form.multi-step .step-header {
    display: block !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    height: 65px !important;
    margin: 0 0 15px !important;
}

.form.multi-step .step-header div {
    width: 100%;
    z-index: auto;
    border: 0;
}

.form.multi-step .step-header-one span,
.form.multi-step .step-header-two span,
.form.multi-step .step-header-three span {
    display: none !important;
}

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

.form.multi-step .select-wrap select {
    width: 100%!important;
    border: 1px solid #ccc;
    background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%), linear-gradient(to right, #eee, #eee)!important;
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0!important;
    background-size: 5px 5px, 5px 5px, 2.5em 2.5em!important;
    background-repeat: no-repeat !important;
    background-color: #f6f6f6 !important;
    padding: 0.5em 1em !important;
    margin: 0 !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.form.multi-step .input-wrap input:hover,
.form.multi-step .input-wrap input:focus,
.form.multi-step .input-wrap input:active,
.form.multi-step .input-wrap textarea:hover,
.form.multi-step .input-wrap textarea:focus,
.form.multi-step .input-wrap textarea:active,
.form.multi-step .select-wrap select:hover,
.form.multi-step .select-wrap select:focus,
.form.multi-step .select-wrap select:active {
    border-color: #FFD100;
    outline: 0;
}

.form.multi-step .input-wrap label {
    display: none !important;
}

.form.multi-step label {
    color: #000 !important;
    display: block !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
    text-transform: initial !important;
    letter-spacing: 0 !important;
    font-size: 18px !important;
    line-height: inherit !important;
}

.form.multi-step input[type="text"],
.form.multi-step input[type="email"],
.form.multi-step input[type="tel"] {
    background-color: #f6f6f6 !important;
    border: 1px solid #ccc !important;
    border-radius: 0 !important;
    line-height: inherit !important;
    padding: 0.5em 1em !important;
    width: 100% !important;
}

.form.multi-step #step3 .input-wrap {
    position: relative;
}

.form.multi-step #step3 .input-wrap::after {
    content: '*';
    color: #FF0000;
    position: absolute;
    right: -10px;
    top: -5px;
}

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

.form.multi-step input#request,
.form.multi-step input#next,
.form.multi-step input#previous {
    border: none;
    border-radius: 0;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
}

.form.multi-step input#next {
    background: #2C6BAC;
    color: #FFF;
    padding: 1em;
    float: right;
    margin: 0 0 1em;
    width: 50% !important;
    line-height: inherit;
}

.form.multi-step input#previous {
    background: #EFEFEF;
    color: #555555;
    width: auto;
    padding: 1em;
    width: auto !important;
    float: left;
    line-height: inherit;
}

.form.multi-step input#request {
    background: #2C6BAC;
    color: #FFF;
    width: 55% !important;
    padding: 1rem;
    line-height: inherit;
}

.form.multi-step input#next:hover,
.form.multi-step input#next:focus,
.form.multi-step input#next:active {
    background: #093552;
    color: #FFF;
}

.form.multi-step input#previous:hover,
.form.multi-step input#previous:focus,
.form.multi-step input#previous:active {
    background: #41516C;
    color: #FFF;
}

.form.multi-step input#request:hover,
.form.multi-step input#request:focus,
.form.multi-step input#request:active {
    background: #093552;
}

.form.multi-step span.error {
    position: relative !important;
    color: #FF0000 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}


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


/* Large Displays */

@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1200px) {}

@media (max-width: 1200px) {
    .hero-wrap {
        padding: 140px 0 50px;
    }
    .hero-wrap .hero-content {
        height: 350px;
    }
    .program-benefits {
        text-align: center;
    }
    .program-benefits ul li {
        display: inline-block;
        font-size: 18px;
        width: auto;
    }
    .program-benefits ul li .fas {
        margin-left: -7px;
    }
    .form-box {
        margin-top: 50px;
    }
    .form-wrap p.section-intro {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .custom-path .card-deck {
        flex-flow: column wrap;
    }
    .custom-path .card-deck .card {
        margin-bottom: 0;
    }
    .custom-path .card-deck .card-body {
        padding: 30px 30px 0;
    }
    .custom-path .card-deck .card:last-child .card-body {
        padding: 30px 30px 35px;
    }
}

@media (max-width: 992px) {
    header.page-header {
        padding: 20px 0 9px;
    }
    header.page-header .site-logo {
        max-width: 450px;
        margin: 0 auto;
    }
    header.page-header .page-nav {
        text-align: center;
    }
    .program-benefits {
        text-align: left;
    }
    .program-benefits ul {
        margin-left: 35px;
    }
    .program-benefits ul li {
        display: block;
        font-size: 20px;
        padding: 5px 0;
    }
    .program-benefits ul li .fas {
        margin-left: -30px;
    }
    img.img-fluid {
        margin-top: 10px;
        width: 100%;
    }
    .goal-tile-section .tile-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    header.page-header {
        background: #000d74;
        border-bottom: 1px solid rgba(255, 255, 255, .25);
        padding: 20px 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1061;
    }
    header.page-header .page-nav {
        margin-top: 15px;
        text-align: center;
    }
    header.page-header .page-nav li {
        width: 49%;
    }
    header.page-header .page-nav li a {
        background: #2C6BAC;
        color: #FFF;
        font-size: 16px;
        font-weight: 500;
        line-height: 1;
        margin: 0;
        padding: 10px 5px;
        width: 100%;
        text-transform: uppercase;
    }
    .hero-wrap {
        margin-top: 0;
    }
    .hero-wrap .hero-content {
        height: 300px;
        justify-content: center;
    }
    .program-benefits ul li {
        font-size: 18px;
        padding: 5px 0;
    }
    .form-box {
        padding: 20px 25px;
    }
    .form-wrap p.section-intro {
        font-size: 18px;
    }
    .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-wrap {
        background-position: right center !important;
    }
    .hero-wrap .hero-content {
        justify-content: flex-end;
    }
    .hero-wrap .hero-content .sub-heading {
        font-size: 20px;
    }
    .hero-wrap .hero-content h1 {
        font-size: 35px;
    }
    .goal-tile-section .tile-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hidden-mobile {
        display: none !important;
    }
    .hero-wrap {
        padding: 225px 0 50px;
    }
    .form-box {
        overflow: hidden;
    }
}

@media (max-width: 320px) {}


/*******************************************
:--- 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;
}