/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .7);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }
    
    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/carousel-1.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) left center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}


/*write new css*/

.top-sec{position: fixed;z-index: 9;top: 0;background: #c30010;left:0;}
.top-sec marquee{font-family: "Poppins", Sans-serif; font-size:13px; color:#fff;line-height:28px;}

.main-banner{padding:25px 0 50px; text-align:center;background:#f2f2f2;margin-top:24px;}
.main-banner h1{font-size:50px; font-weight:700;color:#005aff;margin-bottom:20px;font-family: "Poppins", Sans-serif;}
.main-banner h1 span{color:#c30010;}
.main-banner p{color:#333;font-size:20px;margin-bottom:30px;font-family: "Poppins", Sans-serif;}
.m-b-left-img{width:100%; border-radius:20px;}
.m-b-left-img img{width:100%;border-radius:20px;}
.m-b-left{padding-right:50px;}
.m-b-right p{font-size:24px; font-weight:400;color:#000; line-height:33px;font-family: "Poppins", Sans-serif;margin-bottom:20px;}
.main-banner .slot{font-size:26px; font-weight:500;color:#000;margin-bottom:20px;line-height:33px;font-family: "Poppins", Sans-serif;}
.main-banner .m-b-right h2{font-family: "Poppins", Sans-serif;font-size:32px; color:#000;margin-bottom:30px;line-height:33px;}
.main-banner .m-b-right h2 .t-v {text-decoration: line-through;margin-left:7px;}
.get-acc{background:#c30010; font-size:21px;font-weight:600; color:#fff; text-transform:uppercase; padding:15px 25px; border-radius:50px; display:inline-block;animation: 2.8s infinite shake;}
.get-acc:hover{color:#fff;}
.payment-option{border-radius:40px; display:inline-block; margin:25px 0 20px;}
.payment-option img{border-radius:40px; width:100%;}
.m-b-right p.p-last{font-size:15px; font-weight:500;color:#333; line-height:33px;}
.timer-main{text-align:center;margin-bottom:20px;}
.hours-top{background:#000; display:inline-block; text-align:center;padding:13px 25px; border-radius:20px; margin:0 6px;}
.timer-main .timer {font-family: "Poppins", Sans-serif;font-size: 30px;color: #fff;font-weight:600;display:block;align-items: center;line-height: 16px;}
.timer-main .time {padding:0px 0px 0 0;margin: 0 0px 0 0;line-height: 25px;}
.timer-main .timer span{font-size: 14px;font-weight:400;margin-right:0;line-height: 18px;}

.what-included-main{padding:50px 0;}
.heading-top{text-align:center;margin-bottom:35px;}
.title-top{font-family: "Poppins", Sans-serif;font-size:14px; color:#333;font-weight:500;background-color: #F9FAFB; padding:6px 15px; border:#ddd solid 1px; display:inline-block; border-radius:30px;margin-bottom:25px;}
.title-top .fa{color:#1ab4cd;}
.heading-top h2{font-family: "Poppins", Sans-serif;font-size:32px; color:#000;font-weight:600;}
.itm_img img{width:100%; border-radius:10px;max-height:220px;}
.what-included-main .heading-top h2{margin-bottom:50px;}
.what-included-main .owl-carousel .owl-item img{width: auto;display: inline-block;}
.itm_img{background:#fbfbfb;border:#eee solid 1px;border-radius:20px;}
.what-included-main .get-acc{margin-top:30px;}

.high-quality-main{padding:70px 0; background:#f2f2f2;}
.h-q-box{font-family: "Poppins", Sans-serif;font-size:18px; color:#fff;font-weight:400;background-color: #c30010; padding:15px 15px 15px 45px; border-radius:12px;margin-bottom:25px; line-height:30px; position:relative; margin-bottom:10px;}
.h-q-box span{font-weight:600;}
.h-q-box::before {
    position: absolute; left:15px; top:15px;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900; font-size:20px;
    color:#fff;
    margin-right: 10px;
}
.total-value .t-v {text-decoration: line-through;margin-left:7px;}
.total-value{display:inline-block; margin:30px 0; font-family: "Poppins", Sans-serif;font-size:32px; color:#000;line-height:33px;font-weight:700;}

.need-follow-main{padding:70px 0;}
.need-follow-box{background:#fff;box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 7%); padding:25px; border-radius:20px; margin-bottom:35px;position:relative;}
.need-follow-img{width:30%;border-radius:12px;border:#ddd solid 1px;padding:7px;}
.need-follow-img img{width:100%;height: 160px;object-fit: contain;object-position: center center;}
.need-follow-text{width:70%; padding-left:20px;}
.need-follow-text h3{font-family: "Poppins", Sans-serif;font-size:20px; color:#000;font-weight:600;line-height:24px;margin-bottom:5px;}
.need-follow-text p{font-family: "Poppins", Sans-serif;font-size:15px; color:#333;font-weight:400;line-height:23px;}
.need-follow-text p span{font-weight: 600;color:#000;}
.step-count{position:absolute; right:20px; bottom:20px;font-size: 52px;
    font-weight: 800;font-family: "Poppins", Sans-serif;line-height: 50px;
    color: #D1D2D27A;}
	
.did-you-know-main{padding: 70px 0;background: #f2f2f2;}
.did-you-know-left-img img{width:100%;border-radius:20px;}
.did-you-know-right-inn{background:#c30010;padding:25px 20px;border-radius:20px;}
.did-you-know-right-inn h3{font-family: "Poppins", Sans-serif;font-size:30px; color:#fff;font-weight:600;line-height:24px;margin-bottom:25px;}
.did-you-know-box{background:#fff;padding:12px 15px 12px 38px;border-radius:8px;position:relative;margin-bottom:20px;}	
.did-you-know-box p{font-family: "Poppins", Sans-serif;font-size:18px; color:#000;font-weight:500;line-height:28px; margin-bottom:0;}
.did-you-know-box::before {
    position: absolute;
    left: 15px;
    top: 12px;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color:#000;
    margin-right: 10px;
}
.did-you-know-right-inn{font-family: "Poppins", Sans-serif;font-size:18px; color:#fff;font-weight:500;line-height:28px;}

.everything-you-main{padding: 70px 0;}
.everything-you-box{margin-bottom:30px;}
.everything-you-box-in{background:#c30010;padding:15px;border-radius:20px; border:#eee solid 0px;text-align:center;box-shadow:0px 4px 0px 0px rgb(0 0 0 / 90%);}
.everything-you-img img{width:100%;border-radius:10px; border:#ddd solid 1px;}
.everything-you-box-in h4{font-family: "Poppins", Sans-serif;font-size:20px; color:#fff;font-weight:600;line-height:30px;margin:20px 0 5px;}
.worth-p{font-family: "Poppins", Sans-serif;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    background-color: #00552D;margin-bottom:10px;
    padding: 10px 20px;display:inline-block;
    border: #ddd solid 0px;
    border-radius: 8px;}
.everything-you-box-in h4.last-inside{margin:13px 0 0 0;line-height:20px;}	
.everything-you-box-in h4.last-inside span{font-size:14px;font-weight:400;color: #fff;}

.bonus-value{padding: 30px;display:inline-block; text-align:center;
border: #ddd solid 2px;width:100%;max-width:800px; margin:0 auto;
border-radius: 20px;}
.bonus-value .heading-1{font-family: "Poppins", Sans-serif;font-size:32px; color:#FF0000;font-weight:900;line-height:40px;margin-bottom:20px;}
.bonus-value .heading-2{font-family: "Poppins", Sans-serif;font-size:30px; color:#000;font-weight:900;line-height:40px;margin-bottom:23px;}
.bonus-value .heading-3{font-family: "Poppins", Sans-serif;font-size:38px; color:#009D08;font-weight:900;line-height:40px;margin-bottom:30px;}
.bonus-value .heading-4{font-family: "Poppins", Sans-serif;font-size:24px; color:#000;font-weight:600;line-height:34px;margin-bottom:20px;}
.bonus-value p{font-family: "Poppins", Sans-serif;font-size:22px; color:#000;font-weight:700;line-height:34px;margin-bottom:20px;}

.satisfaction-box{padding: 30px;display:inline-block; text-align:center;
border: #ddd solid 2px;width:100%;max-width:1000px; margin:50px auto 0;
border-radius: 20px;}
.satisfaction-box-left{width:30%;}
.satisfaction-box-left img{width:100%;}
.satisfaction-box-rt{width:70%; text-align:center;}
.pay-opt img{width:90%;}
.satisfaction-box-rt h2{font-family: "Poppins", Sans-serif;font-size:34px; color:#00562A;font-weight:800;line-height:50px;margin-bottom:20px;}
.satisfaction-box-rt h3{font-family: "Poppins", Sans-serif;font-size:28px; color:#1A1A1A;font-weight:700;line-height:36px;margin-bottom:16px;}
.satisfaction-box-rt h4{font-family: "Poppins", Sans-serif;font-size:28px; color:#1A1A1A;font-weight:700;line-height:36px;margin-bottom:20px;}
.satisfaction-box-rt .clock img{width:28px;vertical-align: -2px;}
.satisfaction-box-rt .clock{margin:0 8px 0 0;}
.satisfaction-box-rt .clock-rt{margin:0 0 0 8px;}

.faq-main{padding: 70px 0; background: #f2f2f2;font-family: "Poppins", Sans-serif;margin-bottom:95px;}
.faq-left-img{background:#fff;border-radius:14px;padding:50px 10px;}
.faq-left-img img{width:100%;border-radius:12px;}
.faq-right .accordion-item {
    background-color: #fff;
    border: 0;
    margin-bottom: 10px;
    border-radius: 8px;
}
.faq-right .accordion-button{color: #303030;font-size: 20px;font-weight:500;border-radius: 8px;}
.faq-right .accordion-button span{margin:0 3px 0 0;}
.faq-right .accordion-button:not(.collapsed) {background-color: #ffffff;}
.faq-right .accordion-body{color: #555;font-size: 14px; line-height:26px;}
.faq-right .accordion-item:last-of-type .accordion-button.collapsed {border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;}
.faq-right .accordion-button:not(.collapsed){border-radius: 8px 8px 0 0;}

.footer-inn{background:#222; padding:20px 20px 10px 20px;border-radius: 40px 40px 0 0;position: fixed;bottom: 0;min-height:80px; left:0;z-index:9;}
.footer-inn .get-acc{font-size: 18px;box-shadow: 0 0 5px #eee;padding: 10px 45px;}
.footer-inn h4{font-family: "Poppins", Sans-serif;font-size:20px; color:#fff;font-weight:500;line-height:30px;margin-bottom:2px;}
.footer-left p{font-family: "Poppins", Sans-serif;font-size:16px; color:#fff;font-weight:500;line-height:30px;}
.timer {font-family: "Poppins", Sans-serif;font-size: 22px;color: #fff;font-weight:500;display: flex;align-items: center;}
.time {padding:0px px 0 0;margin: 0 5px 0 0;}
.timer span{font-size: 14px;font-weight:400; margin-right:15px;}
.footer-rt h4{font-size:19px;line-height:27px;margin-bottom:0;}
.owl-carousel{text-align:center;}

/*inner page*/

.inner-banner{padding:50px 0; text-align:center;background:#000;margin-top:24px;}
.inner-banner h1{font-size:42px; line-height:58px; font-weight:700;color:#fff;margin-bottom:0px;font-family: "Poppins", Sans-serif;}
.inner-banner h1 span{}
.payment-main-sec{padding: 40px 0; background: #f5f5f5;}
.payment-main-inn{background:#fff;border-radius: 10px;box-shadow: 0px 13px 26px -10px rgb(134 138 141 / 77%); padding:30px;}
.cust-info{margin-bottom:30px;padding-right:10px;}
.cust-info h4{font-size:20px; line-height:28px; font-weight:500;color:#000;margin:0px 0 20px;font-family: "Poppins", Sans-serif;}
.cust-info .form-label { margin-bottom: 5px; font-size: 14px;color: #555;}
.cust-info .form-label span{ color: #e11e00;font-weight:700; margin-left:2px;}
.cust-info .form-control{padding: 14px;font-size: 14px;color: #555;border: 1px solid #ddd;border-radius: 4px;}
.patment-right-inn{border-radius: 8px;padding:25px;background:#000;}
.pay-rt-img img{width:100%;border-radius: 10px;}
.patment-right h3{font-size:24px; line-height:38px; font-weight:800;color:#fff;margin:0px 0 15px;text-align:center;font-family: "Poppins", Sans-serif;}
.mega-bundle{background:#000; padding:15px;border-radius: 10px; margin:20px 0;}
.mega-bundle h3{color:#fff;font-size:30px; line-height:40px;}
.mega-bundle p{font-size:16px; line-height:26px; font-weight:400;color:#fff;margin:0px;text-align:center;font-family: "Poppins", Sans-serif;}
.what-get{margin:10px 0;text-align:center;display: inline-block;}
.what-get h4{font-size:28px; line-height:28px; font-weight:600;color:#000;margin:0px 0 25px;text-align:center;font-family: "Poppins", Sans-serif;display:inline-block;border-bottom: #000 solid 2px;}
.what-get ul{margin:0; padding:0;}
.what-get ul li{margin:0 0 12px 0; padding:0 0 0 26px;font-size:18px; line-height:26px; font-weight:500;color:#000;text-align:left;font-family: "Poppins", Sans-serif;list-style:none; position:relative;}
.what-get ul li::before {
    position: absolute;
    left: 0px;
    top: 0px;
    content: "\f14a";
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    color: #000;
}
.y-o-table{width:100%;display: inline-table;border:#ddd solid 1px;border-radius:4px;}
.y-o-table tbody{width:100%; display: inline-table;}
.y-o-table tr th{font-size:16px; line-height:26px; font-weight:500;color:#333;text-align:left;font-family: "Poppins", Sans-serif; border-bottom:#ddd solid 1px; padding:18px;}
.y-o-table tr td{font-size:16px; line-height:26px; font-weight:400;color:#333;text-align:left;font-family: "Poppins", Sans-serif; border-bottom:#ddd solid 1px;padding:18px;}
.y-o-table tr th:nth-child( 1 ){width:60%;}
.y-o-table tr th:nth-child( 2 ){width:30%;text-align:right;}
.y-o-table tr td:nth-child( 2 ){width:30%;text-align:right;}
.y-o-table tr td:nth-child( 1 ){width:60%;}
.pro-thamb{width:60px;margin:0 5px 0 0; display:inline-block;}
.pro-thamb img{width:100%;}
.pro-name{display:inline-block;font-size:13px;font-weight:400;color:#333;font-family: "Poppins", Sans-serif;width:70%;line-height: 17px;}
.product-quantity{display:inline-block;font-size:14px;font-weight:400;color:#333;font-family: "Poppins", Sans-serif;}
.y-o-table tr th.total{font-size:18px;font-weight:600;border-bottom:0;}
.payment-option-main{display:block;}
.payment-option-box{ border:#ddd solid 1px;}
.payment-option-box-inn{border-bottom:#ddd solid 1px;padding:18px 12px;}
.payment-option-box-inn p{font-size:14px; line-height:20px; font-weight:400;color:#333;text-align:left;font-family: "Poppins", Sans-serif;margin:0;}
.pay-by{width:150px;vertical-align: -7px;margin:0 0 0 5px;}
.payment-option-box .securely{border-bottom:0; background:#f5f5f5;}
.payment-option-box .securely p{font-size:13px;}
.p-p{font-size:11px; line-height:18px; font-weight:400;color:#555;text-align:left;font-family: "Poppins", Sans-serif;margin:20px 0 0;}
.p-o-btn{background: #c30010;
    font-size: 18px; width:100%;
    font-weight: 600; margin:20px 0 0 0;
    color: #fff; border:0;
    padding: 14px 5px;
    border-radius: 4px;
    display:block;}
.buy-pro-main{}
.buy-pro-main .buy-pro-bx:last-child{}
.buy-pro-bx{padding:10px; border:#ddd solid 1px; margin-bottom:15px;border-radius: 4px;box-shadow: 0px 3px 18px 0px rgb(134 138 141 / 40%);}
.p-buy-table{width:100%;display: inline-table;}
.p-buy-table tbody{width:100%; display: inline-table;}
.p-buy-table tr td{font-size:17px; line-height:22px; font-weight:400;color:#333;text-align:left;font-family: "Poppins", Sans-serif;}
.p-buy-table tr td:nth-child( 1 ){width:20%;}
.p-buy-table tr td:nth-child( 2 ){width:49%; padding:0 5px;font-weight:600;}
.p-buy-table tr td:nth-child( 3 ){width:18%; text-align:right;font-weight:600;}
.p-buy-table tr td:nth-child( 4 ){width:12%; text-align:right;}
.buy-pro img{width:100%; max-width:70px;}
.p-buy-table .form-check .form-check-input {margin-left: 0;}
.p-buy-table .form-check-input {width: 20px;height: 20px;}
.p-buy-table tr td p{font-size:12px; line-height:15px;font-weight:400;margin-bottom:0;}
.p-buy-table .form-check{padding-left: 7px;}
.form-check-input:checked {background-color: #c30010;border-color: #c30010;}
.term-cond-sec{background: #f5f5f5; padding: 30px 0 50px;margin-bottom:0;}
.term-cond-sec .accordion-button {font-family: "Poppins", Sans-serif; color: #333;font-size: 24px;font-weight: 600;}
.term-cond-sec  p{font-family: "Poppins", Sans-serif;font-size: 15px;color: #333;font-weight: 400;line-height: 25px;}
.term-cond-sec h3{font-size:20px; line-height:30px; font-weight:600;color:#333;margin:20px 0 5px;font-family: "Poppins", Sans-serif;}
.term-cond-sec  ul{padding:0 0 0 35px; margin:0;}
.term-cond-sec  ul li{font-family: "Poppins", Sans-serif;font-size: 15px;color: #333;font-weight: 400;line-height: 25px;margin-bottom:10px;}
.term-cond-sec .accordion-button {padding: 1rem 2rem;}
.term-cond-sec .accordion-body {padding: 1rem 2rem;}
.term-cond-sec #collapseThree .accordion-body {padding: 1rem 10rem 1rem 2rem;}
.term-cond-sec .contact-bx label{font-family: "Poppins", Sans-serif;font-size: 14px;color: #333;font-weight: 600;}
.term-cond-sec .contact-bx p a{color:#c30010;}
.term-cond-sec .contact-bx p a:hover{color:#000;}
.term-cond-sec .contact-bx p a.facebook-link{color:#0076b4; font-size:16px;font-weight: 600;margin-right:20px;}
.term-cond-sec .contact-bx p a.facebook-link:hover{color:#c30010;}
.term-cond-sec .contact-bx p a.insta-link{color:#e10f97; font-size:16px;font-weight: 600;margin-right:20px;}
.term-cond-sec .contact-bx p a.insta-link:hover{color:#c30010;}
.footer-inner-page {
    background: #222; text-align:center;
    padding: 20px 20px 10px 20px;
    border-radius:0;
}
.footer-inner-page p{font-family: "Poppins", Sans-serif;font-size: 14px;color: #aaa;font-weight: 400;line-height: 25px;margin:0;}
.life-acc{font-family: "Poppins", Sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 0;}


/*thanks page*/

.thank-top-sec{padding: 80px 0 90px;text-align: center; background: #fff;}
.thank-top-sec .thank-ico{width:80px; height:80px; line-height:80px; text-align:center; font-size:30px; background:#c30010; color:#fff; display:inline-block; margin:0 auto 40px; border-radius:6px;}
.thank-top-sec h1{font-size: 54px;font-weight: 600;color: #000;margin-bottom: 30px;font-family: "Poppins", Sans-serif;line-height: 64px;padding:0 100px;}
.thank-top-sec h1 span{color:#c30010;}
.thank-top-sec h4{font-size: 32px;font-weight: 600;color: #000;margin-bottom: 0px;font-family: "Poppins", Sans-serif;line-height: 42px;padding:0 190px;}
.step-main-sec{padding: 0px 0 80px;text-align: center;}
.step-main-inn{background:#000; margin:0 auto; border-radius:30px; width:100%; max-width:900px; padding:40px 50px;position:relative;}
.step-head{line-height:50px; text-align:center; font-size:34px; background:#c30010; color:#fff; display:inline-block; margin:0 auto; border-radius:60px;font-family: "Poppins", Sans-serif;font-weight: 500; padding:13px 40px; position: absolute;top: -40px;left: 0;right: 0;display: inline-table;}
.step-text-bx{width:100%;margin:40px 0 0 0; text-align:left;position: relative;padding: 0 0 0 60px;}
.step-text-bx:before{width:40px; height:40px; border-radius:40px; background:#fff; position:absolute; left:0; top:10px; content:"";}
.step-text-bx p{font-family: "Poppins", Sans-serif;font-size: 20px;color: #fff;font-weight: 400;line-height: 33px; margin:0;}
.step-main-sec h2{font-size: 40px;font-weight: 600;color:#c30010;margin: 30px 0 0;font-family: "Oswald", sans-serif;line-height: 48px;}







