/******* RESET *******/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    -webkit-text-size-adjust: none;
}
main {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

a::-moz-focus-inner, button::-moz-focus-inner {
    border: 0;
}
select:-moz-focusring, select::-moz-focus-inner {
    color: transparent !important;
    text-shadow: 0 0 0 #000 !important;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 9px;
}
select::-ms-expand {
    display: none;
}
select::-ms-value {
    background: none;
    color: #000;
}
textarea {
    overflow: auto;
}


/******* GLOBAL *******/
*, *::before, *::after {
    -webkit-text-size-adjust: none;
}

html,
body {
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: 'Open Sans', sans-serif;
    border: none;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: .4s;
}

button {
    font-family: sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

header, main, footer {
    display: block;
}

small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

optgroup {
    font-weight: 700;
}

strong, b {
    font-weight: 700;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

section {
    position: relative;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.row::before,
.row::after {
    display: none;
}

.image {
    position: relative;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.image>img,
.image>svg {
    width: 100%;
    max-width: 100%;
    border: none;
}


/******* HEADER *******/
.header {
    background-color: #0d3d6b;
    padding: 18px 0;
}


/******* FORM Section *******/
.section-form {
    padding: 25px 0 40px;
    background-color: #0d3d6b;
}

.section-form__container {
    max-width: 1560px;
}

.section-form__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.form-wrapper {
    width: 50%;
    max-width: 551px;
    margin: 0 20px 0 9%;
}

@media screen and (max-width: 1400px) {
    .form-wrapper {
        margin: 0 20px 0 4%;
    }
}

@media screen and (max-width: 1200px) {
    .form-wrapper {
        margin: 0 15px 0 0;
    }
}

.f-wizard-step--title,.form-bottom-text {
    color: #fff;
}

.secure-icon {
    display: block;
    width: 100%;
    max-width: 113px;
    margin: 0 auto;
}

#f-wizard-form {
    background-color: #a7d4ff3d;
}

.f-wizard-progressbar--value {
    color: #111111;
}

.section-form .secure-copy {
    margin: 20px 0;
    line-height: 1.6;
}

.form-description {
    width: 45%;
    max-width: 689px;
}

.form-description__title,
.form-description__text {
    color: #fff;
}

.form-description__title {
    margin: 100px 0 80px;
    font-size: 60px;
    line-height: 1.1;
    font-weight: 700;
}

.form-description__text {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
}

@media screen and (max-width: 1200px) {
    .form-description__title {
        margin: 70px 0 80px;
        font-size: 48px;
    }
}

@media screen and (max-width: 992px) {
    .form-description {
        width: 47%;
    }

    .form-description__title {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .section-form {
        padding: 25px 0 75px
    }

    .section-form__content {
        display: block;
    }

    .form-wrapper {
        width: 100%;
        max-width: 386px;
        margin: 0 auto;
    }

    .form-description {
        width: 100%;
        max-width: 100%;
    }

    .form-description__title {
        margin: 120px 0 80px;
    }
}

@media screen and (max-width: 575px) {
    .section-form {
        padding: 15px 0 30px;
    }

    .form-wrapper {
        max-width: 100%;
    }

    .form-description__title {
        margin: 20px 0 30px;
        font-size: 23px;
        text-align: center;
    }

    .form-description__text {
        font-size: 16px;
    }
}


/******* DISCLOSURE POLICY Section *******/
.disclosure {
    padding: 50px 0 100px;
}

.disclosure__container {
    max-width: 100%;
}

.disclosure__title,
.disclosure__subtitle {
    text-align: center;
    color: #0d3d6b;

}

.disclosure__title {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
}

.disclosure__subtitle {
    margin: 20px 0 30px;
    font-size: 20px;
    line-height: 1.2;
}

.disclosure-cards__row {
    align-items: stretch;
    grid-gap: 30px;
}

.disclosure-card {
    position: relative;
    width: 100%;
    padding: 50px 10px 30px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 16px #3f5366;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.disclosure-card__title,
.disclosure-card__text {
    color: #0d3d6b;
}

.disclosure-card__title {
    margin: 0 auto 20px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.disclosure-card__text {
    font-size: 16px;
    line-height: 1.6;
}


/******* HELPS Section *******/
.help {
    padding: 45px 0;
    background-color: #478ac9;
}

.help__container {
    max-width: 1790px;
}

.help__title,
.help__text {
    text-align: center;
    color: #fff;
}

.help__title {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 600;
}

.help__text {
    margin-top: 40px;
    font-size: 19px;
    line-height: 1.4;
    max-width: 1248px;
}

.help__block {
    display: none;
    width: 30px;
    height: 300px;
    background-color: #2cccc4;
    position: absolute;
}

.help__block_left {
    left: 0;
}

.help__block_right {
    right: 0;
}


/******* HOW IT WORKS Section *******/
.works-fees {
    padding: 45px 0 60px;
    background-color: #0d3d6b;
}

.works__title,
.fees__title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.fees__title {
    margin-top: 50px;
}

.works__text,
.fees__text {
    margin-top: 40px;
    background: white;
    border-radius: 6px;
    padding: 28px;
    color: #0d3d6b;
    box-shadow: 0 1px 16px white;
    font-size: 16px;
    line-height: 1.6;
}


/******* FAQ Section *******/
.faq {
    padding: 35px 0 20px;
}

.faq__container {
    padding: 0 8px;
}

.faq__title,
.faq-item__title,
.faq-item__text,
.faq-board__title,
.faq-board__text {
    text-align: center;
}

.faq__title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 45px;
    color: #0d3d6b;
}

.main-column {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem;
    padding: 60px;
}

@media screen and (max-width: 992px) {
    .main-column {
        padding: 45px 10px;
    }
}

@media screen and (max-width: 575px) {
    .main-column {
        padding: 0;
    }
}

.main-column .row {
    display: flex;
    align-items: stretch;
    margin-right: -15px;
    margin-left: -15px;
}

@media screen and (max-width: 575px) {
    .main-column .row {
        flex-flow: column wrap;
        height: 470px;
    }
}

.main-column > .row > .text {
    flex: 1 1 calc(50% - 50px);
    position: relative;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

@media screen and (max-width: 575px) {
    .main-column > .row > .text {
        order: 3;
        flex: 1 1 calc(100% - 50px);
        width: calc(100% - 100px);
    }
}

.main-column > .row > .icon {
    flex: 1 1 100px;
}

@media screen and (max-width: 575px) {
    .main-column > .row > .icon {
        order: 1;
        flex: 1 1 100%;
        padding-top: 50px;
        padding-left: 30px;
        width: 100px;
    }
}

.main-column > .row > .time {
    flex: 1 1 calc(50% - 50px);
    padding-top: 1rem;
}

@media screen and (max-width: 575px) {
    .main-column > .row > .time {
        order: 2;
        flex: 1 1 50px;
        width: calc(100% - 394px);
    }
}

.main-column > .row h3 {
    color: #fff;
    background-color: #0d3d6b;
    padding: 1rem;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 20px;
}

.main-column > .row p {
    padding: 1rem;
    color: rgba(51, 51, 51, 0.5);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-column > .row > .icon > div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: auto;
    background: #fff;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
    position: relative;
}

.main-column > .row > div svg {
    display: block;
    font-size: 1.5rem;
    color: #0d3d6b;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-column > .row:nth-child(even) {
    flex-direction: row-reverse;
}

.main-column > .row:nth-child(even) > div:last-child {
    text-align: end;
}

.main-column::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    border: 1px solid rgba(49, 49, 49, 0.5);
    height: calc(100% / 5* 5);
    z-index: -1;
}

.main-column > .row:nth-child(odd) h3::after {
    content: "";
    position: absolute;
    right: -20px;
    border: 10px solid rgba(0, 0, 0, 0);
    border-left-color: #0d3d6b;
}

.main-column > .row:nth-child(even) h3::before {
    content: "";
    position: absolute;
    left: -20px;
    border: 10px solid rgba(0, 0, 0, 0);
    border-right-color: #0d3d6b;
}

@media screen and (max-width: 575px) {
    .main-column::before {
        left: 50px;
        height: calc(100% / 5* 5);
        top: 50px;
    }

    .main-column > .row:nth-child(odd) h3::before {
        content: "";
        position: absolute;
        left: -20px;
        border: 10px solid rgba(0, 0, 0, 0);
        border-right-color: #0d3d6b;
    }

    .main-column > .row:nth-child(odd) h3::after {
        border: none;
    }

    .main-column > .row:nth-child(even) {
        flex-direction: column;
    }

    .main-column > .row:nth-child(even) > .time:last-child {
        text-align: start;
    }
}


/******* LENDER Section *******/
.lender {
    padding: 45px 0 30px;
    background-color: #0d3d6b;
}

.lender__title,
.lender__subtitle,
.lender__text {
    color: #fff;
}

.lender__title {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 400;
}

.lender__subtitle {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
}

.lender__text {
    font-size: 16px;
    line-height: 1.5;
}

.lender__text ul {
    margin-top: 20px;
    padding-left: 15px;
}

.lender__text ul li {
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.lender__text ul li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    position: absolute;
    top: calc(50% - 2px);
    left: -12px;
    background-color: #fff;
}

.lender__text p {
    margin-bottom: 8px;
}


/******* FOOTER *******/
.footer {
    padding: 23px 0 0;
    background-color: #333;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer__text,
.footer__copyright {
    color: #fff;
}

.footer__text {
    width: 100%;
    max-width: 1034px;
    margin: 0 0 23px;
    font-size: 14px;
}

.footer__modals {
    width: 100%;
    max-width: 314px;
    position: relative;
    margin-left: 8px;
    padding: 20px;
    border-left: 4px solid #0d3d6b;
}

.footer__link {
    display: block;
    text-decoration: underline;
    font-size: 17.5px;
    line-height: 1.6;
    color: #fff;
}

.footer__link:hover,
.footer__link:active,
.footer__link:focus {
    color: #fff;
    text-decoration: none;
}

.footer__copyright {
    text-align: center;
    padding: 16px 0;
    font-size: 13px;
}


/******* Responsive *******/
@media screen and (min-width: 575px) {
    .container {
        max-width: 570px;
    }

    .disclosure__container {
        max-width: 100%;
    }


    .section-form__container {
        padding: 0 15px;
    }

    .section-form__content {
        min-height: 528px;
    }


    .help__title {
        font-size: 48px;
    }

    .help__text {
        margin: 41px auto 0;
        width: 65%;
        line-height: 1.4;
    }

    .help__block {
        display: block;
        top: calc(100% - 345px);
    }


    .faq {
        padding: 60px 0 45px;
    }


    .lender__title {
        font-size: 36px;
    }

    .lender__subtitle {
        margin: 0 0 24px;
    }

    .lender__text {
        line-height: 1.6;
    }

    .lender__text p {
        margin-bottom: 10px;
    }


    .footer {
        padding: 43px 0 0;
    }
}
@media screen and (min-width: 768px) {
    .container {
        max-width: 750px;
    }


    .section-form__content {
        min-height: 550px;
    }


    .disclosure-card {
        width: calc(50% - 15px);
        padding: 30px 28px;
    }


    .modal-links__row {
        justify-content: space-between;
    }

    .modal-links__column {
        width: calc(50% - 15px);
    }

    .modal-links__button_privacy {
        margin-top: 40px;
    }


    .help {
        padding: 60px 0;
    }

    .help__title {
        font-weight: 400;
    }

    .help__text {
        font-size: 20px;
        line-height: 2;
    }

    .help__block {
        top: calc(100% - 360px);
    }


    .footer__text {
        margin: 0 0 20px;
        text-align: justify;
    }
}
@media screen and (min-width: 992px) {
    .container {
        max-width: 970px;
    }

    .container_small {
        max-width: 910px;
    }


    .section-form__content {
        min-height: 690px;
    }


    .disclosure-card {
        width: calc(33.33% - 20px);
    }


    .works-fees {
        padding: 50px 0 80px;
    }


    .modal-links__column {
        width: calc(50% - 85px);
    }
}
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }

    .container_small {
        max-width: 890px;
    }


    .section-form__container {
        max-width: 1560px;
    }

    .section-form__content {
        min-height: 697px;
    }


    .help__container {
        max-width: 1790px;
    }

    .help__text {
        width: 92%;
    }


    .footer__container {
        max-width: 1270px;
    }

    .footer__text {
        width: 78%;
        margin: 0;
    }

    .footer__modals {
        width: 20%;
    }
}


.modal-content p {
    margin-top: 20px;
    margin-bottom: 20px;
}

#f-wizard-form,
.f-wizard-step--desc {
    color: #111111;
}

.f-wizard-step--title, .form-bottom-text {
    color: white !important;
}

.f-contact-us-card .text-justify {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #111111;
}

.f-input--container label {
    text-align: center;
}


#f-wizard-form .Calendar__day.-disabled,
#f-wizard-form .Calendar__weekDays {
    color: #aca7a7 !important;
}

#f-wizard-form .Calendar__day.-selected,
#f-wizard-form .Calendar__day.-selectedStart,
#f-wizard-form .Calendar__day.-selectedEnd {
    background: #0d3d6b;
    color: #fff;
}
