﻿

.packages {
    margin: 15px;
    width: 26%;
    padding-bottom: 4em;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 13px;
    border: 1px solid #e2d4e1;
    flex-wrap: wrap;
}

.scondprice {
    box-shadow: 0 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.text2 {
    background: #ffffff;
    color: #f6cd46;
    border-radius: 15px;
    padding: 5px 15px;
    width: 50%;
    margin: 8px auto;
}

.text2price {
    background: #ffffff;
    color: #5d5de2;
    border-radius: 15px;
    padding: 5px 15px;
    width: 50%;
    margin: 8px auto;
    font-weight: 500;
    font-size: 15px;
}

.pricingcounrty {
    width: auto;
    height: 25px;
    font-size: 13px;
    margin: auto;
    border-radius: 5px;
}

.text1 {
    background: #ffffff;
    color: #f6cd46;
    border-radius: 15px;
    padding: 5px 15px;
    width: 50%;
    margin: 8px auto;
}

.list li {
    list-style: none;
    border-bottom: 1px solid #f4f4f4;
    padding-inline-start: 0;
    border-width: 1px;
    padding: 15px;
    text-align: left
}

.toggle-btn {
    font-weight: 600
}

.first {
    /* margin-top: 10px; */
    border-top: 1px solid #f4f4f4;
}

.bg-color1 {
    background: #fbeeee;
    width: 100%;
    border-radius: 12px 12px 0px 0px;
    margin-top: 0px !important;
    border-bottom: 1px solid #fddfdf;
    padding: 22px 0px 20px;
}

.bg-color2 {
    background: #e4ecf9;
    width: 100%;
    border-radius: 12px 12px 0px 0px;
    margin-top: 0px !important;
    border-bottom: 1px solid #cad4f3;
}

.bg-color3 {
    background: #dbfedc;
    width: 100%;
    border-radius: 12px 12px 0px 0px;
    margin-top: 0px !important;
    border-bottom: 1px solid #fddfdf;
}


.list {
    width: 100%;
}

ol,
ul {
    padding: 0;
}

.top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input,
.switch {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 10px;
}

.pricingbtn {
    bottom: 16em;
    position: absolute
}


.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 25px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cdd5de;
    -webkit-transition: 0.4s;
    box-shadow: 2px 6px 25px #1e232124;
    transform: translate(0px, 0px);
    transition: 0.6s ease transform, 0.6s box-shadow;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 3px;
        background-color: #ffffff;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

input:checked + .slider {
    background-color: #50bfe6;
}

input:focus + .slider {
    box-shadow: 0 0 1px #50bfe6;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.package-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


.text1 {
    display: none;
}

.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 25px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #bbc5d4;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 5px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #5d5de2;
}

    input:checked + .slider:before {
        transform: translateX(26px);
    }

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }




/*---------------------- text changing ----------------------*/

.rotating-text-wrapper {
    display: inline-block;
    position: relative;
    height: 1em; /* Adjust based on the height of your text */
    overflow: hidden;
}

    .rotating-text-wrapper .text1 {
        position: absolute;
        width: 100%;
        animation-duration: 8s;
        animation-iteration-count: infinite;
        opacity: 0;
    }

        .rotating-text-wrapper .text1:nth-child(1) {
            color: lightseagreen;
            animation-name: rotating-text-1;
        }

@keyframes rotating-text-1 {
    0% {
        transform: translateY(200%);
    }

    33% {
        transform: translateY(100%);
        opacity: 1;
    }

    34% {
        opacity: 0;
    }
}

.rotating-text-wrapper .text1:nth-child(2) {
    color: tomato;
    animation-name: rotating-text-2;
}

@keyframes rotating-text-2 {
    33% {
        transform: translateY(100%);
        opacity: 0;
    }

    66% {
        transform: translateY(0);
        opacity: 1;
    }

    67% {
        opacity: 0;
    }
}

.rotating-text-wrapper .text1:nth-child(3) {
    color: cornflowerblue;
    animation-name: rotating-text-3;
}

@keyframes rotating-text-3 {
    66% {
        transform: translateY(0);
        opacity: 0;
    }

    99% {
        transform: translateY(-100%);
        opacity: 1;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@media screen and (max-width: 576px) {
    .rotating-text-wrapper {
        font-size: 0.7rem;
    }
}

/* For devices with a max-width of 576px */
@media screen and (max-width: 576px) {
    .packages {
        margin: 0;
        width: 100%;
        padding-bottom: 4em;
        height: 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 13px;
        border: 1px solid #e2d4e1;
        flex-wrap: wrap;
    }
}

/* For devices with a max-width of 768px */
@media screen and (max-width: 768px) {
    .packages {
        margin: 0;
        width: 100%;
        padding-bottom: 3em;
        height: auto;
        background-color: #f8f8f8;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 10px;
        border: 1px solid #d1c4d1;
        flex-wrap: wrap;
    }
}

/* For devices with a max-width of 992px */
@media screen and (max-width: 992px) {
    .packages {
        margin: 10px;
        width: 80%;
        padding-bottom: 2em;
        height: auto;
        background-color: #f0f0f0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 10px;
        border: 1px solid #c2b4c1;
        flex-wrap: wrap;
    }
}

/*------------------- cookies -----------------*/

#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #444;
    color: #fff;
    padding: 5px;
    text-align: center;
    display: none;
    z-index: 999;
}

    #cookieConsent button {
        margin-left: 5px;
        padding: 2px 15px;
        border: none;
        cursor: pointer;
        border-radius: 50px;
        font-size: 13px;
    }

#acceptBtn {
    background-color: #5d5de2;
    color: white;
}

#rejectBtn {
    background-color: #f44336;
    color: white;
}


/*-----------------------------------------*/


/*---------- testimonial css start ----------*/
.pn_testimonial_box {
    font-weight: 300;
    padding: 2rem;
    margin: 0rem;
    border: 1px solid #5d5de2;
    position: relative;
    transition: 1s;
    transform: scale(0.9);
    background-color: #fff;
    -webkit-border-radius: 4rem;
    -moz-border-radius: 4rem;
    -ms-border-radius: 4rem;
    border-radius: 2rem;
}

    .pn_testimonial_box:hover {
        box-shadow: 2px 4px 8px #d6d8da;
        border: 1px solid #fff;
        transform: scale(1);
        position: relative;
        z-index: 1;
    }

.pn_review_rating img {
    width: 20%;
}

.pn_review_profile img {
    position: absolute;
    margin: 0rem -4rem 0;
    width: 60px;
    border: 3px solid #ffffff !important;
    border-radius: 42px !important;
}

.pn_review_profile span {
    position: absolute;
    font-weight: 500;
}


@media (max-width: 575px) {
    /*---------- testimonial css start ----------*/
    .pn_reviews {
        padding: 3rem 0;
    }

        .pn_reviews h1 {
            font-size: 2rem;
            padding-bottom: 1rem !important;
        }

    .pn_testimonial_box {
        padding: 2rem;
        margin: 1rem;
        border: 1px solid #405fbd;
        position: relative;
        -webkit-border-radius: 4rem;
        -moz-border-radius: 4rem;
        -ms-border-radius: 4rem;
        border-radius: 4rem;
    }

    .pn_review_profile img {
        position: absolute;
        margin: -1.1rem -3rem 0;
    }

    .pn_review_profile span {
        position: absolute;
        padding: 1rem;
    }

    .pn_review_rating img {
        width: auto;
    }
}



/*---------------------- new pricing --------------------------*/


.pricing__table {
    display: flex;
    flex-direction: column;
    margin: 30px 30px 60px 30px;
    border-right: 1px solid rgba(73, 72, 74, 0.1);
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    padding: 15px;
    border-radius: 20px;
    max-width: 1200px;
    margin: auto
}

@media (max-width: 991px) {
    .pricing__table {
        flex-direction: row;
        margin: 0 15px 60px 15px;
    }
}

.pricing__table .pt__title {
    display: flex;
}

@media (max-width: 991px) {
    .pricing__table .pt__title {
        flex-direction: column;
        width: 50%;
    }
}

@media (max-width: 639px) {
    .pricing__table .pt__title {
        width: 40%;
    }
}

.pricing__table .pt__title .pt__title__wrap {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: row;
    font-size: 18px;
    text-align: center;
    gap: 10px;
}

@media (max-width: 991px) {
    .pricing__table .pt__title .pt__title__wrap {
        flex-direction: column;
    }
}

.pricing__table .pt__title .pt__title__wrap .pt__row {
    display: flex;
    width: 25%;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    text-align: left;
    padding: 6px 10px;
    /* min-height: 60px; */
    font-size: 15px;
    font-weight: 600;
    color: #a03cd2;
    border-left: 1px solid #eee;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #f0ddf9;
    border-radius: 5px;
    /* gap: 6px; */
}

    .pricing__table .pt__title .pt__title__wrap .pt__row:nth-child(2) {
        /* border: 1px solid #0061FF; */
        /* border-bottom: 0; */
        /* border-top-left-radius: 15px; */
        /* border-top-right-radius: 15px; */
        /* background-color: rgba(0, 97, 255, 0.15); */
    }

@media (max-width: 991px) {
    .pricing__table .pt__title .pt__title__wrap .pt__row:nth-child(2) {
        border-right: 1px solid rgba(73, 72, 74, 0.1);
        border-bottom: 1px solid #0061FF;
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        border-top-right-radius: 0;
    }
}

@media (max-width: 991px) {
    .pricing__table .pt__title .pt__title__wrap .pt__row {
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
        min-height: 95px;
        border-right: 1px solid rgba(73, 72, 74, 0.1);
        border-bottom: 1px solid rgba(73, 72, 74, 0.1);
    }

        .pricing__table .pt__title .pt__title__wrap .pt__row:first-child {
            border-right: 1px solid rgba(73, 72, 74, 0);
        }
}

@media (max-width: 640px) {
    .pricing__table .pt__title .pt__title__wrap .pt__row {
        padding-left: 0;
        padding-right: 15px;
        font-size: 14px;
    }
}

.pricing__table .pt__option {
    position: relative;
}

@media (max-width: 991px) {
    .pricing__table .pt__option {
        width: 50%;
        flex: 1;
        padding-right: 10px;
    }
}

@media (max-width: 639px) {
    .pricing__table .pt__option {
        width: 60%;
    }
}

.pricing__table .pt__option .pt__option__mobile__nav {
    position: absolute;
    z-index: 1;
    top: 25px;
    bottom: auto;
    left: 50%;
    right: auto;
    display: none;
    justify-content: space-between;
    width: calc(100% + 30px);
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__mobile__nav {
        z-index: 2;
        display: flex;
        grid-column-gap: 8px;
        grid-row-gap: 8px;
        justify-content: space-between;
    }
}

.pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    background-color: #0061FF;
    transition: 0.25s;
}

    .pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn:hover {
        background-color: #0057E6;
    }

    .pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn.swiper-button-disabled {
        background-color: #c0beb6;
        pointer-events: none;
    }

    .pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn:first-child {
        position: relative;
        left: -5px;
    }

    .pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn:last-child {
        position: relative;
        right: 5px;
    }

    .pricing__table .pt__option .pt__option__mobile__nav .mobile__nav__btn svg {
        width: 16px;
        color: #faf7f2;
    }

.pricing__table .pt__option .pt__option__slider {
    overflow: visible;
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__slider {
        overflow: hidden;
    }
}

.pricing__table .pt__option .pt__option__slider .swiper-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; */
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__slider .swiper-wrapper {
        flex-direction: row;
    }
}

.pricing__table .pt__option .pt__option__item {
    width: 100%;
    margin-right: 0;
}

    .pricing__table .pt__option .pt__option__item .pt__item .pt__item__wrap {
        display: flex;
        flex-direction: row;
        font-size: 1rem;
        line-height: 1.4;
        position: relative;
        color: #484848;
        gap: 10px;
        /* border-radius: 6px; */
    }

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__item .pt__item .pt__item__wrap {
        flex-direction: column;
    }
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__row {
    display: flex;
    /* flex-direction: column; */
    /* justify-content: center; */
    /* align-items: center; */
    text-align: left;
    width: 25%;
    /* min-height: 60px; */
    padding: 5px 12px;
    font-size: 13px;
    /* border-left: 1px solid rgba(73, 72, 74, 0.1); */
    border: 1px solid rgba(73, 72, 74, 0.1);
    border-radius: 4px;
    margin-top: 3px;
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__item .pt__item .pt__row {
        width: 100%;
        min-height: 95px;
    }

        .pricing__table .pt__option .pt__option__item .pt__item .pt__row:nth-child(2) {
            border-top: 1px solid #0061FF;
            border-bottom: 1px solid #0061FF;
            background-color: rgba(0, 97, 255, 0.15);
        }
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__row:first-child {
    /* align-items: flex-start; */
    text-align: left;
    font-weight: 600;
    /* border: 1px solid #ddd; */
    color: #5d5de2;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; */
    /* border-radius: 9px; */
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__item .pt__item .pt__row:first-child {
        align-items: center;
        text-align: center;
        padding-left: 30px;
        padding-right: 30px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .pricing__table .pt__option .pt__option__item .pt__item .pt__row:first-child {
        font-size: 16px;
    }
}

.pricing__table .pt__option .pt__option__item .pt__item .pt__row:nth-child(2) {
    /* border-left: 1px solid #dbdbdb; */
    /* border-right: 1px solid #dbdbdb; */
    /* background-color: rgba(0, 97, 255, 0.15); */
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__item .pt__item .pt__row:nth-child(2) {
        border-left: 0;
        border-right: 0;
    }
}

.pricing__table .pt__option .pt__option__item .pt__item.selected .pt__row {
    display: inline-flex;
    padding: 20px 15px;
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__item .pt__item.selected .pt__row {
        min-height: 95px;
        padding: 10px 15px;
        align-items: center;
    }
}

.pricing__table .pt__option .pt__option__item .pt__item.selected .pt__row:first-child {
    /* border-bottom: 0; */
}

.pricing__table .pt__option .pt__option__item .pt__item.selected .pt__row:nth-child(2) {
    /* border-bottom-left-radius: 15px; */
    /* border-bottom-right-radius: 15px; */
    /* border-bottom: 1px solid #0061FF; */
}

@media (max-width: 991px) {
    .pricing__table .pt__option .pt__option__item .pt__item.selected .pt__row:nth-child(2) {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        border-bottom-left-radius: 0;
        border-right: 1px solid #0061FF;
        border-bottom: 1px solid #0061FF;
    }
}

.pricing__table .pt__option .pt__option__item .pt__item.selected a {
    /* padding: 15px 30px; */
    /* font-weight: 500; */
    /* text-transform: uppercase; */
    text-decoration: none;
    color: #fff;
    /* border-radius: 10px; */
    /* background-color: #0061FF; */
    transition: 0.25s;
}

   /* .pricing__table .pt__option .pt__option__item .pt__item.selected a:hover {
        background-color: #0057E6;
    }*/

@media (max-width: 639px) {
    .pricing__table .pt__option .pt__option__item .pt__item.selected a {
        padding: 12px 20px;
        font-size: 14px;
    }
}



.hr-target-list {
    list-style: none; /* Remove default bullets */
    padding-left: 0px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

    .hr-target-list li {
        position: relative;
        padding-left: 15px; /* Space for the checkmark */
        margin-bottom: 0.5rem;
    }

        .hr-target-list li::before {
            content: "•"; /* Unicode bullet/dot */
            position: absolute;
            left: 0;
            color: #a03cd2; /* Green dot */
            font-weight: bold;
            font-size: 22px;
            top: -10px;
        }



    .hr-target-list li {
        margin-bottom: 0.5rem;
    }

        .hr-target-list li strong {
            font-size: 11px;
        }
