.pricingSec{
    padding: 25px 0;
}
.pricingTop h1,
.pricingTop h2{
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 12px;
    color: #121212;
}
.pricingTop .pricing-head{
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 12px;
    color: #121212;
}
.pricingTop p{
        font-size: 15px;
    line-height: 155.187%;
    text-align: center;
    color: #3F3F3F;
}
.pricingCardsOuter{
    display: flex;
    align-items: center;
    gap: 4px;
    max-width: max-content;
    margin: 15px auto 0;
    padding: 2px 12px;
    background: #FFF4E8;
    border-radius: 3px;
}
.pricingCardsOuter p{
    font-weight: 400;
    font-size: 13px;
    line-height: 100%;
    color: #121212;
}
.pricingCardsWrapper{
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
}
.singlePricingCard{
    padding: 28px 12px 20px;
    max-width: 254px;
    width: 100%;
    border: 1.3px solid #D1F0F0;
    border-radius: 5px;
    transition: all ease .2s;
    position: relative;
}
.singlePricingCard:hover{
    border: 1.3px solid #046761;
    background: #F8FFFE;
    transform: scale(1.02);
}
.singlePricingCard.free:hover{
    border-color: transparent;
    background: #F8FFFE;
    transform: scale(1);
}
.cardTag{
    padding: 4px 10px;   
    background: #05ADA3;
    border-radius: 3px;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    color: #fff;
    max-width: max-content;
}
.cardPrice{
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    color: #121212;
    margin: 20px 0 9px;
}
.cardPrice span{
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: #667E9F;
    margin-left: -5px;
}
.cardPrice span.decorated{
    font-size: 18px;
    line-height: 100%;
    text-decoration: line-through;
    color: #121212;
    margin: 0;
}
.cardfeature{
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: #121212;
    white-space: nowrap;
}
.cardfeature.grey{
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: #667E9F;
    margin-top: -4px;
    margin-bottom: 24px;
}
.cardUsps{
    list-style: none;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid #D1F0F0;
    min-height: 236px;
}
.cardUsps li{
    position: relative;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #121212;
    padding-left: 24px;
    margin-top: 15px;
    line-height: 120%;
}
.cardUsps li:first-child{
    margin-top: 0;
}
.cardUsps li::before {
    position: absolute;
    content: '';
    background: url(../images/check-mark.svg);
    width: 20px;
    height: 20px;
    left: 0;
    top: -2px;
    background-repeat: no-repeat;
}
.cardUsps li.cross::before {    
    background: url(../images/cross-red.svg);
    width: 20px;
    height: 20px;
    left: 0;
    top: -2px;
    background-repeat: no-repeat;
}
.cardUsps li strong{
    font-weight: 600;   
}
.singlePricingCard .subscribeNowBtn{
    padding: 10px;
    max-width: 100%;
    width: 100%;
    background: #05ADA3;
    border-radius: 2px;
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    color: #FFFFFF;
    justify-content: center;
    margin: 30px auto 10px;
}
.singlePricingCard .subscribeNowBtn img{
    width: 33px;
    height: 33px;
}
.botDesc{
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    color: #121212;
    display: flex;
    align-items: center;
    gap: 3px;
}
.botDesc.orange{
    color: #ff6000;
}
.trustSecPrice{
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F2FAFA;
    justify-content: center;
}
.trustSecPrice p{
    font-size: 13px;
    line-height: 100%;
    color: #121212;
}
.trustSecPrice p strong{
    font-weight: 600;
}
.trustSecPrice span{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #121212;
}
.trusteesSec{
    margin: 40px 0 80px;
}
.trusteesSec .logosSlide {
    display: inline-block;
    animation-name: slide;
    animation-duration: 75s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.trusteesSec .logos:hover .logosSlide {
    animation-play-state: paused;
}

.trusteesSec .logos {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    margin: 50px 0px 0px;
}
.trusteesSec .logos::before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
    height: 100%;
    width: 40px;
    z-index: 2;
}
.trusteesSec .logos::after {
    content: "";
    top: 0;
    right: 0;
    position: absolute;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    height: 100%;
    width: 40px;
    z-index: 2;
}
@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
.trusteesSec .logosSlide img {
    margin: 0 12.5px;
}
.singlePricingCard .absolTag{
    position: absolute;
    left: 50%;
    top: -10px;
    padding: 4px 7px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
    background: #E23659;
    font-weight: 700;
    font-size: 12px;
    line-height: 150%;
    transform: translateX(-50%);
    color: #fff;
    min-width: max-content;
}
.singlePricingCard .absolTag.orange{
    background: #FDA325;
}
@media (max-width: 991px) {
    .pricingCardsWrapper{
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .trustSecPrice{
        flex-direction: column;
        align-items: center;
    }
    .trustSecPrice span{
        display: none;
    }
    .trustSecPrice p{
        position: relative;
        padding-left: 14px;
    }
    .trustSecPrice p::before{
        position: absolute;
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #121212;
        left: 0;
        top: 4px;
    }
    .pricingTop h1, 
    .pricingTop h2{
        font-size: 22px;
    }
    .pricingTop p{
        font-size: 12px;
    }
    .pricingSec.popup{
        padding: 0;
    }
}