.buyPackageSec{
    padding: 60px 0;
}
.packageDetailsWrapper{
    max-width: 970px;
    margin: auto;
    background: #F9FAFE;
    padding: 40px 0;
    border-radius: 20px;
}
.packageDetailsWrapper *{
    font-family: 'Inter' !important;
}
.packageSelected{
    max-width: max-content;
    padding: 6px 9px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #fff;
    margin: auto;
}
.packageSelected span{
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.packageSelected p{
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
}
.packageSelected.green{
    border-color: #B3F6CD;
    background: #E3FFEE;
}
.packageSelected.blue{
    border-color: #E4F3FF;
    background: #E4F3FF;
}
.packageSelected.red{
    border-color: #FFEBEB;
    background: #FFEBEB;
}
.packageSelected.green span{
    background: #00B646;
}
.packageSelected.blue span{
    background: #1B97FF;
}
.packageSelected.red span{
    background: #D32F2F;
}
.packageSelected.green p{
    color: #00B646;
}
.packageSelected.blue p{
    color: #1B97FF;
}
.packageSelected.red p{
    color: #D32F2F;
}
.packageDetailsWrapper h1{
    font-weight: 500;
    font-size: 28px;
    line-height: 150%;
    text-align: center;
    margin: 16px auto 15px;
    max-width: 590px;
    color: #362929;
}
.packageDesc{
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #707884;
}
.packageDetails p{
    display: flex;
    gap: 13px;
    margin-top: 11px;
    align-items: center;
}
.packageDetails span{
    font-size: 14px;
    line-height: 100%;
    color: #0F172A;
    max-width: 386px;
    width: 100%;
}
.packagePrice span{
    font-weight: 600;
    line-height: 150%;
}
.packageDetails {
    max-width: 423px;
    margin: 35px auto 0;
}
p.packagePrice {
    align-items: flex-start;
}
.timer{
    display: flex;
    align-items: center;
    text-align: center;
    gap: 6px;
    font-family: CircularStd;
    font-weight: 450;
    font-style: italic;
    font-size: 13px;
    line-height: 100%;
    justify-content: center;
    color: #FD8004;
    margin: 20px 0 25px;
}
.packageDetailsWrapper button{
    padding: 12px 20px;
    background: #233F8C;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    color: #FFFFFF;
    outline: none;
    border: none;
    display: block;
    max-width: max-content;
    margin: auto;
    cursor: pointer;
}
.packageDetailsWrapper button:hover{
    background: #3358be;
}
@media (max-width:575px) {
    .buyPackageSec {
        padding: 100px 0;
    }
    .packageDetailsWrapper{
        padding: 40px 15px;
    }
    .packageSelected p{
        font-size: 12px;
    }
    .packageDetailsWrapper h1{
        font-size: 22px;
    }
    .packageDesc{
        line-height: 140%;
    }
}