@font-face {
    font-family: Poppins-Regular;
    src: url(../../assets/fonts/Poppins-Regular.ttf) format('ttf'),
        url(../../assets/fonts/Poppins-Regular.woff) format('woff'),
        url(../../assets/fonts/Poppins-Regular.otf) format('otf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url(../../assets/fonts/Poppins-Bold.ttf) format('ttf'),
        url(../../assets/fonts/Poppins-Bold.woff) format('woff'),
        url(../../assets/fonts/Poppins-Bold.otf) format('otf');
}

@font-face {
    font-family: Poppins-Medium;
    src: url(../../assets/fonts/Poppins-Medium.ttf) format('ttf'),
        url(../../assets/fonts/Poppins-Medium.woff) format('woff'),
        url(../../assets/fonts/Poppins-Medium.otf) format('otf');
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url(../../assets/fonts/Poppins-SemiBold.ttf) format('ttf'),
        url(../../assets/fonts/Poppins-SemiBold.woff) format('woff'),
        url(../../assets/fonts/Poppins-SemiBold.otf) format('otf');
}

@font-face {
    font-family: Poppins-light;
    src: url(../../assets/fonts/Poppins-Light.ttf) format('ttf'),
        url(../../assets/fonts/Poppins-Light.woff) format('woff'),
        url(../../assets/fonts/Poppins-Light.otf) format('otf');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: #444444;
    font-family: 'Poppins';
    font-style: normal;

    /* or 127% */
}

a {
    color: #106eea;
    text-decoration: none;
}

a:hover {
    color: #3b8af2;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #106eea;
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: linear-gradient(203.84deg, #26AAE1 4.13%, #1B9ED9 50.33%, #0F91D0 98.38%);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: linear-gradient(203.84deg, #26AAE1 4.13%, #1B9ED9 50.33%, #0F91D0 98.38%);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 86px;
}

#header.fixed-top {
    height: 70px;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #222222;
}

#header .logo a span {
    color: #106eea;
}

#header .logo img {
    max-height: 40px;
}

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-button {
    background-color: #1DA0DB;
    padding: 10px 30px !important;
    border-radius: 30px;
    color: #fff !important;
    margin-left: 30px;
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #1DA0DB;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #1DA0DB;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #106eea;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 30px 0 !important;
    overflow: hidden;
}

section.thank-you {
    height: calc(100vh - 415px);
}

@media (min-width: 767px) {
    section {
        padding: 30px 0 !important;
        overflow: hidden;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f1f6fe;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Topbar Section
--------------------------------------------------------------*/
#topbar {
    position: relative;
}

.topbar-content h2 {
    font-weight: 300;
    font-size: 44px;
    margin-bottom: 30px;
}

.topbar-content h2 span {
    color: #1DA0DB;
    font-weight: 700;
}

.topbar-content h1 span {
    color: #1DA0DB;
    font-weight: 700;
}

.topbar-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 35px;
    color: #000000;
}

.topbar-content h1 {
    color: #000000;
}

.topbar-contact-box {
    box-shadow: 0px 5px 20px 0 rgba(0, 0, 0, 0.15);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.top-mobile-img {
    z-index: 2;
    /*position: absolute;*/
    right: 5%;
}

.top-bg-img {
    position: absolute;
    top: -50px;
    right: -10%;
    z-index: 1;
    visibility: visible;
}

.topbar-contact-box h3 {
    font-weight: 500;
    font-size: 24px;
    color: #222223;
    margin-bottom: 15px;
}

.topbar-contact-box label {
    color: #979797;
    font-size: 13px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    /*border: none;*/
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-group {
    margin-bottom: 20px;
}

.topbar-hurry-text {
    margin-left: 10px;
}

.topbar-contact-btn .form-group {
    margin-bottom: 0;
}

#bookDemoSubmitbtn,
#bookDemoSubmitbtn2 {
    background: linear-gradient(203.84deg, #26AAE1 4.13%, #1B9ED9 50.33%, #0F91D0 98.38%);
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    border-radius: 5px;
    padding: 13px;
    margin-bottom: 0;
}

.topbar-hurry-text p {
    margin-bottom: 0;
}

.count-box span {
    font-weight: 600;
    font-size: 30px;
    color: #000000;
}

.count-box p {
    color: #38ACDE;
    font-weight: 600;
    font-size: 16px;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}

/*--------------------------------------------------------------
# Partner Eco-system
--------------------------------------------------------------*/
#peer-to-peer {
    padding: 130px 0;
}

.partner-eco-system {
    background-color: #f9f9f9;
    padding: 25px 0 35px 20px;
}

.partner-eco-title p {
    color: #B2B7BE;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3em;
}

.partner_logo {
    width: 150px;
}

/*--------------------------------------------------------------
# Peer to Peer section
--------------------------------------------------------------*/
.peer-to-peer-content h5 {
    color: #38ACDE;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.peer-to-peer-content h2 {
    color: #1F1F26;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
}

.peer-to-peer-content p {
    font-weight: 400;
    font-size: 16px;
    color: #426666;
    line-height: 28px;
    padding: 15px 0 35px;
}

.peer-to-peer-content a {
    background-color: #1DA0DB;
    color: #fff;
    padding: 15px 35px;
    border-radius: 40px;
    font-size: 16px;
}

/*--------------------------------------------------------------
# work
--------------------------------------------------------------*/
section#work {
    padding: 130px 0;
    background: #024C85;
    color: #fff;
}

#work .section-title {
    padding-bottom: 50px;
    text-align: center;
}

#work .section-title h2 {
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #38ACDE;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.work .icon-box {
    color: #fff;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0px 10px 115px rgba(38, 111, 221, 0.11);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 355px;
}

.work .icon-box h4 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 1.5px;
}

.work .icon-box h4 a {
    color: #fff;
    transition: ease-in-out 0.3s;
}

.work .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    letter-spacing: 0.3px;
    font-family: 'Poppins-light';
    opacity: 0.7;
}

.icon-box img {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# WHY Famy Finance
--------------------------------------------------------------*/
section#liquiloans {
    padding: 130px 0;
}

#liquiloans .section-title {
    padding-bottom: 50px;
    text-align: center;
}

#liquiloans .section-title h2 {
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #38ACDE;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#liquiloans .section-title h3 {
    color: #000;
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
}

#liquiloans .section-title h3 span {
    color: #189BD7;
}

.liquiloans-content p,
.low-risk-content p {
    font-size: 18px;
    line-height: 32px;
    color: #000000;
    letter-spacing: 0.01em;
    opacity: 0.5;
}

.liquiloans-content h3,
.low-risk-content h3 {
    font-size: 30px;
    line-height: 40px;
    color: #1F1F26;
    margin-bottom: 25px;
}


/*--------------------------------------------------------------
# Investmets
--------------------------------------------------------------*/
section#investmenst {
    padding: 130px 0 !important;
    background: #024C85;
    color: #fff;
}

.investmet-content h6 {
    font-size: 14px !important;
    line-height: 18px !important;
    letter-spacing: 0.1em !important;
    font-family: 'Poppins-light' !important;
    color: #38ACDE;
    margin-bottom: 20px !important;
}

.investmet-content h2 {
    font-weight: 600;
    font-size: 44px;
    line-height: 64px;
    margin-bottom: 30px;
}

.investmet-content p span {
    font-size: 23px;
    line-height: 32px;
    letter-spacing: 0.01em;
    background: rgba(30, 162, 219, 0.3);
    padding: 6px;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-right: 15px;
    font-weight: 600;
}

.investmet-list {
    margin-bottom: 60px;
}

.investmet-list p {
    display: flex;
    align-items: center;
    line-height: 28px !important;
    font-size: 18px !important;
    letter-spacing: 0.3px !important;
    font-family: 'Poppins-light' !important;
}

.investmet-content a {
    background-color: #1DA0DB;
    color: #fff;
    padding: 15px 35px;
    border-radius: 40px;
    font-size: 16px;
}

.investments_numbers {
    width: 45px;
    margin-right: 15px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.slider {
    max-width: 1200px;
    margin: 0 auto;
}

.slick-list {
    padding-left: 0px !important;
    /* half partial*/
}

.slick-initialized .slick-slide {
    display: block;
    opacity: 1 !important;
}

.slick-slideshow__slide.slick-slide {
    padding: 30px 30px 0;
    background: #FFFFFF;
    box-shadow: 0px 3px 30px rgb(0 0 0 / 7%);
    border-radius: 12px;
    min-height: 260px !important;
    margin-right: 30px;
}

.draggable.slick-list {
    padding: 20px 160px 20px 0 !important;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

.slick-slideshow__slide h3 {
    color: #293241;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: auto;
    font-weight: 600;
}

.slick-slideshow__slide span {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
}

.slick-slideshow__slide p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
}

.slick-dots li button:before {
    font-size: 15px;
    line-height: 15px;
    width: 15px;
    height: 15px;
    content: 'â€¢';
    text-align: center;
    opacity: 1;
    color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: transparent;
    border: 3px solid #ee3123;
    border-radius: 50%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    background: #29191900;
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    background: transparent;
    background: transparent;
}

.slick-dots li button:before {
    border: none;
    font-size: 15px;
    line-height: 15px;
    width: 15px;
    height: 15px;
    content: 'â€¢';
    text-align: center;
    opacity: 1;
    color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #E0E0E0;
    border-radius: unset;
    width: 30px;
    margin: 10px;
    height: 3px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: transparent;
    background-color: #26AAE1;
    border: none;
    border-radius: unset;
    width: 30px;
    margin: 10px;
    height: 3px;
}

/*--------------------------------------------------------------
# Testimonial mobile
--------------------------------------------------------------*/
section.testimonial-mobile .section-title h2 {
    text-align: center;
    /* margin: 20px; */
    margin-bottom: 20px;
    font-size: 30px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 3px solid #38ACDE;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -50px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    transition: transform .6s ease-in-out;
    padding: 20px;
}

.carousel-indicators .active {
    opacity: 1 !important;
}

/*--------------------------------------------------------------
# Liquimoney
--------------------------------------------------------------*/
.liquimoney {
    position: relative;
    padding-bottom: 130px !important;
    padding-top: 50px !important;
}

.liquirow {
    background: #024C85;
    padding: 70px 0;
    border-radius: 24px;
}

.liquimoney-img img {
    position: absolute;
    top: -10%;
    right: 15%;
}

.liquimoney-content h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: #fff;
    margin-bottom: 60px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
section#contactus {
    background: #F0F7FE;
    padding: 100px 0 !important;

}

.contactus .php-email-form {
    padding: 38px;
    width: 380px;
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
}

.contactus .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

section#contactus .section-title p {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #38ACDE;
}

section#contactus .section-title p h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #1F1F26;
}

#contact {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.42857143 !important;
    color: #333;
    padding-bottom: 0px !important;
}

/*-------------------------------------------------*/
/* Start Contact Section                           */
/*-------------------------------------------------*/

.contact {
    /*background: #0b395b;*/
    /* background: url(../images/parallax/contact-bg.jpg); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding-top: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #1A3858;
    color: #fff;
    /* padding-bottom: 100px; */
}

.contact .btn-primary {
    padding: 20px;
    font-size: 16px;
}

.contact .btn-primary:hover {
    background: transparent;
}

.contact .section-title h3 {
    color: #fff;
}

.contact .section-heading {
    color: #fff;
}

.contact .form-group {
    margin-bottom: 25px;
}

.contact .form-group input,
.contact .form-group textarea {
    padding: 20px;
}

.contact .form-group input.form-control {
    height: auto;
}

.contact .form-group textarea.form-control {
    height: 236px;
}

.contact::-webkit-input-placeholder {
    text-transform: uppercase;
    /*font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;*/
    font-weight: 700;
    color: #bbb;
}

.contact:-moz-placeholder {
    text-transform: uppercase;
    /*font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;*/
    font-weight: 700;
    color: #bbb;
}

.contact::-moz-placeholder {
    text-transform: uppercase;
    /*font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;*/
    font-weight: 700;
    color: #bbb;
}

.contact:-ms-input-placeholder {
    text-transform: uppercase;
    /*font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;*/
    font-weight: 700;
    color: #bbb;
}

.contact .text-danger {
    color: #e74c3c;
}

.contact button {
    font-weight: 400;
    margin-top: 30px;
}


.footer-contact-info {
    color: #fff;
    padding: 20px 30px;
    margin-top: 80px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.footer-contact-info ul {
    padding-bottom: 10px;
}

.footer-contact-info h4 {
    padding-bottom: 10px;
}

.footer-contact-info li strong {
    font-weight: 600;
}

/*-------------------------------------------------------*/
/* Start Footer Section                                  */
/*-------------------------------------------------------*/

footer.style-1 {
    /*margin-top: 100px;*/
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.8);
}

footer.style-1 .copyright {
    text-transform: uppercase;
    text-transform: none;
    color: #999;
}

footer.style-1 .footer-social li {
    display: inline;
    padding: 0 10px;
}

footer.style-1 .footer-social li a {
    /* padding: 10px; */
    /* color: #fff; */
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;

}

/* .footer_links {padding: 15px 0px 0px 0px;} */
.footer-social i {
    font-size: 22px;
    padding: 10px;
    color: #fff;
    width: 40px;
    height: 40px;
    margin: 4px;
    border-radius: 20px;
    text-align: center;
}

/* footer.style-1 .footer-social li i {
    font-size: 15px;
    width: 20px;
    height: 20px;
} */

footer.style-1 .footer-social li:hover a {
    /* background: #ddd; */
    color: #666;
}

footer.style-1 .footer-link li {
    display: inline;
    padding-left: 10px;
    font-size: 13px;
}


.btn:focus,
.btn:active,
.btn.active,
.btn:active:focus {
    outline: 0;
}

.inner_footer_wrap h3 {
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-position: under;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
}

/* .footer_links {
padding: 15px 0px 0px 0px;
} */
.footer_links li {
    padding: 5px 0px;
}

.footer_links li a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    list-style-type: none;
}

.footer_links ul {
    padding: 0;
    list-style-type: none;
}

.back-blue {
    background-color: #1372ce;
}

.back-orange {
    background-color: #16baff;
}

.back-skyblue {
    background-color: #fe4f50;
}

.fab {
    font-family: "Font Awesome 5 Brands";
}

.pull-right {
    float: right;
}

ul {
    margin: 0;
    padding: 0;
}

.message {
    font-weight: 600;
    font-size: larger;
}

.error {
    color: red !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*#footer {
  background: #fff;
  color: #444444;
  font-size: 14px;
  background: #f1f6fe;
}
.footer-contact a img {
    margin-bottom: 40px;
}
.footer-contact p{
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
        color: #FFFFFF;
        opacity: 0.5;
}*/
/*.playstore-links a img {
    margin-bottom: 60px;
    margin-right: 20px;
}*/
/*#footer .footer-top {
    padding: 60px 0 30px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #1A3858;
    color: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #106eea;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}*/
@media (max-width: 768px) {

    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center;
        padding: 2px 0;
    }

}

@media only screen and (max-width: 600px) {
    section {
        padding: 30px 0;
        overflow: hidden;
    }

    ul.slick-dots {
        display: none !important;
    }

    .top-bg-img {
        position: unset;
        display: none;
    }

    .top-mobile-img {
        position: unset;
    }

    .partner-eco-system-box {
        padding: 20px;
    }

    .partner_logo {
        padding: 20px;
    }

    #peer-to-peer {
        padding: 70px 0;
    }

    .peer-to-peer-content {
        margin-top: 40px;
    }

    section#work {
        padding: 70px 0;
    }

    section#liquiloans {
        padding: 70px 0;
    }

    #liquiloans .section-title h3 {
        font-size: 32px;
        line-height: 40px;
    }

    .liquiloans-content {
        text-align: center;
    }

    .low-risk-content {
        text-align: center;
    }

    section#investmenst {
        padding: 70px 0;
    }

    .investment-img {
        margin-top: 40px;
    }

    .liquirow {
        padding: 70px 0;
    }

    .liquimoney-img img {
        position: unset;
    }

    .contact .php-email-form {
        width: unset;
    }

    section#contact {
        /*padding: 70px 0;*/
    }

    .playstore-links a img {
        margin-bottom: 30px;
    }

    .footer-contact a img {
        margin-bottom: 20px;
    }


}

@media screen and (max-width: 904px) {
    .partner_logo {
        width: 130px;
    }
}

.header-menu-nav {
    margin-left: 15px;
    padding: 10px 20px !important;
}

.header-menu li {
    padding: 10px 0 10px 18px !important;
}