﻿@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

.customer-landing {
    background: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

    /*---------------------------------------
   TYPOGRAPHY
-----------------------------------------*/

    .customer-landing h1,
    .customer-landing h2,
    .customer-landing h3,
    .customer-landing h4,
    .customer-landing h5,
    .customer-landing h6 {
        font-weight: 300;
        line-height: normal;
        letter-spacing: 0;
    }

    .customer-landing h1 {
        color: #292929;
        font-size: 6em;
        margin-bottom: 30px;
    }

    .customer-landing h2 {
        color: #393939;
    }

    .customer-landing h3 {
        color: #505050;
        font-weight: 500;
        margin-bottom: 0;
    }

    .customer-landing h4 {
        color: #696969;
        line-height: normal;
    }

    .customer-landing p {
        color: #757575;
        font-size: 1.25em;
        font-weight: normal;
        line-height: 1.6em;
    }

    .customer-landing strong {
        font-weight: 500;
    }

    /*---------------------------------------
   GENERAL
-----------------------------------------*/

    .customer-landing * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .customer-landing *:before,
        .customer-landing *:after {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }

    .customer-landing a {
        color: #02191C;
        font-weight: normal;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        text-decoration: none !important;
    }

        .customer-landing a:hover,
        .customer-landing a:active,
        .customer-landing a:focus {
            outline: none;
        }

    .customer-landing .section-title {
        margin-bottom: 60px;
    }

        .customer-landing .section-title h2 {
            margin-top: 0;
            margin-bottom: 10px;
            line-height: 0;
        }

        .customer-landing .section-title .line-bar {
            color: #d9d9d9;
            display: block;
            font-size: 5em;
            line-height: 0;
        }

    .customer-landing .section-btn {
        border-radius: 58px;
        cursor: pointer;
        font-size: inherit;
        font-weight: normal;
        padding: 10px 27px;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

        .customer-landing .section-btn:hover,
        .customer-landing .section-btn:focus,
        .customer-landing .section-btn:active {
            border-color: transparent !important;
            outline: none !important;
        }

    .customer-landing .btn-main {
        background: #DFFF51; /* fallback for old browsers */
        background: -webkit-linear-gradient(to right, #8BFF75, #DFFF51); /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #8BFF75, #DFFF51); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        color: black;
        border: none;
    }

        .customer-landing .btn-main:hover,
        .customer-landing .btn-main:focus,
        .customer-landing .btn-main:active {
            background-image: linear-gradient(to right, #8bff75, #8bff75) !important;
            color: black !important;
        }

    /*---------------------------------------
   PRE LOADER
-----------------------------------------*/

    .customer-landing .preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        background: none repeat scroll 0 0 white;
    }

    .customer-landing .spinner {
        border: 1px solid transparent;
        border-radius: 3px;
        position: relative;
    }

        .customer-landing .spinner:before {
            content: '';
            box-sizing: border-box;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 45px;
            height: 45px;
            margin-top: -10px;
            margin-left: -10px;
            border-radius: 50%;
            border: 1px solid #575757;
            border-top-color: white;
            animation: spinner .9s linear infinite;
        }

/* Notice: This may be a typo in the original code */
@-webkit-@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/*---------------------------------------
   MENU
-----------------------------------------*/

.customer-landing .logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 29px;
    font-weight: 600;
}

.customer-landing .custom-navbar {
    position: absolute;
}

    .customer-landing .custom-navbar.top-nav-collapse {
        background: #02191cd9;
        padding: 0 !important;
    }

        .customer-landing .custom-navbar.top-nav-collapse .navbar-brand {
            padding: 8px 0 4px !important;
        }

.customer-landing .navbar-brand {
    color: white;
}

    .customer-landing .navbar-brand:hover,
    .customer-landing .navbar-brand:focus {
        color: white !important;
    }

.customer-landing .navbar-toggler {
    border: none;
}

    .customer-landing .navbar-toggler:focus {
        box-shadow: none;
    }

.customer-landing .navbar-toggler-icon {
    background-image: url('../images/landing-page/mob-menu.svg') !important;
    width: 54px;
    height: 36px;
}

.customer-landing .nav-link {
    color: #ffffffb3 !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
}

    .customer-landing .nav-link:hover,
    .customer-landing .nav-link:focus {
        color: white !important;
    }

.customer-landing .top-nav-collapse .navbar-nav li a {
    color: #02191c;
}

/*---------------------------------------
   HOME
-----------------------------------------*/

.customer-landing .welcome {
    background: url('../images/landing-page/home-bg.jpg') no-repeat center center;
    background-position: 50% 50%;
    background-size: cover;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    text-align: left;
}

.customer-landing .welcome-title {
    color: white;
    font-size: 6em;
    letter-spacing: 5px;
}

.customer-landing .welcome-description {
    color: #ffffffb3;
}

.customer-landing .learn-more {
    padding: 12px 25px;
    background-color: #02191c33;
    border: 1px solid #ffffff4d;
    transition: background-color .2s;
    color: white;
}

    .customer-landing .learn-more:hover,
    .customer-landing .learn-more:focus,
    .customer-landing .learn-more:active {
        background-color: #02191c !important;
        border: 1px solid #ffffff4d !important;
        color: white !important;
    }

.customer-landing .welcome-card {
    background-color: #02191C;
    color: white;
    padding: 32px;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
}

.customer-landing .welcome-card-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: normal;
    color: white;
}

.customer-landing .welcome-card-body {
    padding: 24px;
    border-radius: 16px;
    background-color: white;
    color: black;
}

.customer-landing .fin-request-key {
    font-size: 14px;
    line-height: normal;
    color: #000000b3;
}

.customer-landing .fin-request-value {
    font-size: 20px;
    line-height: normal;
}

.customer-landing .payment-period {
    border-left: 1px solid rgb(0 0 0 / 25%);
}

.customer-landing .welcome-card-footer {
    background-color: transparent;
    border: none;
}

/*---------------------------------------
   ABOUT
-----------------------------------------*/

.customer-landing .about-section {
    display: flex;
    background: #F2F6FA;
}

.customer-landing .about-title {
    color: #02191c;
    font-size: 48px;
    line-height: 64px;
    font-weight: 300;
    letter-spacing: 2px;
}

.customer-landing .about-description {
    color: #02191cb3;
}

.customer-landing .about-btn {
    color: white;
    background-color: #02191C;
    border-color: #02191C;
}

    .customer-landing .about-btn:hover,
    .customer-landing .about-btn:focus,
    .customer-landing .about-btn:active {
        color: white !important;
        background-color: #05444c !important;
        border-color: #05444c !important;
    }

/*---------------------------------------
   WORK
-----------------------------------------*/

.customer-landing .work-section {
    background-color: #02191C;
}

.customer-landing .work-card-title {
    font-size: 56px;
    font-weight: 500;
    color: white;
    letter-spacing: 2px;
}

.customer-landing .work-card-description {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    color: #ffffff99;
    max-width: 760px;
    letter-spacing: 0.3px;
}

.customer-landing .work-card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.customer-landing .work-card-box {
    border-radius: 15px;
}

.customer-landing .work-img {
    width: 100%;
    border-radius: 16px;
}

.customer-landing .step-number {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: normal;
    color: #ffffff66;
}

.customer-landing .step-title {
    font-size: 24px;
    line-height: normal;
    font-weight: 500;
    color: white;
    letter-spacing: 0.3px;
}

.customer-landing .step-description {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #ffffff99;
    letter-spacing: 0.1px;
}

/*!---------------------------------------
   WHY
-----------------------------------------*/

.customer-landing .why-section {
    background-color: #F2F6FA;
}

.customer-landing .why-title {
    font-size: 56px;
    line-height: normal;
    font-weight: 500;
    color: #02191C;
    letter-spacing: 0.5px;
}

.customer-landing .why-description {
    font-size: 24px;
    line-height: 34px;
    font-weight: 300;
    color: #02191C;
    letter-spacing: 0.7px;
}

.customer-landing .advantages-card-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.customer-landing .advantages-card-box {
    padding: 10px;
}

.customer-landing .advantages-card {
    border-radius: 16px;
    height: 100%;
}

.customer-landing .advantages-img {
    max-width: 52px;
}

.customer-landing .advantages-title {
    font-size: 24px;
    font-weight: 500;
    color: black;
}

.customer-landing .advantages-description {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #02191C;
    letter-spacing: 0.2px;
}

/*!---------------------------------------
   BANNER
-----------------------------------------*/

.customer-landing .banner-section {
    background-color: #F2F6FA;
}

.customer-landing .banner {
    background: url('../images/landing-page/banner-bg.jpg') no-repeat center center;
    background-position: 50% 50%;
    background-size: cover;
    border-radius: 12px;
}

.customer-landing .banner-overlay {
    border-radius: 16px;
}

.customer-landing .banner-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
    color: white;
}

.customer-landing .banner-description {
    font-size: 44px;
    line-height: normal;
    font-weight: 500;
    color: white;
    letter-spacing: 1.5px;
}

/*!---------------------------------------
   FOOTER
-----------------------------------------*/

.customer-landing .footer {
    background-color: #02191C;
}

.customer-landing .footer-logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: white;
}

    .customer-landing .footer-logo-text:hover {
        color: white;
    }

.customer-landing .social-icons {
    color: white;
}

    .customer-landing .social-icons:hover {
        color: #8BFF75;
    }

.customer-landing .footer-divider {
    color: white;
}

.customer-landing .footer-text {
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    color: #ffffff80;
}

    .customer-landing .footer-text:hover {
        color: #8BFF75;
    }

.customer-landing .footer .fa-brands {
    font-size: 18px;
}

/*!---------------------------------------
   RESPONSIVE STYLES
-----------------------------------------*/

@media screen and (max-width: 1399px) {
    .customer-landing .welcome-card {
        max-width: 100%;
    }

    .customer-landing .nav-link {
        font-size: 14px;
    }
}

@media screen and (max-width: 1199px) {
    .customer-landing .why-title {
        letter-spacing: 1px;
    }

    .customer-landing .why-description {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.2px;
    }

    .customer-landing .banner-description {
        font-size: 40px;
    }

    .customer-landing .about-img-wrapper {
        margin: 0 -20px;
        width: 100%;
    }

    .customer-landing .about-img {
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .customer-landing .welcome {
        background-position: 60% 50%;
    }

    .customer-landing .about-img-wrapper {
        width: 110%;
    }
}

@media screen and (max-width: 767.5px) {
    .customer-landing .custom-navbar {
        background: #02191C;
    }

        .customer-landing .custom-navbar .navbar {
            position: initial;
        }

        .customer-landing .custom-navbar .navbar-collapse {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            overflow: hidden;
            background: #02191C;
            width: calc(100vw + 0px);
            padding: 16px 15%;
            box-shadow: #ffffff80 0 8px 10px -8px inset;
        }

            .customer-landing .custom-navbar .navbar-collapse .navbar-nav {
                height: 100vh;
            }

            .customer-landing .custom-navbar .navbar-collapse.show .navbar-nav {
                transform: translateY(0px) translateX(0px);
                transition: height 0.5s, transform 400ms;
            }

    .customer-landing .logo-text {
        font-size: 23px;
    }

    .customer-landing .logo-img {
        width: 32px;
        height: 32px;
    }

    .customer-landing .welcome {
        background-position: 70% 50%;
    }

    .customer-landing p {
        font-size: 1em;
        line-height: normal;
    }

    .customer-landing .welcome-card {
        padding: 24px;
    }

    .customer-landing .welcome-title {
        font-size: 3em;
        letter-spacing: 2px;
    }

    .customer-landing .welcome-card-title {
        font-size: 16px;
        line-height: normal;
    }

    .customer-landing .welcome-card-body {
        padding: 21px;
    }

    .customer-landing .fin-request-value {
        font-size: 18px;
        line-height: normal;
    }

    .customer-landing .payment-period {
        border: none;
    }

    .customer-landing .divider {
        margin: 8px 0;
    }

    .customer-landing .about-title {
        font-size: 32px;
        line-height: 44px;
        letter-spacing: 1.8px;
    }

    .customer-landing .about-description {
        font-size: 18px;
        line-height: 28px;
    }

    .customer-landing .about-btn,
    .customer-landing .work-btn {
        width: 100%;
    }

    .customer-landing .work-card-title {
        font-size: 40px;
        font-weight: 400;
    }

    .customer-landing .work-card-description {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0.2px;
    }

    .customer-landing .step-description {
        letter-spacing: 0.2px;
    }

    .customer-landing .why-title {
        font-size: 40px;
    }

    .customer-landing .why-description {
        font-size: 18px;
        line-height: 28px;
    }

    .customer-landing .advantages-card-container {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .customer-landing .banner-title {
        font-size: 18px;
        line-height: 26px;
    }

    .customer-landing .banner-description {
        font-size: 32px;
        letter-spacing: 1px;
    }
}

@media screen and (max-width: 576px) {
    .customer-landing .custom-navbar .navbar-collapse {
        padding: 16px 10%;
    }
}

@media screen and (min-width: 1400px) {
    .customer-landing .container,
    .customer-landing .container-lg,
    .customer-landing .container-md,
    .customer-landing .container-sm,
    .customer-landing .container-xl,
    .customer-landing .container-xxl {
        max-width: 1320px;
    }
}
