:root {
    --white: #FFFFFF;
    --black: #000000;
    --orange: #ED8729;
    --orange-100: #FFF4E3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    margin-bottom: 0;
}

body {
    font-family: 'Georama';
    font-size: 16px;
    color: var(--black);
    line-height: 24px;
    font-weight: normal;
    background: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    position: relative;
    background-image: url(../images/icon/arrow-down.png) !important;
    background-repeat: no-repeat !important;
    background-position: 97% !important;
    background-size: 19px !important;
    display: block;
    padding-right: 40px !important;
}

.container {
    max-width: 1270px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Section Start */
.header {
    padding: 0px 15px 0px;
    background: var(--white);
}

.header.sticky {
    position: fixed;
    top: 0;
    background: var(--white);
    width: 100%;
    box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
    z-index: 999;
    transition: all .4s ease-in-out;
    -webkit-animation: slide-down .7s;
    animation: slide-down .7s;
}

.header .header-inner {
    max-width: 1285px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.main-menu-header {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-bottom: 10px;
}

.dropdown-menu.profile-menu {
    min-width: 171px;
    max-width: 171px;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    filter: drop-shadow(0 4px 12px #00000010);
    top: 125% !important;
    transform: unset !important;
    right: 0 I !important;
}

.dropdown-menu.profile-menu::before {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--white);
    position: absolute;
    transform: rotate(45deg);
    top: -6px;
    right: 10px;
    border-radius: 5px;
}

.user-name-city {
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(208, 208, 208, 0.60);
    margin-bottom: 9px;
}

.user-name-city h6 {
    margin-bottom: 0;
    line-height: 22px;
    color: #222;
    font-size: 14px;
}

.user-name-city p {
    margin-bottom: 0;
    color: #848484;
    font-size: 10px;
    line-height: 22px;
}

.pro-menu-link {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pro-menu-link li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5A5A5A;
    font-size: 14px;
    line-height: 22px;
}

.pro-menu-link li a img {
    display: flex;
}

.profile-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-right: 30px;
}

.profile-header button {
    background: transparent;
    border: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border-radius: 50%;
    color: #8C8C8C;
    font-size: 26px;
    font-family: Karla;
    line-height: 22px;
    letter-spacing: -0.408px;
}

.profile-header button:after {
    content: url(../images/icon/arrow-down.png);
    display: block;
    border: none;
    position: absolute;
    right: 0px;
}


.burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1.6rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 1rem;
    background: var(--black);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}

.navbar {
    padding: 0;
}

.navbar .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding-left: 0;
    margin-bottom: 0;
    order: 1;
}

.navbar .menu .menu-item {
    position: relative;
    display: inline-block;
}

.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    cursor: pointer;
    text-transform: capitalize;
    color: var(--black);
    transition: all 0.3s ease-in-out;
    position: relative;
}

.menu-link i {
    position: relative;
    z-index: -1;
}

.menu-link::before {
    display: block;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    border-bottom: 3px solid #000;
    content: "";
    transition: transform .6s cubic-bezier(.28, .75, .22, .95);
    transform: scaleX(0);
    transform-origin: right center;
    border-color: #000000;
}

.menu-link:hover {
    color: var(--black);
}

.menu-item:hover .menu-link::before {
    transform: scale(1);
    transform-origin: left center;
}

.submenu {
    position: absolute;
    top: 37.6px;
    /* left: -50px; */
    min-width: 150px;
    height: auto;
    padding: 0 16px 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    border-radius: 0 0 4px 4px;
    border-top: 2px solid var(--black);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
    z-index: 2;
}

.navbar .menu .menu-item .submenu-item {
    display: block;
    margin-top: 12px;
}

.navbar .menu .menu-item .submenu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    color: var(--color-black-500);
    transition: all 0.35s ease;
}

.menu-dropdown:hover>.submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.unit-select {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    order: 2;
    margin-left: 70px;
}


.unit-select select.select-item {
    background: transparent;
    border: 0;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    padding-right: 30px !important;
}

.unit-select .unit-icon {
    display: flex;
}

.unit-select .select-item:focus {
    outline: unset;
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    to {
        opacity: .9;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    to {
        opacity: .9;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

/* Header Section End */

/* Home Section Start */

.home-banner {
    background: url(../../images/banners/banner5.png) no-repeat;
    background-position: center center;
    background-size: cover;
    height: 750px;
    padding-top: 64px;
    padding-bottom: 137px;
}

.home-banner-mce{
    background: url(../../images/banners/MCE-guarantee-banner.webp) no-repeat; 
    background-position: center center;
    background-size: cover;
    height: 524px;
    padding-top: 64px;
    padding-bottom: 137px;
}
.home-banner-mtb {
    background: url(../../images/banners/banner5.png) no-repeat;
     background-position: center center;
    background-size: 100% 100%;
    height: 750px;
    padding-top: 64px;
    padding-bottom: 137px 
}

.home-banner .banner-content {
    padding-left: 60px;
}

.home-banner .banner-content p {
    color: rgba(0, 0, 0, 0.70);
    font-size: 23px;
    font-weight: 500;
    line-height: 62px;
    letter-spacing: -0.408px;
    margin-bottom: 10px;
}

.home-banner .banner-content h1 {
    font-size: 84px;
    font-weight: 700;
    line-height: 62px;
    color: var(--black);
    letter-spacing: -0.408px;
    margin-bottom: 0;
}

/* Home Section End */

/* Fing The Right Section Start */

.find-select-form {
    display: flex;
    gap: 36px;
}

.find-the-right {
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
    padding: 20px 42px 34px 46px;
    /* max-width: 1063px; */
    margin: -137px auto 0;
}

.find-the-right h6 {
    font-size: 28px;
    line-height: 62px;
    margin-bottom: 40px;
}

.find-select-form .select-form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.find-select-form .select-form .find-select {
    max-width: 264px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 9px 0;
    padding-left: 15px;
    border-left: 1px solid rgba(0, 0, 0, 0.07);
}

.find-select-form .select-form .find-select:first-child {
    max-width: 186px;
    padding-left: 0;
    border: 0;
}

.find-select-form .select-form .find-select label {
    color: #1C1C1C;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
}

.find-select-form .select-form .find-select select {
    color: #565656;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    border: 0;
}

.find-select-form .select-form .find-select select:focus {
    outline: none;
}

.find-select-form .fing-button {
    min-width: 75px;
    height: 75px;
    background: #1C1C1C;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    transition: all 0.3s ease-in-out;
}

.find-select-form .fing-button:hover {
    opacity: 0.8;
}

.find-select-form .fing-button img {
    display: flex;
}

/* Fing The Right Section End */

/* Tractors Brand Section Start */
.tractors-brand {
    margin-top: 72px;
    margin-bottom: 104px;
    position: relative;
    overflow: hidden;
}

.tractors-brand h5 {
    font-size: 28px;
    text-align: center;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 49px;
    margin-top: 16px;
}

.tractors-brand-slider {
    position: relative;
    padding-top: 17px;
    padding-bottom: 8px;
}

.tractors-brand::after {
    content: '';
    width: 365px;
    height: 143px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 2.17%, rgba(255, 255, 255, 0.00) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.tractors-brand::before {
    content: '';
    width: 365px;
    height: 143px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 2.17%, rgba(255, 255, 255, 0.00) 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
    transform: rotate(180deg);
}

.tractors-brand-slider .item {
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tractors-brand-slider .item img {
    object-fit: contain;
    width: 100%;
    max-height: 100%;
}

.tractors-brand-slider .owl-nav {
    margin-top: 0;
    position: absolute;
    top: -80px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tractors-brand-slider .owl-nav button.owl-prev,
.tractors-brand-slider .owl-nav button.owl-next {
    margin: 0;
    width: 50px;
    height: 50px;
    background: #1C1C1C;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.tractors-brand-slider .owl-nav button.owl-prev.disabled,
.tractors-brand-slider .owl-nav button.owl-next.disabled,
.tractors-brand-slider .owl-nav button.owl-prev.disabled:hover,
.tractors-brand-slider .owl-nav button.owl-next.disabled:hover {
    background: rgba(237, 135, 41, 0.20);
    opacity: 1;
}



.tractors-brand-slider .owl-nav button.owl-prev:hover,
.tractors-brand-slider .owl-nav button.owl-next:hover {
    opacity: 0.8;
    background: #1C1C1C;
}

.tractors-brand-slider .owl-nav button.owl-prev span,
.tractors-brand-slider .owl-nav button.owl-next span {
    display: none;
}

.tractors-brand-slider .owl-nav button.owl-prev::before {
    content: url(../images/icon/arrow-left.png);
    display: flex;
    width: 24px;
    height: 24px;
}

.tractors-brand-slider .owl-nav button.owl-next::before {
    content: url(../images/icon/arrow-right.png);
    display: flex;
    width: 24px;
    height: 24px;
}

/* Tractors Brand Section End */

/* Tractors State Section State */

.tractors-state {
    margin-bottom: 60px;
    overflow: hidden;
}

/* .tractors-state .tractors-state-slider .owl-stage-outer {
    overflow: inherit;
} */

.tractors-state h4,
.our-customers h3 {
    font-size: 28px;
    line-height: 22px;
    margin-bottom: 46px;
    margin-top: 16px;
}

.tractors-state h5 {
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 16px;
    margin-top: 16px;
}

.tractors-state-slider .state-images {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tractors-state-slider .owl-item:nth-child(even) .state-row-one {
    flex-direction: column-reverse;
}

.tractors-state-slider .state-images .state-row-one {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tractors-state-slider .state-images .row-image-two {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tractors-state-slider .state-images .image-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.tractors-state-slider .state-images .image-box img {
    border-radius: 10px;
}

.tractors-state-slider .state-images .image-box p {
    position: absolute;
    bottom: 22px;
    left: 19px;
    color: var(--white);
    font-size: 28px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 0;
    margin-right: 15px;
}

.tractors-state-slider .owl-nav,
.our-customers-slider .owl-nav {
    margin-top: 0;
    position: absolute;
    top: -80px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tractors-state-slider .owl-nav button.owl-prev,
.tractors-state-slider .owl-nav button.owl-next,
.our-customers-slider .owl-nav button.owl-prev,
.our-customers-slider .owl-nav button.owl-next {
    margin: 0;
    width: 50px;
    height: 50px;
    background: #1C1C1C;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.tractors-state-slider .owl-nav button.owl-prev.disabled,
.tractors-state-slider .owl-nav button.owl-next.disabled,
.tractors-state-slider .owl-nav button.owl-prev.disabled:hover,
.tractors-state-slider .owl-nav button.owl-next.disabled:hover,
.our-customers-slider .owl-nav button.owl-prev.disabled,
.our-customers-slider .owl-nav button.owl-next.disabled,
.our-customers-slider .owl-nav button.owl-prev.disabled:hover,
.our-customers-slider .owl-nav button.owl-next.disabled:hover {
    background: rgba(237, 135, 41, 0.20);
    opacity: 1;
}



.tractors-state-slider .owl-nav button.owl-prev:hover,
.tractors-state-slider .owl-nav button.owl-next:hover,
.our-customers-slider .owl-nav button.owl-prev:hover,
.our-customers-slider .owl-nav button.owl-next:hover {
    opacity: 0.8;
    background: #1C1C1C;
}

.tractors-state-slider .owl-nav button.owl-prev span,
.tractors-state-slider .owl-nav button.owl-next span,
.our-customers-slider .owl-nav button.owl-prev span,
.our-customers-slider .owl-nav button.owl-next span {
    display: none;
}

.tractors-state-slider .owl-nav button.owl-prev::before,
.our-customers-slider .owl-nav button.owl-prev::before {
    content: url(../images/icon/arrow-left.png);
    display: flex;
    width: 24px;
    height: 24px;
}

.tractors-state-slider .owl-nav button.owl-next::before,
.our-customers-slider .owl-nav button.owl-next::before {
    content: url(../images/icon/arrow-right.png);
    display: flex;
    width: 24px;
    height: 24px;
}

.show-more-one {
    cursor: pointer;
}

/* Tractors State Section End */
.hide-part {
    display: none;
}
.district-hide-part {
    display: none;
}
.brand-hide-part {
    display: none;
}
.show-part {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Our Customers Section Start */

.our-customers {
    margin-bottom: 67px;
    padding-bottom: 5px;
    overflow: hidden;
}

.our-customers .customers-info {
    border: 0.6px solid #9F9F9F42;
    padding: 30px;
    background: linear-gradient(100deg, rgba(210, 255, 209, 1), rgba(255, 255, 255, 1));
    border-radius: 15px;
}

.multi-section {
    background: linear-gradient(180deg, #FFF3ED 0%, rgba(255, 245, 237, 0.51) 100%);
    padding: 71px 25px 160px;
}

/* Our Customers Section End */

/* News Updates Section Start */

.news-updates {
    background: url(../images/home/OBJECTS.png) no-repeat;
    background-size: contain;
    background-position: center center;
}

.news-updates .container {
    display: flex;
    padding-top: 70px;
    gap: 106px;
}

.news-updates .news-one {
    display: flex;
    flex-direction: column;
    gap: 72px;
    max-width: 424px;
    width: 100%;
}

.news-updates .news-one .news-updates-title {
    max-width: 353px;
    width: 100%;
}

.news-updates .news-one .news-updates-title h5 {
    font-size: 28px;
    line-height: 22px;
    margin-bottom: 14px;
}

.news-updates .news-one .news-updates-title p {
    font-size: 16px;
    line-height: 24px;
    color: #8991A3;
}

.news-updates .news-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 138px;
    row-gap: 83px;
}

.news-updates .update-box {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.news-updates .news-one .update-box .images-box {
    width: 100%;
    max-height: 300px;
    height: 100%;
}

.news-updates .update-box .images-box {
    width: 100%;
    max-height: 192px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.news-updates .update-box .images-box img {
    width: 100%;
    object-fit: cover;
    max-height: 100%;
}

.news-updates .update-box .info-content h6 {
    font-size: 22px;
    line-height: 24px;
    color: #0B2238;
    font-weight: 400;
    margin-bottom: 3px;
}

.news-updates .update-box .info-content p {
    color: #8991A3;
    line-height: 19px;
    margin-bottom: 13px;
}

.news-updates .update-box .info-content a {
    color: var(--orange);
    font-size: 16px;
    line-height: 19px;
    font-size: 500;
    transition: all 0.3s ease-in-out;
}

.news-updates .update-box .info-content a:hover {
    opacity: 0.8;
}

.lorem-text-section {
    max-width: 1041px;
    margin: 122px auto 107px;
    padding: 0 15px;
}

.lorem-text-section h6 {
    font-size: 52px;
    line-height: 80px;
    color: #838383;
    font-style: italic;
    margin-bottom: 19px;
    text-align: center;
}

.lorem-text-section p {
    color: #838383;
    text-align: center;
    font-size: 30px;
    font-style: italic;
    line-height: 56px;
    max-width: 617px;
    margin: 0 auto;
    width: 100%;
}

/* News Updates Section End */

/* Footer Section Start */

.footer {
    background: linear-gradient(#3D3D3D, #141414);
    /* padding: 41px 85px 51px; */
    padding: 50px;
    border-radius: 12px;
    max-width: 1240px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    z-index: 2;
}

.footer-bg {
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    z-index: -1;
}

.footer-bg img {
    height: 100%;
}

.footer-logo {
    border-radius: 12px;
    overflow: hidden;
    /* margin-bottom: 16px; */
    display: inline-block;
}

.footer-info {
    display: flex;
    gap: 140px;
    color: var(--white);
    font-family: 'Poppins';
    z-index: 1;
}

.footer-info .contact-info {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.footer-info .contact-info p {
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 0;
    white-space: nowrap;
}

.footer-info .contact-info .detail-contact p {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 1px;
}

.footer-info .contact-info .detail-contact a {
    font-size: 15px;
    line-height: 23px;
    color: var(--white);
}

.footer-info .contact-info .detail-contact a:hover {
    color: var(--orange);
}

.copy-right {
    /* padding-top: 53px;
    border-top: 1px solid #ABABAB10;
    margin-top: 56px; */
    text-align: center;
    z-index: 1;
}

.copy-right p {
    margin-bottom: 0;
    color: var(--orange);
    font-size: 14px;
    line-height: 21px;
    vertical-align: middle;
    align-self: center;
    padding-top: 20px;

}

.footer-info .contact-info .detail-contact a:hover span {
    color: var(--white);
}

.footer-info .info-link {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-info .info-link a {
    font-size: 17px;
    line-height: 26px;
    color: var(--white);
}

.footer-info .info-link a:hover {
    color: var(--orange);
}

/* Footer Section End */

/* Tractors Price Section Start */

.used-tractors-price {
    margin-bottom: 60px;
    overflow: hidden;
}

.used-tractors-price h2 {
    font-size: 28px;
    line-height: 22px;
    margin-bottom: 30px;
}

.tractors-price-tab .price-tab-list {
    background: #F6F6F6;
    border-radius: 8px;
    padding: 10px;
    width: fit-content;
    display: flex;
    gap: 46px;
}

.tractors-price-tab .price-tab-list .nav-link {
    padding: 12px 20px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #464646;
    transition: all 0.5s ease-in-out;
}

.tractors-price-tab .price-tab-list .nav-link.active,
.tractors-price-tab .price-tab-list .nav-link:hover {
    background: #1C1C1C;
    color: var(--white);
}

.tractors-price-tab .tab-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 32px;
}

.tractors-price-tab .tab-button .view-button a {
    padding: 12px 20px;
    background: rgba(227, 227, 227, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 500;
    gap: 10px;
}

/* Tractors Price Section End */

/* Recently Updated Section End */

.recently-updated {
    margin-bottom: 57px;
}

.recently-updated .title-brand-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 57px;
}

.recently-updated .title-brand-box h6 {
    font-size: 28px;
    line-height: 22px;
    margin-bottom: 0;
}

.recently-updated .title-brand-box .brand-select {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    max-width: 400px;
    width: 100%;
}

.recently-updated .title-brand-box .brand-select label {
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
    color: #444444;
    white-space: nowrap;
}

.recently-updated .title-brand-box .brand-select select {
    border: 0.5px solid #9A9A9A;
    padding: 11px 24px;
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
    border-radius: 5px;
    background: rgba(25, 30, 35, 0.02);
    width: 100%;
}

.recently-updated .title-brand-box .brand-select select:focus {
    outline: none;
}

.recently-updated .category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    margin-bottom: 68px;
}

.recently-updated .view-all-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.recently-updated .view-all-button .view-all-button {
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(227, 227, 227, 0.25);
    display: flex;
    min-width: 189px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: var(--black);
}

.recently-updated .view-all-button .view-all-button img {
    transform: rotate(90deg);
}

/* Recently Updated Section End */

.favourite-tractors {
    margin-top: 23px;
}

.favourite-tractors h1 {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 22px;
}

.favourite-tractors .category-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 50px;
}

.favourite-pages,
.edit-profile-pages {
    padding-bottom: 30px;
}

.profile-edit {
    margin-bottom: 50px;
}

.profile-edit .nameGroup .firstWord {
    width: 71px;
    height: 71px;
    border-radius: 71px;
    background: rgba(233, 32, 38, 0.11);
    text-align: center;
}

.profile-edit .nameGroup .firstWord p {
    color: #F58B8B;
    font-size: 59px;
    line-height: 60px;
}

.profile-edit .nameGroup .name {
    margin: 0;
    color: #222;
    font-size: 19px;
    font-weight: 700;
    line-height: 22px;
}

.profile-edit .usereDtail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.profile-edit .input-field input,
.profile-edit .input-field select {
    border-radius: 6px;
    background: #FFF;
    box-shadow: 0px 3px 8px -1px rgba(50, 50, 71, 0.05), 0px 0px 1px 0px rgba(12, 26, 75, 0.24);
    padding: 10px 24px;
    font-size: 14px;
    line-height: 22px;
    border: 0;
    margin-bottom: 0;
    width: 100%;
}

.profile-edit .input-field input:focus {
    outline: none;
}

.profile-edit .input-field label {
    color: #4D4D4F;
    font-size: 14px;
    line-height: 22px;
}

.profile-edit .buttons {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 40px;
}

.profile-edit .buttons .edit {
    width: 104.956px;
    height: 42px;
    border-radius: 4px;
    background: #F1F1F1;
    border: none;
    color: var(--black);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    transition: all 0.3s ease-in-out;
}

.profile-edit .buttons .edit:hover {
    background: var(--black);
    border: none;
    color: #fff;
}

.profile-edit .buttons .save {
    width: 104.956px;
    height: 42px;
    border-radius: 4px;
    background: var(--black);
    border: none;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    transition: all 0.3s ease-in-out;
}

.profile-edit .buttons .save:hover {
    background: #F1F1F1;
    color: var(--black);
}

.profile-edit .nameGroup {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
    margin-bottom: 25px;
}

/* Model Section */

.welcomemodel .modal-dialog,
.registermodel .modal-dialog,
.OtpVerficationModal .modal-dialog {
    max-width: 637px;
    width: 100%;
}

.productmodal .modal-dialog {
    max-width: 500px;
    width: 100%;
}

.areYouSureModal .modal-dialog {
    max-width: 559px;
    width: 100%;
}

.welcomemodel .modal-dialog .modal-content,
.registermodel .modal-dialog .modal-content,
.OtpVerficationModal .modal-dialog .modal-content,
.areYouSureModal .modal-dialog .modal-content,
.productmodal .modal-dialog .modal-content {
    border-radius: 12px;
}

.welcomemodel .modal-header,
.registermodel .modal-header,
.OtpVerficationModal .modal-header,
.areYouSureModal .modal-header,
.productmodal .modal-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-top: 22px;
    padding-right: 24px;
    padding-bottom: 29px;
    border: 0;
}

.productmodal .modal-header {
    padding-bottom: 5px;
}

.areYouSureModal .modal-header {
    padding-top: 18px;
    padding-bottom: 25px;
}

.registermodel .modal-header {
    padding-top: 18px;
    padding-bottom: 15px;
}

.OtpVerficationModal .modal-header {
    padding-top: 15px;
    padding-bottom: 15px;
}

.welcomemodel .modal-header .close-icon,
.registermodel .modal-header .close-icon,
.OtpVerficationModal .modal-header .close-icon,
.areYouSureModal .modal-header .close-icon,
.productmodal .modal-header .close-icon {
    background: transparent;
    border: 0;
    padding: 0;
}

.welcomemodel .modal-body,
.registermodel .modal-body,
.OtpVerficationModal .modal-body,
.areYouSureModal .modal-body {
    padding: 0 15px;
    max-width: 396px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 90px;
}

.areYouSureModal .modal-body {
    padding-bottom: 50px;
}

.OtpVerficationModal .modal-body {
    padding-bottom: 55px;
}

.registermodel .modal-body {
    padding-bottom: 68px;
}

.welcomemodel .logo-image,
.registermodel .logo-image,
.OtpVerficationModal .logo-image {
    margin-bottom: 32px;
}

.welcomemodel h2,
.registermodel h2,
.OtpVerficationModal h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 45px;
}

.OtpVerficationModal h2 {
    margin-bottom: 20px;
}

.areYouSureModal h2 {
    color: #000;
    text-align: center;
    font-size: 23px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    margin: 0;
}

.welcomemodel .phonenumberbox {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.input-field label {
    color: #4D4D4F;
    font-size: 14px;
    line-height: 22px;
}

.input-field input,
.input-field select {
    border-radius: 6px;
    background: #FFF;
    box-shadow: 0px 3px 8px -1px rgba(50, 50, 71, 0.50), 0px 0px 1px 0px rgba(12, 26, 75, 0.80);
    padding: 10px 24px;
    font-size: 14px;
    line-height: 22px;
    border: 0;
    margin-bottom: 12px;
}

.input-field .state {
    margin-top: 34px;
}

.input-field select option {
    color: #8A8A8A;
    font-size: 14px;
    line-height: 22px;
}

.input-field input:focus,
.input-field select:focus,
.otpGroup input:focus {
    outline: none;
}

.phonenumberbox .proceed-button,
.proceed-button {
    border-radius: 4px;
    background: #000;
    padding: 10px;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    border: 0;
    transition: all 0.3s ease-in-out;
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.proc .phonenumberbox .proceed-button:hover {
    opacity: 0.8;
}

.already_login {
    display: flex;
    align-items: center;
    margin-top: 17px;
}

.already_login p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #040415;
    margin: 0;
    opacity: 0.4;
}

.already_login .login-link {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    padding-left: 25px;
    margin: 0;
    cursor: pointer;
}

.already_login .login-link:hover {
    color: var(--orange);
}

.otpGroup {
    display: flex;
    flex-flow: column;
    align-items: space-around;
    justify-content: center;
}

.otpGroup p {
    color: #000;
    font-size: 14px;
}

.otpGroup input {
    height: 65px;
    width: 55px;
    border-radius: 10px;
    background: #FFF;
    /* box-shadow: 0px 3px 8px -1px rgba(50, 50, 71, 0.05), 0px 0px 1px 0px rgba(12, 26, 75, 0.24); */
    box-shadow: 0px 3px 8px -1px rgba(50, 50, 71, 0.50), 0px 0px 1px 0px rgba(12, 26, 75, 0.80);
    border-radius: 5px;
    text-align: center;
    color: #8A8A8A;
    font-size: 26px;
    font-weight: 600;
    line-height: 22px;
    border: none;
    margin: 0;
}

.otpGroup .userInput {
    display: flex;
    /*justify-content: center;*/
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.OtpVerficationModal .timer {
    color: #000;
    font-size: 14px;
    text-align: end;
    margin-bottom: 17px;
}

.areYouSureModal .title {
    margin-bottom: 25px;
}

.areYouSureModal .btngroup {
    display: flex;
    gap: 20px;
    margin-top: 70px;
}

.areYouSureModal .btngroup .phoneNoBtn {
    border-radius: 4px;
    background: #F1F1F1;
    padding: 10px;
    color: #000;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    border: 0;
    transition: all 0.3s ease-in-out;
    width: 100%;
    margin-top: 10px;
}

/* Jay */

.button-primary {
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid #FDE8CF;
    background: #FFF4E3;
    color: var(--orange);
    width: fit-content;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.button-primary:hover {
    text-decoration: none;
    background-color: var(--orange);
    color: var(--white);
}

/* category page css start */

/* banner css start */

.category-page {
    padding-bottom: 60px;
}

.category-page-main-banner {
    background-image: url(../images/category/used-tractor-page-banner.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 35px;
    padding: 105px 0;
}

.category-page-main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(56deg, rgba(0, 0, 0, 0.81) 2.17%, rgba(0, 0, 0, 0.00) 100%);
}

.banner-content {
    color: var(--white);
    position: relative;
    z-index: 9;
    padding-left: 60px;
}

.banner-content p {
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 30px;
    font-weight: 500;
}

.banner-content h1 {
    font-size: 84px;
    line-height: 62px;
    font-weight: 700;
}

/* banner css end */

/* category-list css start */

.category-list-sub {
    display: flex;
    gap: 37px;
    margin-bottom: 50px;
}

.category-list-main .category-left {
    max-width: 283px;
    width: 100%;
}

.category-list-main .category-left .filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.category-list-main .category-left .filter p {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

.category-list-main .category-left .filter .button-primary {
    font-size: 14px;
    line-height: 22px;
}

.category-list-main .category-left .apply-filters .apply-filter-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.category-list-main .category-left .apply-filters p {
    padding: 7px 11px 7px 12px;
    background-color: #EEEEEE;
    border: 1px solid #E4E4E4;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: #5B5B5B;
}

/*.category-list-main .category-left .apply-filters p::before {*/
/*    content: '';*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    background-image: url(../images/category/cross-icon.png);*/
/*    background-size: 11.5px;*/
/*    background-repeat: no-repeat;*/
/*    background-position: center center;*/
/*    cursor: pointer;*/
/*}*/

.category-list-main .category-left .apply-filters .button-primary {
    font-size: 14px;
    line-height: 22px;
}

.category-list-main .category-left .filter-list-main {
    margin-top: 10px;
}

.category-list-main .category-left .filter-list-main h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-list-main .category-left .filter-list-main .filter-box {
    padding-top: 22px;
    border-bottom: 1px solid #B3B3B3;
}

.category-list-main .category-left .filter-list-main .filter-box:nth-child(1) {
    padding-top: 0;
}

.category-list-main .category-left .filter-list-main .filter-box:last-child {
    border-bottom: 0;
}

.category-list-main .category-left .filter-list-main .filter-box .filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

.category-list-main .category-left .filter-list-main .filter-box .filter-title p {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #565656;
}

.category-list-main .category-left .filter-list-main .filter-box .filter-title span {
    transform: rotate(-90deg);
    transition: all 0.3s ease-in-out;
}

.category-list-main .category-left .filter-list-main .filter-box.active .filter-options {
    max-height: 2000px;
    padding-bottom: 32px;
}

.category-list-main .category-left .filter-list-main .filter-box.active .filter-title span {
    transform: rotate(0deg);
}

.category-list-main .category-left .filter-list-main .filter-box .filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 300ms ease-in-out;
}

.category-list-main .category-left .filter-list-main .filter-box .filter-options .option {
    display: flex;
    align-items: top;
    gap: 14px;
}

.category-list-main .category-left .filter-list-main .filter-box .filter-options .option input {
    width: 16px;
    height: 16px;
    border: 1px solid #9094A1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 2px;
    position: relative;
    margin-top: 3px;
    cursor: pointer;
}

.category-list-main .category-left .filter-list-main .filter-box .filter-options .option input:checked::before {
    content: '';
    position: absolute;
    left: 3.5px;
    top: 4px;
    width: 8.16px;
    height: 6.5px;
    background-image: url(../images/category/check-icon.png);
    background-repeat: no;
    background-position: center center;
}

.category-list-main .category-left .filter-list-main .filter-box .filter-options .option label {
    font-size: 14px;
    line-height: 22px;
    color: #565656;
    font-weight: 500;
}

.category-list-main .category-right {
    width: calc(100% - 310px);
}

.category-list-main .category-right .category-list-top {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 43px;
}

.category-list-main .category-right .category-list-top .filter-icon {
    min-width: 45px;
    height: 45px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    background-color: #000;
    cursor: pointer;
}

.category-list-main .category-right .category-list-top .filter-icon img {
    max-height: 100%;
}

.category-list-main .category-right .search-bar {
    position: relative;
    width: 100%;
}

.category-list-main .category-right .search-bar input {
    width: 100%;
    padding: 30px 90px 30px 50px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
    border: 0;
}

.category-list-main .category-right .search-bar input:focus {
    outline: none;
}

.search-bar .fing-button {
    min-width: 58px;
    height: 58px;
    background: #1C1C1C;
    border-radius: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
}

.search-bar .fing-button img {
    max-height: 100%;
}

.category-list-main .category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.product-box {
    position: relative;
    overflow: hidden;
}

.product-box .product-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid #cacaca77;
    /* z-index: -1 !important; */
}

.product-box .product-image .company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 10px 12px;
    border-radius: 5px;
    position: absolute;
    left: 23px;
    bottom: 20px;

}

.product-box .product-image .productimage {
    object-fit: contain;
    height: 287px;
    width: 100%;
    background-color: #F6F6F6;
}

.product-box .product-image .social-links {
    position: absolute;
    top: 14px;
    right: -150px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease-in-out;
}

.product-box:hover .product-image .social-links {
    right: 18px;
}

.product-box .social-links .share-icon,
.product-box .social-links .wishlist-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: var(--white);
    cursor: pointer;
}

.product-box .social-links .share-icon img,
.product-box .social-links .wishlist-icon img {
    width: auto;
}

.product-box .product-detail {
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-box .product-detail h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 0;
}

.product-box .product-detail .location {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 48px;
}

.product-box .product-detail .location img {
    width: auto;
}

.product-box .product-detail .location p {
    color: #525252;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.product-box .product-detail .price-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.product-box .product-detail .price-time p {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

.product-box .product-detail .price-time span {
    font-size: 12px;
    font-style: italic;
    color: #484848;
    font-weight: 500;
    line-height: 18px;
    margin-right: 3px;
}

.product-box .product-detail .about-product {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.product-box .product-detail .about-product .info-box {
    background-color: #F3F3F3;
    border-radius: 15px;
    border: 1px solid #F4F4F4;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-box .product-detail .about-product .info-box .icon-box {
    width: 26px;
    height: 22px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel .owl-item .info-box .icon-box img {
    width: auto;
}

.product-box .product-detail .about-product .info-box p {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: var(--orange);
    margin-bottom: 0;
    text-transform: uppercase;
}

.product-box .product-detail .about-product .info-box span {
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
}

.product-box .product-detail .button-primary {
    margin-top: 10px;
}

.category-list-main .category-left .category-filter .close-icon {
    display: none;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

/* category-list css end */

/* category page css end */

.product-page {
    padding-bottom: 60px;
}

.product-page-main {
    background: #FAFAFA;
    padding: 42px 0;
}

.product-main {
    display: grid;
    grid-template-columns: calc(60% - 63px) calc(40% - 62px);
    gap: 125px;
}

.product-main .product-left .contact-manager {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: #F9FFF9;
    border: 2px solid #B4D9B3;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 32px;
    width: 100%;
}

.product-main .product-left .contact-manager .right-arrow {
    margin-left: auto;
}

.product-main .product-left .contact-manager p {
    font-size: 20px;
    line-height: 24px;
    color: #39A04A;
}

.product-main .product-left .product-detail-main h3 {
    margin-bottom: 13px;
    font-size: 18px;
    line-height: 22px;
    color: #242424;
}

.product-main .product-left .product-detail-main .detail {
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 0.2px solid #A3A3A3;
    ;
}

.product-main .product-left .product-detail-main .detail p {
    font-size: 18px;
    line-height: 22px;
    color: #404040;
}

.product-main .product-left .product-detail-main .detail span {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #2D2D2D;
}

.product-main .product-box .product-detail {
    padding: 0;
    gap: 21px;
}

.product-main .product-box .product-detail h1 {
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 0;
}

.product-main .product-box .product-detail .price-time p {
    font-size: 32px;
    line-height: 40px;
}

.product-main .product-box .product-detail .price-time span {
    font-size: 18px;
    line-height: 26px;
}

.product-main .product-box .product-detail .about-product .info-box {
    background-color: #F8F8F8;
    border-color: #F0F0F0;
}

.product-main .product-box .product-detail .about-product {
    margin-top: 0;
    margin-bottom: 10px;
}

.product-main .product-box .product-detail .product-description h2 {
    color: #242424;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
}

.product-main .product-box .product-detail .product-description {
    margin-bottom: 14px;
}

.product-main .product-box .product-detail .product-description p {
    margin-bottom: 25px;
    color: #4A4A4A;
}

.product-main .product-box .product-detail .product-description p:last-child {
    margin-bottom: 0;
}

.product-main .product-box .product-detail .product-feature {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 8px;
    row-gap: 23px;
}

.product-main .product-box .product-detail .product-feature .feature {
    padding-top: 33px;
    position: relative;
}

.product-main .product-box .product-detail .product-feature .feature .feature-image {
    width: 64px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    mix-blend-mode: multiply;
}

.product-main .product-box .product-detail .product-feature .feature .feature-detail {
    background-color: var(--white);
    border-radius: 5px;
    padding: 0 12px 8px;
    text-align: center;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.07);
}

.product-main .product-box .product-detail .product-feature .feature .feature-detail span {
    min-width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: #F9F9F9;
    display: inline-block;
    margin-bottom: 11px;
    margin-top: -20px;
}

.product-main .product-box .product-detail .product-feature .feature .feature-detail h3 {
    font-size: 14px;
    line-height: 22px;
    color: #242424;
    font-weight: 500;
}

.product-main .product-box .product-detail .product-feature .feature .feature-detail p {
    font-size: 11px;
    line-height: 22px;
    font-weight: 500;
    color: #5F5F5F;
}

.product-slider-main {
    display: flex;
    gap: 20px;
    max-height:  500px;/*624px;*/
    margin-bottom: 30px;
    position: relative;
}

.product-slider-main .thumb-slider .swiper-slide {
    min-width: 85px;
    max-width: 85px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    mix-blend-mode: multiply;
}

.product-slider-main .thumb-slider .slider-btn {
    display: none;
}

.product-slider-main .thumb-slider .swiper-slide.swiper-slide-thumb-active {
    background-color: #D9D9D9;
}

.product-slider-main .thumb-slider {
    display: flex;
    flex-direction: column;
    gap: 13px;
    position: unset;
    height: auto; /*500px;*/
    margin-top: 64px;
    margin-bottom: 64px;
}

.product-slider-main .thumb-slider .swiper-button-prev::after,
.product-slider-main .thumb-slider .swiper-button-next::after {
    display: none;
}

.product-slider-main .thumb-slider .swiper-button-prev {
    position: absolute;
    top: 0;
    min-width: 50px;
    min-height: 50px;
    border-radius: 100%;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    left: 18px;
}

.product-slider-main .thumb-slider .swiper-button-next {
    position: absolute;
    bottom: 0;
    top: unset;
    min-width: 50px;
    min-height: 50px;
    border-radius: 100%;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    left: 18px;
}


.product-slider-main .thumb-slider {
    min-width: 83px;
    max-width: 83px;
}

.product-slider-main .product-slider {
    width: calc(100% - 105px);
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
}

.product-slider-main .product-slider .swiper-wrapper .social-links {
    position: absolute;
    bottom: 14px;
    right: -150px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease-in-out;
}

.product-slider-main .product-slider .swiper-wrapper .swiper-slide:hover .social-links {
    right: 18px;
}

.product-slider-main .product-slider .swiper-wrapper .social-links .share-icon,
.product-slider-main .product-slider .swiper-wrapper .social-links .wishlist-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #FAFAFA;
    cursor: pointer;
}

.product-slider-main .product-slider .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: multiply;
}

.product-slider-main .thumb-slider .swiper-slide img {
    max-height: 100%;
}

.product-slider-main .thumb-slider .swiper-slide img,
.product-slider-main .product-slider .swiper-wrapper .swiper-slide img {
    max-height: 100%;
    cursor: pointer;
}

.recently-updated-tractors {
    margin-bottom: 57px;
    margin-top: 20px;
    overflow: hidden;
}

.recently-updated-tractors .title-brand-box {
    display: flex;
    align-items: center;
    gap: 104px;
    margin-bottom: 57px;
}

.recently-updated-tractors .title-brand-box h6 {
    font-size: 28px;
    line-height: 22px;
    margin-bottom: 0;
}

.recently-updated-tractors .title-brand-box .brand-select {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    max-width: 350px;
    width: 100%;
}

.recently-updated-tractors .title-brand-box .brand-select label {
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
    color: #444444;
    white-space: nowrap;
}

.recently-updated-tractors .title-brand-box .brand-select select {
    border: 0.5px solid #9A9A9A;
    padding: 11px 24px;
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
    border-radius: 5px;
    background: rgba(25, 30, 35, 0.02);
    width: 100%;
}

.recently-updated-tractors .title-brand-box .brand-select select:focus {
    outline: none;
}


.recently-used-tractors-slider .owl-nav {
    margin-top: 0;
    position: absolute;
    top: -103px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.recently-used-tractors-slider .owl-nav button.owl-prev,
.recently-used-tractors-slider .owl-nav button.owl-next {
    margin: 0;
    width: 50px;
    height: 50px;
    background: #1C1C1C;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.recently-used-tractors-slider .owl-nav button.owl-prev.disabled,
.recently-used-tractors-slider .owl-nav button.owl-next.disabled,
.recently-used-tractors-slider .owl-nav button.owl-prev.disabled:hover,
.recently-used-tractors-slider .owl-nav button.owl-next.disabled:hover {
    background: rgba(237, 135, 41, 0.20);
    opacity: 1;
}



.recently-used-tractors-slider .owl-nav button.owl-prev:hover,
.recently-used-tractors-slider .owl-nav button.owl-next:hover {
    opacity: 0.8;
    background: #1C1C1C;
}

.recently-used-tractors-slider .owl-nav button.owl-prev span,
.recently-used-tractors-slider .owl-nav button.owl-next span {
    display: none;
}

.recently-used-tractors-slider .owl-nav button.owl-prev::before {
    content: url(../images/icon/arrow-left.png);
    display: flex;
    width: 24px;
    height: 24px;
}

.recently-used-tractors-slider .owl-nav button.owl-next::before {
    content: url(../images/icon/arrow-right.png);
    display: flex;
    width: 24px;
    height: 24px;
}

.product-item-slider .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.product-item-slider .owl-nav button.owl-prev,
.product-item-slider .owl-nav button.owl-next {
    margin: 0;
    width: 50px;
    height: 50px;
    background: #1C1C1C;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.product-item-slider .owl-nav button.owl-prev.disabled,
.product-item-slider .owl-nav button.owl-next.disabled,
.product-item-slider .owl-nav button.owl-prev.disabled:hover,
.product-item-slider .owl-nav button.owl-next.disabled:hover {
    background: rgba(237, 135, 41, 0.20);
    opacity: 1;
}

.product-item-slider .owl-nav button.owl-prev span,
.product-item-slider .owl-nav button.owl-next span {
    display: none;
}

.product-item-slider .owl-nav button.owl-prev::before {
    content: url(../images/icon/arrow-left.png);
    display: flex;
    width: 24px;
    height: 24px;
}

.product-item-slider .owl-nav button.owl-next::before {
    content: url(../images/icon/arrow-right.png);
    display: flex;
    width: 24px;
    height: 24px;
}

.sm\:w-full {
    width: 100%;
    height: fit-content !important;
}
@media (max-width: 1200px) {

    .news-updates .container,
    .news-updates .news-two,
    .news-updates .news-one {
        gap: 50px;
    }

    .footer-info {
        gap: 80px;
    }

    .category-list-main .category-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-main {
        display: grid;
        grid-template-columns: calc(60% - 25px) calc(40% - 25px);
        gap: 50px;
    }
}

@media(max-width: 1024px) {
    .header {
        padding: 15px;
    }

    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
            0 2px 4px -1px rgba(0, 0, 0, 0.06);
        background-color: var(--white);
        transition: all 0.5s ease;
        display: block;
        padding: 20px 0;
    }

    .navbar .menu {
        width: 100%;
        height: auto;
        display: block;
        opacity: 2;
        overflow: hidden;
    }

    .navbar .menu .menu-item {
        display: block;
        margin: 0 auto;
    }

    .menu-link {
        justify-content: space-between;
        padding: 8px 20px;
    }

    .submenu {
        position: relative;
        top: -0.5rem;
        left: 2.5rem;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
    }

    .navbar.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .main-menu-header {
        gap: 30px;
        padding-bottom: 0;
    }

    .menu-item:hover .menu-link::before {
        display: none;
    }

    .unit-select {
        width: 100%;
        justify-content: flex-start;
        padding: 8px 20px;
        margin-left: 0;
        order: 1;
    }

    .unit-select select.select-item {
        width: 100%;
    }

    .header-inner .logo {
        width: 130px;
        display: block;
    }

    .find-select-form .select-form {
        gap: 30px;
    }

    .find-select-form .select-form .find-select {
        padding-left: 30px;
    }

    .home-banner .banner-content h1 {
        font-size: 60px;
        line-height: 52px;
    }

    .find-the-right {
        margin-top: -100px;
        padding: 20px;
    }

    .find-the-right h6 {
        margin-bottom: 20px;
    }

    .tractors-brand {
        margin-bottom: 50px;
    }

    .tractors-brand-slider::before,
    .tractors-brand-slider::after {
        width: 200px;
        height: 114px;
    }

    .tractors-brand-slider {
        padding: 0;
    }

    .tractors-state {
        margin-bottom: 50px;
    }

    .tractors-state-slider .state-images .image-box p {
        font-size: 16px;
        line-height: 22px;
        left: 15px;
        bottom: 15px;
    }

    .news-updates .container,
    .news-updates .news-one {
        gap: 30px;
    }

    .news-updates .update-box .info-content h6 {
        font-size: 18px;
    }

    .news-updates .update-box {
        gap: 10px;
    }

    .news-updates .news-two {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        gap: 20px;
    }

    .lorem-text-section {
        margin: 50px auto;
    }

    .lorem-text-section h6 {
        font-size: 40px;
        line-height: 60px;
    }

    .lorem-text-section p {
        font-size: 20px;
        line-height: 30px;
    }

    .footer {
        padding: 30px;
    }

    .footer-info .contact-info p {
        white-space: unset;
    }

    .footer-info {
        gap: 50px;
    }

    .footer-info .info-link a {
        white-space: nowrap;
    }

    .copy-right {
        margin-top: 30px;
        padding-top: 30px;
    }

    .multi-section {
        padding-bottom: 50px;
    }

    .tractors-price-tab .price-tab-list {
        gap: 10px;
    }

    .tractors-price-tab .price-tab-list .nav-link {
        padding: 10px;
    }

    .recently-updated .category-list,
    .favourite-tractors .category-list {
        gap: 25px;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 20px;
    }

    .recently-updated .title-brand-box h6 {
        font-size: 24px;
    }

    .banner-content h1 {
        font-size: 60px;
        line-height: 52px;
    }

    .category-list-main .category-left .category-filter {
        padding: 50px 15px 30px 15px;
        background-color: #fff;
        position: relative;
        z-index: 9;
    }

    .category-list-main .category-left .category-filter .close-icon {
        display: block;
    }

    .category-list-main .category-left {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        overflow: auto;
        max-width: 375px;
        width: 100%;
        transition: all 0.5s ease-in-out;
        z-index: 9999;
    }

    .category-list-main .category-left.active .filter-overlay {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        background-color: #000;
        opacity: 0.5;
        width: 100vw;
        height: 100vh;
    }

    .category-list-main .category-left.active {
        right: 0;
    }

    .category-list-main .category-right {
        width: 100%;
    }

    .product-box .product-image .social-links {
        right: 18px;
    }

    .category-list-main .category-right .category-list-top .filter-icon {
        display: flex;
    }
}

@media (max-width: 1023px) {
    .product-main {
        display: block;
    }

    .product-main .product-left {
        margin-bottom: 50px;
    }

    .recently-updated-tractors .title-brand-box h6 {
        font-size: 24px;
    }

    .recently-updated-tractors .title-brand-box {
        gap: 50px;
    }

    .recently-updated-tractors .title-brand-box .brand-select {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .home-banner {
        height: 264px;
        padding-top: 30px;
    }

    .home-banner .banner-content {
        padding-left: 0;
        text-align: center;
    }

    .find-select-form {
        flex-direction: column;
    }

    .find-select-form .select-form {
        flex-direction: column;
    }

    .find-select-form .select-form .find-select {
        max-width: 100%;
        padding-left: 0;
        padding-top: 20px;
        border-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
    }

    .find-select-form .select-form .find-select:first-child {
        border: 0;
        max-width: 100%;
    }

    .home-banner .banner-content p {
        line-height: 40px;
    }

    .home-banner .banner-content h1 {
        font-size: 40px;
    }

    .find-the-right h6 {
        line-height: 32px;
        font-size: 22px;
    }

    .find-select-form .fing-button {
        height: unset;
        padding: 15px;
    }

    .tractors-brand-slider .owl-nav,
    .tractors-state-slider .owl-nav,
    .our-customers-slider .owl-nav {
        position: relative;
        top: unset;
        right: unset;
        justify-content: center;
        margin-top: 10px;
    }

    .tractors-brand h5,
    .tractors-state h4,
    .our-customers h3,
    .used-tractors-price h2,
    .favourite-tractors h1 {
        font-size: 24px;
        margin-bottom: 25px;
        margin-top: 0;
    }

    .tractors-state-slider .state-images,
    .tractors-state-slider .state-images .state-row-one,
    .tractors-state-slider .state-images .row-image-two {
        gap: 5px;
    }

    .news-updates .container {
        flex-direction: column;
        gap: 30px;
        padding-top: 0;
    }

    .news-updates .news-one {
        max-width: 100%;
    }

    .news-updates .news-one .news-updates-title {
        max-width: 100%;
        text-align: center;
    }

    .news-updates .news-two {
        gap: 30px;
    }

    .news-updates .news-one .news-updates-title h5 {
        font-size: 24px;
    }

    .lorem-text-section h6 {
        font-size: 30px;
        line-height: 40px;
    }

    .footer-info {
        gap: 30px;
    }

    .tractors-price-tab .tab-button {
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 30px;
        margin-bottom: 20px;
    }

    .tractors-price-tab .price-tab-list {
        width: 100%;
        flex-direction: column;
    }

    .tractors-price-tab .price-tab-list .nav-link {
        width: 100%;
    }

    .recently-updated .title-brand-box {
        flex-direction: column;
        gap: 30px;
        justify-content: flex-end;
        align-items: flex-end;
        margin-bottom: 30px;
    }

    .recently-updated .title-brand-box h6 {
        width: 100%;
    }

    .profile-edit .usereDtail {
        grid-template-columns: auto auto;
    }

    .welcomemodel .modal-body,
    .registermodel .modal-body,
    .OtpVerficationModal .modal-body,
    .areYouSureModal .modal-body {
        padding-bottom: 30px;
    }

    .welcomemodel .modal-dialog,
    .registermodel .modal-dialog,
    .OtpVerficationModal .modal-dialog,
    .areYouSureModal .modal-dialog {
        width: 90%;
        margin: 28px auto;
    }

    .welcomemodel .modal-header {
        padding-bottom: 20px;
    }

    .welcomemodel h2,
    .registermodel h2 {
        margin-bottom: 25px;
    }

    .otpGroup input {
        height: 45px;
        width: 100%;
        font-size: 16px;
    }

    .category-page-main-banner {
        padding: 50px 0;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content p {
        margin-bottom: 15px;
    }

    .banner-content {
        padding-left: 0;
        text-align: center;
    }

    .product-box .social-links .share-icon,
    .product-box .social-links .wishlist-icon {
        width: 35px;
        height: 35px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
        background: var(--white);
        cursor: pointer;
    }

    .product-box .product-detail h2 {
        font-size: 18px;
        line-height: 24px;
    }

    .product-box .product-detail .location p {
        font-size: 16px;
        line-height: 22px;
    }

    .product-box .product-detail .price-time p {
        font-size: 20px;
        font-weight: 500;
        line-height: 28px;
    }

    .category-right .category-list-top {
        margin-bottom: 30px;
    }

    .category-right .search-bar input {
        padding: 20px 60px 20px 30px;
    }

    .search-bar .fing-button {
        min-width: 40px;
        height: 40px;
        right: 10px;
        border-radius: 10px;
    }

    .category-list-main .category-left .filter-list-main h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 5px;
    }

    .category-list-main .category-left .filter-list-main .filter-box .filter-title p {
        font-size: 16px;
        line-height: 22px;
    }

    .category-list-main .category-left .filter-list-main .filter-box .filter-title {
        margin-bottom: 10px;
    }

    .category-list-main .category-left .filter-list-main .filter-box .filter-options {
        gap: 5px;
    }

    .category-list-main .category-left .filter-list-main .filter-box.active .filter-options {
        padding-bottom: 20px;
    }

    .category-list-main .category-left .filter-list-main .filter-box {
        padding-top: 20px;
    }

    .product-main .product-box .product-detail h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .product-main .product-box .product-detail {
        gap: 10px;
    }

    .product-main .product-left .product-detail-main .detail p {
        font-size: 16px;
        line-height: 22px;
    }

    .product-main .product-left .product-detail-main .detail span {
        font-size: 16px;
        line-height: 22px;
        text-align: right;
    }

    .product-main .product-box .product-detail .price-time p {
        font-size: 25px;
        line-height: 32px;
    }

    .recently-updated-tractors .title-brand-box {
        flex-direction: column;
        gap: 30px;
        justify-content: flex-end;
        align-items: flex-end;
        margin-bottom: 30px;
    }

    .recently-updated-tractors .title-brand-box h6 {
        width: 100%;
    }

    .recently-used-tractors-slider .owl-nav {
        position: relative;
        top: unset;
        right: unset;
        justify-content: center;
        margin-top: 10px;
    }
    .product-main .product-left .contact-manager {
        padding: 16px;
        margin-bottom: 14px;
    }
    .find-select-form .select-form .find-select select {
        font-size: 14px;
    }
    .find-select-form .select-form {
        gap: 0px;
    }
    .find-select-form {
        gap: 16px;
    }
    .tractors-brand {
        margin-top: 40px;
    }
    .top-ten-brands {
        min-height: 70px !important;
        width: 95%;
    }
    .bold-title-grey {
        font-size: 18px;
    }
    .tractors-brand::before, .tractors-brand::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .main-menu-header {
        gap: 10px;
        padding-bottom: 0;
    }

    .tractors-brand-slider::before,
    .tractors-brand-slider::after {
        display: none;
    }

    .multi-section {
        padding: 50px 0;
    }

    .lorem-text-section h6 {
        font-size: 28px;
        line-height: 38px;
    }

    .footer-info {
        flex-direction: column;
        gap: 50px;
    }

    .footer-info .contact-info p,
    .footer-info .info-link a {
        font-size: 16px;
    }

    .footer {
        padding: 20px;
        max-width: calc(100% - 30px);
    }

    .footer-info .contact-info {
        gap: 20px;
    }

    .recently-updated .category-list,
    .favourite-tractors .category-list {
        gap: 25px;
        grid-template-columns: repeat(1, 1fr);
    }

    .profile-edit .usereDtail {
        grid-template-columns: auto;
    }

    .profile-edit .input-field {
        margin-right: 0;
    }

    .profile-edit .input-field input,
    .profile-edit .input-field select {
        max-width: 100%;
    }

    .areYouSureModal .btngroup {
        display: block;
        margin-top: 40px;
    }

    .areYouSureModal h2 {
        font-size: 16px;
    }

    .areYouSureModal .title {
        margin-top: 10px;
    }

    .category-list-main .category-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .product-main .product-box .product-detail .product-feature {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-slider-main {
        flex-direction: column-reverse;
        padding-bottom: 70px;
    }

    .product-slider-main .thumb-slider {
        width: 100%;
        max-width: unset;
        margin-top: 0px;
        margin-bottom: 0;
    }

    .product-slider-main .thumb-slider .swiper-slide {
        max-height: 75px;
        min-height: 75px;
        min-width: unset;
        max-width: unset;
    }

    .product-slider-main .product-slider {
        width: 100%;
        min-height: 430px;
    }

    .product-slider-main .thumb-slider .swiper-button-prev {
        position: unset;
        transform: rotate(-90deg);
    }

    .product-slider-main .thumb-slider .swiper-button-next {
        position: unset;
        transform: rotate(-90deg);
    }

    .product-slider-main .thumb-slider .swiper-button-next.desktop,
    .product-slider-main .thumb-slider .swiper-button-prev.desktop {
        display: none;
    }

    .product-slider-main .thumb-slider .slider-btn {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .header {
        padding: 5px 15px;
    }

    .product-page-main {
        padding: 0px 0 40px;
    }

    .product-slider-main .product-slider {
        width: 100%;
        max-height: 270px !important;
        min-height: 270px !important;
    }

    .product-slider-main .thumb-slider {
        height: unset;
    }

    .product-slider-main .thumb-slider .swiper-slide {
        max-height: 50px !important;
        min-height: 50px !important;
        min-width: unset;
        max-width: unset;
        width: 70px !important;
    }

    .product-slider-main .thumb-slider .swiper-slide img,
    .product-slider-main .product-slider .swiper-wrapper .swiper-slide img {
        max-height: 100%;
        height: 100%;
        cursor: pointer;
        object-fit: cover;
        width: 100%;
    }

    .swiper.product-slider {
        z-index: unset;
        padding: 0px;
    }

    .product-slider-main .thumb-slider .slider-btn {
        position: absolute;
        bottom: 55%;
        z-index: 32;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        width: 100%;
    }

    .product-slider-main .thumb-slider .swiper-button-next,
    .product-slider-main .thumb-slider .swiper-button-prev {
        min-width: 30px;
        max-width: 30px;
        min-height: 30px;
        max-height: 30px;
    }
    .product-main .product-left {
        margin-bottom: 0px;
    }
    .product-slider-main {
        flex-direction: column-reverse;
        padding-bottom: 0;
        margin-bottom: 10px;
        gap: 10px;
    }

}

.top-ten-brands{
    min-height: 100px;
    display: flex;
    align-items: center;
    border-radius:15px;
    /* background-color:#F3F3F3; */
}

.bold-title{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}

.bold-title-grey{
    color: #1C1C1C;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
}

.grey-box-area{
    border-radius:15px;
    background-color:#F3F3F3;
    padding: 25px !important;
}

.footer-states a{
    margin-bottom: 5px;
    font-size: 14px;
}
.footer-states a:hover{
    color: #ED8729;
}

.footer-text{
    padding-right: 60px;
    color: #FFF;
    font-size: 14px;
}

.required{
    color: red;
}
.recently-sold-out {
    margin-bottom: 57px;
}
.recently-sold-out .title-brand-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 57px;
}
.recently-sold-out .title-brand-box h6 {
    font-size: 28px;
    line-height: 22px;
    margin-bottom: 0;
}

.custom-badge{
    position: absolute;
}

 #status,
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.85);
        z-index: 1050;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .loader {
        width: 60px;
        height: 60px;
        border: 6px solid #ED8B30;
        border-top: 6px solid black;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
 /* Disable scroll when loader is active */
    body.loading {
        overflow: hidden;
    }
    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }}
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}



.product-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease; /* For smooth hover transition */
}
.product-card video {
    width: 100%;
    height: 100%;
    display: block;
    transition: opacity 0.3s ease; /* For smooth hover transition */
    object-fit: cover; /* Ensures the video covers the entire area */
}

/* Ensure pagination appears on hover */
.product-card:hover .swiper-pagination {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
  
}

/* Ensure swiper and slides have consistent dimensions */
.vehicle-swiper, .vehicle-swiper-wrapper, .swiper-slide-vehicles{
    width: 100%;
    height: 287px; /* Or whatever fixed height you want */
    overflow: hidden;
    border-radius: 12px;
}

/* Ensure images fit and don't repeat or stretch */
.swiper-slide-vehicles img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* For image change on hover */
.product-card:hover .swiper-slide-vehicles img.original-image {
    opacity: 0; /* Fade out original image */
}

.product-card:hover .swiper-slide-vehicles img.new-image {
    opacity: 1; /* Fade in new image on hover */
    transition: opacity 0.3s ease;
}

/* Initially hide the second image */
.swiper-slide-vehicles img.new-image {
    opacity: 0;
}
.state-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px; /* optional: for rounded corners */
}


.logo-switcher {
    position: relative;
}
.unit-logo
 {
    width: 100px;  /* adjust as needed */
    height: 70px; /* adjust as needed */
    object-fit: contain; /* or "cover" depending on how you want it to scale */
    cursor: pointer;
}


.logo-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.unit-option {
    height: 30px;
    margin: 5px 0;
    cursor: pointer;
}
