/*-------------------------------------
================ sec-1 starts =============
-------------------------------------- */
.pricingLandingPage .p {
    color: #6b7280;
    font-size: 14px !important;
}
.hero-img {
    width: 100%;
}

.sec-1 {
    background-image: url('https://cdn.transactbridge.com/pricing/hero-bg-img.webp');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

@media (min-width: 768px) {
    .hero-img {
        width: 50%;
    }
}

@media (min-width: 968px) {
    .pricingLandingPage .p {
        font-size: 16px !important;
    }
}

/*-------------------------------------
================ sec-1 ends =============
-------------------------------------- */

/*-------------------------------------
================ sec-2 starts =============
-------------------------------------- */
.sec-2 {
    background-color: #f6f6f6;
}

.pricing-card {
    border-radius: 8px;
}

.info-card {
    border-radius: 8px;
}
@media (min-width: 1200px) {
    .sec-2 .container {
        padding: 0 10rem;
    }
}

/*-------------------------------------
================ sec-2 ends =============
-------------------------------------- */

/*-------------------------------------
================ sec-3 starts =============
-------------------------------------- */
/* .sec-3 .simpleCard img, */
.sec-8 .simpleCard img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.sec-3 .tb-btn.btn-border-primary,
.sec-7 .tb-btn.btn-border-primary,
.sec-8 .tb-btn.btn-border-primary {
    color: #001626;
    border: 1px solid #deecf6;
}

.sec-3 .tb-btn.btn-border-primary:hover,
.sec-7 .tb-btn.btn-border-primary:hover,
.sec-8 .tb-btn.btn-border-primary:hover {
    color: var(--bs-white) !important;
}
.sec-8 .simpleCard p {
    text-align: left;
}

.sec-3 .simpleCard {
    position: relative;
    border-radius: 12px;
    height: 360px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}
.sec-3 .simpleCard img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.4s ease;
}
.sec-3 .simpleCard .card-content {
    position: absolute;
    opacity: 0;
    transition: all 0.3s ease;
}
.sec-3 .simpleCard.active .card-content {
    opacity: 1;
}
.sec-3 .simpleCard.active img {
    height: 260px;
}
.pricingLandingPage .card-content .p {
    font-size: 12px !important;
}

@media (max-width: 768px) {
    .sec-3 .simpleCard {
        height: auto;
    }

    .sec-3 .simpleCard img {
        height: 220px !important;
    }

    .sec-3 .simpleCard .card-content {
        position: static;
        opacity: 1 !important;
        transform: none !important;
    }
}
@media (min-width: 1200px) {
    .sec-3 .container {
        padding: 0 10rem;
    }
}
/*-----------------------------------------
=============== sec-3 end ===============
------------------------------------------*/

/*-------------------------------------
================ sec-4 starts =============
-------------------------------------- */
.sec-4 {
    position: relative;
    overflow: hidden;
}

.sorContentImg {
    position: relative;
}

.sorContentImg img {
    position: relative;
    left: -26px;
}

@media (min-width: 992px) {
    .sorContentImg img {
        position: relative;
        /* left: -150px; */
    }
}

/*-------------------------------------
================ sec-4 ends =============
-------------------------------------- */

/*-----------------------------------------
   =============== sec-5 start ===============
   ------------------------------------------*/

.logo-strip  {
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    gap: 65px;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}
.logo {
    height: 18px;
    width: auto;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media(min-width:768px){
    .logo-track {
    gap: 100px;
}
}
@media(min-width:1200px){
    .logo-track {
    gap: 150px;
}
    .logo {
    height: 28px;
    width: auto;
}
}


/*-----------------------------------------
=============== sec-5 end ===============
------------------------------------------*/

/*-----------------------------------------
   =============== sec-6 start ===============
   ------------------------------------------*/
.sec-6 .card {
    padding: 1.5rem;
}

.morIcons {
    margin-bottom: 5rem !important;
}
.icon-bg {
    font-size: 24px;
    border-radius: 50%;
    min-width: 45px;
    width: 45px;
    display: flex;
    min-height: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: var(--colorBlue);
}
/*-----------------------------------------
=============== sec-6 end ===============
------------------------------------------*/
/*-----------------------------------------
   =============== sec-7 start ===============
   ------------------------------------------*/

.sec7-bg {
    background-color: #f6f6f6;
}
.sec-7 .card {
    border: none;
}

.pricing-steps {
    width: 100%;
    justify-content: center;
}

.step-line {
    position: relative;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: space-around;

    background-image: url('https://cdn.transactbridge.com/pricing/step-line-img.webp');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-color: #007aff;

    border-radius: 10px;

    animation: arrowMove 6s linear infinite;
}
@keyframes arrowMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 0;
    }
}
.step {
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    position: relative;
    top: 0px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.step.active {
    background: #fff;
}
@media (min-width: 768px) {
    .step-line {
        background-position: -9rem;
    }

    .step.active {
        background: #fff;
        left: 21px;
    }
}
@media (min-width: 992px) {
    .sec-7 .card {
        border-top-left-radius: 10px !important;
        border-top-right-radius: 10px !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    .step-line {
        justify-content: flex-start;

        gap: 13.8rem;
    }
}
@media (min-width: 1200px) {
    .step-line {
        gap: 16.8rem;
    }
}
@media (min-width: 1400px) {
    .step-line {
        gap: 19.7rem;
    }
}

/*-----------------------------------------
=============== sec-7 end ===============
------------------------------------------*/

/*-------------------------------------
 ================ sec-8 starts =============
 -------------------------------------- */

.sec-8 .tb-btn.btn-lg {
    padding: 0 0.5rem;
}
@media (min-width: 576px) {
    .sec-8 .tb-btn.btn-lg {
        padding: 0 1rem;
    }
}

/*-------------------------------------
 ================ sec-8 ends =============
---------------------------------------*/
/*-------------------------------------
 ================ sec-9 starts =============
 -------------------------------------- */

.comparison-box {
    background: #f6f6f6;
    border-radius: 12px;
}
.comparison-box .h6 {
    font-size: 10px;
}

.feature-box {
    border-radius: 8px;
    font-weight: 500;
    color: #001626 !important;
}
.pricingLandingPage .feature-box {
    font-size: 8px !important;
}

.feature-box.center {
    display: flex;
    align-items: center;
}

.brand-col img {
   max-width: 70px;
}
.checkIcon{
color: #4EBC67; 
font-size: 18px; 
height: 10px
}

@media (min-width: 976px) {
    .pricingLandingPage .feature-box {
        font-size: 12px !important;
    }
    .comparison-box .h6 {
        font-size: 16px;
    }
    .brand-col img {
    max-width: 110px;
    }

    .checkIcon{ 
      font-size: 28px; 
    }
}

@media (min-width: 1200px) {
    .pricingLandingPage .feature-box {
        font-size: 14px !important;
    }
}

/*-------------------------------------
================ sec-9 ends =============
-------------------------------------- */

/*-------------------------------------
=============== Sec-10 start ===============
--------------------------------------*/
.sec-10 .bg-wrapper {
    background-image: url('https://cdn.transactbridge.com/pricing/banner.webp');
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom;
    border-radius: 0 0 8px 8px;
}

.sec-10 .bg-img-container {
    max-height: 400px;
    height: 70vh;
}
.sec-10 .tb-btn.btn-lg {
    padding: 0 0.5rem;
}
@media (min-width: 576px) {
    .sec-10 .bg-img-container {
        max-height: unset;
        height: unset;
    }
    .sec-10 .tb-btn.btn-lg {
        padding: 0 1rem;
    }
}
@media (min-width: 576px) and (max-width: 991px) {
    .sec-10 .bg-wrapper {
        border-radius: 0 8px 8px 0;
    }
}

@media (min-width: 992px) {
    .sec-10 .container .row {
        height: 350px;
    }
    .sec-10 .container .row .content {
        height: 100%;
    }
    .sec-10 .content-text {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .sec-10 .bg-wrapper {
        background-image: url('https://cdn.transactbridge.com/pricing/banner.webp');
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        border-radius: 0 8px 8px 0;
    }
}
/*-----------------------------------------
=============== Sec-10 end ===============
------------------------------------------*/
