/* Start custom CSS for html, class: .elementor-element-c3d3658 */*{
    margin: 0px;
    padding: 0px;
    font-family: poppins;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
::selection{
    background-color: #fed000;
    color: #242424;
}
#pricing-table{
display: flex;
justify-content: center; 
flex-direction: column;
align-items: center;
width: 100%;
min-height: 100vh;
}
.price-box-container{
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}
.price-box{
    margin: 10px;
    width: 1000px;
    border-radius: 5px;
    height: auto;
}
.box-top-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    border: 1px solid #ebebeb;
    border-bottom: none;
    position: relative;
}
 
.plan-name{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 5px;
}
.plan-name strong{
    color:#19181e;
    font-size: 1.5rem;
    margin: 5px 0px;
}
.plan-name span{
    color: #2b2a31;
    font-size: 0.8rem;
}
.plan-img{
    width:160px;
    height:117px;
}
.plan-img img{
    width:100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.price-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5px;
}
.price strong{
    font-size: 4rem;
    color: #19181e;  
}
.price span{
    font-size: 0.8rem;
    padding: 0px;
    margin: 0px;
    color: #292929;
    font-weight: 500;
}
.per-month{
    font-size: 0.8rem;
    color: #2b2a31;
}
.box-features-section{
    border-top: 1px solid #c9c9c9;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    border: 1px solid #ebebeb;
    border-top: 1px solid #c7c7c7;
}
.features-box{
    width: 100%;
    display: flex;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    
}
 
.features-box i{
    color: #462ebd;
    margin-right: 7px;
    font-size: 0.9rem;
}
.features-box span{
    color: #242424;
    font-size: 0.8rem;
}
.features-box:hover{
    background-color: #f6f6f7;
    transition: all ease 0.3s;
}
 
.feature-details{
    position: absolute;
    bottom:45px;
    left: 50%;
    transform: translateX(-50%);
    width:100%;
    height: auto;
    padding: 10px;
    background-color: #242424;
    color: #ebebeb;
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.10);
    display: none;
    animation: fade 0.2s;
}
.feature-details:after{
    content: '';
    width:0px;
    height: 0px;
    border-bottom: 5px solid transparent;
    border-left: 7px solid transparent;
    border-top: 7px solid #242424;
    border-right: 5px solid transparent;
    position: absolute;
    left: 50%;
    top: 100%;
}
.features-box:hover .feature-details{
    display:block;
}
.chose-plan-btn{
    margin-top: 20px;
    font-size: 0.9rem;
    color: #252236;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.chose-plan-btn:hover{
    color: #462ebd;
    border-bottom: 1px solid #462ebd;
    transition: all ease 0.2s;
}
@keyframes fade{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.top-bar{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    border-radius: 20px;
    padding: 10px 25px;
    color: #ffffff;
    background-color: #2c2c2c;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.15);
 
}
.popular .box-top-section{
    background-color: #fed000;
}
.price-box:hover .box-top-section,
.price-box:hover .box-features-section{
    box-shadow: 2px 2px 30px rgba(0,0,0,0.09);
    transition: all ease 0.2s;
}
@media(max-width:1160px){
    .price-box-container{
        width:800px
    }
    .price-box{
        flex-grow: 1;
    }
}
@media(max-width:810px){
   .price-box-container{
       width: 100%;
   } 
}
@media(max-width:570px){
    .price-box{
        width:100%;
        margin: 20px 10px;
        box-shadow: 2px 2px 30px rgba(0,0,0,0.05);
    }
}/* End custom CSS */