/********** Template CSS **********/
:root {
    --primary: #00B98E;
    --light: #F3F6F8;
    --dark: #0E2E50;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

    .btn.btn-primary,
    .btn.btn-outline-primary:hover {
        color: #FFFFFF;
    }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #FFFFFF;
    }

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

    .sticky-top.navbar .navbar-nav .nav-link:hover,
    .sticky-top.navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

.navbar .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark);
    }

        .navbar .navbar-nav .nav-link:hover,
        .navbar .navbar-nav .nav-link.active {
            color: var(--primary);
        }

    .navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .2);
        z-index: 999;
    }

    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        bottom: 10px;
        left: 0;
        background: #FFFFFF;
        opacity: 0;
        transition: .5s;
    }

    .sticky-top.navbar .navbar-nav .nav-link::before {
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-link.active::before {
        bottom: -1px;
        left: 0;
        opacity: 1;
    }

    .navbar .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 12rem 0 9rem 0;
    background: url(/content/assets/lib/images/Home/shape-bottom.png) center bottom no-repeat;
}

.page-header {
    margin-bottom: 6rem;
    padding: 12rem 0 6rem 0;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }

    .page-header {
        padding: 6rem 0;
    }
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(256, 256, 256, .5);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

    .service-item:hover {
        box-shadow: none;
        border-color: var(--primary);
    }

    .service-item .service-icon,
    .service-item .service-btn {
        margin: -1px 0 0 -1px;
        width: 65px;
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        background: var(--primary);
        border-radius: 5px 0;
        transition: .5s;
    }

    .service-item .service-btn {
        margin: -1px -1px 0 0;
        border-radius: 0 5px;
        opacity: 0;
    }

    .service-item:hover .service-btn {
        opacity: 1;
    }


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transform: scale(.85);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: none;
    border-color: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 50px;
    height: 50px;
}

.testimonial-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 12px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        border: 1px solid var(--primary);
        border-radius: 45px;
        transition: .5s;
    }

        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            color: #FFFFFF;
            background: var(--primary);
        }


/*** Team ***/
.team-item {
    position: relative;
    padding: 30px;
    text-align: center;
    transition: .5s;
    z-index: 1;
}

    .team-item::before,
    .team-item::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 40%;
        top: 0;
        left: 0;
        border-radius: 5px;
        background: #FFFFFF;
        box-shadow: 0 0 45px rgba(0, 0, 0, .07);
        transition: .5s;
        z-index: -1;
    }

    .team-item::after {
        top: auto;
        bottom: 0;
    }

    .team-item:hover::before,
    .team-item:hover::after {
        background: var(--primary);
    }

    .team-item h5,
    .team-item p {
        transition: .5s;
    }

    .team-item:hover h5,
    .team-item:hover p {
        color: #FFFFFF;
    }

    .team-item img {
        padding: 15px;
        border: 1px solid var(--primary);
    }


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

    .footer .btn.btn-social:hover {
        color: var(--primary);
    }

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        letter-spacing: 1px;
        box-shadow: none;
    }

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

    .footer .copyright a {
        color: var(--light);
    }

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

    .footer .footer-menu a:last-child {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }


/*** New Add ***/
.gutter-y-30 {
    --bs-gutter-y: 30px;
}

.work-process-one__item__image {
    margin-bottom: 21px;
    padding-bottom: 46px;
    position: relative;
    width: 100%;
    max-width: 235px;
    text-align: center;
}

    .work-process-one__item__image img {
        position: relative;
        width: 129px;
        height: 129px;
        border-radius: 50%;
        z-index: 1;
    }

.work-process-one__item__number {
    padding: 4.5px 10px;
    position: relative;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 1;
    font-weight: 700;
    font-size: 14px;
    color: var(--easilon-white2, #F6F6F8);
    line-height: 1.5;
    text-transform: capitalize;
    background-color: var(--easilon-base, #00CDE5);
    border-radius: 100px;
    transition: all 500ms ease;
}

.work-process-one__item__shape {
    width: 242px;
    height: 67px;
    position: absolute;
    left: 0;
    bottom: 13px;
    transition: all 500ms ease;
}

    .work-process-one__item__shape path {
        stroke: var(--easilon-base, #00CDE5);
        stroke-width: 3;
        stroke-miterlimit: 10;
        transition: all 500ms ease;
    }

.work-process-one__item__circle {
    width: 136px;
    height: 32px;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    transition: all 500ms ease;
}

.work-process-one__item__title {
    margin-bottom: 9px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.6;
    text-transform: capitalize;
}

.work-process-one__item__text {
    margin: 0;
    line-height: 1.625;
}

.work-process-one__item:hover .work-process-one__item__circle path {
    fill: var(--easilon-base, #00CDE5);
}

.work-process-one__item:hover .work-process-one__item__shape {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.work-process-one__item:hover .work-process-one__item__number {
    color: var(--easilon-white, #ffffff);
    background-color: var(--easilon-black, #2B2B5E);
}

.quick-loan-one__bg {
    width: 100%;
    max-width: 654px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--easilon-base, #00CDE5);
    clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
}

.quick-loan-one__bg__inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    mix-blend-mode: overlay;
    opacity: 0.4;
}

.quick-loan-one__content {
    width: 100%;
    max-width: 614px;
    padding: 56px 120px 49px 40px;
}

.quick-loan-one .sec-title {
    margin: 0;
}

.sec-title__top {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.sec-title__tagline {
    margin-bottom: 0;
    font-family: var(--easilon-font, "Montserrat", sans-serif);
    font-weight: 600;
    font-size: 16px;
    color: var(--easilon-base, #00CDE5);
    line-height: 1.4;
    text-transform: uppercase;
}

.sec-title__shape {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.sec-title__shape__one, .sec-title__shape__two {
    flex-shrink: 0;
    height: 4px;
    background-color: var(--easilon-base, #00CDE5);
}

.sec-title__shape__one {
    width: 11px;
}

.sec-title__shape__two {
    width: 18px;
}

.quick-loan-one .sec-title__title {
    font-size: 30px;
    letter-spacing: var(--easilon-letter-space, -0.02em);
    line-height: 1.5;
}

.sec-title__title {
    margin: 0;
    font-family: var(--easilon-font, "Montserrat", sans-serif);
    font-size: 45px;
    font-weight: 700;
    color: var(--easilon-black, #2B2B5E);
    line-height: 1.111;
    letter-spacing: var(--easilon-letter-space-xl, -0.03em);
    text-transform: capitalize;
}

.quick-loan-one__money {
    max-width: 100%;
    height: auto;
    position: absolute;
    right: 313px;
    bottom: 0;
    animation: moveHorizontal 2s linear infinite;
}

@media (min-width: 992px) {
    .quick-loan-one .easilon-btn {
        position: absolute;
        top: 50%;
        right: 40px;
        transform: translateY(-50%);
        z-index: 1;
    }
}

.easilon-btn {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    padding: 20px 21px;
    font-family: var(--easilon-font, "Montserrat", sans-serif);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--easilon-white, #ffffff);
    line-height: 1;
    text-transform: uppercase;
    /*background-color: var(--easilon-base, #00CDE5);*/
    z-index: 1;
    transition: 500ms;
}

.cmsmasters_row_top_default {
    background-color: #C1CA57;
    background-position: top center;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
    position: static;
    border: 1px dashed black;
}

.cmsmasters_row_outer_parent {
    padding-top: 50px;
    padding-bottom: 50px;
}

.cmsmasters_row .cmsmasters_row_outer_parent {
    padding: .1px 0;
    z-index: 2;
}

.post-password-form, .header_top_inner, .header_mid_inner, .header_bot_inner, .content_wrap, .headline_inner, .cmsmasters_breadcrumbs, .bottom_outer, .footer_inner, .cmsmasters_row_inner {
    position: relative;
    /*width: 980px;*/
    padding: 0 20px;
    margin: 0 auto;
}
