:root{
    --dark-blue: #02294E;
    --blue: #053764;
    --light-blue: #F7F9FA;
    --pastel-blue: #EBEFF3;
    --orange: #FC8602;
    --light-orange: #F5F0EB;
    --gray: #757272;
}


.p-desc-container{
    padding: 60px 0;
    padding-bottom: 30px;
}

.pi-wrapper{
    background-color:  #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px #00000025;
    padding: 40px;
    
}

@media screen  and (max-width: 576px){
    .pi-wrapper{
        
        padding: 20px;
        
    } 
}

.pi-container{
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.pi-img{
    max-width: 200px;
    width: 100%;   
}



.pi-info-conatiner{
    display: flex;
    gap: 30px;
}



.pi-btn-wrapper{
    display: flex;
    justify-content: end;
    gap: 10px;
}

.pi-head{
    font-size: 1.2rem;
    color: var(--blue);
    font-weight: 600;
}

.pi-card-heading{
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 2px;
    text-transform: capitalize;
}

.pi-price{
    font-size: 1.4rem;
    color: var(--blue);
    font-weight: 600;
}

.pi-card-company{
    font-size: 1.2rem;
    font-size: 600;
    opacity: 0.8;
}

.offer{
    margin-bottom: 5px;
    font-weight: 600;
}

.tick{
    color: #0BAA2E;
    font-weight: 600;
    margin-right: 5px;
    
}

.offer-line{
    margin-bottom: 2px;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.pi-card-btn{
    padding: 6px 12px !important;
}

.p-info-section{
    padding: 30px 0;
    padding-top: 0px;
}



/* price card section */
.price-card-container{
    border: 1px solid var(--blue);
    border-radius: 7px;
    padding: 20px;
    padding-top: 30px;
}

.pr-card-price{
    font-size: 1.6rem;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.pr-card-plan{
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    margin: 10px 0;
    margin-bottom: 20px;
}

.feature-p{
    font-size: 0.95rem;
    margin-bottom: 5px;
    
}

.p-btn-wrapper{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.p-btn-wrapper a {
    width: 100%;
}

.p-btn{
   width: 100%;
}


/* feature section */
.feature-wrapper{
    border: 1px solid var(--blue);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.feature-wrapper p {
    margin: 0;
    text-align: center;
}

.feature-head{
    font-weight: 600;
    font-size: 1.2rem;
}

.feature-info{
    opacity: 0.8;
}


/* specification section */

.specifications hr{
 margin: 0;
 color: var(--light-blue) !important;
}
.spec{
    margin: 0;
    padding: 10px;
}

.spec-container{
    display: flex;
}

.specification-head{
   width: 20%;
    background-color: var(--blue);
    color: #fff;
}

.spec-para{
    color: var(--dark-blue);
}

.pi-pricing,  .pi-features, .pi-specifications, .pi-alternative{
    display: none;
}

.active{
    display: block;
}


.pi-pricing{
    animation: zoomIn 0.4s   1  ease-out;
}

@keyframes zoomIn {
    0%{
        transform: scale(0);
        opacity: 0;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}


.pi-features, .pi-specifications, .pi-alternative{
    animation: slideIn 0.4s   1  ease-out;
}

@keyframes slideIn {
    0%{
        transform: translateX(200px);
        opacity: 0;
    }

    100%{
        transform: translateX(0);
        opacity: 1;
    }
}

@media screen and (max-width: 991px) {
    .p-desc-container{
        padding-top: 90px;
    }
    .pi-container{
        flex-direction: column;
    }
    .pi-info-conatiner{
        flex-direction: column;
    }

    
.pi-price{
    padding-bottom: 10px;
    border-bottom: 0.7px solid var(--gray);
    
}

.pi-btn-wrapper{
    margin-top: 20px;
    justify-content: start;
    
}

.specification-head{
    width: 30%;
     background-color: var(--blue);
     color: #fff;
 }
}

@media screen and (max-width: 766px){
    .spec-container{
        
        flex-direction: column;
    }
    .specification-head{
        width: 100% ;
         
         
     } 
}

/* alternatives */
.p-card-wrapper{
    border: 5px solid #fff;
}

.p-card-wrapper{
    border: 1px solid var(--blue);
}


/*#product-showing{
    background-color: var(--light-blue);
    padding: 60px 0;
    
    
}

#show-product-start {
    background-color: #fff;
    padding: 50px;
    box-shadow: 0px 0px 12px #00000015;
    border-radius: 10px;
}*/

