/* TypoGraphy */
* {
    box-sizing: border-box;
}

:focus {
    outline: none !important;
    box-shadow: none;
    border-color: inherit;
}

/* ::-webkit-scrollbar {
	width: 0px;
} */
textarea.form-control {
    resize: none;
    overflow: hidden;
}

html,
body {
    width: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    background: #fff;
    overflow-x: hidden;
    font-size: 16px;
    color: #000;
}

img {
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}

a,
a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px 0 20px;
    padding: 0px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #000;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: #01a4ec;
}

h1 {
    font-size: 56px;
    line-height: 110%;
    color: #09263F;
    font-family: 'InterFace Trial Light';
    font-weight: 300;
}

h2 {
    font-size: 56px;
    line-height: 110%;
    color: #09263F;
}

h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 43px;
    color: #09263F;
}

h4 {
    font-weight: 700;
    font-size: 26px;
    line-height: 30px;
    color: #09263F;
}

h5 {
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
    color: #09263F;
}

h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
    color: #09263F;
}

p {
    font-family: 'InterFace Reg';
    font-size: 20px;
    line-height: 28px;
    color: #000000;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    padding: 0px 0 20px 18px;
    margin: 0px;
}

ol {
    padding-bottom: 20px;
    padding-left: 15px;
}

ol li {
    position: relative;
    padding-left: 5px;
}

li {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    font-family: 'InterFace Reg';
}

li a {
    color: #01a4ec;
}

li a:hover {
    color: #1A1A1A;
}

a {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    color: #03b1e7;
}

a:hover {
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    color: #1A1A1A;
}

button {
    padding: 0;
    background-color: transparent;
    border: none;
}

body.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.green-light-btn {
    background: #7AE582;
    border: 1px solid #7AE582;
    color: #09263F;
    font-size: 20px;
    min-width: 200px;
    min-height: 56px;
    padding: 10px 19px;
    display: inline-flex;
    align-items: center;
    line-height: 28px;
    justify-content: center;
    font-weight: 700;
    border-radius: 8px;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    text-transform: capitalize;
    font-family: 'InterFace Bold';
    font-weight: bold;
}

.green-light-btn:hover {
    background: #5FC968;
}

.blue-btn {
    background: #4293B3;
}

.blue-btn:hover {
    background: #09263F;
}

/** ================== // HEADER CSS START // ================== **/
.header {
    background: #09263F;
    padding: 20px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 509px;
}

.logo img {
    width: 100%;
    max-height: 56px;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.btn-white {
    background: #fff;
    color: #09263F;
    border: 2px solid #fff;
}

.btn-white:hover {
    background: #528272;
    color: #fff;
    border-color: #528272;
}

.btn-border {
    background: transparent;
    color: #fff;
    border: 2px solid #7AE582;
    font-family: 'InterFace Bold';
    font-weight: bold;
}

.btn-border:hover {
    background: #7AE582;
    color: #09263F;
    border-color: #7AE582;
}

/** ================== // HEADER CSS END // ================== **/



/** ================== // HERO BANNER CSS START// ================== **/

.hero-banner-section {
    padding: 32px 0px 40px;
    background: #09263F;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.hero-banner-section::before {
    content: "";
    position: absolute;
    width: 1022px;
    height: 1024px;
    top: -7%;
    right: -5%;
    border-radius: 1024px;
    background: radial-gradient(50% 50% at 50% 50%, #51d6ff9e 0%, rgba(9, 38, 63, 0.00) 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-banner-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    align-items: center;
}

.hero-banner-left {
    width: 59%;
}

.hero-banner-right {
    width: 36.5%;
    padding-top: 15px;
}

.hero-banner-left-info h1 {
    margin-bottom: 15px;
    color: #fff;
}

.hero-banner-left-info h1 strong {
    font-family: 'InterFace Bold';
    font-weight: bold;
}

.hero-banner-left-info p {
    color: #fff;
    font-size: 28px;
    line-height: 150%;
    margin: 0 0 18px;
    font-family: 'InterFace Bold';
    font-weight: bold;
}

.hero-banner-left-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 40px;
}

.hero-banner-left-info ul li {
    position: relative;
    padding-left: 38px;
    font-size: 24px;
    line-height: 150%;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'InterFace Trial Light';
    font-weight: 300;
}

.hero-banner-left-info ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    background-image: url('../images/hero-check-list-icon.svg');
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    background-color: transparent;
}

.hero-banner-left-info {
    padding-right: 55px;
}

.hero-banner-left-image img {
    width: 100%;
    border-radius: 30px;
}

.hero-banner-right-info {
    border: 2px solid #1D7874;
    border-radius: 16px;
    padding: 37px 0;
    height: 100%;
    background: #fff;
}

.hero-banner-right-image img {
    width: 100%;
}

.form-heading {
    text-align: center;
}

.form-heading h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 115%;
    color: #1D7874;
    padding: 0;
}

.form-heading p {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #000000;
    padding: 0px 0;
}

.hero-profile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin: 0 0 16px;
}

.hero-profile .avatar {
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #fff;
}

.hero-profile .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name h3 {
    color: #fff;
    font-size: 24px;
    line-height: 110%;
    margin: 0 0 4px;
    font-family: 'InterFace Bold';
    font-weight: bold;
}

.profile-name span {
    color: rgba(255, 2550, 255, 0.5);
    font-size: 16px;
    line-height: 110%;
    margin: 0 0 4px;
    font-family: 'InterFace Reg';
    font-weight: normal;
    display: block;
}

/** ================== // HERO BANNER CSS END // ================== **/

/** ================== // WHY LENDING SECTION CSS START // ================== **/
.why-lending-section.why-lending-first-section {
    padding: 100px 0;
}

.why-lending-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 60px 0;
    margin: 0;
}

.why-lending-left {
    width: 589px;
}

.why-lending-right {
    width: 500px;
    position: relative;
}

.why-lending-left-info h2 {
    margin-bottom: 16px;
    font-family: 'InterFace Trial Light';
    font-weight: 300;
}

.why-lending-left-info h2 strong {
    font-family: 'InterFace Bold';
    font-weight: bold;
}

.why-lending-point ul {
    padding: 0;
    margin: 0 0 32px;
}

.why-lending-point ul li {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 8px;
    list-style-type: none;
    position: relative;
    padding-left: 40px;
}

.why-lending-point ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    background-image: url('../images/check-list-icon.svg');
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
}

.why-lending-point ul li:last-child {
    margin-bottom: 0px;
}

.why-lending-left-info p {
    padding-right: 70px;
}

.family-move-picture img {
    width: 100%;
    border-radius: 0;
}

.qualify-now-btn .green-light-btn {
    min-width: 231px;
}

.customer-satisfaction {
    width: 164px;
    background: #FFFFFF;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 16px 12px 14px;
    position: absolute;
    top: -50px;
    left: 52%;
    transform: translateX(-40%);
}

.why-lending-right-info h6 sup {
    font-weight: 800;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    top: -.3em;
}

.customer-satisfaction span {
    font-style: normal;
    font-weight: 800;
    font-size: 64px;
    line-height: 82px;
    text-align: center;
    color: #1D7874;
    display: block;
}

.why-lending-right-info h6 {
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #09263F;
    margin-bottom: 0px;
}

.google-rating {
    width: 253px;
    background: #FFFFFF;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    text-align: center;
    padding: 22px 43px 15px;
    position: absolute;
    bottom: 53px;
    left: -125px;
}

.google-rating .star-icon {
    margin-bottom: 10px;
}

.google-rating .google-logo {
    margin-bottom: 8px;
}

.google-rating.zillo-rating {
    right: -38px;
    left: auto;
    width: 200px;
    bottom: -66px;
}

.zillo-rating .google-logo {
    margin-bottom: 17px;
}

.why-lending-section.why-lending-first-section .qualify-now-btn .green-light-btn {
    min-width: 168px;
}

.why-lending-section.why-lending-first-section .qualify-now-btn .green-light-btn:hover {
    color: #09263F;
}

/** ================== //  WHY LENDING SECTION CSS END // ================== **/


/** ================== // FAMILY SECTION CSS START// ================== **/
.family-section {
    padding: 120px 0px 100px;
    background-color: #F8F8F8;
}

.family-section .playicon img {
    width: 92px !important;
}

.family-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    background: #F8F8F8;
    border-radius: 0;
    padding: 0;
}

.family-col-left {
    width: 416px;
    margin-top: 70px;
    position: sticky;
    top: 100px;
    align-self: start;
}

.family-col-right {
    width: 640px;
}

.family-col-right-info {
    padding-top: 0;
    padding-right: 0;
    margin-bottom: 0;
}

.family-col-right-info h2 {
    margin-bottom: 24px;
    font-family: 'InterFace Trial Light';
    font-weight: 300;
}

.family-col-right-info h2 strong {
    font-family: 'InterFace Bold';
    font-weight: bold;
}

.tim-mcgarry-wrap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.tim-mcgarry-info h5 {
    margin-bottom: 8px;
    text-align: center;
    font-size: 24px;
    font-family: 'InterFace Bold';
    font-weight: bold;
    line-height: 120%;
}

.tim-mcgarry-info p {
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #09263F;
    line-height: 24px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tim-mcgarry-info p:last-child {
    margin-bottom: 0;
}

.tim-mcgarry-info p a {
    color: #09263F;
}

.tim-mcgarry-info p a:hover {
    color: #528272;
}

.talk-btn {
    text-align: center;
    margin: 24px 0 0;
}

.talk-btn .btn-border {
    color: #09263F;
    min-width: 198px;
}

.pre-qualify-btn {
    width: 100%;
}

.pre-qualify-btn .scroll-btn {
    min-width: 100%;
}

.pre-qualify-btn .scroll-btn:hover {
    color: #09263F;
}

.family-left-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 17px;
    margin-top: 0;
}

.tim-mcgarry-wrap-image {
    padding: 0;
    margin: -90px auto 16px;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    overflow: hidden;
}

.tim-mcgarry-wrap {
    width: 100%;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.15);
    padding: 32px;
}

.talk-to-me {
    display: inline-flex;
    flex-direction: column;
    gap: 11px;
    flex-wrap: wrap;
}

.talk-to-me a.green-light-btn {
    min-width: 232px;
    text-transform: unset;
}

.family-col-right-info p {
    margin-bottom: 20px;
}

.family-col-right-info p:last-child {
    margin-bottom: 0px;
}

.tim-mcgarry-video {
    max-width: 628px;
    margin-top: 40px;
}

.video-part {
    position: relative;
}

.video-part iframe,
.video-part video {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    object-fit: cover;
    border-radius: 0;
    opacity: 1;
}

.playicon {
    position: absolute;
    top: 0;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 0;
}

.playicon a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-radius: 0;
    background: rgb(0 0 0 / 44%);
}

.playicon img {
    width: 64px !important;
}

/** ================== // FAMILY SECTION CSS END// ================== **/



/** ================== // PRE QUALIFIED SECTION CSS START// ================== **/

.pre-qualified-section {
    padding: 100px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.pre-qualified-section .why-lending-wrap {
    flex-direction: row-reverse;
    padding: 0px;
    margin: 0px;
    align-items: center;
    width: max-content;
}

.pre-qualified-section .why-lending-left-info h2 {
    font-size: 52px;
    margin: 0 0 8px;
}

.pre-qualified-section .why-lending-left {
    width: 672px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.15);
    padding: 32px;
}

.pre-qualified-section .why-lending-point ul {
    margin: 0 0px 26px;
}

.qualify-now-btn {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}

.pre-qualified-section .qualify-now-btn .green-light-btn {
    min-width: 200px;
}

.pre-qualified-section .why-lending-left-info p {
    padding-right: 0;
}

.pre-qualified-section .why-lending-point p {
    margin-bottom: 10px;
}

.why-lending-point.no-need-point ul li::before {
    background-image: url('../images/block-list-icon.svg');
}

.why-lending-point.extra-perks-point ul li::before {
    background-image: url('../images/star-list-icon.svg');
}

.pre-qualified-section .qualify-now-btn .green-light-btn:hover,
.pre-qualified-section .qualify-now-btn .green-light-btn.btn-border {
    color: #09263F;
}

/** ================== // PRE QUALIFIED SECTION CSS END// ================== **/



/** ================== // HOW HELPED SECTION CSS START// ================== **/

.how-helped-title {
    max-width: 100%;
    margin: 0px auto 50px;
    text-align: center;
}

.how-helped-title h2 {
    color: #fff;
    font-family: 'InterFace Trial Light';
    font-weight: 300;
}

.how-helped-title h2 strong {
    font-family: 'InterFace Bold';
    font-weight: bold;
}

.how-helped-wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0px -17px;
    row-gap: 20px;
    align-items: stretch;
}

.how-helped-col {
    width: 33.33%;
    padding: 0px 13px;
    display: flex;
    flex-direction: column;
}

.how-helped-col-info {
    background: #F8F8F8;
    border-radius: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 32px 50px 35px;
    text-align: center;
    gap: 8px;
}

.how-helped-col-info h6,
.how-helped-col-info p {
    margin-bottom: 0px;
}

.how-helped-video .how-helped-col-info {
    padding: 0px;
    display: block;
    background: transparent;
}

.how-helped-video .playicon a {
    background: transparent;
}

.how-helped-section .qualify-now-btn {
    justify-content: center;
    margin-top: 40px;
}

.how-helped-video .help-video,
.how-helped-video .video-part,
.how-helped-video video {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

.how-helped-section .qualify-now-btn .green-light-btn {
    min-width: 200px;
}

.how-helped-section {
    padding: 90px 0;
    background: #09263F;
}

/** ================== // HOW HELPED SECTION CSS END// ================== **/

/** ================== // FOOTER CSS START// ================== **/

.footer {
    background: #09263F;
    padding: 65px 0px;
}

.footer-logo {
    margin-bottom: 34px;
}

.footer-logo a img {
    width: 515px;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-left {
    width: 794px;
}

.footer-right {
    width: 268px;
    position: relative;
}
.footer-right .footer-social-icon {
    position: absolute;
    bottom: 5px;
    left: -25px;
    color: #fff;
    font-size: 30px;
}
.footer-right .footer-social-icon:hover {
    color: #7AE582;
}

.footer-left-info p {
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 23px;
}

.footer-left-info p:last-child {
    margin-bottom: 0px;
}

.footer-right-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-right-info h5 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 32px;
    font-family: 'InterFace Bold';
    font-weight: bold;
}

.footer-right-info p {
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-bottom: 0px;
    font-family: 'InterFace Reg';
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
}

.footer-right-info p:last-child {
    margin-bottom: 0;
}

.footer-right-info p a {
    color: #fff;
}

.footer-right-info p a:hover {
    color: #4293B3;
}

.footer-wrap .let-talk-today {
    margin-top: 20px;
}

.footer-wrap .let-talk-today .blue-btn:hover {
    background: #528272;
    color: #fff;
    border-color: #528272;
}

.footer-wrap .let-talk-today .blue-btn {
    min-width: 232px;
}

/** ================== // FOOTER CSS END// ================== **/