/*
    Theme Name: C1-Car-Loans
    Description: Theme for C1 Car Loans.
    Version: 1.0.0
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1. General CSS
2. Navigation


*/

 :root {
    /* Colours */
    --trust-blue-color: #0635C9;
    --trust-blue-color-dark-30: #042aa1;
    --asphalt-grey-colour: #404040;
    --asphalt-grey-colour-dark-30: #2d2d2d;
    --dark-grey-colour: #303030;
    --dark-grey-colour-dark-30: #222222;
    --traffic-light-colour: #1AE5BE;
    --traffic-light-colour-dark-30: #12a085;
    --cloud-grey-colour: #F5F5F5;
    --bronze-colour: #C3A66F;
    --silver-colour: #C0C0C0;
    --gold-colour: #D4AF37;
    /* Gradients */
    --bronze: linear-gradient( 0.25turn, #C3A66F 0%, rgba(195, 166, 111, 0) 51.56%, #C3A66F 100%);
    --silver: linear-gradient( 0.25turn, #C0C0C0 0%, rgba(192, 192, 192, 0) 43.75%, #C0C0C0 100%);
    --gold: linear-gradient( 0.25turn, #D4AF37 0%, rgba(212, 175, 55, 0) 51.04%, #D4AF37 100%);
    /* Fonts */
    --font-primary: 'Poppins', Helvetica, Arial, sans-serif;
    /* Font sizes */
    --font-size-h1: calc(1.4rem + 1.2vw);
    /* --font-size-h1: 1.5rem; */
    /* --font-size-h1: calc(1.375rem + 1.5vw); */
    --font-size-h2: min(1.4rem, calc(0.66rem + 0.73vw));
    --font-size-h2-mobile: 1.1rem;
    /* --font-size-subheader: calc(0.595rem + 0.649vw); */
    --font-size-subheader: 1rem;
    --font-size-subheader-mobile: 1.05rem;
    --font-size-body: 0.9rem;
    /* --font-size-body: calc(0.446rem + 0.486vw); */
    --font-size-body-mobile: 0.9rem;
    /* --font-size-small: calc(0.4em + 0.284vw); */
    --font-size-small: 0.625em;
    --font-size-small-mobile: 0.77em;
    /* Font Weights */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;
    /* Sizes */
    --header-height: 120px;
    --header-height-mobile: 80px;
    --bs-gutter-x: 1.5rem;
    --default-drop-shadow: 0 0px 20px rgb(0 0 0 / 10%);
    /* Breakpoints */
    --breakpoints-sm: 576px;
    --breakpoints-md: 768px;
    --breakpoints-lg: 992px;
    --breakpoints-xl: 1200px;
    --breakpoints-xxl: 1400px;
}


/* 1. General CSS */

html,
body {
    height: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--asphalt-grey-colour);
    font-weight: var(--font-weight-regular);
    /* font-size: var(--font-size-body); */
    padding-right: 0 !important;
    display: flex;
    flex-direction: column;
}

body.toggled {
    overflow: hidden;
}

main {
    flex: 1;
}

picture {
    display: contents;
}

h1,
.font-h1 {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-regular);
}

h2,
.font-h2 {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-regular);
}

h3,
.font-subheader {
    font-size: var(--font-size-subheader);
    font-weight: var(--font-weight-regular);
}

article h3 {
    text-decoration: underline;
    padding-top: 1rem;
}

article h2 {
    font-size: 1.6rem;
}

a,
p,
li,
.font-body {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-regular);
}

small,
.font-small {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-regular);
    line-height: 1.7em;
}

small.light {
    opacity: 0.6;
}

small.semi-light {
    opacity: 0.8;
}

@media (max-width: 576px) {
    a,
    li,
    p,
    body,
    .font-body {
        font-size: var(--font-size-body-mobile);
    }
    small,
    .font-small {
        font-size: var(--font-size-small-mobile);
    }
    h2,
    .font-2 {
        font-size: var(--font-size-h2-mobile);
        font-weight: 500;
    }
    h3,
    .font-subheader {
        font-size: var(--font-size-h3-mobile);
        font-weight: var(--font-weight-medium);
    }
}

.break-md {
    display: inline;
}

@media (min-width: 768px) {
    .break-md {
        display: block;
    }
}

h1,
h2,
h3,
h4,
h5,
p {
    margin-top: 0;
}

a {
    text-decoration: none;
}

a:hover {
    color: var(--trust-blue-color);
}

.stretched-link {
    display: contents;
    color: inherit;
    position: relative;
}

.link-strong {
    color: var(--traffic-light-colour);
    text-decoration: underline;
    font-weight: var(--font-weight-semi-bold);
}

.background-white {
    background-color: white !important;
}

.white {
    color: white;
}

.background-blue {
    background-color: var(--trust-blue-color) !important;
}

.blue {
    color: var(--trust-blue-color);
}

.background-grey {
    background-color: var(--asphalt-grey-colour) !important;
}

.grey {
    color: var(--asphalt-grey-colour);
}

.background-green {
    background-color: var(--traffic-light-colour) !important;
}

.green {
    color: var(--traffic-light-colour);
}

.background-secondary {
    background-color: var(--cloud-grey-colour) !important;
}

.background-dark {
    background-color: var(--asphalt-grey-colour);
}

.font-medium {
    font-weight: var(--font-weight-medium);
}

.font-semi-bold {
    font-weight: var(--font-weight-semi-bold);
}

.font-bold {
    font-weight: var(--font-weight-bold);
}

.drop-shadow {
    box-shadow: var(--default-drop-shadow);
}

img.display-image {
    object-fit: cover;
    border-radius: 0.8em;
}

img.blog-grid {
    height: 200px;
}

img.popular-post {
    object-fit: cover;
    aspect-ratio: 16/9;
}

.rounded-small {
    border-radius: 0.8em !important;
}

.rounded {
    /* border-radius: 0.8em !important; */
    border-radius: 2rem !important;
}

.pt-4rem {
    padding-top: 4rem;
}

.pb-4rem {
    padding-bottom: 4rem;
}

.py-4rem {
    padding-top: 4rem;
    padding-bottom: 4rem;
}


/* 1.1 Dynamic Margins */

.container.display {
    padding-top: 2.5rem;
}

@media (min-width: 992px) {
    section>.container.display {
        max-width: 800px;
        padding-top: 4rem;
    }
}

.container.display-hero1 {
    padding-top: 3rem;
}

@media (min-width: 992px) {
    section>.container.display-hero1 {
        max-width: 800px;
        padding-top: 5rem;
    }
}

@media (min-width: 576px) {
    .container.small {
        max-width: 540px;
    }
}

.row.reduced-1200 {
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.row.reduced-medium {
    max-width: 900px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.row.reduced-small {
    max-width: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.mt-6 {
    margin-top: 6rem !important;
}

.mb-6 {
    margin-bottom: 6rem !important;
}

.pt-6 {
    padding-top: 6rem !important;
}

.pb-6 {
    padding-bottom: 6rem !important;
}

@media (min-width: 992px) {
    .mx-lg-6 {
        margin-right: 5rem!important;
        margin-left: 5rem!important;
    }
}

form fieldset {
    padding-inline: 4px;
}


/* 1.2 Buttons */

.btn {
    border-radius: 5px;
}

.btn.btn.round {
    border-radius: 2em;
}

.btn.btn.feature {
    border-radius: 0.8em;
    height: 100px;
}

.btn-form-action {
    margin: 16px 0px 26px;
    padding: 13px 5px;
    min-width: 100px;
}


/* Button Primary */

.btn.btn-primary {
    border: none;
    background-color: var(--trust-blue-color);
}

.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary:active:focus {
    box-shadow: 0 0 0 0.25rem rgb(7 53 201 / 30%);
    /* background-color: var(--trust-blue-color) !important; */
}

.btn.btn-primary:hover {
    background: transparent;
    color: var(--trust-blue-color);
    outline: 1px solid;
    /* background-color: var(--trust-blue-color-dark-30); */
    /* border-color: var(--trust-blue-color); */
}

.btn.btn-outline-primary {
    color: var(--trust-blue-color);
    border-color: var(--trust-blue-color);
}

.btn.btn-outline-primary:focus,
.btn.btn-outline-primary:active,
.btn.btn-outline-primary:active:focus,
.btn.btn-outline-primary.active {
    box-shadow: 0 0 0 0.25rem rgb(7 53 201 / 30%);
}

.btn.btn-outline-primary:hover,
.btn.btn-outline-primary.active {
    color: var(--cloud-grey-colour);
    background-color: var(--trust-blue-color);
    border-color: var(--trust-blue-color);
}


/* Button Secondary */

.btn.btn-secondary {
    border: none;
    background-color: var(--asphalt-grey-colour);
}

.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary:active:focus {
    box-shadow: 0 0 0 0.25rem rgb(64 64 64 / 30%);
}

.btn.btn-secondary:hover {
    background: transparent;
    color: var(--asphalt-grey-colour);
    outline: 1px solid;
}

.btn.btn-outline-secondary {
    color: var(--asphalt-grey-colour);
    border-color: var(--asphalt-grey-colour);
}

.btn.btn-outline-secondary:focus,
.btn.btn-outline-secondary:active,
.btn.btn-outline-secondary:active:focus,
.btn.btn-outline-secondary.active {
    box-shadow: 0 0 0 0.25rem rgb(64 64 64 / 30%)
}

.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary.active {
    color: var(--cloud-grey-colour);
    background-color: var(--asphalt-grey-colour);
    border-color: var(--asphalt-grey-colour);
}


/* Button Dark */

.btn.btn-dark {
    border: none;
    background-color: var(--dark-grey-colour);
}

.btn.btn-dark:focus,
.btn.btn-dark:active,
.btn.btn-dark:active:focus {
    box-shadow: 0 0 0 0.25rem rgb(48 48 48 / 30%);
}

.btn.btn-dark:hover {
    background: transparent;
    color: var(--dark-grey-colour);
    outline: 1px solid;
}

.btn.btn-outline-dark {
    color: var(--dark-grey-colour);
    border-color: var(--dark-grey-colour);
}

.btn.btn-outline-dark:focus,
.btn.btn-outline-dark:active,
.btn.btn-outline-dark:active:focus,
.btn.btn-outline-dark.active {
    box-shadow: 0 0 0 0.25rem rgb(48 48 48 / 30%);
}

.btn.btn-outline-dark:hover,
.btn.btn-outline-dark.active {
    color: var(--cloud-grey-colour);
    background-color: var(--dark-grey-colour);
    border-color: var(--dark-grey-colour);
}


/* Button Success */

.btn.btn-success {
    border: none;
    background-color: var(--traffic-light-colour);
}

.btn.btn-success:focus,
.btn.btn-success:active,
.btn.btn-success:active:focus {
    box-shadow: 0 0 0 0.25rem rgb(24 229 190 / 30%);
}

.btn.btn-success:hover {
    background: transparent;
    color: var(--traffic-light-colour);
    outline: 1px solid;
}

.btn.btn-outline-success {
    color: var(--traffic-light-colour);
    border-color: var(--traffic-light-colour);
}

.btn.btn-outline-success:focus,
.btn.btn-outline-success:active,
.btn.btn-outline-success:active:focus,
.btn.btn-outline-success.active {
    box-shadow: 0 0 0 0.25rem rgb(24 229 190 / 30%);
}

.btn.btn-outline-success:hover,
.btn.btn-outline-success.active {
    color: var(--cloud-grey-colour);
    background-color: var(--traffic-light-colour);
    border-color: var(--traffic-light-colour);
}


/* Button Silver */

.btn.btn-silver {
    border: none;
    background-color: linear;
    background: var(--silver);
    font-weight: var(--font-weight-semi-bold);
    color: var(--asphalt-grey-colour);
}


/* Button Bronze */

.btn.btn-bronze {
    border: none;
    background-color: linear;
    background: var(--bronze);
    font-weight: var(--font-weight-semi-bold);
    color: var(--asphalt-grey-colour);
}


/* Button Gold */

.btn.btn-gold {
    border: none;
    background-color: linear;
    background: var(--gold);
    font-weight: var(--font-weight-semi-bold);
    color: var(--asphalt-grey-colour);
}


/* Other */

.btn.btn-outline-secondary.feature {
    border-width: 2px;
}

.btn.btn-outline-secondary.feature:hover {
    background-color: transparent;
    color: var(--asphalt-grey-colour);
}

.btn.btn-light-circular {
    position: relative;
    background-color: white;
    border-radius: 50%;
    border-top-right-radius: 5%;
    width: 100%;
    height: 0;
    padding: 0;
    padding-bottom: 100%;
    box-shadow: var(--default-drop-shadow);
    transition: all .2s ease-in-out;
}

.btn.btn-light-circular:focus {
    box-shadow: 0 0 0 0.25rem rgb(24 229 190 / 50%);
}

.btn.btn-light-circular:hover {
    transform: scale(1.07);
}

.btn.cta {
    line-height: 2.5em;
    min-width: 200px;
}

.btn.btn-circular-arrow {
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid var(--asphalt-grey-colour);
    width: 50px;
    height: 50px;
}

.btn.btn-circular-arrow:active {
    box-shadow: 0 0 0 0.25rem rgb(64 64 64 / 30%);
}


/* 1.3 Cards */

.card {
    border-radius: 0.8em;
    border: none;
}

.card.dark {
    background-color: var(--asphalt-grey-colour);
    color: white;
}

.card.centre>.card-body {
    text-align: center;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* 1.4 Accordion */

.accordion-flush {
    color: var(--asphalt-grey-colour);
}

.accordion-flush .accordion-item,
.accordion-flush .accordion-item .accordion-button {
    background-color: transparent;
}

.accordion-flush .accordion-item {
    border-color: var(--asphalt-grey-colour);
}

.accordion-button:focus,
.accordion-button {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: inherit;
}

.accordion-flush .accordion-item .accordion-button {
    font-weight: 500;
}

.accordion-body {
    padding-top: 0;
}


/* 1.5 Star Rating */

.star-rating {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.star-rating .star {
    width: 20px;
    height: 20px;
    background-size: cover;
}

.star-rating .star.small {
    width: 15px;
    height: 15px;
    margin: 0 5px;
}

.star-rating .star.full {
    background-image: url(images/icons/star-filled.svg);
}

.star-rating .star.half {
    background-image: url(images/icons/star-half.svg);
}

.star-rating .star.empty {
    background-image: url(images/icons/star-empty.svg);
}


/* 1.6 Slick slider */

.slick-slider {
    margin-bottom: 0 !important;
}

.slick-slider>.slick-dots {
    padding: 1rem 0;
}

.slick-dots {
    position: relative;
    bottom: 0;
}

.slick-dots li button:before,
.slick-dots li.slick-active button:before {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--trust-blue-color);
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: var(--trust-blue-color);
}


/* Force same height */

.slick-track {
    display: flex !important;
    /* height: 100%; */
}

.slick-slide {
    height: inherit !important;
}

.slick-slide>div {
    height: 100%;
}


/* 1.7 Review Slider */

.reviews-slider {
    display: contents;
    height: 100%;
    width: 100%;
}

.reviews-slider .card {
    width: 360px;
    box-shadow: var(--default-drop-shadow);
    border: 1px solid var(--asphalt-grey-colour);
    padding: 2rem 1.4rem;
}

@media (max-width: 576px) {
    .reviews-slider .card {
        width: 300px;
    }
}

.reviews-slider .card-body .author {
    font-weight: var(--font-weight-semi-bold);
    color: var(--traffic-light-colour);
    align-self: flex-end;
    margin-bottom: 0;
}

.reviews-slider .card-body .lower {
    flex-grow: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.reviews-slider .card-body .review-details-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.reviews-slider .card-body .review-author-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.reviews-slider .card-body .review-author-container p {
    font-size: 0.75rem;
}

.reviews-slider .card-body .review-title {
    font-size: 0.9rem;
}

.reviews-slider .card-body .review-content {
    font-size: 0.75rem;
}

.reviews-slider .slick-list {
    border-left: 1px solid var(--asphalt-grey-colour);
}

.ratings-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ratings-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media (max-width: 576px) {
    .ratings-badge {
        margin: 0 15%;
        border-top: 1px solid;
        border-bottom: 1px solid;
        padding: 5% 0;
    }
}

.ratings-badge p {
    color: black;
}

.ratings-badge h1 {
    font-weight: var(--font-weight-semi-bold);
}

.ratings-badge img {
    width: 4rem;
}

.ratings-badge span {
    width: 8.5rem;
}


/* 1.8 Tracks */

.tracks-root {
    width: 325px;
    height: 325px;
    position: absolute;
}

.tracks-root.bottom-left {
    left: 0;
    bottom: 0;
    transform: translate(-50%, 50%);
}

.tracks-root.bottom-right {
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%);
}

.tracks-root.top-right {
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
}

.tracks-root.top-left {
    left: 0;
    top: 0;
    transform: translate(-50%, 50%);
}

.tracks-background {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    color: var(--traffic-light-colour);
    left: 0;
    display: block;
    top: 0;
    border: 60px solid;
}

.tracks-root svg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
}

.tracks {
    stroke: white;
    stroke-dasharray: 1 1 15;
    stroke-linecap: round;
    fill: transparent;
    stroke-width: 5;
}

.tracks-root.scroll svg {
    animation: tracks-rotate 2s ease-out;
}

.tracks-root.scroll svg {
    transform: rotate(45deg);
}

@keyframes tracks-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}


/* 1.9 Seo List */

ul.seo-list {
    list-style: none;
}

ul.seo-list li {
    align-items: center;
    display: flex;
}

ul.seo-list li:before {
    content: "";
    display: block;
    background: url("images/icons/check.svg") no-repeat;
    width: 1em;
    height: 1em;
    float: left;
    margin: 0 0.75rem 0 0;
    background-size: contain;
    flex-shrink: 0;
}

ul.seo-list.large li:before {
    width: 1.5em;
    height: 1.5em;
}

ul.seo-list li h3 {
    margin-bottom: 0;
}

ul.seo-list li:not(:last-child) {
    margin-bottom: 5%;
}

ul.seo-list.compact li:not(:last-child) {
    margin-bottom: 0.5rem;
}

/* ul.seo-list.compact li {
    justify-content: center;
} */

/* 1.10 Seo card */

.seo-card {
    border: none;
    background-color: var(--asphalt-grey-colour);
    color: var(--cloud-grey-colour);
}

.seo-card-header img {
    width: 100%;
    height: 10rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.seo-card p {
    /* font-size: 0.7rem; */
    font-weight: 300;
}


/* 1.11 Scroll Down Indicator */

.scroll-down-indicator {
    width: 16px;
    height: 16px;
    padding: 0;
    position: relative;
}

.scroll-down-indicator svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.scroll-down-indicator path {
    stroke: var(--traffic-light-colour);
}

.scroll-down-indicator.active {
    animation: fade_move_down 3s ease-in-out infinite;
}

@keyframes fade_move_down {
    50% {
        opacity: 1;
        transform: translate(0, 10px);
        opacity: 0.2;
    }
    100% {
        transform: translate(0, -0px);
        opacity: 1;
    }
}


/* 1.12 Backgrounds */

.background-people {
    background-image: url(images/reduced/people-together.jpg);
}

.background-blog {
    background-image: url(images/reduced/man-laptop-store.jpg);
}

.background-about {
    background-image: url(images/reduced/car-aerial.jpg);
}

.background-pricing {
    background-image: url(images/man-discussing-at-counter.jpg);
}

.background-dog {
    background-image: url(images/reduced/dog-looking-out-car-beach.jpg);
}

.background-bikes {
    background-image: url(images/reduced/people-on-bike-flipped.jpg);
}

.background-caravan {
    background-image: url(images/reduced/caravan-on-trip-flipped.jpg);
}


/* 1.13 Icons */

.icon-long-arrow-left {
    background-image: url(images/icons/long-arrow-left.svg);
    background-size: contain;
    height: 1.2rem;
    width: 8rem;
    background-repeat: no-repeat;
    background-origin: content-box;
}

.icon-long-arrow-right {
    background-image: url(images/icons/long-arrow-right.svg);
    background-size: contain;
    height: 1.2rem;
    width: 8rem;
    background-repeat: no-repeat;
    background-origin: content-box;
}

.icon-arrow-left {
    background-image: url(images/icons/arrow-left.svg);
    background-size: contain;
    height: 1.2rem;
    width: 6rem;
    background-repeat: no-repeat;
    background-origin: content-box;
}

.icon-arrow-right {
    background-image: url(images/icons/arrow-right.svg);
    background-size: contain;
    height: 1.2rem;
    width: 6rem;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-position-x: right;
}

.icon-check {
    background-image: url("images/icons/check.svg");
    background-size: contain;
    height: 1rem;
    width: 1rem;
    background-repeat: no-repeat;
    background-origin: content-box;
}


/* 1.14 Speech bubble */

.speech-bubble {
    border-radius: 50%;
    background-color: var(--trust-blue-color);
    width: 35%;
    height: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    position: absolute;
    max-width: 12em;
    padding-bottom: min(35%, 12em);
}

.speech-bubble.left {
    border-bottom-left-radius: 5%;
}

.speech-bubble.right {
    border-bottom-right-radius: 5%;
}

.speech-bubble>.text-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10%;
}

.speech-bubble>.text-container p {
    margin-bottom: 0;
}


/* 1.15 Tease Featured */

.tease.featured .card {
    display: flex;
    justify-content: end;
}

@media (max-width: 576px) {
    .tease.featured .card {
        min-height: 22rem;
    }
}

.tease.featured .content {
    z-index: 1;
}

.tease.featured img {
    position: absolute;
}


/* 1.16 Warning Box */

.warning-box {
    /* background-color: white !important; */
    /* border: 1px solid lightgrey; */
    /* padding: 0.5rem; */
    border-radius: 5px;
    margin-top: 2rem !important;
    line-height: 0.5;
}


/* 1.17 Info / product cards */

@media (min-width: 576px) {
    .product-table-body {
        transform: translateX(0.75rem);
    }
    .product-table-body .card-left {
        margin-left: -1.5rem;
        margin-right: 0.75rem;
    }
    .product-table-body .card-right {
        margin-left: 0.75rem;
    }
}

.bio-info-card {
    border: 1px solid var(--asphalt-grey-colour);
    background-color: white;
    border-radius: 0.8em;
    height: 100%;
}

.info-card {
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--asphalt-grey-colour);
    background-color: white;
    border-radius: 0.8em;
    height: 8rem;
}

.product-card {
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 2px solid var(--asphalt-grey-colour);
    border-radius: 0.8em;
    height: 8rem;
}

.product-card th {
    font-size: x-large;
}

.product-card.silver {
    background: linear-gradient(93.42deg, #C0C0C0 0%, rgba(192, 192, 192, 0) 0.01%, #C0C0C0 100.02%);
}

.product-card.bronze {
    background: linear-gradient(94.38deg, #C4A66F 0.43%, rgba(195, 166, 111, 0) 0.43%, #C3A66F 75.15%);
}

.product-card.gold {
    background: linear-gradient(90deg, #D4AF37 0%, rgba(212, 175, 55, 0) 0.01%, #D4AF37 86.92%);
}


/* 1.18: Avatars */

.post-avatar img {
    border-radius: 50%;
}


/* 2. Navigation */

.header {
    width: 100%;
    position: fixed;
    background: #FFF;
    height: var(--header-height);
    border-bottom: 1px solid var(--asphalt-grey-colour);
    /* backdrop-filter: blur(75px); */
    z-index: 1000;
    background-color: rgb(255 255 255 / 96%);
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .header {
        height: var(--header-height-mobile) !important;
    }
    .logo>a>img {
        width: calc(var(--header-height-mobile) * 0.70);
    }
    .nav-offset {
        height: var(--header-height-mobile) !important;
    }
}

.nav-offset {
    height: var(--header-height);
}

.navigation-main {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    display: flex;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 1em;
    /* font-size: 20px; */
    /* line-height: 30px; */
    color: var(--asphalt-grey-colour);
}

.navigation-main ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    left: -999em;
}

.navigation-main li {
    display: inline-block;
    position: relative;
    text-align: left;
    list-style: none;
}

@keyframes fade {
    from {
        opacity: 0.6;
    }
    to {
        opacity: 1;
    }
}

.navigation-main li:hover>ul {
    left: auto;
    animation: fade 0.3s
}

.navigation-main li li {
    display: block;
}

.navigation-main li li:hover>ul {
    left: 100%;
    top: 0;
}

.navigation-main li>a {
    text-decoration: none;
    color: var(--asphalt-grey-colour);
}

.navigation-main li>a:hover,
.footer-nav a:hover {
    color: var(--traffic-light-colour);
}

.navigation-main li.current_page_item>a,
.navigation-main li.current-menu-ancestor>a,
.navigation-main li.current-menu-parent>a {
    color: var(--trust-blue-color);
}

.navigation-main ul.sub-menu {
    width: 200px;
    background-color: #FFF;
    box-shadow: var(--default-drop-shadow);
}

.navigation-main ul.sub-menu>li {
    background-color: #FFF;
    padding: 1.2rem;
    line-height: 1rem;
}

.navigation-main ul.sub-menu>li:not(:last-child) {
    border-bottom: 1px solid var(--asphalt-grey-colour);
}

.logo {
    display: flex;
    align-items: center;
}

.logo>a>img {
    padding-right: 20px;
    height: 45px;
}

.logo>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--asphalt-grey-colour);
    font-size: 2em;
    font-family: Poppins;
    line-height: 2.2em;
}

.logo>a h2 {
    line-height: 0.8em;
    margin-bottom: 0;
    font-weight: 400;
}

.nav-cta {
    align-items: center;
    justify-content: flex-end;
}

.nav-cta .btn {
    font-size: 1em;
}

.nav-cta .btn:first-child {
    margin-right: 10px;
}

.nav-rhs-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* Hamburger */

.hamburger-root {
    height: 100%;
    display: flex;
    align-items: center;
    align-self: flex-end;
    width: 32px;
    position: relative;
}

.hamburger {
    position: absolute;
    right: 0;
    z-index: 999;
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 15px;
    background: transparent;
    border: none;
}

.hamburger:hover,
.hamburger:focus,
.hamburger:active {
    outline: none;
}

.hamburger.is-closed:before {
    content: '';
    display: block;
    width: 100px;
    font-size: 14px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover:before {
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
    background-color: var(--asphalt-grey-colour);
}

.hamburger.is-closed .hamb-top {
    top: 5px;
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-middle {
    top: 50%;
    margin-top: -2px;
}

.hamburger.is-closed .hamb-bottom {
    bottom: 5px;
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
    top: 0;
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-bottom {
    bottom: 0;
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
    background-color: var(--asphalt-grey-colour);
}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
    top: 50%;
    margin-top: -2px;
}

.hamburger.is-open .hamb-top {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: -webkit-transform .2s cubic-bezier(.73, 1, .28, .08);
    transition: transform .2s cubic-bezier(.73, 1, .28, .08);
}

.hamburger.is-open .hamb-middle {
    display: none;
}

.hamburger.is-open .hamb-bottom {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: -webkit-transform .2s cubic-bezier(.73, 1, .28, .08);
    transition: transform .2s cubic-bezier(.73, 1, .28, .08);
}

.hamburger.is-open:before {
    content: '';
    display: block;
    width: 100px;
    font-size: 14px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.hamburger.is-open:hover:before {
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}


/* Side nav */

.sidenav {
    width: 100vw;
    background-color: var(--cloud-grey-colour);
    color: var(--traffic-light-colour);
    text-align: center;
    padding-left: 4rem;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#sidenav-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 1000;
    width: 0;
    margin-right: -100vw;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: var(--cloud-grey-colour);
}

#sidenav-wrapper .hamburger-root {
    height: var(--header-height);
}

#sidenav-wrapper .hamburger.hamburger {
    opacity: 1;
    transition: opacity .1s ease-in-out;
}

#sidenav-wrapper .hamburger.hamburger.is-closed {
    opacity: 0;
    transition: opacity .1s ease-in-out;
}

body {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

body.toggled #sidenav-wrapper {
    width: 100vw;
}

body.toggled main {
    margin-left: 100vw;
}

.sidenav-main {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 2.5em;
    color: var(--asphalt-grey-colour);
    flex-direction: column;
    align-items: flex-start;
}

.sidenav-main ul {
    margin: 0;
    /* padding: 0; */
    list-style: none;
    /* position: absolute; */
    /* left: -999em; */
}

.sidenav-main li {
    font-size: var(--font-size-body-mobile);
    text-align: left;
}

.sidenav-main li>a {
    text-decoration: none;
    color: var(--asphalt-grey-colour);
}

.sidenav-main li.current_page_item>a,
.sidenav-main li.current-menu-ancestor>a,
.sidenav-main li.current-menu-parent>a {
    color: var(--trust-blue-color);
}

.sidenav-cta {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

.sidenav-cta .btn {
    width: 200px;
    height: 40px;
}

.sidenav-cta .btn:first-child {
    margin-bottom: 1rem;
}


/* Footer */

.footer,
.footer a {
    color: var(--cloud-grey-colour);
}

.footer .content>div>div:not(:last-child) {
    padding-right: 20% !important;
}

.footer .warning-button {
    display: inline-flex;
    align-items: center;
    height: 2.5rem;
    font-weight: 700;
    background-color: var(--cloud-grey-colour);
    color: var(--dark-grey-colour);
    padding: 0 1.5em;
    font-size: 0.8em;
}

@media (max-width: 576px) {
    .footer .logo {
        justify-content: space-between;
    }
}

.footer .rhs>div {
    align-items: flex-start;
}

.icon {
    display: inline-block;
    height: 1em;
    width: 1em;
    margin-right: 0.5em;
    background-size: cover;
}

.icon.large {
    height: 30px;
    width: 30px;
}

.icon-warning {
    background-image: url(images/icons/warning.svg);
}

.icon-facebook {
    background-image: url(images/icons/facebook-circle.svg);
}

.icon-instagram {
    background-image: url(images/icons/instagram-circle.svg);
}

.icon-heart {
    background-image: url(images/icons/heart.svg);
}

.icon-star-soft {
    background-image: url(images/icons/star-soft.svg);
}

.icon-letter {
    background-image: url(images/icons/letter.svg);
}

.icon-first-aid {
    background-image: url(images/icons/first-aid.svg);
}

.icon-person-outline {
    background-image: url(images/icons/person-outline-thick.svg);
}

.icon-edit {
    background-image: url(images/icons/edit.svg);
}


/* Hero */

section.hero {
    background: url(images/landing-gradient.png);
    background-size: cover;
}

@media (min-width: 992px) {
    section.hero .slider-content {
        margin-bottom: 2rem !important;
    }
}

section.hero>div>div.warning {
    font-size: 0.8em;
    opacity: 0.4;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
}

@media (max-width: 767px) {
    section.hero>div>div.warning {
        text-align: left;
    }
}

section.hero div.scrolldown {
    text-align: center;
}

.landing-caption {
    font-weight: 400;
    text-align: center;
    line-height: 1.2em;
}

.hero-vehicle-btn>div {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-vehicle-btn img {
    width: 60%;
}

.hero-vehicle-btn small {
    transform: translateY(-30%);
    font-size: 0.7rem;
}


/* Section: Hero 2 */

.hero-2 {
    position: relative;
    background-color: var(--cloud-grey-colour);
}

.hero-2 .banner-image-gradient {
    height: 70%;
    z-index: 1;
}

.hero-hanging-background {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 0;
    height: 70%;
    background-position-x: 75%;
}

section.hero-2 .display-text {
    z-index: 10;
}

section.hero-2 .card {
    border-radius: 1.5em;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-hanging-background {
        height: 82% !important;
        background-position-x: center;
    }
    section.hero-2 .banner-image-gradient {
        height: 82% !important;
    }
}


/* Section: How to Apply */

section.how-to-apply .image {
    background-image: url(images/reduced/man-with-dog.jpg);
    background-position: center;
    background-size: cover;
    min-height: 350px;
    display: flex;
    justify-content: center;
}

section.how-to-apply .image.secondary {
    background-image: url(images/reduced/writing-on-notepad.jpg);
}

section.how-to-apply {
    background-color: var(--cloud-grey-colour);
}

section.fp-how-to-appy>div>div.content {
    padding: 4rem 7rem;
}

section.how-to-apply .content {
    padding: 4% 7%;
}

section.how-to-apply .content .h4 {
    font-weight: 400;
}

section.how-to-apply .speech-bubble {
    transform: translate(50%, -20%);
    position: relative;
}


/* Section: Our Difference */

section.our-difference .image {
    height: 350px;
    position: relative;
}

section.our-difference .group {
    position: relative;
    overflow: hidden;
}

section.our-difference .card {
    height: 150px;
}

@media (min-width: 576px) {
    section.our-difference .card {
        height: 350px;
    }
}

@media (min-width: 768px) {
    section.our-difference .card {
        height: 250px;
    }
}


/* section.our-difference .card-body {
    padding: 2rem !important;
} */

section.our-difference .card-body .font-h1 {
    font-size: 2rem;
}

section.our-difference .card-body .font-subheader {
    font-weight: 300;
    line-height: 1.6em;
    margin-bottom: 0;
}


/* Section: Loan Comparison */

section.loan-comparison .product {
    width: 400px;
    margin: 1px 20px;
}

section.loan-comparison .carousel-indicators {
    position: relative;
}

section.loan-comparison .dots>.slick-dots {
    width: inherit;
}

.product {
    outline: 1px solid;
    border: none;
}

.product-header {
    text-align: center;
    color: var(--asphalt-grey-colour);
    border-top-left-radius: 0.8em;
    border-top-right-radius: 0.8em;
}

.product.grey {
    outline-color: var(--asphalt-grey-colour);
}

.product.bronze {
    outline-color: var(--bronze-colour);
}

.product.silver {
    outline-color: var(--silver-colour);
}

.product.gold {
    outline-color: var(--gold-colour);
}

.product.grey .product-header {
    background-color: var(--asphalt-grey-colour);
    color: var(--cloud-grey-colour);
}

.product.bronze .product-header {
    background: var(--bronze);
}

.product.silver .product-header {
    background: var(--silver);
}

.product.gold .product-header {
    background: var(--gold);
}

section.loan-comparison table .no-border {
    border: transparent;
}

section.loan-comparison table small {
    line-height: 0;
}

section.loan-comparison table .value-row>td {
    padding-bottom: 0;
}

section.loan-comparison table .info-row>td {
    padding-top: 0;
    padding-bottom: 0.4em;
}

table>:not(:first-child) {
    border-top: inherit !important;
}

@media (min-width: 992px) {
    section.loan-comparison .slider-container {
        border-left: 1px solid var(--asphalt-grey-colour);
        border-right: 1px solid var(--asphalt-grey-colour);
    }
}

section.loan-comparison .mobile-arrow {
    display: block !important;
}

section.loan-comparison .btn-left,
section.loan-comparison .btn-right {
    cursor: pointer;
}

section.loan-comparison .btn-circular-arrow div {
    background-size: auto;
    background-position-y: center;
    height: 100%;
}

section.loan-comparison .btn-circular-arrow {
    display: none !important;
    position: absolute;
    top: 50%;
}

section.loan-comparison .btn-left.btn-circular-arrow {
    left: -85px;
}

section.loan-comparison .btn-right.btn-circular-arrow {
    right: -85px;
}

section.loan-comparison .btn-right.btn-circular-arrow div {
    background-position: right;
}


/* 992 + 85 */

@media (min-width: 1127px) {
    section.loan-comparison .btn-circular-arrow {
        display: flex !important;
    }
    section.loan-comparison .mobile-arrow {
        display: none !important;
    }
}

#product-slider .slick-track {
    height: 100%;
}


/* Section: Requirements to apply */

section.requirements-to-apply .speech-bubble {
    transform: translate(-20%, -30%);
    width: 18% !important;
    max-width: 9em;
    padding-bottom: min(18%, 9em);
}

@media (max-width: 576px) {
    section.requirements-to-apply .speech-bubble {
        transform: translate(-50%, -20%);
        max-width: inherit;
        width: 30% !important;
        padding-bottom: 30%;
        left: 30%;
    }
}


/* Section: Banner */

.banner-container {
    height: calc(25rem + var(--header-height-mobile));
    position: relative;
}

.banner-container.slim {
    height: calc(15rem + var(--header-height-mobile)) !important;
}

.banner-container .container-fluid {
    padding-top: var(--header-height-mobile);
}

@media (min-width: 992px) {
    .banner-container.slim {
        height: calc(15rem + var(--header-height-mobile)) !important;
    }
    .banner-container {
        height: calc(25rem + var(--header-height));
    }
    .banner-container .container-fluid {
        padding-top: var(--header-height);
    }
}

.banner-container .banner-text {
    height: 100%;
    align-items: center !important;
}

.banner-image-gradient {
    background-size: cover;
    background-position: center;
    /* background-image: linear-gradient(to right, #fff, rgba(196, 196, 196, 0) 90%); */
    background-image: linear-gradient(to right, #fff, #ffffffcc 40%, rgb(196 196 196 / 0%) 80%);
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 1;
}

.banner-image {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    background-size: cover;
    background-position: center;
}

@media (min-width: 1200px) {
    .banner-image {
        object-position: top;
    }
}

.display-text {
    z-index: 10;
}


/* Page: FAQs */

.button-controls {
    justify-content: space-between;
}

.button-controls .btn,
.search-bar {
    width: inherit;
    flex-grow: 1;
}

.button-controls .search-bar {
    border-radius: 2em;
}


/* Page: 404 */

.feature-image-404 {
    max-width: 350px;
    margin: auto;
}

.container-image-404 {
    border-bottom: 1px solid var(--asphalt-grey-colour);
}

.secondary-text-404 h3 {
    font-size: 1.2rem;
    font-weight: 400;
}

.secondary-text-404 {
    text-align: center;
}

.buttons-404 {
    display: flex;
    justify-content: center;
    margin: -5px -5px;
}

.buttons-404 a {
    width: inherit;
    margin: 5px 5px;
}


/* Page: About Us */

@media (min-width: 576px) {
    .team-grid-bl {
        border-left: 1px solid var(--asphalt-grey-colour);
    }
}

.team-grid p.role {
    font-style: italic;
}

.toggle-bio .icon {
    float: right;
    font-size: var(--font-size-h3-mobile);
}

.team-grid>div {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.flip .card {
    -webkit-transform-style: preserve-3d;
    -webkit-transition: 0.5s;
    transform-style: preserve-3d;
    transition: 0.5s;
    -webkit-perspective: 800;
    perspective: 800;
    position: relative;
    display: flex;
}

.card.flipped {
    -webkit-transform: rotatey(-180deg);
    transform: rotatey(-180deg);
}

.card .back {
    -webkit-transform: rotatey(-180deg);
    transform: rotatey(-180deg);
    width: 100%;
    height: 100%;
}

.card .front {
    z-index: 1;
    position: absolute;
    height: 100%;
    width: 100%;
}

.card .face {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 2;
}

.card-bio {
    background-color: var(--asphalt-grey-colour);
    color: white;
    border-radius: 0.8em;
}


/* Loan Calculator */

svg#slider,
#track-group {
    fill: none;
    stroke: var(--asphalt-grey-colour);
    stroke-width: 8;
    stroke-linecap: round;
}

#mask-inner {
    stroke-width: 8;
    stroke-linecap: round;
}

#track-inner {
    opacity: 0.1;
    stroke: var(--asphalt-grey-colour);
}

#track-fill {
    stroke: var(--asphalt-grey-colour);
    /* -moz-animation: spin 20s infinite linear;
-webkit-animation: spin 20s infinite linear;
animation: spin 20s infinite linear; */
    transform-origin: 50% calc(101% - 4.5px);
}

#handle-group {
    fill: var(--asphalt-grey-colour);
    stroke: none;
}

.dial {
    position: absolute;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--asphalt-grey-colour);
    z-index: 100;
}

.slider-text {
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.slider-text p.value {
    margin: 0;
    line-height: 1.6em;
    font-size: 1.2rem;
}

@media (max-width: 576px) {
    .slider-text p.value {
        font-size: 0.75rem;
    }
}

.slider-text p.title {
    margin: 0;
    line-height: 1em;
    font-size: 0.8rem;
}

.slider-container {
    position: relative;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.repayments-button {
    width: 100%;
}

.repayments-button>select {
    width: 100%;
    font-size: 0.8em;
    border: none;
    text-decoration: underline;
    text-align: center;
    background-color: transparent;
}

.repayments-button div.amount {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    font-size: 0.8em;
}

.repayments-button div.amount>.h4 {
    margin: 0;
    font-weight: 600;
}

@media (min-width: 576px) {
    .repayments-button div.amount>.h4 {
        margin-right: 4px;
    }
}

.repayments-button .dropdown-toggle {
    outline: none !important;
    background-color: transparent;
    box-shadow: none !important;
    border: 0;
    pointer-events: none;
    padding: 0;
}

.repayments-button .dropdown-toggle:focus {
    outline: none !important;
}

.repayments-button .dropdown-toggle .filter-option-inner-inner {
    text-align: center !important;
    text-decoration: underline;
    font-size: 0.8em;
}

.repayments-button .dropdown-menu .text {
    font-size: var(--font-size-subheader);
}

.repayments-button .dropdown-item.active {
    background-color: var(--trust-blue-color);
}

.calc-actions .select-picker {
    width: 100% !important;
}

.calc-actions button.feature {
    height: 100px;
}

@media (max-width: 576px) {
    .repayments-button div.amount {
        flex-direction: column;
        align-items: center;
    }
}

small.warning {
    text-align: center;
}

@media (max-width: 576px) {
    .calculator small.warning {
        text-align: left;
    }
}

.loan-calculator img.smaller {
    width: 50%;
    margin: 3px;
}