/* sidebar */
.sidebar {
    position: fixed;
    right: -100%;
    top: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    z-index: 999;
    transition: .9s ease all;

}

.sidebar.active {
    right: 0;
    transition: .3s ease all;
}

.sidebar_content {
    position: fixed;
    right: -100%;
    top: 0;
    width: 25%;
    transition: .6s cubic-bezier(0.075, 0.82, 0.165, 1);
    height: 100%;
    background-color: var(--white-color);
    overflow-y: scroll;
}

.sidebar.active .sidebar_content {
    right: 0;
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.mob-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background-color: whitesmoke;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

.close_icon i {
    height: 42px;
    width: 42px;
    border-radius: 100%;
    background-color: var(--main-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
}

.sidebar-about {
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

.sidebar-about iframe {
    width: 100%;
}

.sidebar-about h3 {
    font-weight: 700;
    text-transform: capitalize;
    color: var(--main-color);
}

.sidebar-about p {
    font-size: 15px;
    margin-top: 12px;
    line-height: 25px;
}

.sidebar-about ul {
    margin-top: 1rem;
}

.sidebar-about ul li a {
    color: var(--black-color);
    display: block;
    margin-bottom: 12px;
    display: flex;
    gap: 3px;
}

.sidebar-about ul li a i {
    color: var(--green-color);
    font-size: 18px;
    margin-top: 4px;
}


.sidebar-logo img {
    width: 120px;
}

.vr_wrapper {
    background-color: var(--black-color);
    padding: 10px 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20%);
    }
}

.vr_wrapper span {
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    margin-left: 10px !important;
    /* background: -webkit-linear-gradient(-90deg, #BB5617, #210754);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    text-shadow: 0 0 0.25rem rgba(0, 0, 0, .15);

}


.custom-marquee {
    overflow-x: hidden;
}

.track {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 10s linear infinite;
}

.logo img {
    width: 180px;
}

.myNav {
    border-bottom: 1px solid #ccc;
}

.myheader.sticky {
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--white-color);
    z-index: 999;
    width: 100%;
}

.myNav_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu ul {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.menu ul li a {
    font-size: 18px;
    text-transform: capitalize;
    color: var(--white-color);
    font-weight: 600;
    padding: 10px 0;
    display: flex;
    gap: 3px;
    align-items: center;
}

.menu {
    background-color: var(--green-color);
}

.myNav_right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: end;
}

.header_menu i {
    font-size: 33px;
    cursor: pointer;
}

.search_input {
    position: relative;
}

.search_input input {
    width: 100%;
}

.search_input button {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    gap: 3px;
    align-items: center;
    background-color: var(--green-color);
    color: var(--white-color);
}

.search_input,
.logo,
.myNav_right {
    width: 100%;
}

/* banner_wrapper */
.banner_wrapper {
    background-image: url('../images/man-blue-shirt.webp');
    background-size: cover;
    height: 500px;
    background-repeat: no-repeat;
}

.banner_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.banner_wrapper .container {
    height: 100%;
}

.banner_content h1 {
    font-size: clamp(18px, 4vw, 50px);

    color: var(--white-color);
    font-weight: 700;
    max-width: 700px;
    text-shadow: 0 0 4px rgba(0, 0, 0, .5);
}

.banner_content p {
    font-size: clamp(22px, 2vw, 14px);
    margin-top: 1rem;
    color: var(--white-color);
}

.banner_content a {
    max-width: max-content;
}

.myBtn {
    margin-top: 2rem;
}

/* about */
.global_wrapper {
    padding: 80px 0;
}

.global_content {
    margin-top: 3rem;
}

.about_img img,
.benefit_img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 10px;
}

.about_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about_content b {
    color: var(--main-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about_content h2 {
    font-size: clamp(24px, 5vw, 44px);
    font-weight: 700;
    margin-top: 1rem;
    color: var(--black-color);
}

.about_content p {
    font-size: 18px;
    margin-top: 1rem;
    line-height: 30px;
}

/* services */
.back_bg {
    background-color: #ffefe3;
}

.loan_form input,
.loan_form textarea {
    margin-top: 10px;
    background-color: whitesmoke;
}

.main_heading {
    text-align: center;
}

.main_heading b {
    font-weight: 800;
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 1rem;
    display: inline-block;
    letter-spacing: 1px;
}

.main_heading h2 {
    font-size: clamp(22px, 5vw, 44px);
    font-weight: 700;
    text-transform: capitalize;
}
.main_heading p{
    font-size: 18px;
    line-height: 30px;
    margin-top: 1rem;
}

.service_box {
    background-color: var(--white-color);
    padding: 2rem;
    height: 94%;
    border-radius: 4px;
    margin-bottom: 30px;
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    position: relative;
    border: 1px solid #ccc;
}

.service_box::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 5px;
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    background-color: var(--main-color);
    bottom: 0;
    border-radius: 0 0 10px 10px;
}

.service_box:hover {
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: translateY(-3px);
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
}

.service_box:hover::before {
    width: 100%;
    transition: .75s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.service_box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 1rem;
}

.service_box p {
    font-size: 18px;
    color: #434343;
    margin-top: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-bottom: 1rem !important;
}

.service_box a {
    display: flex;
    gap: 3px;
    align-items: center;
}

.service_box a i {
    transform: rotate(180deg);
    transition: .3s ease all;
}

.service_box a:hover {
    color: var(--white-color);
    transform: translateX(10px);
    transition: .3s ease all;
}

/* benefit_grid */
.benefit_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.benefit_grid__box {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
}


.benefit_grid__box-content {
    width: 100%;
}

.benefit_grid__box-content h3 {
    font-size: 20px;
    font-weight: 700;
}

.benefit_grid__box-content p {
    font-size: 16px;
    margin-top: 12px;
}

/* work_box */
.work_box {
    padding: 0 3rem;
    text-align: center;
    position: relative;
}

.arrow_icon__one .arrow_icon img {
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    right: -20%;
}

.arrow_icon__two .arrow_icon img {
    position: absolute;
       top: 32%;
    transform: translateY(-50%);
    right: -28%;
}

.work_box__icon {
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    margin: 0 auto;
    position: relative;
    border-radius: 100%;
    border: 1px solid #ccc;
}

.work_box__icon span {
    height: 28px;
    width: 28px;
    background-color: var(--black-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 13px;
    font-weight: 700;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.work_box__icon img {
    width: 55px;
}

.work_box__content h3 {
    font-weight: 700;
    margin: 1rem 0 10px 0 !important;
    color: var(--black-color);
    font-size: 22px;
}

/* features_wrapper */
.features_wrapper {
    position: relative;
}

.feature_content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 950px;
    text-align: center;
    color: var(--white-color);
}

.feature_content h2 {
    font-size: 42px;
    font-weight: 700;
    max-width: 950px;
    text-shadow: 0 0 4px rgba(0, 0, 0, .5);
    margin: 0 auto;
}

.feature_content p {
    font-size: 20px;

    margin: 0 auto;
    margin-top: 10px;
}

.center_btn {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

}

/* testimonial_box__heading */
.testimonial_box__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial_box {
    margin: 0 10px;
    padding: 2rem;
    border: 1px solid #ccc;
    background-color: whitesmoke;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info-img img {
    border-radius: 100%;
    height: 80px;
    width: 80px;
    border: 2px dashed #ccc;
}

.user-name h3 {
    font-weight: 700;
    font-size: 20px;
}

.user-name span {
    color: #666;
    font-weight: 600;
}

.rating i {
    color:#FFE234;
;
}

.testimonial_box__parra {
    margin-top: 2rem;
    display: flex;
    gap: 10px;
}

.testimonial_box__parra p {
    font-size: 18px;
    line-height: 30px;
}

.quote-icon img {
    margin-top: 5px;
    width: 150px;
}

.slick-dots {
    bottom: -3rem !important;
}

.slick-dots li.slick-active button:before {
    display: none !important;
}

.slick-dots li {
    width: 6px !important;
    height: 6px !important;
    aspect-ratio: 1 !important;
    margin: 0 2px !important;
}

.slick-dots li button {
    transition: all 0.5s ease-in;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 32px !important;
    background: rgba(182, 182, 182, 0.5) !important;
}

.slick-dots li.slick-active button {
    background: var(--main-color) !important;
    width: 1.5rem !important;
    transition: all 0.5s ease-in;
}

.slick-dots li.slick-active {
    width: 1.5rem !important;
}

.slick-dots li button::before {
    display: none !important;
}

/* loan_box */
.loan_box {
    height: 94%;
    margin-bottom: 3rem;
    padding: 2rem;
    text-align: center;
    background-color: var(--white-color);
}

.loan_info {
    padding-bottom: 44px;
}

.loan_box h3 {
    font-weight: 700;
    color: var(--main-color);
}

.loan_box li,
.loan_box p {
    margin-top: 1rem;
    font-size: 18px;
    line-height: 30px;
}


/* mobile_menu */
.mobile_menu {
    display: none;
}

.mobile_menu ul li a {
    display: block;
    border-bottom: 1px solid #ccc;
    text-transform: capitalize;
    padding: 1rem;
    color: var(--black-color);
}

@media(max-width:1440px) {
    .feature_content {
        max-width: max-content;
        width: 75%;
    }

    .banner_wrapper {
        background-position: bottom;
    }

    .features_wrapper__img img {
        width: 100%;
        object-fit: cover;
        height: 450px;
    }

    .sidebar_content {
        width: 35%;
    }
}

@media(max-width:1200px) {
    .menu ul {
        gap: 1.5rem;
    }

    .menu ul li a {
        font-size: 15px;
    }



    .arrow_icon__two .arrow_icon img {
        top: 31%;
        right: -33%;
        width: 150px;
    }

    .arrow_icon__one .arrow_icon img {
        top: 16%;
        right: -29%;
        width: 150px;
    }

    .service_box h3,
    .work_box__content h3 {

        font-size: 18px;
    }

    .service_box p {
        font-size: 15px;
    }
}

@media(max-width:992px) {
    .sidebar_content {
        width: 45%;
    }

    .mobile_menu {
        display: block;
    }

    .sidebar-about {
        display: none;
    }

    .menu ul,
    .arrow_icon {
        display: none;
    }

    .logo img {
        width: 110px;
    }

    .about_content,
    .benefit_grid {
        margin-top: 1rem;
    }

    .work_box {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
    }
}

@media(max-width:768px) {
    .sidebar_content {
        width: 85%;
    }
    .main_heading p{
        font-size: 14px;
        margin-top: 6px;
        line-height: 25px;
    }

    .sidebar-logo img {
        width: 100px;
    }

    .close_icon i {
        height: 34px;
        width: 34px;
        font-size: 20px;
    }

    .sidebar-about h3 {
        font-size: 20px;
    }

    .sidebar-about ul li a,
    .sidebar-about p {
        font-size: 14px;
    }

    .search_input {
        display: none;
    }

    .banner_wrapper {
        height: 400px;
        background-position: left;
    }

    .about_img img,
    .benefit_img img {
        height: 300px;
    }

    .global_wrapper {
        padding: 50px 0;
    }

    .global_content {
        margin-top: 2rem;
    }

    .myBtn {
        margin-top: 1.5rem;
    }

    .feature_content h2 {
        font-size: 25px;
    }

    .feature_content p,
    .testimonial_box__parra p {
        font-size: 16px;
        line-height: 25px;
    }

    .testimonial_box__parra {
        margin-top: 1rem;
    }

    .main_heading h2 {
        font-size: 24px;
    }

    .main_heading b {
        font-size: 16px;
        margin-bottom: 5px !important;
    }

    .service_box,
    .testimonial_box {
        padding: 1.2rem 1rem;
    }

    .features_wrapper__img img {
        height: 400px;
    }

    .loan_box h3 {
        margin-top: 0;
    }

    .loan_box li,
    .loan_box p {
        font-size: 15px;
        line-height: 26px;
        margin-top: 5px;
    }

    .user-name h3 {
        font-size: 16px;
    }

    .user-info-img img {
        height: 50px;
        width: 50px;
    }

    .benefit_grid {
        gap: 1rem;
    }

    .benefit_grid__box-content h3 {
        font-size: 18px;
    }

    .work_box__icon {
        height: 75px;
        width: 75px;
    }

    .work_box__icon img,
    .service_box__icon img {
        width: 40px;
    }

    .about_content p {
        font-size: 14px;
        margin-top: 5px;
        line-height: 25px;
    }
}

@media(max-width:576px) {
    .loan_box {
        height: auto;
        margin-bottom: 12px;
    }

    .feature_content p,
    .testimonial_box__parra p,
    .benefit_grid__box-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .vr_wrapper {
        padding: 5px 0;
    }

    .vr_wrapper span {
        font-size: 13px;
    }

    .feature_content {
        width: 94%;
    }

    .banner_wrapper {
        height: 300px;
    }

    .banner_content p {
        font-size: 16px;
    }

    .myNav_right {
        gap: 1rem;
    }

    .main_heading h2 {
        font-size: 20px;
    }

    .main_heading b {
        font-size: 14px;
    }
}