:root {
    --font-family:  "Inter", sans-serif;
    --blackColor: 6, 5, 5;
    --whiteColor: 255, 255, 255;
    --primaryColor: 218, 26, 54;
    --secondaryColor: 199, 0, 24;
    --successColor: 25, 135, 84;
    --smallFontSize: 0.875rem;
    --baseFontSize: 1rem;
    --regularFontSize: 1.25rem;
    --mediumFontSize: 1.5rem;
    --largeFontSize: 2rem;
    --extraLargeFontSize: 4rem;
    --Animation300: 0.3s ease-in-out;
    --container-width: 1280px;
}

html {
  scroll-behavior: smooth;
}

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

body {
    margin: 0;
    font-family: var(--font-family);
    font-size: var(--baseFontSize);
    color: rgb(var(--blackColor));
    font-weight: 400;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

input,
textarea,
button {
    font-family: var(--font-family);
}

input[type="button"],
a,
button {
    outline: none;
    text-decoration: none;
    transition: 300ms all;
}

.rdm-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    /* max-width: 1600px; */
}

.custom-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid transparent;
    font-weight: 600;
    font-size: var(--baseFontSize);
    justify-content: center;
    flex-wrap: nowrap;
    color: rgba(var(--whiteColor));
    white-space: nowrap;
}

.custom-btn {
    background: linear-gradient(45deg, rgba(var(--primaryColor)), rgba(var(--secondaryColor)));
}

.custom-btn:hover {
    background: linear-gradient(45deg, rgba(var(--secondaryColor), .85), rgba(var(--primaryColor), .85));
}

.custom-btn.secondary-btn {
    background: rgba(var(--whiteColor));
    color: rgba(var(--blackColor));
}

.custom-btn.secondary-btn img {
    filter: invert(1);
}

.custom-btn.secondary-btn:hover {
    background: transparent;
    color: rgba(var(--whiteColor));
    border-color: rgba(var(--whiteColor));
}

.custom-btn.secondary-btn:hover img {
    filter: invert(0);
}

.custom-btn.border-btn {
    background: transparent;
    color: rgba(var(--primaryColor));
    border-color: rgba(var(--primaryColor));
}

h2 {
    font-size: calc(var(--largeFontSize) + 8px);
    letter-spacing: -1px;
}

h5 {
    font-size: var(--baseFontSize);
}

h3 {
    font-size: calc(var(--mediumFontSize) + 5px);
}

h4 {
    font-size: calc(var(--baseFontSize) + 2px);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(var(--blackColor), 40%);
    display: flex;
    justify-content: end;
    z-index: 8;
    visibility: hidden;
    opacity: 0;
    align-items: self-start;
    padding: 10px;
}

.main-nav-toggle .overlay {
    visibility: visible;
    opacity: 1;
}

span.text-danger {
    font-size: 14px;
    color: rgba(var(--primaryColor));
}

/* top header css */
.top-border {
    height: 5px;
    width: 100%;
    background: linear-gradient(45deg, rgba(var(--primaryColor)), rgba(var(--secondaryColor)));
}

.top-header {
    background: #F5F5F5;
}

.topHeader-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

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

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

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

.topHeader-right p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.social-links a {
    display: flex;
    align-items: center;
}

.social-links a img {
    display: block;
    width: 24px;
    height: 24px;
}

.topHeader-left a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(var(--blackColor));
}

/* main header */
.rdm-header {
    border-bottom: 1px solid rgb(var(--blackColor), 0.1);
}

.main-header {
    z-index: 99991;
    transition: .3s;
    background: rgba(var(--whiteColor));
    width: 100%;
}

.main-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.main-header-center ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-header-left,
.main-header-right {
    flex: 0 0 22%;
}

.main-header-right {
    display: flex;
    justify-content: end;
    gap: 15px;
    align-items: center;
}

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

.nav-toggle, .responsive-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    background: 0 0;
}

.main-header-center a.custom-btn {
    display: none;
}

button#nav-toggle-wrapper {
    padding: 10px;
    border-radius: 8px;
    height: 36px;
    border: 1px solid rgba(var(--blackColor), 20%);
    width: 36px;
}

button#nav-toggle-wrapper img {
    width: 16px;
}

button#nav-toggle-wrapper {
    display: none;
}

.site-logo a {
    display: flex;
    align-items: center;
}

.site-logo a img {
    border-radius: 5px;
    max-height: 60px;
}

.main-header-center ul a {
    font-size: 16px;
    font-weight: 500;
    color: rgb(var(--blackColor));
    position: relative;
}

.main-header-center ul a:hover,
.main-header-center ul .current-menu-item a {
    color: rgb(var(--primaryColor));
}

.main-header-center ul a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: rgb(var(--primaryColor));
    transition: 300ms all;
}

.main-header-center ul a:hover:after,
.main-header-center ul .current-menu-item a:after {
    width: 100%;
}

.main-header.header-sticky {
    position: fixed;
    border-bottom: 1px solid rgba(var(--blackColor), 10%);
}

.m-h-nav-wrap {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(var(--blackColor), 20%);
}

.m-h-nav-wrap img {
    cursor: pointer;
}

/* bredcrumb css */
.bredcrumb-section {
    padding: 12px 0;
    /*border-top: 1px solid rgb(var(--blackColor), 0.1);*/
}

.bredcrumb-wrapper a {
    text-decoration: none;
    color: rgb(var(--blackColor));
}

.bredcrumb-wrapper a:hover {
    color: #d6001c;
}

.bredcrumb-wrapper .separator {
    margin: 0 5px;
    font-weight: 500;
}

.bredcrumb-wrapper .current {
    font-weight: 500;
    color: #000;
}

/* hero banner */
.hero-banner {
    padding-top: 25px;
}

.hero-banner-inr {
    position: relative;
}

.hero-banner-content {
    padding: 7% 3.5%;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    justify-content: center;
    background: linear-gradient(235deg, rgb(6 5 5 / 0%) 0%, rgb(6 5 5 / 90%) 100%);
    border-radius: 20px;
    color: rgb(var(--whiteColor));
}

.hero-banner-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;

}

.hero-banner-img img {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 1;
        object-fit: cover;
}

.button-wrapper {
    display: flex;
    gap: 15px;
}

.hero-banner-content>div {
    max-width: 500px;
}

.hero-banner-content h1 {
    font-size: 60px;
    margin: 0;
    line-height: 65px;
}

.hero-banner-content p {
    font-size: 20px;
    margin: 5px 0 25px;
}

/* who we section css */
.custom-section {
    padding: 5% 0;
}

.custom-section.who-we-section {
    background: linear-gradient(180deg, rgba(var(--whiteColor), 0%) 0%, #F5F5F5 100%);
    background: #fff;
}

.section-head p {
    font-size: calc(var(--baseFontSize) + 2px);
}

.imageContent-wrapper {
    display: flex;
    gap: 55px;
    margin-top: 3%;
}

.imageContent-wrapper>div {
    flex: 1;
}

.imageContent-left.imageContent-img {
    max-width: 550px;
}

.imageContent-left.imageContent-img img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.imageContent-right p+p {
    margin-top: 20px;
}

.imageContent-right p {
    font-size: calc(var(--baseFontSize) + 1px);
    line-height: 1.4;
}

.auth-dtl {
    padding: 20px;
    border-radius: 10px;
    background: rgba(var(--whiteColor));
    margin-top: 50px;
        border: 1px solid rgba(var(--blackColor), 5%);
    box-shadow: 0 2px 10px rgb(0 0 0 / 3%);
}

.custom-section.assistance-section {
    background: #F5F5F5;
}
/* popular brand */
/*.popular-brand-sec {*/
/*    border-top: 1px solid rgba(var(--blackColor), 10%);*/
/*    margin-top: 5%;*/
/*    padding-top: 4%;*/
/*}*/

.popular-brand-sec {
    padding-bottom: 8%;
}

.popular-brand-wrapper {
    margin: 3% -10px 0;
}

.popular-brand-swiper-wrapper {
    display: flex;
    overflow: auto;
    flex-wrap: wrap;
}

.popular-brand-slide {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
}

.popular-brand-slide .slide-item {
    padding: 10px;
}

.popular-brand-slide .slide-item>a {
    padding: 25px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: rgba(var(--whiteColor));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    height: 100%;
    transition: var(--Animation300);
}

.popular-brand-slide .slide-item img {
    width: auto;
    height: 50px;
    max-width: 100%;
}

.popular-brand-slide .slide-item h5 {
    color: rgb(var(--blackColor));
}

/* marketplace section */
.network-marketplace-wrapper {
    display: flex;
    margin: 3% -10px 0;
}

.marketplace-box {
    flex: 1;
    padding: 10px;
}

.marketplace-box-inr {
    padding: 25px 20px;
    border-radius: 15px;
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 16px 20px -10px rgba(var(--blackColor), 12%);
    background: rgba(var(--primaryColor));
    color: rgb(var(--whiteColor));
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: self-start;
}


.marketplace-box:nth-child(2) .marketplace-box-inr {
    background: #15d59f;
    color: rgb(var(--blackColor));
}

.marketplace-box:nth-child(3) .marketplace-box-inr {
    background: #ffbe0c;
    color: rgb(var(--blackColor));
}

.marketplace-box-inr p {
    margin: 5px 0 15px;
    font-size: calc(var(--baseFontSize) + 2px);
    line-height: calc(var(--largeFontSize) - 4px);
    font-weight: 400;
    max-width: 70%;
}

.marketplace-box {
    display: inline-flex;
    gap: 10px;
    font-weight: 700;
}

.marketplace-box-inr:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 40%;
    background: url(../images/image65.png) bottom right / 100% no-repeat;
}

.marketplace-box:nth-child(2) .marketplace-box-inr:after {
    background: url(../images/image63.png) bottom right / 100% no-repeat;
}

.marketplace-box:nth-child(3) .marketplace-box-inr:after {
    background: url(../images/image64.png) 30px bottom / 82% no-repeat;
}

.marketplace-box-inr h3 {
    font-size: calc(var(--mediumFontSize));
}

.marketplace-box-btn {
    background: rgba(var(--whiteColor));
    display: inline-flex;
    gap: 10px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    color: rgba(var(--primaryColor));
    margin-top: auto;
}

.marketplace-box:nth-child(2) .marketplace-box-btn {
    color: #15d59f;
    background: #000;
}

.marketplace-box:nth-child(3) .marketplace-box-btn {
    color: #ffbe0c;
    background: #000;
}

.marketplace-box:hover .marketplace-box-inr {
    box-shadow: 0 16px 20px -10px rgba(var(--blackColor), 15%);
    transform: scale(1.01);
}

.marketplace-box-btn svg {
    position: relative;
    left: -5px;
    transition: .3s;
}

.marketplace-box:hover .marketplace-box-btn svg {
    left: 0;
}

/* latest part css */
.latest-part-section {
    background: #F5F5F5;
}

.latest-part-wrapper {
    margin: 3% -10px 0;
    position: relative;
}


.latest-part-wrapper .similar-part-item {
    padding: 10px;
}

.parts-item-inr {
    display: flex;
    flex-direction: column;
    background: rgba(var(--whiteColor));
    transition: 300ms all;
    border-radius: 8px;
    overflow: hidden;
}

.ourInventory-section .parts-item-inr {
    border: 1px solid #cdcdcd;
}

.latest-part-item {
    padding: 10px;
}

.latest-part-wrapper .latest-part-item:hover .parts-item-inr, .our-inventory-wrapper .latest-part-item:hover .parts-item-inr {
    box-shadow: 0 4px 10px 0 rgba(var(--blackColor), 20%);
}

.part-item-thumbnail>a {
    display: flex;
    overflow: hidden;
}

.part-item-thumbnail>a img {
    min-height: 145px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    max-height: 156px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    transition: 300ms all;
}

.part-item-detail {
    flex: 1;
    padding: 15px;
}

.part-item-detail h4 {
    border-bottom: 1px solid rgba(var(--blackColor), 20%);
    padding-bottom: 7px;
    font-size: var(--regularFontSize);
}

.part-item-detail h4 a {
       color: #000;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

.brand-name {
    color: rgba(var(--blackColor), 80%);
    font-size: 12px;
    padding: 5px 0;
}

.detail-list {
    display: inline-flex;
    align-items: self-start;
    gap: 6px;
    margin: 2px 0 5px;
    font-size: 14px;
}

.detail-list li {
    position: relative;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(var(--blackColor), 10%);
}

.part-item-detail a.custom-btn {
    margin-top: 15px;
    display: inline-flex;
    border-radius: 6px;
    padding: 5px 15px;
    font-size: 14px;
    gap: 5px;
    font-weight: 500;
}

.latest-part-wrapper .swiper-button-prev,
.latest-part-wrapper .swiper-button-next {
    width: 40px;
    height: 40px;
    border: 1px solid rgb(6, 5, 5, 0.1);
    border-radius: 8px;
    background: rgba(var(--whiteColor));
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px 0 rgba(var(--blackColor), 20%);
}

.latest-part-wrapper .swiper-button-prev {
    left: -50px;
}

.latest-part-wrapper .swiper-button-next {
    right: -50px;
}

.latest-part-wrapper .swiper-button-prev:after,
.latest-part-wrapper .swiper-button-next:after {
    display: none;
}

.latest-part-wrapper .swiper-button-prev svg,
.latest-part-wrapper .swiper-button-next svg {
    width: 10px;
}

.part-item-thumbnail a:hover img {
    transform: scale(1.05);
}


/* assistance css */
.section-head.align-center {
    text-align: center;
}

.assistance-wrapper {
    max-width: 970px;
    margin: auto;
    margin-top: 70px;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 30px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
}

.info-box {
    background: rgba(var(--whiteColor));
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(var(--blackColor), 0.05);
    padding: 60px 20px 20px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(var(--blackColor), 0.1);
    ;
}

.info-grid .info-box:nth-child(1),
.info-grid .info-box:nth-child(3) {
    grid-column: span 6;
}

.info-grid .info-box:nth-child(2),
.info-grid .info-box:nth-child(4) {
    grid-column: span 4;
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: rgba(var(--whiteColor));
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(var(--blackColor), 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(var(--blackColor), 0.1);
}

.phone-box .phone-list div,
.working-hours div {
    background: #F5F5F5;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-direction: column;
    flex: 1;
}

.phone-list img,
.working-hours img {
    width: 16px;
    height: 16px;
}

.working-hours span {
    display: block;
}

.info-box p {
    font-size: 20px;
}

.phone-list,
.working-hours {
    display: flex;
    gap: 20px;
}

.phone-list p,
.working-hours p {
    font-size: 18px;
    font-weight: 500;
    color:rgba(var(--blackColor));
}

.phone-list p a {
    color:rgba(var(--blackColor));
}

p.email-list a{
    color:rgba(var(--blackColor));
}

/* footer css */
.rdm-footer {
    background: linear-gradient(360deg, rgba(var(--whiteColor), 0%) 0%, #F5F5F5 100%);
}

.rdm-footer-top {
    padding: 5% 0;
}

.map-contact-wrapper {
    display: flex;
    align-items: stretch;
    gap: 50px;
    background: rgba(var(--whiteColor));
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 25px;
    box-shadow: 0 25px 45px rgba(var(--blackColor), 0.05);
    margin-top:3%;
}

.map-box {
    flex: 1 1 50%;
    position: relative;
    min-width: 300px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: none;
    filter: grayscale(100%);
}

.form-box {
    flex: 1 1 50%;
    min-width: 300px;
    padding-right: 30px;
}

.form-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.form-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-box form label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 14px 14px;
    border: 1px solid rgba(var(--blackColor), 0.2);
    border-radius: 8px;
    font-size: 16px;
}

.form-box textarea {
    resize: none;
    height: 130px;
}

.char-count {
    font-size: 14px;
    color: rgba(var(--blackColor), 0.5);
    text-align: right;
    margin-top: -10px;
}

.submit-wrap {
    margin-top: 15px;
}

.submit-wrap .custom-btn {
    font-size: 16px;
    width: 100%;
}

/* partner sec */
.partner-social-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 25px 0;
}

/* Left Section */
.partner-left {
    flex: 1 1 50%;
    text-align: left;
}

.partner-left h4,
.partner-right h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 50px;
}

.partner-logos img {
    height: 60px;
        max-width: 190px;
}

/* Right Section */
.partner-right {
    flex: 1 1 50%;
    text-align: right;
}

.partner-right p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
}

.footer-social-icons img {
    width: 40px;
    height: 40px;
}

/* Visitor Count Badge */
.visitor-count {
    display: inline-flex;
    align-items: center;
    background: rgba(var(--whiteColor));
    border: 2px solid rgba(var(--primaryColor));
    border-radius: 8px;
    overflow: hidden;
    margin-top: 3%;
}

.visitor-count span {
    padding: 8px 14px;
    background: rgba(var(--whiteColor));
    color: rgba(var(--primaryColor));
    font-weight: bold;
    letter-spacing: 0.5px;
    font-size: 16px;
    text-transform: uppercase;
}

.visitor-count b {
    padding: 6px 12px;
    background: rgba(var(--primaryColor));
    color: rgba(var(--whiteColor));
    font-size: 22px;
}

/* copyright css */
.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 15px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(var(--blackColor), 0.8);
    text-transform: capitalize;
}

.footer-text {
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links li+li {
    border-left: 1px solid  rgba(var(--blackColor), 0.2);
    padding-left: 15px;
}

.footer-links a,
.footer-text a {
    text-decoration: none;
    color: rgba(var(--blackColor), 0.8);
    transition: 300ms all;
}

.footer-links a:hover,
.footer-text a:hover {
    color: rgba(var(--primaryColor));
}


/* call to action css */
.callTo-action-section {
    background: linear-gradient(180deg, #F5F5F5 60%, rgba(var(--whiteColor), 0) 100%);
}

.callTo-action-wrapper,
.top-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.callTo-action-text p {
    font-size: 20px;
}

.callTo-action-text {
    max-width: 50%;
    padding: 75px 0;
}

.callTo-action-box {
    background: rgba(var(--whiteColor));
    border: 1px solid #C70017;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 20px;
}

.callTo-action-box h5 {
    font-size: 25px;
    color: #C70017;
}

.big-text {
    font-size: calc(var(--extraLargeFontSize) - 4px);
    font-weight: 700;
    line-height: 1;
}

.gradient-text {
    background: linear-gradient(90deg, rgba(var(--blackColor)) 0, rgba(var(--primaryColor)) 47%, rgba(var(--blackColor)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-head.inline-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our-inventory-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin:0 -10px;
}

.our-inventory-wrapper .latest-part-item {
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
}

/* search wrapper */
.search-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F5F5F5;
    padding: 10px;
    border-radius: 15px;
    margin: 20px 0 30px;
}

.result-count {
    font-size: 16px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: rgba(var(--whiteColor));
    border-radius: 8px;
    padding: 8px 15px 8px 15px;
    box-shadow: 0 1px 5px rgba(var(--blackColor), 0.1);
    flex: 1;
    max-width: 50%;
}

.search-box input {
    border: none;
    outline: none;
    font-size: 16px;
    padding: 6px 0;
    background: transparent;
    width: 100%;
}

.search-box button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding-left: 6px;
    display: flex;
    align-items: center;
}

/* pagination */
.rdm-pagination {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-family: sans-serif;
    margin-top: 40px;
}

.page-btn {
    border: 1px solid rgba(var(--blackColor), 0.1);
    background-color: rgba(var(--whiteColor));
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: 300ms all;
    font-weight: 600;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:rgba(var(--blackColor));
}

.page-btn:hover {
    background-color: rgba(var(--blackColor), 0.10);
}

.page-btn.active {
    background-color: #d92332;
    color: rgba(var(--whiteColor));
}

.rdm-pagination-dots {
    padding: 8px 10px;
    font-size: 18px;
}

.content-page-wrapper h1 {
    font-size: calc(var(--largeFontSize) + 4px);
}

.content-page-wrapper p,
.content-page-wrapper li {
    font-weight: 400;
    line-height: 1.5;
}

.content-page-wrapper h2 {
    font-size: calc(var(--mediumFontSize) + 2px);
}

.content-page-wrapper h3 {
    font-size: calc(var(--mediumFontSize) - 2px);
}

.content-page-wrapper h4 {
    font-size: calc(var(--regularFontSize));
}

.content-page-wrapper h2,
.content-page-wrapper p+h2,
.content-page-wrapper p+h3,
.content-page-wrapper h3,
.content-page-wrapper ul+h2,
.content-page-wrapper ul+h3,
.content-page-wrapper ol+h2,
.content-page-wrapper ol+h3, .content-page-wrapper p+h4, .content-page-wrapper ul+h4, .content-page-wrapper ol+h4 {
    margin: 20px 0 15px;
}

.content-page-wrapper a {
    color: rgb(var(--blackColor));
    text-decoration: underline;
}

.content-page-wrapper a:hover {
    color: rgb(var(--primaryColor));
    text-decoration: none;
}

.content-page-wrapper p+ul,
.content-page-wrapper p+ol {
    padding: 15px 0px;
    list-style: inherit;
    padding-left: 25px;
}

/* skeleton loader */

.part-item-thumbnail.shimmer {
    min-height: 145px;
    background: #ededed;
}
.skeleton-line {
  height: 14px;
  background: #e0e0e0;
  border-radius: 4px;
}

.skeleton-line.title {
  width: 70%;
  height: 18px;
}

.skeleton-line.sub {
  width: 60%;
  margin: 10px 0;
}

.skeleton-button {
  width: 100px;
  height: 32px;
  border-radius: 6px;
  background: #d0d0d0;
  margin-top: 10px;
}

/* Shimmer Effect */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.custom-section.assistance-section.bg-light-gray {
    background: #F5F5F5;
}

.highlight-text {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(var(--primaryColor));
    background: rgba(var(--primaryColor), 3%);
    margin: 20px 0 0;
}