/*
Theme Name: Mobilo
Theme URI: https://mobilocredit.ro/
Author: Mobilo
Author URI: https://mobilocredit.ro/
Description: Tema personalizată Mobilo
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mobilo
*/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/*
========================
GOBAL CSS START
========================
*/
body {
    font-family: "Open Sans",
    sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: #4e5d78;
}

:root {
    --lato-font: "Lato", sans-serif;
    --primery-color: #f55219;
    --secondery-color: #5da2d9;
    /* Aliases to cover common spelling */
    --primary-color: var(--primery-color);
    --secondary-color: var(--secondery-color);
    --selection-bg: #0078d7;
    --selection-color: #fff;
    --scroll-top-bg: #f55219;
    --scroll-top-color: #fff;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--scroll-top-bg);
    text-align: center;
    font-size: 22px;
    color: var(--scroll-top-color);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
}

.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--scroll-top-bg);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.action-btn {
    border: none;
    padding: 7px 18px;
    display: inline-flex;
    font-family: var(--lato-font);
    align-items: center;
    justify-content: center;
    background: var(--primery-color);
    font-weight: 700;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 200px 200px 200px transparent;
    z-index: 2;
    border-radius: 5px;
    font-size: 14px;
    gap: 5px;
    min-height: 44px;
}

.action-btn::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-100%);
    background: var(--secondery-color);
    z-index: -1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
}

.action-btn::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 51%;
    transform: translateX(100%);
    background: var(--secondery-color);
    z-index: -1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
}

.action-btn:hover::before {
    width: 60%;
}

.action-btn:hover::after {
    width: 60%;
}


/*===============
 GOBAL CSS END  
 ============== */


/* header area style  */

.header-area {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    transition: 0.3s;
    padding-bottom: 10px;
}

.header-area.nav-fixed {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 7px;
}

.header-actions a .icon {
    max-width: 23px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.header-left .login-btn,
.mobile-nav-item .login-btn {
    display: block;
    margin-inline: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #4e5d78;
}

.header-left .login-btn:hover {
    color: #5EA3DA;
}

.header-left {
    position: relative;
}

.header-left .dropdown-list.w-dropdown-list {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 6px);
    right: 0;
    left: auto !important;
    bottom: auto !important;
    float: none !important;
    min-width: 260px;
    background: #fff;
    border: 1px solid rgba(44, 45, 54, 0.12);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

.header-left .dropdown-list.w-dropdown-list::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 10px;
}

.header-left:hover .dropdown-list.w-dropdown-list,
.header-left .dropdown-list.w-dropdown-list:hover,
.header-left .dropdown-list.w-dropdown-list:focus-within,
.header-left:focus-within .dropdown-list.w-dropdown-list {
    display: block !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header-left .dropdown-list > div {
    padding: 8px 0;
}

.header-left .dropdown-link {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #4e5d78;
}

.header-left .dropdown-link:hover {
    background: #f6f8fb;
    color: #5EA3DA;
}

.header-left .search-btn,
.mobile-nav-item .search-btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #4e5d78;
    font-size: 14px;
    font-weight: 700;
}

.header-left .search-btn i,
.mobile-nav-item .search-btn i {
    font-size: 20px;
    color: var(--primery-color);
}

.nav-item a {
    font-size: 14px;
    font-weight: 700;
    color: #4e5d78;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.navbar-toggler {
    border: none !important;
    padding: 0 !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.mobile-nav-item .search-btn i {
    font-size: 20px;
    color: var(--primery-color);
}

.action-btn-two {
    padding: 3px 5px 3px 3px;
    background: transparent;
    border: 2px solid var(--secondery-color);
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondery-color);
}

.fa-light.fa-phone-volume {
    transform: rotate(-25deg);
}

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    background: var(--secondery-color);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.search-pop-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 612px;
}

.search-pop-wrapper .searchbar-card {
    display: flex;
    gap: 12px;
}

.searchbar-card input {
    height: 44px;
    min-width: 130px;
    margin-bottom: 0px;
    padding: 0px 12px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(44, 45, 54, 0.17);
    border-radius: 5px;
    -webkit-transition: border-color 200ms ease;
    transition: border-color 200ms ease;
    font-size: 14px;
    width: 100%;
}

.searchbar-card input:focus {
    border-color: #4e5d78;
}

.searchbar-card button {
    min-width: 130px;
    height: 44px;
}

.searchbar-card .action-btn::before,
.searchbar-card .action-btn::after {
    background: #000;
}

.search-pop-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.serach-pop-close {
    position: absolute;
    top: 48px;
    right: 48px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #fff;
}

.search-popup.active {
    visibility: visible;
    opacity: 1;
}

/*========== header area style end hare ======== */
/*====== personal loan area style start hare ====== */

.personal-loan-area {
    padding-top: 96px;
    padding-bottom: 114px;
    background-size: auto;
    background: url(images/BG-hero.png) no-repeat 50%, 50%;
    transition: 0.3s;
}

.personal-loan-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.personal-loan-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0A1F44;
    text-align: center;
}

/* Headings compatibility - copied styling semantics from theme */
.display-heading-4 {
    font-size: 40px;
    font-weight: 700;
    color: #0A1F44;
}

.page-heading {
    text-align: center;
    margin-inline: auto;
}

.apply-loan-card {
    margin: 0 auto;
    background: rgba(247, 250, 254, 0.6);
    max-width: 648px;
    display: flex;
    width: 100%;
    text-align: left;
    padding: 44px 5px;
    color: #2C2D36;
    flex-direction: column;
    align-items: center;
}

.loan-type-nav {
    padding: 12px;
    background: var(--secondery-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.loan-type-nav button {
    background: transparent;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    color: #fff;
    font-family: var(--lato-font);
    font-weight: 700;
    font-size: 14px;
}

.loan-type-nav button.active {
    background: #fff;
    color: #000;
}


/* Renamed to include reusability class and margin for multiple instances */
.loan-card {
    width: 100%;
    border-radius: 12px;
    padding: 20px;
}

.loan-card .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.loan-card .title {
    font-size: 22.4px;
    font-weight: 700;
    color: #333;
}

.amount-display {
    font-size: 30.8px;
    font-weight: 900;
    color: #ff5722;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.wp-block-group h2, .wp-block-group strong, .wp-block-group h3 {
    color: #0A1F44;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
}

.wp-block-group ul {
    padding-left: 30px;
    list-style: disc;
    font-size: 20px;
    font-family: var(--lato-font);
}

.wp-block-group ol {
    padding-left: 30px;
    font-size: 20px;
    font-family: var(--lato-font);
}

.container-large {
    width: 100%;
    max-width: 612px;
    direction: ltr;
}

.page-template-page-templates .display-heading-4.page-heading {
    font-family: 'Open Sans', sans-serif;
    color: #0a1f44;
    font-size: 72px;
    line-height: 72px;
    max-width: 930px;
}

.page-template-page-templates .personal-loan-wrapper h2 {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #4e5d78;
}

.page-template-page-templates .loan-type-tab-wrapper {
    padding-top: 0;
}

.container-large.align-center {
    margin-right: auto;
    margin-left: auto;
}

.wp-block-group .section {
    margin: 0 auto;
}

.range-wrapper {
    flex-grow: 1;
    position: relative;
    height: 30px;
}

.js-amount-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    --range-progress: 0%;
}

.js-amount-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right,
    #5da2d9 0%,
    #5da2d9 var(--range-progress),
    #ff5722 var(--range-progress),
    #ff5722 100%
    );
}

.js-amount-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 30px;
    width: 30px;
    background: #ff5722;
    border: 4px solid white;
    border-radius: 50%;
    cursor: grab;
    margin-top: -11px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.js-amount-slider::-webkit-slider-thumb::before {
    content: '\f105';
    font-family: 'Font Awesome 6 pro';
    font-weight: 700;
    color: white;
    font-size: 0.7rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.js-amount-slider::-moz-range-track {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right,
    #5da2d9 0%,
    #5da2d9 var(--range-progress),
    #ff5722 var(--range-progress),
    #ff5722 100%
    );
    border: none;
}

.js-amount-slider::-moz-range-thumb {
    height: 30px;
    width: 30px;
    background: #ff5722;
    border: 4px solid white;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.js-amount-slider::after {
    content: "";
    display: none;
}

.adjust-btn {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: none;
    background-color: var(--secondery-color);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.adjust-btn:hover {
    background-color: var(--secondery-color);
}

.adjust-btn:active {
    box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.3);
}

.min-max-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    color: #2C2D36;
    padding: 0 15px;
}

.loan-type-tab-wrapper {
    width: 100%;
    padding-top: 48px;
}

.loan-terms-block svg {
    height: 30px;
    width: 30px !important;
    border-radius: 100%;
    background: #5da2d9;
    padding: 3px;
    flex: 0 0 30px;
}

.loan-terms-block {
    padding-inline: 50px;
    padding-top: 20px;
}

.loan-terms-block ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loan-terms-block ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.loan-terms-block ul li span {
    color: #2C2D36;
    font-weight: 700;
    font-size: 16px;
}

.loan-apply-button {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loan-apply-button button {
    padding: 7px 14px;
    min-width: 130px;
    height: 44px;
}

.loan-notice {
    padding-top: 30px;
}

.loan-notice p {
    font-size: 11.3px;
    color: #2C2D36;
}

.calculate-costuri-card {
    margin-top: 30px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.costuri-block {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}

.costuri-block p {
    font-size: 16px;
    color: #2C2D36;
}

/* Keep right values tight to the edge */
.costuri-block #dobanda-1,
.costuri-block #dobanda-2,
.costuri-block #total-rambursat,
.costuri-block p.text-end {
    margin-left: auto;
    display: inline-block;
}

.loan-type-tab-content {
    display: none;
}

.loan-type-tab-content.active {
    display: block;
}


/*============ personal loan area end hare ======= */
/*======= why choose us area style start hare ===== */

.why-choose-us {
    padding-block: 96px;
    background-image: url('images/s0.svg');
    background-position: 50% 0%;
    background-size: auto 300px;
    background-repeat: no-repeat;
}

.section-title h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--primery-color);
    max-width: 512px;
    margin-inline: auto;
}

.why-choose-us-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-choose-us-wrapper .section-title {
    margin-bottom: 48px;
}

.why-choose-us-wrapper p {
    font-size: 20px;
    line-height: 100%;
}

.access-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.access-list-wp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.single-acces-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.single-acces-box p {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}

.single-acces-box span {
    font-weight: 300;
}

/*============why choose us area style end hare ========== */
/*============ choose loan type arae start hare =========== */

.choose-loan-type-area {
    padding-block: 96px;
}

.choose-loan-type-wp .section-title {
    margin-bottom: 48px;
}

.choose-loan-type-wp {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.choose-loan-type-wp p {
    font-size: 20px;
}

.loan-type-list {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.loan-type-list a {
    display: flex;
    flex-direction: column;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
}

.loan-type-list a h4 {
    padding: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #0A1F44;
}

.loan-type-list a img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}

/*============= loan type area style end hare =========== */
/*========= how work area style start hare ============= */

.how-work-area {
    padding-block: 96px;
}

.how-work-area .w-tab-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.how-work-area .w-tab-link {
    text-decoration: none;
    color: #93A0B5;
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.how-work-area .w-tab-link:hover {
    color: var(--secondery-color);
}

.how-work-area .w-tab-link.w--current {
    color: var(--secondery-color);
    border-bottom-color: var(--secondery-color);
}

.how-work-area .w-tab-pane[hidden] {
    display: none !important;
}

/* Tabs (Webflow-like) used in `template-parts/blocks/tabs/tabs.php` */
.tabs-block-title {
    text-align: center;
    color: var(--secondery-color);
    font-weight: 700;
    margin-bottom: 24px;
}

.tabs-centered .tabs-menu-buttons {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
}

.tabs-centered .tabs-menu-buttons.padded {
    margin-bottom: 48px;
    padding: 12px;
    border-radius: 10px;
}

.tabs-centered .bg-primary-1 {
    background: var(--secondery-color);
}

.tabs-centered .tab-button-white {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    padding: 10px 16px;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.tabs-centered .tab-button-large {
    padding: 18px 24px;
    font-size: 15px;
}

.tabs-centered .tab-button-white.w--current {
    background: #ffffff;
    color: #0A1F44;
    box-shadow: none;
}

.tabs-centered .w-tab-pane[hidden] {
    display: none !important;
}

.tabs-block-big-title {
    text-align: center;
    margin: 0 0 18px;
}

.tabs-block-subtext {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 18px;
}

.tabs-pane-inner {
    display: grid;
    align-items: center;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}

.tabs-pane-media,
.tabs-pane-text {
    flex: 1 1 0;
    min-width: 0;
}

.tabs-pane-media, .tabs-pane-text {
    max-width: 506px;
}

.tabs-pane-text .container {
    padding: 0;
}

.tabs-pane-text strong {
    color: #000;
}

.tabs-pane-text h4 {
    margin-bottom: 24px;
    font-family: 'Open Sans', sans-serif;
    color: #0a1f44;
    font-size: 40px;
    line-height: 48px;
}

.large-heading {
    margin-bottom: 24px;
    font-family: 'Open Sans', sans-serif;
    color: #0a1f44;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}

.text-small {
    font-family: Lato, sans-serif;
    font-size: 14px;
    line-height: 22px;
}

.text-primary-2 {
    color: #f55219;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}

.go-black {
    font-size: 40px;
    font-family: 'Open Sans', sans-serif;
    color: #0a1f44 !important;
    line-height: 48px;
}

.version-2 .single-acces-box > p{
    text-align: left;
    color: #000;
}

.version-2 .single-acces-box{
    align-items: start;
}

.text-large {
    font-family: Lato, sans-serif;
    font-size: 20px !important;
    line-height: 30px;
}

.text-large p {
    font-family: Lato, sans-serif;
    font-size: 20px !important;
    line-height: 30px !important;
}

.text-large ul {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px;
}

.tabs-pane-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .tabs-pane-inner {
        flex-direction: column;
        gap: 20px;
    }
}

.how-work-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.how-work-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 506px;
    flex: 1;
}

.how-work-left h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primery-color);
}

.how-work-left p {
    font-size: 20px;
    line-height: 100%;
}

.how-work-left ol {
    padding-block: 24px;
    display: flex;
    flex-direction: column;
    padding-left: 16px;
    list-style: decimal;
    font-size: 20px;
    gap: 12px;
}

.how-work-left ul {
    padding-block: 24px;
    display: flex;
    flex-direction: column;
    padding-left: 16px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--lato-font);
    gap: 12px;
}

.how-work-left li strong {
    margin-bottom: 8px;
    font-family: var(--lato-font);
    color: #4E5D78;
    display: block;
}

.how-work-right {
    width: 100%;
    max-width: 612px;
    flex: 1;
}

.section-title h2.color-black {
    color: #0a1f44;
}

.section-title h1.color-black {
    color: #0a1f44;
}

.section-title h1{
    text-align: center;
    font-weight: bold;
}

ul.how-pay-loan {
    list-style: disc;
}

ul.how-pay-loan li {
    font-weight: 700;
    font-family: var(--lato-font);
}

ul.how-pay-loan li span {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
}

.learn-more-btn a {
    min-width: 130px;
}

/*============== how work area style end hare ============ */
/*================= faq area style start hare =============== */

.faq-area {
    padding-block: 96px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-wrapper .section-title {
    margin-bottom: 72px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primery-color);
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.faq-answaer p {
    font-size: 20px;
    font-family: var(--lato-font);
    line-height: 1.5;
}

/*========== faq area style end hare ============== */
/*=========== testimonals area style start hare ====== */

.testimonals-area {
    padding-block: 96px;
    background: #fbfaf8;
}

.section-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.section-top h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primery-color);
}

.testimonals-area .section-top {
    padding-bottom: 86px;
}

.testimonals-review-wp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonals-review-wp ul,
.testimonals-review-wp ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.single-review-item {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 36px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    border-radius: 10px;
}

.single-review-item .client-profile {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.client-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-star {
    display: flex;
    align-items: center;
}

.review-content p {
    font-size: 20px;
    font-family: var(--lato-font);
}

.single-review-item .client-name {
    font-size: 14px;
}

/*=============== faq area style end hare =========== */
/*=========== partners area style start hare =========== */

.pertners-area {
    padding-block: 96px;
}

.partners-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.partners-wrapper p {
    font-size: 20px;
}

.pertners-list-card {
    max-width: 612px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.pertners-list-card img {
    margin: 12px 24px;
    max-width: 215px;
    height: 34px;
}

/*================ partners area style end hare =========== */
/*================news area start hare ==================== */

.news-area {
    padding-block: 20px;
}

.news-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-single-item a {
    display: flex;
    flex-direction: column;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.news-single-item a img {
    width: 100%;
    height: 245px;
}

.news-content {
    padding: 16px;
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.news-content h4 {
    font-size: 18px;
    color: #0A1F44;
    font-weight: 700;
    text-align: center;
}

.news-single-item {
    padding: 15px 7px;
}

.news-slider-area {
    position: relative;
}

.swiper-button-next, .swiper-button-prev {
    cursor: pointer;
    color: #797979;
    font-size: 32px;
}

.swiper-button-next {
    right: -30px;
}

.swiper-button-prev {
    left: -30px;
}


/*============= news area end hare =========== */

.footer-area {
    background: #5EA3DA;
    padding-bottom: 50px;
}

.footer-area ul,
.footer-area ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.footer-top {
    padding-block: 24px;
    background: #508BBA;
    margin-bottom: 30px;
}

.footer-top-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.footer-links-block {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer-links-block h4 {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--lato-font);
    color: #fff;
    text-transform: capitalize;
}

.footer-links-block ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-block li a {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--lato-font);
    color: #fff;
    text-transform: capitalize;
}

.footer-links-block li a:hover {
    opacity: 0.6;
}

.telephone-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.telephone-card .gape-title {
    margin-left: 55px;
}

.program-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.program-card .gape-title {
    margin-left: 60px;
}

.social-media-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculatin-example-footer {
    display: flex;
    padding-top: 24px;
    overflow: hidden;
    overflow-y: auto;
}

.example-footer-left {
    width: 15%;
}

.example-footer-left p {
    font-size: 13.6px;
    color: #fff;
    font-weight: 400;
    text-align: right;
}

.example-right {
    width: 85%;
    padding-left: 2%;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}


.footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
}

.footer-copyright p {
    font-size: 14px;
    font-weight: 400;
}


/*========= cum-platesc-creditul page stye start hare ======= */

.howPayLoan-area {
    padding-block: 90px;
}

.howPayLoan-wrapper h1 {
    font-size: 72px;
    font-weight: 700;
    color: #0A1F44;
    text-align: center;
    margin-bottom: 36px;
}

.howPayLoan-wrapper h4 {
    font-size: 31.68px;
    font-weight: 400;
    color: #0089d0;
    text-align: center;
    margin-bottom: 25px;
}

.howPayLoan-wrapper {
    max-width: 980px;
    margin-inline: auto;
}

.howPayLoan-wrapper p {
    font-size: 20px;
    font-weight: 500;
    color: #292929;
}

.pay-methood-list {
    display: flex;
    flex-direction: column;
    gap: 21px;
    padding-top: 54px;
    align-items: start;
}

.pay-methood-list .serial-letter {
    font-size: 31px;
    color: #0089D0;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
}

.single-pay-methood {
    display: flex;
    gap: 15px;
}

.single-pay-methood .pay-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}

.single-pay-methood .pay-methood-info {
    flex: 1;
    padding-left: 25px;
    padding-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pay-methood-info p {
    font-size: 16px;
    color: #292929;
}

.single-pay-methood .pay-icon img {
    max-width: 53px;
    width: 100%;
}

.single-pay-methood p a {
    font-family: var(--lato-font);
    color: #0089D0;
    text-decoration: underline;
    font-weight: 900;
}

.pay-methood-info ul {
    list-style: disc;
    padding-left: 16px;
}

.list-decimel {
    list-style: decimal !important;
}

.pay-methood-list .small-text {
    font-size: 15.04px;
    font-weight: 500;
}


/*=============== line of credit page style ============= */

.line-credit-wp h2 {
    max-width: 930px;
    margin-inline: auto;
    font-size: 72px;
}

.line-credit-wp > p {
    max-width: 930px;
    margin-inline: auto;
    text-align: center;
}

/*=========== Application Process area style start hare ======== */

.application-process-area {
    padding-block: 96px;
    padding-bottom: 0 !important;
    padding-top: 0;
}

.testimonals-area {
    margin-top: 50px;
}

.application-process-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 612px;
    margin-inline: auto;
}

.application-process-wrapper h2 {
    color: #0A1F44;
    font-size: 32px;
    font-weight: 700;
}

.application-process-wrapper p {
    font-size: 20px;
    font-family: var(--lato-font);
}

.application-process-wrapper ul {
    list-style: disc;
    padding-left: 30px;
    font-size: 20px;
    font-family: var(--lato-font);
}

ul.list-decimal {
    list-style: decimal;
}


p.descopera-txt {
    font-size: 14px;
    text-align: center;
}


/*================ BLOG PAGE STYLE START HARE ============= */


.blog-hero-area {
    padding-top: 18px;
    padding-bottom: 70px;
    background: #f9f5ec;
}

.blog-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-nav h4 {
    font-weight: 700;
    color: #4E5D78;
    font-size: 14px;
    white-space: nowrap;
}

.blog-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.blog-nav ul li a {
    font-family: var(--lato-font);
    font-weight: 700;
    color: #5ea3da;
}

.blog-hero-content {
    padding-top: 48px;
    max-width: 1036px;
    margin-inline: auto;
}

.blog-hero-content a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.blog-hero-content a {
    position: relative;
    display: flex;
    transition: 0.3s;
    /* Force hero image ratio to 1036/647 */
    aspect-ratio: 1036 / 647;
    overflow: hidden;
}

.blog-hero-content a:hover {
    transform: translateY(-7px);
}

.blog-hero-inner-wp {
    position: absolute;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 10px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    background: #fff;
    left: 24px;
    bottom: 24px;
    max-width: 506px;
}

.blog-hero-inner-wp h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0A1F44;
}

.blog-hero-btm {
    display: flex;
    align-items: center;
    gap: 18px;
}

.blog-hero-btm .action-btn {
    padding: 5px 12px 6px !important;
    min-width: 100px;
    background-color: var(--secondery-color);
}

.blog-hero-btm .date {
    font-family: var(--lato-font);
    font-size: 14px;
}

/* Author header */
.author-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 24px;
}

.author-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 96px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-meta h2 {
    margin: 0;
}

.author-bio {
    margin-top: 6px;
}


/*============ Blog hero style end hare ======= */
/*=== letest article area style start hare ====== */

.letest-article {
    padding-block: 96px;
}

.letest-article-wrapper {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.article-list-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 36px;
    grid-row-gap: 48px;
}

.article img{
    height: auto;
}

.single-article {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.article-images {
    height: 245px; /* uniform cover height for grid cards */
}

.article-images a {
    display: block;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.2s;
}

.article-images a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-images a:hover {
    transform: translateY(-12px);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .article-images {
        height: 200px;
    }
}

.blog-cetegory a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
    line-height: 22px;
    padding: 5px 12px 6px;
    font-weight: 700;
    text-align: center;
    background: var(--secondery-color);
    color: #fff;
}

.blog-title a {
    font-size: 20px;
    font-weight: 700;
}


.blog-sub-title {
    padding-block: 96px;
    background: var(--secondery-color);
}

.blog-sub-title h2 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    max-width: 612px;
    margin-inline: auto;
}

/*===========================
 ABOUT PAGE STYLE START HARE
  ========================= */

/* about us area  */

.about-us-area {
    padding-block: 96px;
}

.about-us-wrapper {
    display: flex;
    flex-direction: column;
    gap: 96px;
    max-width: 900px;
    margin-inline: auto;
}

.about-us-wrapper h1 {
    font-size: 54px;
}

.about-content-wp {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-inner-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-inner-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: #5EA3DA;
    text-align: center;
}

.about-inner-block p {
    font-size: 20px;
    font-weight: 400;
    color: #4E5D78;
    font-family: var(--lato-font);
}

/* about area style end hare  */
/* our success area style start hare  */

.our-success-area {
    padding-block: 96px;
}

.color-secondery {
    color: var(--secondery-color) !important;
}

.success-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 72px;
    gap: 24px;
}

.single-success-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sucess-block-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
    max-width: 294px;
}

.sucess-block-content h1 {
    font-size: 72px;
    color: var(--primery-color);
    font-weight: 400;
    padding-bottom: 6px;
}

.sucess-block-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0A1F44;
}

.sucess-block-content p {
    font-size: 14px;
}

/*========= advantage area style start hare ===== */

.advantage-area {
    padding-block: 96px;
    background: #fbfaf8;
}

.advantage-wrapper {
    padding-top: 72px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 24px;
}

.single-advantage-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.single-advantage-block .icon img {
    height: 48px;
}

.single-advantage-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0A1F44;
}

.single-advantage-block p {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--lato-font);
    text-align: center;
}

/*========== advantage area end hare ========= */
/*========= help area style start hare ======== */

.help-area {
    padding-block: 96px;
}

.help-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 832px;
    margin-inline: auto;
}

.help-wrapper p {
    font-size: 20px;
    font-family: var(--lato-font);
}

.help-actions-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-top: 35px;
}

.help-actions-btns .help-btn {
    display: flex;
    align-items: center;
    gap: 12px;
}

.help-btn a {
    font-size: 14px;
    font-weight: 700;
    color: #5ea3da;
}

.help-btn a:hover {
    color: #4E5D78;
}


/*======================
 FAQ Page Style Start hare 
========================== */

.faq-hero-area {
    padding-block: 96px;
    background: #fbfaf8;
}

.faq-hero-wrapper h1 {
    font-size: 54px;
    font-weight: 700;
    color: #0A1F44;
    text-align: center;
}

.faq-section {
    padding-block: 96px;
}

.faq-section-title {
    font-size: 32px;
    color: #0a1f44;
    font-weight: 700;
    text-align: center;
}

.faq-section-wrapper {
    padding-top: 90px;
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 824px;
    margin-inline: auto;
}

.faq-inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
    flex: 1;
}

.faq-inner-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-inner-block h6 {
    font-size: 16px;
    font-weight: 700;
    color: #0A1F44;
}

.faq-inner-block p {
    font-size: 14px;
}

.faq-inner-block ul {
    padding-left: 40px;
    list-style: disc;
    padding-top: 12px;
}

.faq-inner-block ul li {
    font-size: 14px;
    font-style: italic;
}

.intrebaripagina2 li {
    font-style: normal !important;
}

.faq-inner-block a {
    text-decoration: underline;
    color: var(--secondery-color);
    font-weight: 700;
}

.faq-inner-block a:hover {
    color: #4E5D78;
}


/*===============================
 Responsabil Page style start hare 
================================== */

.responsabil-area {
    padding-block: 96px;
}

.responsabil-wrapper {
    max-width: 612px;
    margin-inline: auto;
}

.responsabil-top h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0A1F44;
    text-align: center;
}

.responsabil-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.responsabil-top p {
    font-size: 20px;
    font-family: var(--lato-font);
    text-align: center;
}

.responsabil-inner-block {
    padding-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.responsabil-inner-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0A1F44;
    text-align: center;
}

.responsabil-inner-block h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0A1F44;
}

.responsabil-inner-block ul {
    list-style: disc;
    padding-left: 30px;
}

.responsabil-inner-block p,
.responsabil-inner-block li {
    font-size: 14px;
}

/*========== Search Page Style ====== */

.search-result-area {
    padding-block: 30px;
}

.search-result-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.result-title a {
    font-size: 32px;
    font-family: var(--lato-font);
    font-weight: 700;
    color: var(--secondery-color);
}

.result-title a:hover {
    color: #0A1F44;
}

.search-result-wrapper p {
    font-size: 14px;
}

.result-tag a {
    font-size: 14px;
    font-family: var(--lato-font);
    font-weight: 700;
    color: var(--secondery-color);
}

.result-tag a:hover {
    color: #0A1F44;
}

.search-result-wrapper hr {
    margin: 0;
}

i.highlight {
    background: #FFE700;
    font-style: normal;
    font-weight: bold;
    color: #4E5D78;
}


/*==========================
 Terms Condition Page Style
============================ */

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs li {
    font-size: 14px;
}

.breadcrumbs li a {
    font-weight: 700;
    color: var(--secondery-color);
}

.breadcrumbs li a:hover {
    color: #4e5d78;
}

.terms-condition-wrapper {
    padding-top: 10px;
}

.terms-condition-wrapper p {
    font-size: 14px;
}

.terms-top p {
    text-align: center;
}

.terms-top {
    padding-bottom: 72px;
}

.terms-content-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.terms-content-card p a {
    color: var(--secondery-color);
}

.terms-content-card ol {
    padding-left: 25px;
    list-style: decimal;
}

.terms-content-card ol li {
    font-size: 14px;
}

.terms-content-card ul {
    padding-left: 40px;
    list-style: disc;
    font-size: 14px;
}

ol.list-roman {
    list-style: lower-roman;
}

ul.list-circle {
    list-style: circle;
}

.tabs-menu {
    margin-bottom: 24px;
}

.w-tab-content p {
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.error-area {
    padding-block: 150px;
}

.error-area p {
    font-size: 24px;
    text-align: center;
}

.main-container {
    width: 100%;
    max-width: 1296px;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    line-height: 20px;
}