.all-plan-bg {
    background-image: url(../images/plan.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.custom-shape-divider-bottom-1743763719 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1743763719 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 209px;
}

.custom-shape-divider-bottom-1743763719 .shape-fill {
    fill: #FFFFFF;
}

.all-plan-bg img {
    width: 100%;
    border-radius: 50%;
    border: #FFFFFF 2px solid;
    padding: 15px;
    box-shadow: rgba(160, 160, 160, 0.134) 0px 54px 55px, rgba(138, 137, 137, 0.12) 0px -12px 30px, rgba(24, 23, 23, 0.12) 0px 4px 6px, rgba(7, 7, 7, 0.241) 0px 12px 13px, rgba(255, 249, 249, 0.09) 0px -3px 5px;
}

.all-plan-bg h2 {
    color: #FFFFFF;
    font-size: 40px;
}

.all-plan-bg .row {
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;

}


/* animate bg */
.all-plan-bg .area {

    width: 100%;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;


}

.all-plan-bg .circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.all-plan-bg .circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: #ffffff;
    animation: animate 15s linear infinite;
    bottom: -150px;

}

.all-plan-bg .circles li:nth-child(1) {
    left: 25%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}


.all-plan-bg .circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.all-plan-bg .circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.all-plan-bg .circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.all-plan-bg .circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.all-plan-bg .circles li:nth-child(6) {
    left: 75%;
    width: 40px;
    height: 40px;
    animation-delay: 3s;
}

.all-plan-bg .circles li:nth-child(7) {
    left: 35%;
    width: 40px;
    height: 40px;
    animation-delay: 7s;
}

.all-plan-bg .circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.all-plan-bg .circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.all-plan-bg .circles li:nth-child(10) {
    left: 85%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
    animation-duration: 11s;
}
.choose-plan .main-plan{
    position: relative;
}
.choose-plan .plan-btn{
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.choose-plan .main-plan{
    height: 500px;
}
@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

@media (max-width:991px) {
    .all-plan-bg {
        height: 60vh;
    }
}