.pricingbg {
    background-image: url(img/2x/protfoliobg.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}

.pricingbgg {
    background-color: rgba(0, 0, 0, 0.5);

    backdrop-filter: blur(50%);
}

.pricingbg1 {
    border: 1px solid black;
    background-color: black;
}

#happyclientpic {
    border-radius: 50%;
    width: 120px;
    height: 120px;
}

.pricingplans {
    font-size: 150px;
}

.pricingplans1 {
    font-size: 35px;
}

.happyclient {
    font-size: 60px;
    padding: 3px;
    border-radius: 15px;
    background-color: rgb(26, 25, 25);
}
.drop1 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: auto;
    margin-top: -40px;
}
.drop1 a button{
    font-size:35px;
   padding: 0 40px;
}
/* .pricing   */
@media screen and (max-width:1200px) {
    .pricingplans {
        font-size: 100px;
    }

    .pricingplans1 {
        font-size: 35px;
    }
}

@media screen and (max-width: 992px) {
    .pricingplans1 {
        font-size: 32px;
    }

    .happyclient {
        font-size: 40px;
    }
}

@media screen and (max-width:767px) {
    .pricingplans {
        font-size: 80px;
    }

    .pricingplans1 {
        font-size: 25px;
    }

    .happyclient {
        font-size: 50px;
    }
}

@media screen and (max-width:508px) {
    .pricingplans {
        font-size: 48px;
    }
    .drop1{
        margin-top: -30px;
    }
    .drop1 a button{
        font-size: 18px;
        padding: 0 20px;
    }
}

/* happyclientpic */
@media screen and (max-width: 992px) and (min-width: 767px) {
    #happyclientpic {
        width: 90px;
        height: 90px;
    }
}

@media screen and (max-width: 559px) {
    .happyclient {
        font-size: 40px;
    }
}



@media screen and (max-width: 448px) {
    .pricingplans1 {
        font-size: 20px;
    }
}

@media screen and (max-width: 435px) {
    .happyclient {
        font-size: 30px;
    }
}

@media screen and (max-width: 400px) {
    .happyclient {
        font-size: 30px;
    }
}

@media screen and (max-width:370px) {
    .happyclient {
        font-size: 30px;
    }
}

@media screen and (max-width: 367px) {
    .pricingplans1 {
        font-size: 15px;
    }
}

/* pricingplan card */


.wrapper {
    max-width: 1090px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: space-between;
}

.wrapper .table {
    background: #fff;
    width: calc(33% - 20px);
    padding: 30px 30px;
    position: relative;
    box-shadow: 2px 6px 8px black;
    /* rgba(0,0,0,0.1); */
}

@media (max-width: 1020px) {
    .wrapper .table {
        width: calc(50% - 20px);
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .wrapper .table {
        width: 100%;
    }
}

.table .price-section {
    display: flex;
    justify-content: center;
}

.price-section .price-area {
    height: 120px;
    width: 120px;
    background: #ffd861;
    border-radius: 50%;
    padding: 2px;
}

.price-section .price-area .inner-area {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    color: #fff;
    line-height: 117px;
    text-align: center;
    position: relative;
}

.price-area .inner-area .text {
    font-size: 25px;
    font-weight: 400;
    position: absolute;
    top: -10px;
    left: 17px;
}

.price-area .inner-area .price {
    font-size: 30px;
    font-weight: 500;
    position: relative;
    top: -10px;
}

.table .package-name {
    width: 100%;
    height: 2px;
    background: #ffecb3;
    margin: 35px 0;
    position: relative;
}

.table .package-name::before {
    position: absolute;
    content: "Basic";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    font-size: 25px;
    padding: 0 10px;
    font-weight: bolder;
}

.table .features li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.features li .list-name {
    font-size: 15px;
    font-weight: 400;
}

.features li .icon {
    font-size: 15px;
}

.features li .icon.check {
    color: #2db94d;
}

.features li .icon.cross {
    color: #cd3241;
}

.table .btn {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.table .btn button {
    width: 80%;
    height: 50px;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.basic .price-area,
.basic .inner-area {
    background: #ffd861;
}

.basic .btn button {
    background: #fff;
    color: #ffd861;
    border: 2px solid #ffd861;
}

.basic .btn button:hover {
    border-radius: 6px;
    background: #ffd861;
    color: #fff;
}

.starter .price-area,
.starter .inner-area {
    background: #a26bfa;
}

.starter .btn button {
    background: #fff;
    color: #a26bfa;
    border: 2px solid #a26bfa;
}

.starter .btn button:hover {
    border-radius: 6px;
    background: #a26bfa;
    color: #fff;
}

.premium .price-area,
.premium .inner-area {
    background: #43ef8b;
}

.premium .btn button {
    background: #fff;
    color: #43ef8b;
    border: 2px solid #43ef8b;
}

.premium .btn button:hover {
    border-radius: 6px;
    background: #43ef8b;
    color: #fff;
}

.basic .package-name {
    background: #ffecb3;
}

.starter .package-name {
    background: #a26bfa;
}

.premium .package-name {
    background: #43ef8b;
}

.basic .package-name::before {
    content: "Basic";
}

.starter .package-name::before {
    content: "Starter";
}

.premium .package-name::before {
    content: "Premium";
}

.basic ::selection,
.basic .price-area,
.basic .inner-area {
    background: #ffd861;
}

.starter ::selection,
.starter .price-area,
.starter .inner-area {
    background: #a26bfa;
}

.premium ::selection,
.premium .price-area,
.premium .inner-area {
    background: #43ef8b;
}

.customvideo1 {
    background-image: linear-gradient(to right, aqua, rgba(70, 70, 196, 0.94));
}

/* .btn button{
    background-image: linear-gradient(to right,aqua,rgba(70, 70, 196, 0.94));
} */
.customvideo .btn button {
    background: #fff;
    color: rgba(70, 70, 196, 0.94);
    border: 2px solid rgba(70, 70, 196, 0.94);
    margin-top: 110px;
}

.customvideo .btn button:hover {
    border-radius: 6px;
    background-image: linear-gradient(to right, aqua, rgba(70, 70, 196, 0.94));
    color: #fff;
}

.customvideo3 {
    margin-top: 110px;
}