* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "ProductSans";
}

body {
    overflow-x: hidden;
}

:root {
    --primary-color: linear-gradient(90deg, #FECC4C 0%, #CD9A24 100%);
    --secondary-color: #CE9B25;
    --tertiary-color: #767676;
    --text-color: #000;
    --para-color: #828282;
}

main {
    overflow: hidden;
}

a {
    text-decoration: none;
    transition: all .3s ease-in-out;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}


figure {
    margin: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
}

p {
    color: var(--para-color);
    font-size: 18px;
    line-height: 28px;
    text-transform: capitalize;
    font-weight: 400;
    margin: 0px 0px 20px;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
}

p::first-letter {
    text-transform: capitalize;
}

i::before {
    font-family: "FontAwesome";
}

.wrp_bg {
    background: linear-gradient(180deg, #EFF1FF 0%, #FFFFFF 57.97%);
}

/* head */
.head {}

.head h2 {
    font-size: 50px;
    line-height: 60px;
    color: var(--text-color);
    font-weight: 400;
    margin: 0px 0px 20px;
}

.head h2 span {
    font-weight: 700;
}

.head h3 {
    font-size: 30px;
    line-height: 40px;
    color: var(--text-color);
    font-weight: 600;
    margin: 0px 0px 15px;
}

.head h3.h3 {
    font-weight: 400;
}

.head h3.h3 span {
    font-weight: 600;
}

.head h4 {
    font-size: 24px;
    line-height: 34px;
    color: var(--text-color);
    font-weight: 500;
    margin: 0px 0px 5px;
}

.head p {}

.head p a {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding: 0px 0px 2px 0px;
}

.head ul {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 14px;
    margin: 10px 0px 30px;
}

.head ul li {
    font-size: 20px;
    line-height: 30px;
    color: var(--text-color);
    font-weight: 400;
    display: flex;
    align-items: self-start;
    gap: 10px;
    text-transform: capitalize;
}

.head ul li img {
    width: 20px;
    margin: 5px 0px 0px;
}

.head.trading {
    width: 92% !important;
}

.head.trading h3 {
    font-weight: 500;
}

.head.trading p {
    color: var(--para-color) !IMPORTANT;
    font-size: 18px !important;
    line-height: 28px !important;
}

.head.trading ul.focus {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 10px 0px 20px;
}

.head.trading ul li {}

.head.initial {
    width: 100% !important;
}

.head.initial ul {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.head.initial ul li {
    align-items: center;
}

/* head */

/**************************** Btn hover Start ***************************/
.btn {
    border-radius: 0px;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 5px;
    transition: all .3s ease-in-out;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 25px;
}

.btn-box .btn-primary {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    padding: 14px 27px;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary-color);
    border: 2px solid #CD9A24;
    border-radius: 0px 100px 100px 100px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.btn-box .btn-primary:hover .text-white {
    color: var(--secondary-color) !important;
}

.btn-box .btn-primary:hover {
    border: 2px solid var(--secondary-color);
}

.btn-box .btn-secondary {
    background: #ffffff00;
    border: 2px solid #fff;
}

.btn-box .btn-secondary:hover {
    border: 2px solid var(--secondary-color);
}

/* Bounce To Right */
.hvr-bounce-to-right {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    color: var(--secondary-color) !important;
}

.hvr-bounce-to-right:hover:after,
.hvr-bounce-to-right:focus:after,
.hvr-bounce-to-right:active:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Right */
/* Bounce To left */
.hvr-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-left::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
    color: var(--secondary-color) !important;
}

.hvr-bounce-to-left:hover::after,
.hvr-bounce-to-left:focus::after,
.hvr-bounce-to-left:active::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To left */
/**************************** Btn hover Close ***************************/

/**************************** Form css Start ***************************/
.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

select:focus,
textarea:focus,
input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--secondary-color) !important;
}

.frm_wrp .input-main {
    margin: 0 0 25px 0;
    overflow: hidden;
}

.frm_wrp .input-main p,
.frm_wrp .input-main label {
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    margin: 0 0px 0px 15px;
    color: #000000;
    line-height: 28px;
}

.frm_wrp .input-main p span,
.frm_wrp .input-main label span {
    color: #FF6B6B;
}

.frm_wrp .input-main .form-select,
.frm_wrp .input-main .form-control {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    height: 60px;
    padding: 10px 20px;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    margin: 5px auto;
    width: 99%;
}

.frm_wrp .input-main textarea.form-control {
    height: 190px;
    border-radius: 30px;
    padding: 20px;
}

.frm_wrp .input-main .file_control {
    padding: 10px 16px;
}

section.contact_frm .frm_wrp .btn-box .btn-primary {
    padding: 18px 70px;
}

.form-check {
    margin: 0;
}

.form-check .form-check-input:checked {
    background-color: #ff5722;
    border-color: #ff5722;
}

.form-check .form-check-input:focus {
    border-color: #ff5722;
    box-shadow: none;
}

.form-check .form-check-label {
    letter-spacing: 1.5px;
    text-transform: capitalize;
    margin: 0;
    color: #313747;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

[type="file"] {
    /* Style the color of the message that says 'No file chosen' */
    color: #878787;
}

.form-control::file-selector-button {
    font-size: 16px;
    background: #F0F0F0;
    color: #828282;
    border: 1px solid #DFDFDF;
    border-radius: 60px;
    padding: 10px 50px;
    height: 50px;
}

/**************************** Form css End ***************************/

/************************************* header *************************************/
.navbar-toggler {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
}

/* header top */
header {
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.top_head {
    background: var(--primary-color);
    position: relative;
    z-index: 999;
}

.marquee {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 50px;
    animation: marquee 30s linear infinite;
    padding: 12px;
}

.top_head .marquee p {
    font-size: 17px;
    color: #000;
    margin: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

/* header-btm */
header .header-btm {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
}

header .sticky {
    /* position: fixed; */
    top: 0;
    width: 100%;
    /* background: #151C22; */
}

header .header-btm .navbar>.container-fluid {
    align-items: center;
}

header .navbar-expand-lg .navbar-collapse {
    justify-content: end;
    gap: 40px;
}

header .header-btm .navbar {
    padding: 16px 0;
    transition: all 0.3s ease-in-out;
    background: transparent;
    position: relative;
}

header .header-btm.sticky .navbar {
    border-bottom: none !important;
}

header .header-btm .navbar .navbar-nav {
    align-items: center;
    gap: 30px;
    justify-content: end;
}

header .header-btm .navbar .navbar-nav .nav-item {
    position: relative;
}

/* drop-down */
header .header-btm .navbar .navbar-nav .nav-item:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

header .header-btm .navbar .navbar-nav .nav-item .dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 15px 0;
    top: 100%;
    transform: translateY(50px);
    left: 0;
    width: 250px;
    background-color: #fff;
    box-shadow: 0px 10px 10px 3px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 111;
    transition: 0.4s all;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 2px;
}

header .header-btm .navbar .navbar-nav .nav-item .dropdown li .dropdown-item {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
    letter-spacing: 0;
    word-spacing: 0;
    border: none;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.5s ease-in-out;
    padding: 12px 12px;
}

header .header-btm .navbar .navbar-nav .nav-item .dropdown li .dropdown-item:hover {
    background-color: #005481;
    color: #fff;
}

/* drop-down */

header .header-btm .navbar .navbar-nav .nav-item .nav-link {
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.5s ease-in-out;
    font-weight: 400;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link.active::before {
    width: 100%;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link.active:hover::before {
    width: 100%;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link::before {
    position: absolute;
    content: "";
    height: 2px;
    background: var(--secondary-color);
    width: 0%;
    bottom: 0;
    left: 0;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
}

header .header-btm .navbar .navbar-brand {
    margin: 0;
    padding: 0;
}

header .header-btm .navbar .navbar-brand .logo {
    width: 120px;
}

header.sticky .header-btm .navbar .navbar-brand .logo {
    height: 70px;
}

/***************************** header close *****************************/
/***************************** Footer Start *****************************/
footer .footer-main {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #010016 0%, #000631 100%);
}

footer .footer-top {
    padding: 80px 0;
}

footer .footer-top .footer-logo {}

footer .footer-top .footer-logo img {
    width: 100%;
}

footer .footer-top .footer-logo ul {
    margin: 80px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 40.5px;
}

footer .footer-top .footer-logo ul li a i {
    font-size: 20px;
    width: 29.1px;
    height: 29.1px;
    color: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    transition: all .5s ease-in-out;
}

footer .footer-top .footer-logo ul li a i:hover {
    color: var(--secondary-color);
}

footer .footer-top .quik-inks.last {
    margin: 0 0 0 auto;
}

footer .footer-top .quik-inks h4 {
    font-size: 25px;
    color: #ffffff;
    text-transform: capitalize;
    margin: 0 0 20px 0;
}

footer .footer-top .quik-inks h5 {
    font-size: 25px;
    color: #ffffff;
    text-transform: capitalize;
    margin: 0 0 30px 0;
}

footer .footer-top .quik-inks p {
    color: #E8E8E8;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
}

footer .footer-top .quik-inks ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
}

footer .footer-top .quik-inks ul li a {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    position: relative;
}

footer .footer-top .quik-inks ul li a::before {
    position: absolute;
    content: "";
    height: 3px;
    background: var(--secondary-color);
    width: 0%;
    bottom: -6px;
    left: 0;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

footer .footer-top .quik-inks ul li a:hover::before {
    width: 100%;
}

footer .footer-top .quik-inks ul li a:hover {
    /* color: var(--secondary-color); */
}

footer .footer-top .quik-inks.soical {}

footer .footer-top .quik-inks.soical ul {}

footer .footer-top .quik-inks.soical ul li i {
    font-size: 20px;
    color: var(--secondary-color);
}

footer .footer-top .quik-inks.soical ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .footer-top .quik-inks.soical ul li a {
    text-transform: capitalize;
}

footer .footer-bottom {
    padding: 30px 0;
    border-top: 1px solid #f0f7f72e;
}

footer .footer-bottom .copyright p {
    color: #FAFBFD;
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
}

footer .footer-bottom .copyright p a {
    color: #FAFBFD;
}

footer .footer-bottom .copyright p a:hover {
    color: #002f8c;
}

footer .footer-bottom .social-links ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

footer .footer-bottom .social-links ul li {
    color: #FAFBFD;
}

footer .footer-bottom .social-links ul li a {
    color: #ffffff;
    font-size: 20px;
    height: 50px;
    width: 50px;
    background: #ffffff3b;
    border-radius: 50%;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer-bottom .social-links ul li a:hover {
    background: var(--secondary-color);
}

/*********************** footer close ***********************/

/*********************** home-page css Start ***********************/

/* banner */
.home-banner-wrap {
    background: url('../images/banner/banner_img1.png') no-repeat center center/cover;
    position: relative;
    padding: 50px 0 0px;
    height: 900px;
    display: flex;
    align-items: center;
    position: relative;
}

.home-banner-wrap .car_img img {
    position: absolute;
    right: 13%;
    bottom: -12%;
}

.home-banner-wrap .contant {
    margin: 0px 0px 30px;
}

.home-banner-wrap .contant h6 {
    color: var(--secondary-color);
    font-size: 24px;
    line-height: 34px;
    margin: 0px 0px 20px;
    font-weight: 400;
}

.home-banner-wrap .contant h1 {
    font-size: 60px;
    color: #fff;
    line-height: 70px;
    margin: 0px 0px 20px;
    font-weight: 300;
}

.home-banner-wrap .contant h1 span {
    font-weight: 700;
    color: var(--secondary-color);
}

.home-banner-wrap .contant p {
    color: #fff;
    font-size: 20px;
    line-height: 35px;
    margin: 0px 0px 20px;
}




/* banner */

/* about_wrap */
.about_wrap {
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}

.about_wrap::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 440px;
    top: 50%;
    left: 37%;
    bottom: 0;
    background: url('../images/mark1.png') no-repeat center center/cover;
    z-index: -1;
    animation: updown 2s ease-in-out infinite alternate;
}

.without_mark::before {
    display: none;

}

@keyframes updown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

section.about_wrap .head {
    width: 90%;
}

section.about_wrap .head p {
    color: #000;
    font-size: 20px;
    line-height: 30px;
}

section.about_wrap .head .btn-box {}

.about_wrap .mark_img img {}

.about_wrap .main-img {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.about_wrap .main-img img {
    width: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.about_wrap .main-img.costs img {
    height: 515px;
}

.about_wrap .main-img.agreement img {
    height: 600px;
}

.about_wrap .main-img img:hover {
    transform: scale(1.1);
}

section.private_wrap {
    background: linear-gradient(180deg, #EFF1FF 0%, #FFFFFF 57.97%);
}
section.private_wrap.without {
    background: transparent;
}
section.refund-wrp {
    background: transparent;
}

section.private_wrap .main-img img.documents {
    height: 720px;
    object-fit: cover;
    border-radius: 30px;
}

section.private_wrap .main-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

section.private_wrap::before {
    top: 30% !important;
    left: 85% !important;
}

.appreciate::before {
    top: 40%;
}

/* about_wrap */

/* car_buyers_wrap */
.car_buyers_wrap {
    padding: 100px 0px;
}

.car_buyers_wrap .head {
    text-align: center;
    margin: 0px auto 44px;
    width: 65%;
}

.car_buyers_wrap .hidden_box {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 60px 10px 30px 45px;
    position: relative;
    overflow: hidden;
    height: 400px;
    z-index: 1;
    margin: 0px 0px 30px;
    transition: all .3s ease-in-out;
}

.car_buyers_wrap .hidden_box:hover {
    box-shadow: 0px 5px 15px rgb(0 0 0 / 13%);
}

.car_buyers_wrap .hidden_box .head {
    text-align: left;
    margin: 0;
    width: 70%;
}

.car_buyers_wrap .hidden_box.high img {
    width: 375px;
    bottom: 0;
}

.car_buyers_wrap .hidden_box.confusing img {
    width: 500px;
}

.car_buyers_wrap .hidden_box img {
    width: 400px;
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: -1;
}

/* car_buyers_wrap */

/* professional_wrap */
.professional_wrap {
    padding: 100px 0px 60px;
    background: linear-gradient(180deg, #EFF1FF 0%, #FFFFFF 55.23%);
}

.professional_wrap .head {
    text-align: center;
    margin: 0px auto 60px;
}

.professional_wrap .card {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 20px 29px 40px;
    text-align: center;
    border: 1px solid #E8E8E8;
    justify-content: center;
    align-items: center;
    height: 600px;
    margin: 0px 0px 10px;
    transition: all .3s ease-in-out;
}

.professional_wrap .card:hover {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}

.professional_wrap .card .main-img {
    margin: 0px 0px 30px;
    text-align: center;
}

.professional_wrap .card .main-img img {
    width: 200px;
}

.professional_wrap .card .head {
    margin: 0;
}

.professional_wrap .card .head h3 {
    font-weight: 500;
}

.professional_wrap .card .head p {
    margin: 0px 0px 20px;
}

.professional_wrap .card .head .btn-box {
    justify-content: center;
}

.professional_wrap .card .head .btn-box .btn-secondary {
    border: 2px solid var(--secondary-color);
    color: var(--text-color);
    background: #ffffff;
}

.professional_wrap .card .head .btn-box .btn-secondary.hvr-bounce-to-left::after {
    background: var(--secondary-color);
}

.professional_wrap .card .head .btn-box .btn-secondary.hvr-bounce-to-left:hover,
.professional_wrap .card .head .btn-box .btn-secondary.hvr-bounce-to-left:focus,
.professional_wrap .card .head .btn-box .btn-secondary.hvr-bounce-to-left:active {
    color: #ffffff !important;
}

.professional_wrap .card-slider.owl-theme .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0px 0px;
}

.professional_wrap .card-slider.owl-carousel button.owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0;
    background: var(--primary-color);
    opacity: 0.7;
}

.professional_wrap .card-slider.owl-theme .owl-dots .owl-dot.active {
    border: 2px solid var(--secondary-color);
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.professional_wrap .card-slider.owl-theme .owl-dots .owl-dot.active span {
    width: 11px;
    height: 11px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* professional_wrap */

/* work_wrap */
.work_wrap {
    padding: 100px 0px 150px;
    position: relative;
    overflow: hidden;
}

.work_wrap .row::before {
    content: "";
    position: absolute;
    top: 37%;
    left: 0;
    width: 100%;
    height: 308px;
    background: url('../images/waves.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.work_wrap .head {
    text-align: center;
    margin: 0px 0px 30px;
}

.work_wrap .steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 90%;
    margin: auto;
}

.work_wrap .steps .head {
    margin: 0;
}

.work_wrap .steps .head span {
    display: block;
    font-size: 80px;
    font-weight: 800;
    line-height: 80px;
    color: white;
    -webkit-text-stroke: 1px var(--secondary-color);
    opacity: 20%;
}

.work_wrap .steps .head p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

.work_wrap .steps .icon {
    width: 190px;
    height: 190px;
    background: #767676;
    border-radius: 50%;
    border: 8px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 7px 15px rgb(0 0 0 / 25%);
    transition: all .3s ease-in-out;
}

.work_wrap .steps .icon:hover {
    background: var(--secondary-color);
}

.work_wrap .steps .icon img {}

/* work_wrap */

/* frequently_wrap */
.frequently_wrap {
    position: relative;
    overflow: hidden;
    padding: 100px 0px 0px;
    background: linear-gradient(180deg, #EFF1FF 0%, #FFFFFF 57.97%);
}

.frequently_wrap .head {
    text-align: center;
    margin: 0px 0px 50px;
}

.frequently_wrap .faq_wrap {
    margin: 0px 0px 60px;
}

.frequently_wrap .faq_wrap .accordion {}

.frequently_wrap .faq_wrap .accordion .accordion-item {
    margin: 0px 0px 25px;
    background: #ffffff;
    border: 1px solid #E8E8E8;
    border-radius: 15px;
    overflow: hidden;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-header {
    border: 0 !important;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-header .accordion-button {
    background: transparent;
    font-size: 24px;
    color: var(--text-color);
    line-height: 34px;
    font-weight: 500;
    border: 0 !important;
    padding: 20px 30px;
    box-shadow: none !important;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-body {
    padding: 0px 30px 30px 30px;
    width: 95%;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-body .head {
    text-align: left;
    margin: 0;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-body .head p {
    margin: 0px 0px 15px;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-body .head ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-body p {
    margin: 0;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-header .accordion-button::after {
    content: '\2b';
    font-family: 'FontAwesome';
    background: #fff0;
    color: var(--text-color)000;
    font-size: 22px;
    border-radius: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.frequently_wrap .faq_wrap .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: '\f068';
    font-family: 'FontAwesome';
    transform: rotate(0deg);
    color: var(--secondary-color);
}

.frequently_wrap .main-img {}

.frequently_wrap .main-img img {
    width: 100%;
    height: auto;
}

section.loan_faq {
    padding: 100px 0px;
    background: transparent;
}

section.loan_faq .faq_wrap {
    margin: 0;
}

/* frequently_wrap */

/* Review_wrap */
.Review_wrap {
    position: relative;
    overflow: hidden;
    padding: 100px 0px;
}

.Review_wrap::before {
    content: "";
    position: absolute;
    top: 26%;
    left: 0;
    width: 100%;
    height: 700px;
    background: url('../images/circle-line.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.Review_wrap .head {
    text-align: center;
    margin: 0px 0px 60px;
}

.Review_wrap .review-card {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    margin: 0px 0px 150px;
}

.Review_wrap .review-card.left {
    left: -20%;
}

.Review_wrap .review-card.right {
    right: -20%;
}

.Review_wrap .review-card.last {
    margin: 0px;
}

.Review_wrap .review-card .review-content {
    text-align: center;
}

.Review_wrap .review-card .review-content h4 {
    font-size: 28px;
    line-height: 38px;
    color: var(--text-color);
    font-weight: 500;
    margin: 0px 0px 10px;
}

.Review_wrap .review-card .review-content p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
}

.Review_wrap .review-card .review-icon {
    background: #FAFAFA;
    height: 150px;
    min-width: 150px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .3s ease-in-out;
}

.Review_wrap .review-card .review-icon:hover {
    background: var(--secondary-color);
}

.Review_wrap .review-card .review-icon img {
    width: 70px;
}

.Review_wrap .review-card .review-icon:hover img {
    filter: brightness(0) invert(1);
}

.Review_wrap .main-img {}

.Review_wrap .main-img img {
    width: 100%;
}


/*home slider*/

.myslider .item {
    width: 100%;
    position: relative;
}

.myslider .item.c {
    background-color: #325D7F;
}

.myslider .item.b {
    background-color: #F2727F;
}

.myslider .item.a {
    background-color: #F9B294;
}

.myslider .item h2 {
    color: #fff;
    font-size: 8vw;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    margin: 0 auto;
    max-width: 80%;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.myslider .slick-dots {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -114px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.myslider .slick-dots li {}

.myslider .slick-dots li button {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    border: none;
    background-color: #FFFFFF;
    text-indent: -9999px;
    outline: 0;
    opacity: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

slick-active {}

.myslider .slick-dots .slick-active {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myslider .slick-dots .slick-active button {
    width: 11px;
    height: 11px;
    opacity: 1;
}

.slick-dots button:hover {
    background-color: var(--text-color);
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
}

.slick-arrow.slick-hidden {
    display: none;
}

/*home slider*/
/*********************** home-page css Close ***********************/

/*********************** inner-page css Start ***********************/


/* inner_subscription_wrap */

.inner_subscription_wrap {
    background: url('../images/banner/banner_img2.png') no-repeat;
    background-size: cover;
    background-position: top;
    padding: 280px 0 0px;
    height: 850px;
    display: block;
    z-index: 9;
}

.inner_subscription_wrap .contant {
    margin: 0px 0px 130px;
    width: 45%;
}

.inner_subscription_wrap .car_img {}

.inner_subscription_wrap .car_img img {
    position: relative;
    right: 0;
    bottom: 0;
}

.inner_subscription_wrap .contant h1 {
    font-size: 60px;
    color: #fff;
    line-height: 70px;
    margin: 0px 0px 20px;
    font-weight: 300;
}

.inner_subscription_wrap .contant h1 span {
    font-weight: 700;
    color: var(--secondary-color);
}

.inner_subscription_wrap .contant p {
    color: #fff;
    font-size: 20px;
    line-height: 35px;
    margin: 0px 0px 20px;
}

/* inner_subscription_wrap */

/* services_package_wrap */
.services_package_wrap {
    padding: 0px 0px 20px;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(180deg, #EFF1FF 0%, #FFFFFF 73.89%); */
}

.services_package_wrap .head {
    text-align: center;
    margin: 0px auto 40px;
    width: 68%;
}

.services_package_wrap .package_main_box {
    background: #FFFFFF;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 28px;
    padding: 25px 25px 45px;
    height: 562px;
}

.services_package_wrap .package_main_box span {
    padding: 6px 16px;
    color: var(--secondary-color);
    font-size: 11px;
    line-height: 16px;
    font-weight: 600;
    background: #ce9b2524;
    border-radius: 100px;
    text-transform: uppercase;
    display: flex;
    width: fit-content;
    margin: 0px 0px 16px;
}

.services_package_wrap .package_main_box h4 {
    font-size: 22px;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 600;
    margin: 0px 0px 16px;
}

.services_package_wrap .package_main_box h5 {
    font-size: 38px;
    line-height: 39px;
    color: var(--text-color);
    font-weight: 600;
    margin: 0px 0px 16px;
}

.services_package_wrap .package_main_box h5 sup,
.services_package_wrap .package_main_box h5 span {
    display: inline;
    color: #777777;
    background: transparent;
    padding: 0;
    font-size: 16px;
    line-height: 26px;
    text-transform: lowercase;
    font-weight: 400;
}

.services_package_wrap .package_main_box h5 sup {
    position: relative;
    top: -18px;
}

.services_package_wrap .package_main_box h6 {
    font-size: 18px;
    line-height: 22px;
    color: var(--text-color);
    font-weight: 600;
    margin: 0px 0px 16px;
}

.services_package_wrap .package_main_box ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0px 0px 20px;
    height: 230px;
    overflow: auto;
}

.services_package_wrap .package_main_box ul li {
    color: #777777;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services_package_wrap .package_main_box ul li img {
    width: 16px;
}

.services_package_wrap .package_main_box .btn-box {}

.services_package_wrap .package_main_box .btn-box .btn-primary {
    width: 100%;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 21%);
}

.success_wrp {
    padding: 180px 0px 120px;
}

.success_wrp::before {
    top: 40%;
}

.success_wrp .head h4 {
    margin: 0px 0px 15px;
}

/* services_package_wrap */

/* trust_wrap */

.trust_wrap {
    padding: 100px 0px;
    background: linear-gradient(180deg, #EFF1FF 0%, #FFFFFF 57.97%);
}
.trust_wrap.without{
    padding: 0px 0px 100px;
    background: transparent;
}
.trust_wrap .bottom-Spc {
    margin-bottom: 80px;
}

.trust_wrap .main-img {}

.trust_wrap .main-img img {
    width: 100%;
}

.trust_wrap .head {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    padding: 30px 50px;
    position: relative;
    left: -10%;
    max-width: 800px;
    min-width: 800px;
}
section.trust_wrap.without .head {
    padding: 80px 50px;
}
.trust_wrap .head.lft_side {
    left: 0%;
}

/* trust_wrap */

/* refinancing_vehicle */
.refinancing_vehicle {}

.refinancing_vehicle .vehicle_bx {
    background: #010630;
    border-radius: 30px;
    text-align: center;
    padding: 39px 0px 70px;
}

.refinancing_vehicle .vehicle_bx img {
    width: 100px;
    margin: 0px 0px 10px;
}

.refinancing_vehicle .vehicle_bx h4 {
    font-size: 26px;
    color: #fff;
    line-height: 30px;
    margin: 0px 0px 20px;
    font-weight: 400;
}

.refinancing_vehicle .vehicle_bx a {
    font-size: 28px;
    color: #fff;
    line-height: 30px;
    margin: 0px 0px 20px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: underline;
}

/* refinancing_vehicle */

/* cta_wrap */
.cta_wrap {
    background: var(--primary-color);
    padding: 90px 0px;
}

.cta_wrap .Cost_bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta_wrap .follow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.cta_wrap .follow .head {
    text-align: center;
}

.cta_wrap .Cost_bx .head {}

.cta_wrap .Cost_bx .head h2 {
    font-size: 36px;
    line-height: 46px;
}

.cta_wrap .Cost_bx .head p {
    color: #000;
    font-weight: 500;
    margin: 0;
}

.cta_wrap .Cost_bx .btn-box {}

.cta_wrap .Cost_bx .btn-box .btn-primary {
    background: #000;
}

/* cta_wrap */


/* disclaimer_wrap */
section.disclaimer_wrap {
    position: relative;
    overflow: hidden;
    padding: 80px 0px;
    background: linear-gradient(180deg, #EFF1FF 0%, #FFFFFF 50%);
}

section.disclaimer_wrap .Disc_bx {
    display: flex;
    align-items: center;
    justify-content: center;
}
section.disclaimer_wrap.knowledge .Disc_bx .head{text-align: left;}

section.disclaimer_wrap .Disc_bx .head {
    text-align: center;
}

section.disclaimer_wrap .Disc_bx .head p {
    margin: 0;
    font-weight: 500;
}

section.disclaimer_wrap .Disc_bx .main-img img {
    width: 230px;
    margin: 0px 100px 0px 0px;
}
section.educational {
    padding: 80px 0px 100px;
}

section.educational .head h2 {
    margin: 0px 0px 18px;
}

section.educational .head p {
    color: #000000;
}

section.educational .Disc_bx {
    margin: 0px 0px 70px;
}

section.educational .learn_bx {
    background-image: url(../images/bg_learn.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 60px 0px;
}

section.educational .learn_bx .head {
    text-align: center;
}
section.educational .learn_bx .head h2{
    color:#fff;
}
section.educational .learn_bx .head p{
    color:#fff;
}
section.educational .learn_bx .head .btn-box {
    justify-content: center;
}
/* disclaimer_wrap */


/* =============== testimonial css ================ */

/* testimonial_bg */
.testimonial_bg {
    background-image: url(../images/banner/short_banner.png);
    background-size: cover;
    background-position: center;
    display: block;
    height: auto;
    padding: 300px 0px 150px;
}

/* testimonial_bg */

/* reviews_wrp */
.reviews_wrp {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(180deg, #EFF1FF 0%, #FFFFFF 50%); */
}

.reviews_wrp .head {
    text-align: center;
    margin: 0px 0px 40px;
}

.reviews_wrp .review_bx {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 22px;
    padding: 30px;
    height: 390px;
    margin: 0px 0px 30px;
    box-shadow: rgb(0 0 0 / .19) 0 0 4px 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.reviews_wrp .review_bx::before{
    content: "";
    position: absolute;
    height: 0%;
    width: 100%;
    top: 0%;
    right: 0%;
    background: var(--primary-color);
    z-index: -1;
    transition: all .5s ease-in-out;
}
.reviews_wrp .review_bx:hover::before{
    bottom: 0;
    transition: 0.5s;
    height: 100%;
    right: 0;
}

.reviews_wrp .review_bx ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0px 0px 15px;
}

.reviews_wrp .review_bx ul li {}

.reviews_wrp .review_bx ul li i {
    font-size: 20px;
    color: #FFC107;
    transition: all .3s ease-in-out;
}

.reviews_wrp .review_bx:hover ul li i{
    color:#fff;
}

.reviews_wrp .review_bx h4 {
    font-size: 22px;
    line-height: 30px;
    margin: 0px 0px 15px;
    color: #000;
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.reviews_wrp .review_bx:hover h4{
    color:#fff;
}

.reviews_wrp .review_bx p {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    transition: all .3s ease-in-out;
}

.reviews_wrp .review_bx:hover p{
    color:#fff;
}

.reviews_wrp .review_bx .det {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0px 0px;
}

.reviews_wrp .review_bx .det img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #000;
}

.reviews_wrp .review_bx .det h5 {
    font-size: 23px;
    line-height: 25px;
    color: #000;
    font-weight: 600;
    margin: 0px 0px 0px;
    transition: all .3s ease-in-out;
}

.reviews_wrp .review_bx .det h5 span {
    color: var(--para-color);
    font-size: 18px;
    font-weight: 400;
    display: block;
    transition: all .3s ease-in-out;
}
.reviews_wrp .review_bx:hover h5{
    color:#fff;
}
.reviews_wrp .review_bx:hover h5 span{
    color:#fff;
}
.reviews_wrp .review_bx2 {
    height: 310px;
}

.reviews_wrp .review_bx2 p {
    font-size: 22px;
    line-height: 40px;
    height: 120px;
}

/* reviews_wrp */

/* ============= testimonial css============ */



/* why_wrk_wrp */
section.why_wrk_wrp {}

section.why_wrk_wrp .creating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

section.why_wrk_wrp .creating .steps {
    flex: 1;
}

/* why_wrk_wrp */

/* advertise_wrap */
.advertise_wrap {
    padding: 0px 0px 100px;
    position: relative;
    overflow: hidden;
}

.advertise_wrap .head {
    text-align: center;
    margin: 0px 0px 50px;
}

.advertise_wrap .targeted_box {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 22px;
    text-align: center;
    padding: 30px 24px 50px;
    transition: all .3s ease-in-out;
}

.advertise_wrap .targeted_box:hover {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}

.advertise_wrap .targeted_box img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin: 0px 0px 20px;
}

.advertise_wrap .targeted_box .head {
    margin: 0;
}

.advertise_wrap .targeted_box h3 {}

.advertise_wrap .targeted_box p {
    margin: 0;
}

/* advertise_wrap */

/* vehicles_wrap */
.vehicles_wrap {
    background: linear-gradient(180deg, #EFF1FF 0%, #FFFFFF 50%);
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}

.vehicles_wrap .line {
    padding: 0px 0px 87px;
    border-bottom: 1px solid #D8D8D8;
}

.vehicles_wrap .head {
    text-align: center;
    margin: 0px 0px 55px;
}

.vehicles_wrap .social-box {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    height: 280px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.vehicles_wrap .social-box:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.vehicles_wrap .social-box img {
    width: 65px;
    object-fit: cover;
    margin: 0px 0px 15px;
}

.vehicles_wrap .social-box h4 {
    color: #000;
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    margin: 0;
}

.vehicles_wrap .social-box a,
.vehicles_wrap .social-box p {
    color: var(--para-color);
    font-size: 18px;
    line-height: 28px;
    text-transform: capitalize;
    font-weight: 400;
    text-align: center;
}

/* vehicles_wrap */

/* contact_frm */
section.contact_frm {
    position: relative;
    overflow: hidden;
    padding: 0px 0px 100px;
}

section.contact_frm .head {
    text-align: center;
    margin: 0px 0px 30px;
}

section.contact_frm .frm_wrp {
    width: 85%;
    margin: auto;
}

section.contact_frm .head.secure-head {
    text-align: start;
    margin: 40px auto 0px;
    width: 85%;
}

section.contact_frm .head.secure-head h3 {
    font-size: 32px;
}

section.contact_frm .head.secure-head ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0px 0px;
}

/* contact_frm */

/* experiences_wrp */
.experiences_wrp {
    position: relative;
    overflow: hidden;
    padding: 100px 0px 0px;
    background: linear-gradient(180deg, #EFF1FF 0%, #FFFFFF 57.97%);
}

.experiences_wrp .head {
    text-align: center;
    margin: 0px 0px 140px;
}

.experiences_wrp .discovery {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    text-align: center;
    padding: 20px 20px 40px;
    height: 350px;
}

.experiences_wrp .discovery .box {
    height: 175px;
    width: 175px;
    background: #fff;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -105px auto 50px;
}

.experiences_wrp .discovery .box img {}

.experiences_wrp .discovery h3 {
    font-size: 26px;
    line-height: 36px;
    color: #000;
    margin: 0px 0px 10px;
}

.experiences_wrp .discovery p {
    font-size: 16px;
    line-height: 30px;
}

/* experiences_wrp */


/* lemon_law_wrp */

.lemon_law_wrp {
    position: relative;
    overflow: hidden;
    padding: 100px 0px 0px;
}

.lemon_law_wrp .head {
    text-align: center;
    margin: 0px auto 40px;
    width: 85%;
}

.lemon_law_wrp .details_state {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    padding: 25px 10px 25px 25px;
}

.lemon_law_wrp .details_state .table-wrapper {
    height: 800px;
    overflow-y: auto;
    overflow-x: auto;
    padding: 0px 10px 0px 0px;
}

.lemon_law_wrp .details_state .table-wrapper table {
    width: 100%;
    border-spacing: 0 0px;
    border-collapse: separate;
}

.lemon_law_wrp .details_state .table-wrapper thead tr {
    background: linear-gradient(90deg, #F9C648 0%, #D09D27 100%);
    position: sticky;
    top: 0;
}

.lemon_law_wrp .details_state .table-wrapper th,
.lemon_law_wrp .details_state .table-wrapper td {
    padding: 25px 40px;
    text-align: left;
    font-size: 22px;
    border: 0;
}

.lemon_law_wrp .details_state .table-wrapper td a {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding: 0px 0px 3px;
}

.lemon_law_wrp .details_state .table-wrapper th {
    color: #000000;
    font-size: 24px;
    font-weight: 500;
}

.lemon_law_wrp .details_state .table-wrapper tbody tr:nth-child(odd) {
    background: #ffffff;
    border: 1px solid #E8E8E8;
}

.lemon_law_wrp .details_state .table-wrapper tbody tr:nth-child(even) {
    background: #F8F8F8;
    border: 1px solid #E8E8E8;
}

.lemon_law_wrp .details_state .table-wrapper tbody tr:nth-child(even) td:first-child {
    border-left: 1px solid #E8E8E8;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    border-radius: 15px 0 0 15px;
}

.lemon_law_wrp .details_state .table-wrapper tbody tr:nth-child(even) td:nth-child(2) {
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
}

.lemon_law_wrp .details_state .table-wrapper tbody tr:nth-child(even) td:last-child {
    border-right: 1px solid #E8E8E8;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    border-radius: 0 15px 15px 0;
}

.lemon_law_wrp .details_state .table-wrapper tbody td:first-child {
    border: 0;
}

.lemon_law_wrp .details_state .table-wrapper tbody td:last-child {
    border: 0;
}

.lemon_law_wrp .details_state .table-wrapper tbody td:first-child {
    font-weight: 500;
}

/* Border radius */
.lemon_law_wrp .details_state .table-wrapper thead th:first-child {
    border-radius: 15px 0 0 15px;
}

.lemon_law_wrp .details_state .table-wrapper thead th:last-child {
    border-radius: 0 15px 15px 0;
}

/* Border radius */

/* Custom Scrollbar */
.lemon_law_wrp .details_state .table-wrapper::-webkit-scrollbar {
    width: 15px;
    height: 15px;
}

.lemon_law_wrp .details_state .table-wrapper::-webkit-scrollbar-track {
    background: #F8F8F8;
    border-radius: 10px;
}

.lemon_law_wrp .details_state .table-wrapper::-webkit-scrollbar-thumb {
    background: #DDDDDD;
    border-radius: 10px;
}

.lemon_law_wrp .details_state .table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #dddddda2;
}
/* Custom Scrollbar */

/* lemon_law_wrp */

/*********************** inner-page css Close ***********************/

/*********************** Login & Register CSS Start ***********************/
.register-sec-wrap {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 80px 0;
}

.register-sec-wrap .form-main {
    padding: 30px 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 4px 0.5px #ccc;
}

.register-sec-wrap .form-main .heads {
    margin: 0 0 50px 0;
}

.register-sec-wrap .form-main .heads h4 {
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    margin: 0 0 15px 0;
    padding: 0;
    text-align: center;
    font-size: 40px;
}

.register-sec-wrap .form-main .heads p {
    text-align: center;
    text-transform: unset;
    margin: 0;
    padding: 0;
    color: var(--para-color);
}

.register-sec-wrap .form-main .btn-box .login-btn{
   width: 100%;
}

.register-sec-wrap .form-main .btn-grp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 40px 0 40px 0;
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn {
    color: #1F1F1F;
    height: 55px;
    width: 48%;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0;
    padding: 0 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 31, 31, 0.5);
    background: #fff;
    transition: all 0.2s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 20%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    height: 25px;
    width: 25px;
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn:nth-child(1)::before {
    background-image: url(../images/google.png);
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn:nth-child(2)::before {
    background-image: url(../images/facebook.png);
    left: 18%;
}


.register-sec-wrap .form-main .input-main {
    position: relative;
}

.field-icon1 {
    z-index: 2;
    position: absolute;
    top: 55%;
    right: 20px;
    color: var(--secondary-color);
    font-size: 20px;
}


.register-sec-wrap .form-main p {
    color: #1F1F1F;
    text-align: center;
    margin: 35px 0 0 0;
}

.register-sec-wrap .form-main p .link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 500;
}

.register-sec-wrap .form-main .extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.register-sec-wrap .form-main .extra {
    margin: 30px 0;
}

.register-sec-wrap .form-main .extra .anchor {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #CB9274;
    text-decoration: underline;
}
.register-sec-wrap .form-main .social-media {}

.register-sec-wrap .form-main .social-media p {
    margin: 40px 0px 25px;
    font-weight: 500;
}

.register-sec-wrap .form-main .social-media .automatic-sign {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0px 0px 0px;
}

.register-sec-wrap .form-main .social-media .automatic-sign .box {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #E8E8E8;
    border-radius: 100px;
    background: #fff;
    padding: 10px 35px 10px 10px;
}

.register-sec-wrap .form-main .social-media .automatic-sign .box img {
    width: 50px;
    object-fit: cover;
}

.register-sec-wrap .form-main .social-media .automatic-sign .box p {
    margin: 0;
    font-size: 16px;
}

/*********************** Login & Register CSS Close ***********************/