/* Global CSS  For This Page*/
:root {
    --space: 100px;
    --form-btn-color:#fff;
    --btn-hover-white:#fff;
}

.single-marketplace-vendor .custom-btn.marketplace-popup {
    cursor: pointer;
    border-style: none;
    background-color: var(--seconday-color);
    padding-inline: 34px;
}

.single-marketplace-vendor .custom-btn.marketplace-popup:hover {
    background-color: var(--primary-color);
    color: var(--btn-hover-white);
}

.single-marketplace-vendor .main-heading {
    line-height: 1.2;
}

.single-marketplace-vendor .main-heading::after {
    bottom: -10px;
}

.vendorHeaderNav .custom-btn.back-marketplace {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding-inline: 22px;
}

.vendorHeaderNav .custom-btn.back-marketplace img {
    max-width: 16px;
    object-fit: contain;
}

.vendorHeaderNav .custom-btn.back-marketplace span {
    line-height: 1.223;
}

.sPt {
    padding-top: var(--space);
}

.sPb {
    padding-bottom: var(--space);
}

/* Global Responsive */
@media (max-width:1399px) {
    :root {
        --space: 80px;
    }
}

@media (max-width:991px) {
    :root {
        --space: 60px;
    }

    .single-marketplace-vendor .main-heading::after {
        bottom: -8px;
    }
}

@media (max-width:575px) {
    :root {
        --space: 40px;
    }

    .single-marketplace-vendor .main-heading::after {
        bottom: -6px;
    }
}

/*--====================*** Section Header CSS Start From Here ***====================--*/
.singleVendorHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0px 3px 6px #0000000F;
}

.singleVendorHeader .vendorHeaderNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    grid-gap: 6px;
}

.vendorHeaderNav .customLogo {
    max-width: 246px;
}

/* .vendorHeaderNav .custom-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
} */

@media (max-width:1399px) {
    .singleVendorHeader {
        padding: 12px 0;
    }

    .vendorHeaderNav .customLogo {
        max-width: 215px;
    }

    .vendorHeaderNav .custom-btn {
        font-size: 16px;
    }
}

@media (max-width:1199px) {
    .vendorHeaderNav .customLogo {
        max-width: 200px;
    }
    .vendorHeaderNav .custom-btn {
        font-size: 14px;
    }
}

@media (max-width:991px) {
    .singleVendorHeader {
        padding: 10px 0;
    }

    .vendorHeaderNav .customLogo {
        max-width: 180px;
    }
    .vendorHeaderNav .custom-btn {
        font-size: 13px;
    }
    .vendorHeaderNav .custom-btn.back-marketplace {
        grid-gap: 5px;
        padding-inline: 16px;
    }
    .single-marketplace-vendor .custom-btn.marketplace-popup {
        padding-inline: 20px;
    }
    .vendorHeaderNav .custom-btn.back-marketplace img {
        max-width: 13px;
    }
}

@media (max-width:767px) {
    .vendorHeaderNav .customLogo {
        max-width: 150px;
    }

    .vendorHeaderNav .custom-btn {
        font-size: 11px;
    }
    .single-marketplace-vendor .custom-btn.marketplace-popup,
    .vendorHeaderNav .custom-btn.back-marketplace{
        padding-inline: 12px;
    }
    .vendorHeaderNav .custom-btn.back-marketplace img {
        max-width: 10px;
    }
}

@media (max-width:575px) {
    .vendorHeaderNav .custom-btn.back-marketplace span {
        display: none;
    }
}

@media (max-width:350px) {
    .vendorHeaderNav .customLogo {
        max-width: 125px;
    }

    .single-marketplace-vendor .custom-btn.marketplace-popup{
        padding-inline: 10px;
        font-size: 10px;
    }
}
/*--====================*** Section Header CSS Close From Here ***====================--*/
/*--====================*** Vendor Content Section CSS Start From Here ***====================--*/
.vContentSec {
    background-color: var(--vendor-bg-color);
    padding: 200px 0;
}

.vContentSec.sec-bottom-space {
    padding-bottom: var(--space);
}

.vContentSec .vHeaderContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 30px 20px;
}

.vHeaderContent .main-heading {
    flex: 1;
    width: 100%;
}

.vHeaderContent .vLogo {
    width: 25%;
    max-width: 225px;
}

.vHeaderContent .vLogo.posting-pulse-logo{
    max-width: 100%;
}

.vHeaderContent .vLogo img {
    margin-left: auto;
    display: block;
    max-height: 75px;
}

.vContentSec .vFeatureImg {
    width: 100%;
    height: 100%;
    max-height: 650px;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    /* aspect-ratio: 16/9; */
}

.vFeatureImg img {
    width: 100%;
    /* aspect-ratio: 16/9; */
    object-fit: cover;
    object-position: center;
    height: 100%;
}

.vContentSec .vDataWrap {
    margin: 35px 0 53px;
}

.vDataWrap p {
    font-size: var(--primary-size);
    line-height: 1.5;
    margin: 0;
    color: var(--font-primary);
    letter-spacing: 0.45px;
}

.vDataWrap p:has(+p) {
    margin-bottom: 25px;
}

.vContentSec .custom-btn {
    margin: 0 auto;
    display: block;
    width: fit-content;
    margin-top: 30px;
}

/* Responsive CSS */
@media (max-width:1399px) {
    .vContentSec {
        padding: 160px 0;
    }

    .vContentSec .vDataWrap{
        margin: 30px 0 45px;
    }

    .vDataWrap p:has(+p) {
        margin-bottom: 20px;
    }

    .vContentSec .custom-btn {
        margin-top: 25px;
    }
}

@media (max-width:1199px) {
    .vContentSec .vFeatureImg {
        height: 100%;
    }
}

@media (max-width:991px) {
    .vContentSec {
        padding: 135px 0 100px;
    }

    .vContentSec .vDataWrap{
         margin: 24px 0 36px;
    }
}

@media (max-width:767px) {
    .vContentSec {
        padding: 120px 0 80px;
    }

    .vHeaderContent .main-heading {
        flex: none;
    }

    .vHeaderContent .vLogo {
        width: 100%;
    }

    .vHeaderContent .vLogo img {
        margin-left: 0;
        max-height: 60px;
    }
}

@media (max-width:575px) {
    .vContentSec {
        padding: 100px 0 60px;
    }

    .vContentSec .vFeatureImg {
        border-radius: 10px;
    }

    .vContentSec .vDataWrap{
        margin: 20px 0 30px;
    }

    .vDataWrap p:has(+p) {
        margin-bottom: 15px;
    }

    .vContentSec .custom-btn {
        margin-top: 20px;
    }
}

/*--====================*** Vendor Content Section CSS Close From Here ***====================--*/
/*--====================*** Vendor Video Section CSS Start From Here ***====================--*/
.vnVideoSec {
    position: relative;
    z-index: 1;
    padding-bottom: 10px;
    background: linear-gradient(to bottom, var(--video-bg-color) 20%, #fff 20%);
}

.vnVideoSec .vnVideo {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    width: calc(100% - 20px);
    line-height: 0;
}

.vnVideoSec .vnVideo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    filter: brightness(0.75) invert(0);
}

.vnVideo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 20px);
    height: calc(50% + 10px);
    background: var(--video-edges-color) 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 32px #7878782E;
    z-index: -1;
}

.vnVideo .vidControls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 94px;
    height: 94px;
    border-radius: 100%;
    transition: all .5s ease-in-out;
    box-shadow: 0px 0px 6px #00000040;
}

.vnVideo .vidControls::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background-color: #000;
    z-index: -1;
    border-radius: 100%;
    opacity: 0.3;
}

.vnVideo .vidControls.active {
    opacity: 0;
}

.vnVideo:hover .vidControls.active {
    opacity: 1;
}

/* Responsive CSS */
@media (max-width:991px) {
    .vnVideo .vidControls {
        width: 80px;
        height: 80px;
    }
}

@media (max-width:767px) {
    .vnVideo .vidControls {
        width: 60px;
        height: 60px;
    }
}

@media (max-width:767px) {
    .vnVideo .vidControls {
        width: 50px;
        height: 50px;
    }
}

/*--====================*** Vendor Video Section CSS Close From Here ***====================--*/
/*--====================*** Vendor Features and Functions Section CSS Start From Here ***====================--*/
.vnFeaturesSec .vnFeatureRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 100px;
    margin-top: 50px;
}

.vnFeaturesSec  .main-heading {
    color: #000;
}

.featuresData .data,
.vContentSec .vDataWrap {
    letter-spacing: 0.4px;
    line-height: 1.4;
    font-size: var(--primary-size);
}

.featuresData .data>*:has(+ *),
.vTlData .bTLText>*:has(+ *),
.vContentSec .vDataWrap>*:has(+ *) {
    margin-bottom: 25px;
}

.featuresData .data h2,
.vTlData .bTLText h2,
.vContentSec .vDataWrap h2 {
    font-size: var(--heading-size);
}

.featuresData .data h3,
.vTlData .bTLText h3,
.vContentSec .vDataWrap h3 {
    font-size: 30px;
    line-height: 1.2;
}

.featuresData .data h4,
.vTlData .bTLText h4,
.vContentSec .vDataWrap h4 {
    font-size: 24px;
    line-height: 1.2;
}

.featuresData .data h5,
.vTlData .bTLText h5,
.vContentSec .vDataWrap h5 {
    font-size: 20px;
    line-height: 1.2;
}

.featuresData .data ul,
.vTlData .bTLText ul,
.vContentSec .vDataWrap ul {
    list-style: disc;
    padding-left: 20px;
}

.featuresData .data ul li,
.vTlData .bTLText ul li,
.vContentSec .vDataWrap ul li {
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.featuresData .data ul li:not(:last-child),
.vTlData .bTLText ul li:not(:last-child),
.vContentSec .vDataWrap ul li:not(:last-child) {
    margin-bottom: 20px;
}

.featuresData .data ul li::marker,
.vTlData .bTLText ul li::marker,
.vContentSec .vDataWrap ul li::marker {
    color: var(--primary-color);
    font-size: 25px;
    line-height: 0.5px;
}

.featuresData .data a,
.vTlData .bTLText a,
.vContentSec .vDataWrap a {
    letter-spacing: 0.4px;
    line-height: 1.4;
    font-size: var(--primary-size);
    color: var(--primary-color);
    transition: all .5s ease-in-out;
    text-decoration: underline;
}

.featuresData .data a:hover,
.vTlData .bTLText a:hover,
.vContentSec .vDataWrap a:hover {
    color: var(--seconday-color);
}

.vnFeatureRow .featuresData .custom-btn {
    margin-top: 56px;
}

/* Responsive CSS */
@media (max-width:1599px) {
    .vnFeaturesSec .vnFeatureRow {
        grid-gap: 80px;
    }
}

@media (max-width:1399px) {
    .vnFeaturesSec .vnFeatureRow {
        grid-gap: 60px;
        margin-top: 40px;
    }

    .featuresData .data>*:has(+ *),
    .vTlData .bTLText>*:has(+ *),
    .vContentSec .vDataWrap>*:has(+ *) {
        margin-bottom: 20px;
    }

    .featuresData .data ul li:not(:last-child),
    .vTlData .bTLText ul li:not(:last-child),
    .vContentSec .vDataWrap ul li:not(:last-child) {
        margin-bottom: 16px;
    }

    .vnFeatureRow .featuresData .custom-btn {
        margin-top: 45px;
    }

    .featuresData .data h3,
    .vTlData .bTLText h3,
    .vContentSec .vDataWrap h3 {
        font-size: 28px;
    }

    .featuresData .data h4,
    .vTlData .bTLText h4,
    .vContentSec .vDataWrap h4 {
        font-size: 22px;
    }

    .featuresData .data h5,
    .vTlData .bTLText h5,
    .vContentSec .vDataWrap h5 {
        font-size: 18px;
    }
}

@media (max-width:1199px) {
    .vnFeaturesSec .vnFeatureRow {
        grid-gap: 40px;
    }

    .featuresData .data ul li:not(:last-child),
    .vTlData .bTLText ul li:not(:last-child),
    .vContentSec .vDataWrap ul li:not(:last-child) {
        margin-bottom: 12px;
    }

    .featuresData .data>*:has(+ *),
    .vTlData .bTLText>*:has(+ *),
    .vContentSec .vDataWrap>*:has(+ *) {
        margin-bottom: 15px;
    }

    .vnFeatureRow .featuresData .custom-btn {
        margin-top: 35px;
    }

    .featuresData .data h3,
    .vTlData .bTLText h3,
    .vContentSec .vDataWrap h3 {
        font-size: 24px;
    }

    .featuresData .data h4,
    .vTlData .bTLText h4,
    .vContentSec .vDataWrap h4 {
        font-size: 20px;
    }
}

@media (max-width:991px) {
    .vnFeaturesSec .vnFeatureRow {
        grid-gap: 25px 20px;
    }

    .featuresData .data h3,
    .vTlData .bTLText h3,
    .vContentSec .vDataWrap h3 {
        font-size: 22px;
    }

    .featuresData .data>*:has(+ *),
    .vTlData .bTLText>*:has(+ *),
    .vContentSec .vDataWrap>*:has(+ *) {
        margin-bottom: 10px;
    }

    .featuresData .data ul li:not(:last-child),
    .vTlData .bTLText ul li:not(:last-child),
    .vContentSec .vDataWrap ul li:not(:last-child) {
        margin-bottom: 10px;
    }

    .vnFeatureRow .featuresData .custom-btn {
        margin-top: 25px;
    }
}

@media (max-width:767px) {
    .vnFeaturesSec .vnFeatureRow {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .featuresData .data h3,
    .vTlData .bTLText h3,
    .vContentSec .vDataWrap h3 {
        font-size: 22px;
    }

    .featuresData .data ul li::marker,
    .vTlData .bTLText ul li::marker,
    .vContentSec .vDataWrap ul li::marker {
        font-size: 20px;
    }
}

@media (max-width:575px) {

    .featuresData .data h3,
    .vTlData .bTLText h3,
    .vContentSec .vDataWrap h3 {
        font-size: 20px;
    }

    .featuresData .data h4,
    .vTlData .bTLText h4,
    .vContentSec .vDataWrap h4 {
        font-size: 18px;
    }

    .featuresData .data h5,
    .vTlData .bTLText h5,
    .vContentSec .vDataWrap h5 {
        font-size: 16px;
    }
}

/*--====================*** Vendor Features and Functions Section CSS Close From Here ***====================--*/
/*--====================*** Vendor Slider Section CSS Start From Here ***====================--*/
/* Slider */
.vnSliderSec .vnSwiperSlider {
    padding-inline: 80px;
    position: relative;
}

.vnSwiperSlider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.vnSwiperSlider .vnSliderItem {
    height: 412px;
    position: relative;
    z-index: 0;
    transform: scale(0.6602) translateX(208%);
    transition: all .6s linear;
    overflow: hidden;
    border-radius: 30px;
    filter: brightness(0.5);
}

.vnSwiperSlider .vnSliderItem.swiper-slide-next ~ .vnSliderItem {
    transform: scale(0.6602) translateX(-208%);
}

.vnSwiperSlider .vnSliderItem.swiper-slide-prev {
    transform: scale(0.81554) translateX(78%);
    z-index: 2;
    filter: brightness(0.8);
}

.vnSwiperSlider .vnSliderItem.swiper-slide-next {
    transform: scale(0.81554)translateX(-78%);
    z-index: 2;
    filter: brightness(0.8);
}

.vnSwiperSlider .vnSliderItem.swiper-slide-active {
    transform: scale(1) translateX(0);
    z-index: 9;
    box-shadow: 0px 0px 12px #5E5E5E29;
    filter: brightness(1);
}

.vnSwiperSlider .vnSliderItem img {
    width: 100%;
    height: 100%;
    object-position: left;
    object-fit: cover;
}

.vnSwiperSlider .vnSliderItem.swiper-slide-next img, .vnSwiperSlider .vnSliderItem.swiper-slide-next ~ 
.vnSwiperSlider .vnSliderItem.swiper-slide-next img img {
    object-position: right;
}
/* Slider Arrow */
.vnSwiperSlider .vnSliderArrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 3px solid #fff;
    transition: all .5s ease-in-out;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 45px));
    z-index: 10;
}

.vnSwiperSlider .vnSwiperPrevBtn.vnSliderArrow {
    left: 0;
}

.vnSwiperSlider .vnSwiperNextBtn.vnSliderArrow {
    right: 0;
}

.vnSwiperSlider .vnSliderArrow:hover {
    background-color: #fff;
}

.vnSwiperSlider .vnSliderArrow img {
    max-width: 12px;
    max-height: 18px;
    object-fit: contain;
    transition: all .5s ease-in-out;
}

.vnSwiperSlider .vnSliderArrow:hover img {
    filter: brightness(0);
}

/* Dots */
.vnSwiperSlider .vnSliderDots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 12px;
    margin-top: 72px;
    position: static;
}

.vnSwiperSlider .vnSliderDots .swiper-pagination-bullet {
    margin: 0 !important;
    width: 12px;
    height: 12px;
    background-color: #C6C6C6;
    border-radius: 100%;
    margin: 0 !important;
    cursor: pointer;
    transition: all .5s ease-in-out;
    opacity: 1;
}

.vnSwiperSlider .vnSliderDots .swiper-pagination-bullet.swiper-pagination-bullet-active, 
.vnSwiperSlider .vnSliderDots .swiper-pagination-bullet:hover {
    background-color: var(--seconday-color);
}

/* Slider Below Btn */

.vnSliderSec .custom-btn {
    margin: 70px auto 0;
    display: block;
    width: fit-content;
}

@media (max-width: 1599px) {
    .vnSwiperSlider .vnSliderItem {
        height: 360px;
    }
}

@media (max-width: 1399px) {
    .vnSwiperSlider .vnSliderItem {
        height: 309px;
        border-radius: 20px;
    }
}

@media (max-width: 1199px) {
    .vnSwiperSlider .vnSliderItem {
        height: 255px;
    }
}

@media (max-width: 991px) {
    .vnSliderSec .vnSwiperSlider {
        padding-inline: 60px;
    }
    .vnSwiperSlider .vnSliderItem {
        height: 245px;
    }
    .vnSwiperSlider .vnSliderItem,
    .vnSwiperSlider .vnSliderItem.swiper-slide-next ~ .vnSliderItem{
            transform: scale(0.6602) translateX(0%);
    }
    .vnSwiperSlider .vnSliderItem.swiper-slide-prev {
        transform: scale(0.81554) translateX(81%);
    }
    .vnSwiperSlider .vnSliderItem.swiper-slide-next{
        transform: scale(0.81554) translateX(-81%);
    }
    .vnSliderSec .custom-btn {
        margin: 50px auto 0;
    }
    .vnSwiperSlider .vnSliderArrow {
        width: 32px;
        height: 32px;
        transform: translateY(calc(-50% - 30px));
        border-width: 2px;
    }
    .vnSwiperSlider .vnSliderArrow img {
        max-width: 10px;
        max-height: 14px;
    }
    .vnSwiperSlider .vnSliderDots {
        grid-gap: 10px;
        margin-top: 50px;
    }
    .vnSwiperSlider .vnSliderDots .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

@media (max-width:767px) {
    .vnSliderSec .vnSwiperSlider {
        padding-inline: 36px;
    }
    .vnSwiperSlider .vnSliderItem.swiper-slide-prev {
        transform: scale(0.81554) translateX(93%);
    }
    .vnSwiperSlider .vnSliderItem.swiper-slide-next{
        transform: scale(0.81554) translateX(-93%);
    }
    .vnSliderSec .custom-btn {
        margin: 30px auto 0;
    }
    .vnSwiperSlider .vnSliderArrow {
        width: 25px;
        height: 25px;
        transform: translateY(calc(-50% - 16px));
    }
    .vnSwiperSlider .vnSliderArrow img {
        max-width: 6px;
        max-height: 10px;
    }
    .vnSwiperSlider .vnSliderDots {
        grid-gap: 8px;
        margin-top: 24px;
    }
    .vnSwiperSlider .vnSliderDots .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .vnSliderSec .vnSwiperSlider {
        padding-inline: 0;
    }
    .vnSwiperSlider .vnSliderArrow {
        display: none;
    }
    .vnSwiperSlider .vnSliderItem {
        height: 100%;
        border-radius: 10px;
        aspect-ratio: 16/9;
    }
}

/*--====================*** Vendor Slider Section CSS Close From Here ***====================--*/
/*--====================*** Vendor Tag Line Section CSS Start From Here ***====================--*/
.vTagLineSec .vTlRow {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    grid-gap: 80px;
    align-items: center;
}

.vTlData .bTLText {
    font-size: var(--primary-size);
    letter-spacing: 0.45px;
    line-height: 1.5;
    margin: 50px 0 45px;
}

.vTlData .bTLText p {
    margin: 0;
}

.vTlData .bTLText h5{
    font-weight: 500;
    margin: 0;
}

.vTlData .bTLText h5 + p{
    margin-top: 5px;
}


.vTlData .bTLText p:not(:last-child) {
    margin-bottom: 30px;
}

.vTlRow .vTlImg {
    overflow: hidden;
    border-radius: 30px;
    line-height: 0;
}

.vTlRow .vTlImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    line-height: 0;
}

/* Responsive CSS */
@media (max-width:1599px) {
    .vTagLineSec .vTlRow {
        grid-gap: 60px;
    }
}

@media (max-width:1399px) {
    .vTagLineSec .vTlRow {
        grid-gap: 45px;
    }

    .vTlData .bTLText {
        margin: 40px 0 35px;
    }

    .vTlData .bTLText p:not(:last-child) {
        margin-bottom: 20px;
    }
}

@media (max-width:1199px) {
    .vTagLineSec .vTlRow {
        grid-gap: 25px;
    }
}

@media (max-width:991px) {
    .vTagLineSec .vTlRow {
        grid-gap: 25px 15px;
    }

    .vTlData .bTLText {
        margin: 40px 0 25px;
    }

    .vTlRow .vTlImg {
        overflow: hidden;
        border-radius: 20px;
        line-height: 0;
    }
}

@media (max-width:767px) {
    .vTagLineSec .vTlRow {
        grid-template-columns: 1fr;
    }
}

@media (max-width:575px) {
    .vTlData .bTLText {
        margin: 32px 0 15px;
    }
}

/*--====================*** Vendor Tag Line Section CSS Close From Here ***====================--*/
/*--====================*** Vendor Reviews Section CSS Start From Here ***====================--*/
.serviceCreditSec + .section-light {
    background-color: #fff !important;
}

.vReviewsSec .main-heading {
    color: #000;
}

.vReviewsSec .vReviewsRow {
    --gap: 16px;
    margin: 0 calc(var(--gap)*(-1));
    margin-top: 72px;
}

.vReviewsSec .vReviewsRow .slick-slide {
    padding-inline: var(--gap);
    float: none;
    height: auto;
    padding-block: 5px;
}

.vReviewsSec .vReviewsRow .slick-track {
    display: flex;
}

.vReviewsSec .vReviewsRow .slick-slide > div {
    height: 100%;
}

/* Dots */
.vReviewsRow  .slick-dots {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 12px;
    margin-top: 30px;
}

.vReviewsRow  .slick-dots li {
    margin: 0 !important;
    width: 12px;
    height: 12px;
    background-color: #393939;
    border-radius: 100%;
    margin: 0 !important;
    cursor: pointer;
    transition: all .5s ease-in-out;
    opacity: 1;
}

.vReviewsRow  .slick-dots li button {
    display: none;
}

.vReviewsRow  .slick-dots li.slick-active {
    background-color: var(--seconday-color);
}
.vReviewsRow .vReviewsCol {
    background-color: #fff;
    border-radius: 32px;
    padding: 35px 30px;
    position: relative;
    box-shadow: 0px 0px 12px #C9C9C94D;
    height: 100%;
}

.vReviewsRow .vReviewsCol::after {
    content: '';
    position: absolute;
    top: 25px;
    right: 30px;
    width: 62px;
    height: 47px;
    background-image: url(../images/reviewQuote.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
}

.vReviewsCol .vUsrDetails {
    margin-bottom: 22px;
    width: 82%;
}

.vReviewsCol .vUsrDetails::after {
    content: '';
    display: block;
    border-radius: 66px;
    width: 40px;
    height: 3px;
    background-color: var(--seconday-color);
    margin-top: 8px;
}

.vReviewsCol .vUsrDetails .vUsrName {
    letter-spacing: 0.18px;
    font-size: var(--primary-size);
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 5px;
}

.vReviewsCol .vUsrDetails .vUsrCompany {
    letter-spacing: 0.16px;
    color: #747474;
    font-size: var(--default-size);
    line-height: 1.1;
    font-weight: 400;
    display: block;
}

.vReviewsRow .vReviewsCol .vUsrDesc {
    font-size: var(--default-size);
    letter-spacing: 0.24px;
    color: #3C3C3C;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

/* Responsive CSS */
@media (max-width:1399px) {
    .vReviewsSec .vReviewsRow {
        --gap: 12px;
        margin-top: 60px;
    }

    .vReviewsRow .vReviewsCol {
        border-radius: 28px;
        padding: 30px 25px;
    }

    .vReviewsRow .vReviewsCol::after {
        top: 20px;
        right: 25px;
        width: 52px;
        height: 37px;
    }
}

@media (max-width:1199px) {
    .vReviewsSec .vReviewsRow {
        --gap: 8px;
        margin-top: 60px;
    }

    .vReviewsRow .vReviewsCol {
        border-radius: 24px;
        padding: 25px 20px;
    }

    .vReviewsCol .vUsrDetails {
        width: 75%;
    }

    .vReviewsCol .vUsrDetails .vUsrName,
    .vReviewsCol .vUsrDetails .vUsrCompany,
    .vReviewsRow .vReviewsCol .vUsrDesc {
        font-size: 14px;
    }
}

@media (max-width:991px) {
    .vReviewsSec .vReviewsRow {
        --gap: 8px;
        margin-top: 40px;
    }

    .vReviewsRow  .slick-dots {
        grid-gap: 10px;
    }

    .vReviewsRow  .slick-dots li {
        width: 10px;
        height: 10px;
    }

}

@media (max-width:767px) {
    .vReviewsSec .vReviewsRow {
        --gap: 6px;
        margin: 40px 0 0;
    }

    .vReviewsRow .vReviewsCol {
        border-radius: 20px;
        padding: 20px 15px;
    }

    .vReviewsCol .vUsrDetails {
        margin-bottom: 15px;
        width: 100%;
    }

    .vReviewsRow .vReviewsCol::after {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 27px;
    }

    .vReviewsRow  .slick-dots {
        grid-gap: 8px;
        margin-top: 20px;
    }

    .vReviewsRow  .slick-dots li {
        width: 8px;
        height: 8px;
    }

}

@media (max-width:480px) {
    .vReviewsRow .vReviewsCol {
        width: 100%;
    }
}

/*--====================*** Vendor Reviews Section CSS Close From Here ***====================--*/
/*--====================*** Vendor Learn More Today Section CSS Start From Here ***====================--*/
.vContactSec {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

.vContactSec .vCFormData {
    background-color:var(--form-bg-color);
    width: 45%;
    color: #fff;
    padding: 55px 50px 70px;
}

.vCFormData .vContactForm .main-heading {
    color: #fff;
}

.vCFormData .vContactForm .vFieldsRow {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px 0;
    justify-content: space-between;
    margin-top: 50px;
}

.vContactForm .vFieldsRow .vField {
    width: calc(50% - 12.5px);
    line-height: 0;
}

.vContactForm .vFieldsRow .vField.fullField {
    width: 100%;
}

.vCFormData .vContactForm p {
    margin: 0;
}

.vContactForm .vFieldsRow .vField.fullField .aiowps-captcha-equation p {
    line-height: 1;
}

.vContactForm .vFieldsRow .vField.fullField .aiowps-captcha-equation p strong input {
    margin-top: 6px;
}

.vFieldsRow .vField label {
    display: block;
    letter-spacing: 0.16px;
    color: #FFFFFF;
    font-size: var(--default-size);
    line-height: 1.2;
    margin-bottom: 6px;
    font-weight: 400;
}

.vContactForm .vFieldsRow .vField input,
.vContactForm .vFieldsRow .vField select,
.vContactForm .vFieldsRow .vField textarea {
    width: 100%;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    outline: none;
    background-color: #fff;
    font-size: 16px;
    color: var(--font-primary);
    height: 51px;
    padding: 10px 15px;
    letter-spacing: 0.13px;
    list-style: 1.3;
}

.vContactForm .vFieldsRow .vField textarea {
    height: 114px;
    resize: none;
}

.vContactForm .vFieldsRow .vField select {
    appearance: none;
    background-image: url(../images/arrow-up.svg);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: right 15px center;
    padding-right: 32px;
    cursor: pointer;
}

.vContactForm .vFieldsRow .vField .wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.3px;
    margin-top: 5px;
    color: #f75e5e;
}

.vContactForm .vFieldsRow .vField .wpcf7-not-valid-tip + .wpcf7-not-valid-tip {
    display: none;
}


.vCFormData .vContactForm p:has(input[type="submit"]) {
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    grid-gap: 10px;
    align-items: center;
}

.vCFormData .vContactForm input[type="submit"] {
    max-width: 200px;
    width: 100%;
    height: 56px;
    cursor: pointer;
    letter-spacing: 0.27px;
    color: var(--form-btn-color);
    background-color: var(--seconday-color);
    border-style: none;
    outline: none;
    line-height: 1;
    font-size: var(--primary-size);
    font-weight: 700;
    transition: all .5s ease-in-out;
    border-radius: 6px;
}

.vCFormData .vContactForm p .wpcf7-spinner {
    background-color: var(--primary-color);
    margin: 0;
    min-width: 24px;
}

.vCFormData[style*="--seconday-color: #c7f266;"] .vContactForm p .wpcf7-spinner {
    background-color: #c7f266;
}

.vCFormData[style*="--seconday-color: #c7f266;"] .vContactForm p .wpcf7-spinner::before{
    background-color: #1e292a;
}

.vCFormData .vContactForm input[type="submit"]:hover {
    background-color: var(--primary-color);
    color: var(--btn-hover-white);
}

.vCFormData form .wpcf7-response-output {
    font-size: var(--default-size);
    text-align: center;
    margin: 30px 0 0;
    line-height: 1.3;
    padding: 12px 15px 10px;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width:1399px) {
    .vContactSec .vCFormData {
        width: 50%;
        padding: 45px 40px 60px;
    }

    .vCFormData .vContactForm .vFieldsRow {
        margin-top: 40px;
    }

    .vContactForm .vFieldsRow .vField {
        width: calc(50% - 10px);
    }

    .vCFormData .vContactForm p:has(input[type="submit"]) {
        margin: 50px auto 0;
    }
}

@media (max-width:1199px) {
    .vContactSec .vCFormData {
        padding: 35px 30px 50px;
    }

    .vCFormData .vContactForm p:has(input[type="submit"]) {
        margin: 40px auto 0;
    }

    .vFieldsRow .vField label {
        font-size: 15px;
    }
}

@media (max-width:991px) {
    .vContactSec .vCFormData {
        padding: 35px 30px 50px;
        width: 100%;
    }

    .vCFormData form .wpcf7-response-output {
        font-size: 14px;
        margin: 20px 0 0;
        padding: 10px;
    }
}

@media (max-width:575px) {
    .vContactSec .vCFormData {
        padding: 25px 20px 40px;
    }

    .vCFormData .vContactForm .vFieldsRow {
        grid-gap: 16px;
    }

    .vContactForm .vFieldsRow .vField {
        width: 100%;
    }
}

/*--====================*** Vendor Learn More Today Section CSS Close From Here ***====================--*/
/*--====================*** Service to Credit Unions Section CSS Start From Here ***====================--*/
.serviceCreditSec .main-heading {
    color: #000;
}

.serviceCreditSec .serviceCreditSubTitle {
    text-align: center;
    margin-top: clamp(25px, 2.5vw, 45px);
    color: #26A3DD;
    letter-spacing: 0.4px;
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
}

.serviceCreditSec .serviceCreditSubTitle span {
    color: #000;
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.26px;
}

.serviceCreditSec .serviceCreditSubTitle strong {
    font-size: 34px;
    letter-spacing: 0.34px;
}

.serviceCreditSec .serviceCreditRow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: clamp(16px, 1.75vw, 32px) clamp(10px, 1.75vw, 32px);
    margin-top: clamp(22px, 2.5vw, 35px);
}

.serviceCreditRow .serviceCreditCol {
    background-color: #fff;
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    border-radius: 17px;
}

.serviceCreditCol .serviceCreditName {
    font-size: 20px;
    letter-spacing: 0.2px;
    line-height: 1.3;
    font-weight: 500;
    color: #000;
}

@media (max-width:1599px){
    .serviceCreditCol .serviceCreditName {
        font-size: 19px;
    }
}

@media (max-width:1399px){
    .serviceCreditCol .serviceCreditName {
        font-size: 17px;
    }
    .serviceCreditSec .serviceCreditSubTitle {
        font-size: 36px;
    }
    .serviceCreditSec .serviceCreditSubTitle strong {
        font-size: 30px;
    }
    .serviceCreditSec .serviceCreditSubTitle span {
        font-size: 22px;
    }
}
@media (max-width:991px){
    .serviceCreditSec .serviceCreditRow {
        grid-template-columns: repeat(3, 1fr);
    }
    .serviceCreditCol .serviceCreditName {
        font-size: 15px;
    }
    .serviceCreditSec .serviceCreditSubTitle {
        font-size: 30px;
    }
    .serviceCreditSec .serviceCreditSubTitle strong {
        font-size: 26px;
    }
    .serviceCreditSec .serviceCreditSubTitle span {
        font-size: 18px;
    }
}
@media (max-width:575px){
    .serviceCreditSec .serviceCreditRow {
        grid-template-columns: repeat(2, 1fr);
    }
    .serviceCreditCol .serviceCreditName {
        font-size: 14px;
    }
}
/*--====================*** Service to Credit Unions Section CSS Close From Here ***====================--*/