html,
body {
    background-color: #ffffff;
    font-family: Helvetica;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

.fixed-top {
    background: #ffffff;
}

#mob-navbar {
    display: none;
}

.navbar-section .topbar {
    border-radius: 30px;
    background-color: #000000;
}

.navbar-section .topbar1 {
    border-radius: 25px;
    background-color: #000000;
}

.navbar-section .topbar2 {
    border-radius: 24px;
    background-color: #000000;
}

.navbar-section .topbar3 {
    border-radius: 12px;
    background-color: #000000;
}

.navlogo {
    width: 75%;
}

.topnav-logo {
    width: 80%;
}

.navbar-section .nav-heading.active {
    color: #FFA800 !important;
    font-family: Helvetica;
    font-size: 22px;
    font-weight: 500;
    line-height: 43px;
    letter-spacing: 0em;
    text-align: left;
}

.navbar-section .nav-heading {
    font-family: Helvetica;
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF !important;
    line-height: 43px;
    letter-spacing: 0em;
    text-align: left;
    padding: 0 1rem !important;
}

.dropdown-toggle::after {
    display: none;
}


/* Side Navbar */

.bg-black {
    background-color: #000000;
}

.cart-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-top .left-cart-top {
    display: flex;
    align-items: center;
}

.left-cart-top .cart-head {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: left;
    color: #55E8FF;
    margin-bottom: 0;
    text-transform: uppercase;
}

.left-cart-top .cart-logo {
    width: 20px;
    margin-left: 10px;
}

.cart-top .right-cart-top .close-cart {
    width: 35px;
    cursor: pointer;
}

.cart-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0px;
}

.cart-middle .left-cart-middle {
    display: flex;
    align-items: center;
}

.left-cart-middle .sim-logo {
    width: 40px;
}

.left-cart-middle .left-middle-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: 0.04em;
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 0;
    margin-left: 10px;
}

.right-cart-middle .right-middle-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: 0.04em;
    text-align: right;
    color: #FFFFFF;
    margin-bottom: 0;
    margin-right: 12px;
}

.cart-middle .right-cart-middle {
    display: flex;
    align-items: center;
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: -14px;
    margin-top: 0.125rem;
}

.dropdown1 .dropdown-menu {
    background-color: #00A1BA;
    min-width: 5rem !important;
}

.dropdown1 .dropdown-item {
    color: #ffffff;
    font-family: Helvetica;
    font-size: 15px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: right;
}

.cart-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-bottom .bottom-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: 0.04em;
    text-align: left;
    margin-bottom: 0;
    color: #FFFFFF;
}

.cart-bottom .subtotal {
    font-size: 25px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.04em;
    text-align: left;
    color: #55E8FF;
    margin-bottom: 0;
}

.cart-bottom .price {
    font-size: 23px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.04em;
    text-align: left;
    color: #FFA800;
    margin-bottom: 0;
}

.checkout-btn .check-btn {
    width: 100%;
    color: #000000;
    background-color: #FFA800;
    border-color: #FFA800;
    font-size: 18px;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 0.04em;
    text-align: center;
}

.proceed-btn .pro-btn {
    width: 100%;
    color: #FFFFFF;
    background-color: #7E7E7E;
    border-color: #7E7E7E;
    font-size: 18px;
    font-weight: 500;
    line-height: 33px;
    letter-spacing: 0.04em;
    text-align: center;
}

/* VIP Number section */

.vipnumber-section .console-underscore {
    display: inline-block;
    position: relative;
    top: -0.14em;
    left: 10px;
}

.vipnumber-section #circle .image {
    position: absolute;
    width: 14%;
}

.vipnumber-section #circle .text {
    width: 100%;
    height: 540px;

    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 5s;
    -moz-animation-duration: 5s;
    -ms-animation-duration: 5s;
    -o-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;

}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0);
    }

    to {
        -o-transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.vipnumber-section .left-part .head {
    font-family: Helvetica;
    font-size: 60px;
    font-weight: 500;
    line-height: 90px;
    letter-spacing: 0em;
    text-align: left;
}

.vipnumber-section #circle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vipnumber-section .row1 {
    justify-content: space-between;
    align-items: center;
}

.vipnumber-section .left-part #text {
    font-family: Helvetica;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 0em;
    text-align: left;
}

.search-number-tab .search-tab-head {
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: center;
    color: #000000;
    transition: none;
}

.search-number-tab .nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 0px solid transparent;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    padding: .1rem 0.5rem;
}

.search-number-tab .advance {
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0em;
    text-align: center;
    color: #000000;
}

.btn-close {
    background: transparent url("/assets/img/btn-close.svg") center/1em auto no-repeat;
    opacity: 1;
}

.search-number-tab .search-tab-head.active {
    border: 0;
    color: #ffffff;
    background-color: #FFA800;
}

.search-number-tab .search-tab-head:hover {
    border: 0;
}

.search-number-tab .search-input-btn {
    width: 65%;
    background-color: #DFDFDF;
    color: #717171;
}

.search-number-tab .search-btn {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #00A1BA;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: 15px;
}

.search-number-tab .search-btn:hover {
    background-color: #FFA800;
}

.search-number-tab .advance-btn {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #FFA800;
    padding-left: 30px;
    padding-right: 30px;
}

.modal-backdrop.show {
    opacity: 0.9;
}

.modal-copy .modal-dialog-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-copy .modal-box1 {
    background-color: #00A1BA;
    padding: 15px;
}

.modal-copy .modal-content1 {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    border-radius: 15px !important;
    outline: 0;
}

.modal-copy .form-fill-control{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-copy .modal-box1 .nav-tabs {
    border-bottom: none !important;
}

.modal-copy .modal-box1 .nav-tabs .nav-link {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    background: none;
    border: 0px solid transparent;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.modal-copy .modal-box1 .nav-tabs .nav-link.active {
    color: #ffffff;
    background: none;
    font-size: 20px;
    font-weight: 700;
    border: 0px solid transparent;
    padding-left: 10px !important;
    padding-right: 10px !important;
    border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8rem;
}


.search-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
}

.search-content .advance-box {
    margin-top: 70px;
    margin-bottom: 50px;
    padding: 0px 45px;
}

.modal-copy .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    font-family: Helvetica;
    font-size: 12px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0em;
    text-align: left;
    border-radius: 10px;
}

.modal-copy .advance-box .radio-option {
    margin-top: 5px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0px 20px;
}


.modal-copy .radio-option label {
    display: inline-block;
    font-family: Helvetica;
    font-size: 15px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: left;
}

.modal-copy .radio-option .form-check-input:checked {
    background-color: #FFA800;
    border-color: #FFA800;
}

.modal-copy .submit-button {
    display: flex;
    justify-content: center;
}

.submit-button .advance-btn {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #FFA800;
    padding-left: 30px;
    padding-right: 30px;
}

.margin-topbar {
    margin-top: 80px;
}

hr.hr-line1 {
    border-top: 3px dashed #00A1BA;
    background: #ffffff;
}

hr.hr-line2 {
    border-top: 3px dashed #FF840D;
    background: #ffffff;
}

hr.hr-bottom {
    border-top: 1px solid white;
}

.advance-search .heading {
    font-family: Helvetica;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: left;
}

.modal-copy .heading {
    font-family: Helvetica;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: left;
}


/* Exclusive Number section */

.exclusive-number .exclusive-content {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.exclusive-number #exclusive-content-copy {
    display: none;
}

.exclusive-number .top-heading {
    font-family: Helvetica;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.favorite-number .favorite-icon {
    width: 12rem;
    margin-bottom: 25px;
}

.payamount .favorite-icon {
    width: 5rem;
    margin-left: 50px;
    margin-bottom: 25px;
}

.upc .favorite-icon {
    width: 7rem;
    margin-left: 15px;
    margin-bottom: 25px;
}

.retailer .favorite-icon {
    width: 4rem;
    margin-left: 65px;
    margin-bottom: 25px;
}

.activation .favorite-icon {
    width: 4rem;
    margin-left: 100px;
    margin-bottom: 25px;
}

.favorite-number .para {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
}

.payamount .para {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
}

.upc .para {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
}

.retailer .para {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
}

.activation .para {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
}


.exclusive-content .margin-right {
    margin-right: 80px;
}

.read-more {
    font-family: Helvetica;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0em;
    text-align: center;
    color: #00A1BA;
    margin-bottom: 0px;
}

/* Featured VIP section */

.featured-vip-section .top-heading {
    font-family: Helvetica;
    font-size: 60px;
    font-weight: 700;
    line-height: 74px;
    letter-spacing: 0em;
    text-align: center;
    text-transform: uppercase;
    margin: 30px 0px;

}

.featured-card-content .card1 {
    background-color: #00A1BA;
    border: none;
    border-radius: 15px;
    width: 18rem;
    box-shadow: 0px 0px 20px 0px #00000026;
    margin-bottom: 55px;
}

.featured-card-content .card2 {
    background-color: #000000;
    border: none;
    border-radius: 15px;
    width: 18rem;
    box-shadow: 0px 0px 20px 0px #00000026;
    margin-bottom: 55px;
}

.featured-card-content .top-head .heading {
    font-family: Helvetica;
    font-size: 29px;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: 0.03em;
    text-align: center;
    color: #FFFFFF;
}

.featured-card-content .middle-head {
    background: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.featured-card-content .middle-head .para {
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;

}

.featured-card-content .middle-head .para1 {
    font-family: Helvetica;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    background: #FFA800;
    color: #FFFFFF;
    padding: 0px 5px;
    border-radius: 5px;
}

.featured-card-content .middle-head .middle-para-margin {
    margin-left: 15px;
}

.featured-card-content .bottom-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
}

.featured-card-content .bottom-head .left {
    font-family: Helvetica;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
}

.featured-card-content .bottom-head .right {
    font-family: Helvetica;
    font-size: 25px;
    font-style: italic;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: right;
}

.featured-card-content .add-to-cart-btn {
    display: flex;
    justify-content: center;
}

.add-to-cart-btn .cart-btn {
    background: #FFA800;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    margin-bottom: 15px;
}

.add-to-cart-btn .cart-btn img {
    width: 20px;
}

.view-more {
    font-family: Helvetica;
    font-size: 25px;
    font-weight: 500;
    line-height: 53px;
    letter-spacing: 0em;
    text-align: center;
    color: #00A1BA;
    margin-bottom: 15px;
}

/* Multiple Options section */

.multiple-options-section .multiple-options {
    background: #FFA800;
    padding: 20px 38px 10px 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
}

.multiple-options-section #multiple-options-copy {
    display: none;
}

.multiple-options .img-category1 {
    width: 25%;
    margin-left: 85px;
    margin-bottom: 10px;
}

.multiple-options .img-category2 {
    width: 18%;
    margin-left: 145px;
    margin-bottom: 10px;
}

.multiple-options .img-category3 {
    width: 25%;
    margin-left: 120px;
    margin-bottom: 10px;
}

.multiple-options .img-category4 {
    width: 28%;
    margin-left: 110px;
    margin-bottom: 10px;

}

.multiple-options .heading {
    font-family: Helvetica;
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
}

/* Testimonials section */

.testimonial-section .heading {
    font-family: Helvetica;
    font-size: 60px;
    font-weight: 700;
    line-height: 74px;
    letter-spacing: 0em;
    text-align: center;
    margin-top: 50px;
}

.testimonial-card .name-part {
    text-align: left;
    margin: 45px 0px;
}

.testimonial-card .head-tag {
    font-family: Helvetica;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0em;
    text-align: left;
}

.testimonial-card .name-tag {
    font-family: Helvetica;
    font-size: 25px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
}

.testimonial-card .google-icon {
    width: 200px;
    position: relative;
    left: -17px;
    bottom: -18px;
}

.testimonial-container {
    max-width: 80rem;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.scroll {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 1rem 0;
    margin: 2.5rem 0;
    cursor: default;
    overflow: scroll hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0px 1.25rem;
    scrollbar-width: none;
}

.testimonial-card {
    width: 27rem;
    height: auto;
    flex: 0 0 auto;
    margin: 0 0.75rem;
    border: none;
    outline: none;
    border-radius: 20px;
    color: black;
    background: white;
    box-shadow: 0px 0px 20px 0px #00000026;

}

.scroll-top-btn {
    background: #FFA800;
    width: 56px;
    padding: 15px;
    border-radius: 30px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
}

.scroll-top-btn img {
    width: 23px;
}

/* Footer section */

#footer-section-copy {
    display: none;
}

.footer-section {
    background: #000000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 10px;
}

.left-footer {
    width: 12.5rem;
}

.left-footer .company-logo {
    width: 200px;
    margin-top: 20px;
}

.left-footer .desc-para {
    font-family: inherit;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: justify;
    color: #ffffff;
    margin-top: 20px;
}

.left-footer .socialmedia-icon {
    margin-top: 20px;
}

.left-footer .social-margin {
    margin-right: 10px;
}

.center-footer {
    width: 50%;
}

.center-footer .center-details {
    display: flex;
    justify-content: center;
}

.center-footer .search-input-btn {
    width: 65%;
    background-color: #DFDFDF;
    color: #717171;
}

.center-footer .search-btn {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #FFA800;
    padding-left: 30px;
    padding-right: 30px;
}

.center-footer .content-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 0px 50px;
}

.content-details .heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: #ffffff;
}

.content-details .list-head {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: left;
    color: #ffffff;
    text-decoration: none;
    list-style: none;
}

.right-footer .search-btn {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #00A1BA;
    padding-left: 30px;
    padding-right: 30px;
}

.contact-content-details .contact-us-details {
    margin-top: 27px;
}

.contact-content-details .heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: #ffffff;
}

.contact-content-details .contact-category {
    display: grid;
}

.contact-category .contact-part {
    font-size: 18px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 0px;
    text-align: left;
    text-decoration: none;
    color: #ffffff;
}

/* copyright section */

.copyright-section {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.copyright-section .left {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
    color: #ffffff;
}

.copyright-section .right {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
    color: #ffffff;
}

/* Store Page */

/* Stor Navbar */

.store-margin-top {
    margin-top: 200px;
}

.store-promo .promo-banner {
    width: -webkit-fill-available;
    margin-bottom: 40px;
}

.store-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#volet-copy {
    display: none;
}

#volet {
    width: 81rem;
    height: 143px;
    margin-top: 125px;
    background: #fff;
    color: #fff;
    border-radius: 0 0 16px 0;
    position: absolute;
    top: -272px;
    bottom: 200px;
    left: 144px;
    z-index: 10;
    transition: all .5s ease-out;
}


#volet a.open,
#volet a.close {
    width: 100%;
    font-size: 14px;
    text-align: center;
    position: absolute;
    padding: 10px 25px;
    top: 400px;
    background: #FBAF02;
    line-height: 20px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    transform: rotate(0deg);
    border-radius: 0 0 8px 8px;
}

#volet a.open {
    left: 0;
    top: 265px;
    z-index: 1;
    opacity: 1;
}

#volet a.close {
    left: 0;
    top: 129px;
    z-index: -1;
    opacity: 0;
}


#volet:target a.open {
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: all .5s ease-out;
}

#volet:target a.close {
    left: 0;
    z-index: 1;
    opacity: 1;
    transition: all .5s ease-out;
}

#volet:target {
    top: 0px;
}

#volet .store-arrow {
    width: 20px;
}

.sum-button {
    background-color: #FBAF02;
    border-radius: 20px;
    width: 11%;
    margin-right: 20px;
}

.sum-button .form-control {
    background-color: #FBAF02;
    border: 0px solid #ced4da;
    border-radius: 20px !important;
}


.sum-button .input-group-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #FFFFFF;
    text-decoration: none;
    background-color: #00A1BA;
    border: 1px solid #00A1BA;
    border-radius: 20px !important;
    position: relative;
    left: 0px;
}

.sum-button input::placeholder {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #4E4E4E;

}

.advance-search input::placeholder {
    font-family: Helvetica;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    color: #B0B0B0;

}

.category-button .dropdown-toggle::after {
    display: none;
}

.category-button .btn-category {
    color: #4E4E4E;
    background-color: #FBAF02;
    border-color: #FBAF02;
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    border-radius: 20px;
}

.category-button {
    margin-right: 20px;
}

.category-button .category-img {
    width: 14px;
    opacity: 0.5;
    margin-left: 25px;
}

.category-button .dropdown-img {
    width: 15px;
    margin-left: 10px;
}

.category-button .dropdown-menu {
    background-color: #FBAF02;
    font-family: Helvetica;
    font-size: 15px;
    font-weight: 600;
    line-height: 13px;
    letter-spacing: 0em;
}

.store-navbar .price-button {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-right: 20px;
}

.price-button .price-text {
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    margin: 0;
    color: #FFFFFF;
    margin-right: 10px;
}

.price-button .range-bar .lower-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-button .range-bar {
    width: 230px;
}

.range-bar .lower-range .range-text {
    font-family: Helvetica;
    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    margin: 0;
    color: #FFFFFF;

}

.range-bar .form-range {
    height: 13px;
}

.filter-button .dropdown-toggle::after {
    display: none;
}

.filter-button .btn-category {
    color: #4E4E4E;
    background-color: #FBAF02;
    border-color: #FBAF02;
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    border-radius: 20px;
}

.filter-button .category-img {
    width: 14px;
    opacity: 0.5;
    margin-left: 25px;
}

.filter-button .dropdown-img {
    width: 15px;
    margin-left: 10px;
}

.filter-button .dropdown-menu {
    background-color: #FBAF02;
    font-family: Helvetica;
    font-size: 15px;
    font-weight: 600;
    line-height: 13px;
    letter-spacing: 0em;
}

.filter-button .dropdown-item {
    margin-bottom: 3px;
}

/* Filter navbar */

.filter-navbar {
    display: contents;
}

.filter-navbar .filter-section {
    display: flex;
}

.filter-section .filter-category {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border: 2px solid #ffffff;
    border-radius: 20px;
    padding: 5px 10px;
    margin-right: 15px;
}

.filter-category .filter-text {
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: left;
    color: #ffffff;
    margin-bottom: 0;
    margin-right: 25px;
}

.filter-button .input-group .btn {
    z-index: 0 !important;
}

.filter-navbar .close-button .filter-close {
    width: 25px;
}

/* Payment Gateway login */

.login-margin {
    margin-top: 150px;
    margin-bottom: 50px;
}

.payment-login .login-form {
    display: flex;
    justify-content: left;
    align-items: end;
}

.payment-login .login-head {
    font-family: Helvetica;
    font-size: 35px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 30px;
}

.payment-login .create-account {
    color: #00A1BA;
}

.submit-btn .login-btn {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #00A1BA;
    padding-left: 30px;
    padding-right: 30px;
    border-color: #00A1BA;
    border-radius: 20px;
}

.submit-btn .login-btn:hover {
    background-color: #FFA800;
    border-color: #FFA800;
}

.login-form .email .email-id {
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
}

.login-form .password .pass {
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;

}

.payment-login .login-form .form-control {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    border-radius: 10px;
}

/* Order Details */

.order-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order .order-heading {
    font-family: Helvetica;
    font-size: 45px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 30px;
}

.order .order-confirm {
    font-family: Helvetica;
    font-size: 25px;
    font-style: italic;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 12px;
}

.order .order-para {
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 0;
}

.order .order-details {
    background: #00A1BA;
    padding: 20px 10px;
    color: #ffffff;
    border-radius: 15px;
    margin-top: 30px;
}

.order-details .order-details-heading {
    font-family: Helvetica;
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: left;
}

.order-details .order-name {
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
}

.order-details .order-value {
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
}

.order .download-button .download-btn {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #FFA800;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
    margin-top: 30px;
}

.order .download-button .download-btn:hover {
    background-color: #00A1BA;
}

.go-to-order .go-my-order {
    font-family: Helvetica;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0em;
    text-align: left;
    color: #00A1BA;
    margin-top: 50px;
    margin-bottom: 20px;
}

/* UPC Code */

.upc-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upc .upc-heading {
    font-family: Helvetica;
    font-size: 45px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 30px;
}

.upc .upc-confirm {
    font-family: Helvetica;
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 12px;
}

.upc .upc-para {
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 0;
}

.upc-left .upc-details {
    margin-top: 25px;
}

.upc-details .upc-name {
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
}

.upc-details .upc-value {
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
}

.upc-button {
    display: flex;
    justify-content: left;
    align-items: center;
}

.upc-button .upc-btn {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    width: 160px;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #00A1BA;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
    margin-top: 30px;
}

.upc-button .upc-btn:hover {
    background-color: #FFA800;
}

/* Order details */

.order-margin {
    margin-top: 190px;
    margin-bottom: 150px;
}

.order-details-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-details .order-details-heading {
    font-family: Helvetica;
    font-size: 45px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 30px;
}

.order-details .order-details-confirm {
    font-family: Helvetica;
    font-size: 25px;
    font-weight: 400;
    font-style: italic;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 12px;
}

.order-details .order-details-para {
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: left;
    text-decoration: none;
    color: #00A1BA;
}

.order-details-left .order-details-details {
    margin-top: 20px;
}

.order-details-details .order-details-value {
    font-family: Helvetica;
    font-size: 25px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: left;
}

.order-details-button {
    display: flex;
    justify-content: left;
    align-items: center;
}

.order-details-button .order-details-btn {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    width: 237px;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #FFA800;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
    margin-top: 30px;
}

.order-details-button .order-disabled-btn {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    width: 237px;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #A1A1A1;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
    margin-top: 30px;
}

.order-details-button .order-details-btn:hover {
    background-color: #00A1BA;
}

.order-details-section .order-right {
    width: 50%;
    background: #00A1BA;
    border-radius: 30px;
}

.order-details-section .order-upc {
    padding: 50px 40px;
}

.order-details-section .order-upc-text {
    font-family: Helvetica;
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    line-height: 50px;
    letter-spacing: 0em;
    text-align: center;

}

/* Payment failure */

.payment-failure {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 145px;
    margin-bottom: 145px;
}

.payment-failure .retry-payment {
    display: flex;
    align-items: baseline;
}

.payment-failure .left-retry-head {
    font-family: Helvetica;
    font-size: 45px;
    font-weight: 700;
    line-height: 74px;
    letter-spacing: 0em;
    text-align: left;
}

.payment-failure .retry-para {
    font-family: Helvetica;
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    line-height: 48px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 0;
    margin-right: 20px;
}

.retry-button .retry-btn {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #00A1BA;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
}

.retry-button .retry-btn:hover {
    background-color: #FFA800;
}

.payment-failure .contact-us {
    color: #00A1BA;
}

/* Page not found */

.pnf-margin {
    margin-top: 200px;
    margin-bottom: 100px;
}

.page-not-found .page-not-found-img {
    margin-left: 30%;
}

.page-not-found .pnf-para {
    font-family: Helvetica;
    font-size: 25px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: 0em;
    text-align: center;
    opacity: 0.5;
    margin-top: 30px;
}

/* Sign up page */

.signup-margin {
    margin-top: 130px;
    margin-bottom: 10px;
}

.signin-margin {
    margin-top: 170px;
    margin-bottom: 200px;
}

.verify-margin {
    margin-top: 150px;
    margin-bottom: 175px;
}

.sign-up-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sign-up-page .left-signup {
    width: 35rem;
}

.sign-up-page .create-account {
    font-family: Helvetica;
    font-size: 45px;
    font-weight: 500;
    line-height: 64px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 30px;
}

.sign-up-page .signup-btn {
    font-family: Helvetica;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #00A1BA;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
}

.sign-up-page .signup-btn:hover {
    background-color: #FFA800;
}

.sign-up-page .form-label {
    margin-bottom: 0.5rem;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
}

.sign-up-page .form-control {
    border-radius: 12px !important;
}

.sign-up-page .form-check-input:checked {
    background-color: #FBAF02;
    border-color: #FBAF02;
}

.sign-up-page .referral-para {
    font-family: Helvetica;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
}

.sign-up-page .sign-in {
    margin-left: 5px;
    color: #00A1BA;
    text-decoration: none;
}

.sign-up-page .otp-message {
    font-family: Helvetica;
    font-size: 23px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
}

.otp-verify .ap-otp-input {
    border: 2px solid #000000;
    border-radius: 10px;
    width: 10%;
    height: 40px;
    text-align: center;
    font-size: 28px;
}

.otp-verify .otp-margin {
    margin-right: 40px;
}

.otp-verify .ap-otp-input:focus {
    outline: none !important;
    border: 3px solid #1f6feb;
    transition: 0.12s ease-in;
}


/* My Profile */

.my-profile-nav .profile-top-img1 {
    width: 22px;
    margin-right: 280px;
}

.my-profile-nav .profile-top-img {
    width: 22px;
}

.profile-margin {
    margin-top: 210px;
    margin-bottom: 20px;
}

.my-profile-page .profile-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-page .left-profile {
    width: 50%;
}

.profile-page .create-account {
    font-family: Helvetica;
    font-size: 45px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0em;
    text-align: left;
}

.profile-page .form-label {
    font-family: Helvetica;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
}

.profile-page .form-control {
    border: none;
    border-bottom: dotted #00A1BA;
    padding: 0;
    border-radius: 0;
}

.profile-page .update-button {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.profile-page .update-btn {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #00A1BA;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
}

.profile-page .update-btn:hover {
    background-color: #FBAF02;
}

/* My order */

.my-order-page .order-page-heading {
    font-family: Helvetica;
    font-size: 45px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 30px;
}

.my-order-page .top-order-head-filter {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.my-order-page .order-filter {
    display: flex;
    align-items: center;
    position: relative;
    left: 40px;
}

.order-filter .custom-select {
    position: relative;
    width: 215px;
}

.order-filter .custom-select select {
    display: none;
}

.order-filter .select-selected {
    background-color: #00A1BA;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 12px;
    left: 10px;
    background-image: url("/assets/img/down-arrow.svg");
    background-position: center;
    width: 18px;
    height: 20px;
}

.select-selected.select-arrow-active:after {
    background-image: url("/assets/img/up-arrow.svg");
    background-position: center;
    width: 18px;
    height: 20px;
    top: 10px;
}


.order-filter .select-selected {
    color: #ffffff;
    padding: 8px 35px;
    cursor: pointer;
    user-select: none;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;
    border-radius: 20px;
}

.order-filter .select-items div {
    color: #ffffff;
    padding: 8px 10px;
    cursor: pointer;
    user-select: none;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: left;
    border-radius: 20px;
}

.order-filter .select-items {
    position: absolute;
    background-color: #00A1BA;
    top: 100%;
    left: 28px;
    right: 0;
    z-index: 99;
    border-radius: 0px 0px 15px 15px;
    width: 150px;
}

.order-filter .select-hide {
    display: none;
}

.order-filter .select-items div:hover,
.same-as-selected {
    background-color: #00A1BA;
}

.select-go {
    background: #FBAF02;
    width: 45px;
    height: 41px;
    text-align: center;
    border-radius: 22px;
    position: relative;
    right: 40px;
}

.select-go .go {
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
}

.my-order .my-order-head {
    font-family: Helvetica;
    font-size: 25px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 22px;
}

.my-order .my-order-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.my-order .order-content-left {
    display: flex;
    align-items: flex-start;
}

.my-order .order-info {
    font-family: Helvetica;
    font-size: 23px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: left;
}

.order-content-left .left-order-img {
    margin-right: 20px;
    width: 75px;
}

.order-content-right .right-order-img {
    margin-left: 125px;
    margin-bottom: 40px;
    cursor: pointer;
}

.order-content-right .info-coin {
    margin-left: 7px;
}

.my-order-page .bottom-count {
    font-family: Helvetica;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #00A1BA;
}

/* Refer and Earn */

.refer-and-earn-page .refer-and-earn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.refer-and-earn .top-refer {
    margin-bottom: 40px;
}

.refer-and-earn .top-coin-head {
    font-family: Helvetica;
    font-size: 25px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 30px;
}

.refer-and-earn .collected-coin {
    width: 22px;
    margin-left: 8px;
    position: relative;
    bottom: 3px;
}

.refer-and-earn .top-refer-head {
    font-family: Helvetica;
    font-size: 45px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0em;
    text-align: left;

}

.refer-and-earn .top-refer-para {
    font-family: Helvetica;
    font-size: 23px;
    font-style: italic;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: 0em;
    text-align: left;
}

.middle-refer .email-form {
    display: flex;
    justify-content: start;
    align-items: end;
}

.email-form .form-label {
    margin-bottom: 0.5rem;
    font-family: Helvetica;
    font-size: 23px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
}

.email-form .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 20px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.email-form .email-button {
    margin-left: 35px;
}

.email-form .email-btn {
    background-color: #00A1BA;
    border-color: #00A1BA;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
}

.email-form .email-btn:hover {
    background-color: #FBAF02;
    border-color: #FBAF02;
}

.refer-and-earn .middle-or {
    font-family: Helvetica;
    font-size: 25px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: center;
}

.refer-and-earn .referral-btn {
    background-color: #00A1BA;
    border-color: #00A1BA;
    width: 100%;
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 25px;
}

.refer-and-earn .referral-btn:hover {
    background-color: #FBAF02;
    border-color: #FBAF02;
}

.refer-and-earn .referral-para {
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
}

.refer-and-earn .copy-logo {
    vertical-align: bottom;
    margin-left: 5px;
    width: 20px;
    cursor: pointer;
}

.refer-and-earn .bottom-refer-para {
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
}

.about-margin{
    margin-top: 60px;
    margin-bottom: 30px;
}

.about-us-page .about-us{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-us-page .about-heading{
    font-family: Helvetica;
    font-size: 64px;
    font-weight: 700;
    line-height: 110px;
    letter-spacing: 0em;
    text-align: left;
}

.about-us-page .about-sub-heading{
    font-family: Helvetica;
    font-size: 35px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: 0em;
    text-align: left;
}

.about-us-page .about-para{
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: justify;

}

.about-us-page .right-about .about-img{
    width: 40vw;
    height: 133vh;
}

.contact-us-margin{
    margin-top: 130px;
    margin-bottom: 20px;
}

.contact-us-page .contact-us-heading{
    font-family: Helvetica;
    font-size: 64px;
    font-weight: 700;
    line-height: 90px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 0;
}

.contact-us-page .top-contact{
    margin-bottom: 35px;
}

.contact-us-page .top-contact-heading{
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
}

.contact-us-page .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 12px;
    font-weight: 400;
    line-height: 25px;
    color: #9A9A9A;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 13px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 15px;
}

.contact-us-page .middle-contact{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

.contact-us-page .middle-left{
    width: 60%;
}

.contact-us-page .middle-left-heading{
    font-family: Helvetica;
    font-size: 33px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0em;
    text-align: left;
}

.contact-us-page .middle-left-para{
    font-family: Helvetica;
    font-style: italic;
    font-size: 33px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 0em;
    text-align: left;
}

.contact-us-page .contact-us-img{
    width: 25rem;
}

.contact-us-page .bottom-contact{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.contact-us-page .bottom-center-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-us-page .bottom-left-head{
    font-family: Helvetica;
    font-size: 33px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
}

.contact-us-page .bottom-left-para{
    font-family: Helvetica;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.005em;
    text-align: left;
}

.contact-us-page .center-left-head{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: #FFA800;
}

.contact-us-page .contact-us-people{
    width: 30px;
}

.contact-us-page .contact-us-mssg{
    width: 30px;
}

.contact-us-page .contact-us-unstuck{
    display: none;
}

.contact-us-page .contact-us-btn{
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    color: #ffffff;
    background-color: #00A1BA;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;
}

.contact-us-page .contact-us-btn:hover{
    background-color: #FFA800;
}

.contact-us-page .lower-contact-img{
    width: 25px;
    margin-right: 10px;
}

.steps-to-buy-page{
    padding-left: 30px;
    padding-right: 30px;
}

.steps-to-buy-margin{
    margin-top: 170px;
    margin-bottom: 30px;
}

.steps-to-buy-page .steps-to-buy-heading{
    font-family: Helvetica;
    font-size: 64px;
    font-weight: 700;
    line-height: 90px;
    letter-spacing: 0em;
    text-align: center;
}

.steps-to-buy-page .steps-buy-one{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

.steps-to-buy-page .steps-left{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
}

.steps-to-buy-page .right-part-head{
    font-family: Helvetica;
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: 0em;
    text-align: left;
}
.steps-to-buy-page .right-part-para{
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: justify;
}
.steps-to-buy-page .browsing{
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 400;
    line-height: 0;
    letter-spacing: 0em;
    text-align: left;
    color: #00A1BA;
}

.steps-to-buy-page .steps-left-img{
    width: 10rem;
    margin-right: 30px;
}

.steps-to-buy-page .steps-right-img{
    width: 18rem;
}
.steps-to-buy-page .steps-buy-two{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}
.steps-to-buy-page .steps-right2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}
.steps-to-buy-page .right-part-head1{
    font-family: Helvetica;
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: 0em;
    text-align: right;
}
.steps-to-buy-page .right-part-para1{
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: right;
}
.steps-to-buy-page .steps-left-img1{
    width: 10rem;
    margin-left: 30px;
}

.steps-to-buy-page .steps-right-img1{
    width: 18rem;
}
.steps-to-buy-page .steps-buy-three{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}
.steps-to-buy-page .right-part-subhead{
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;
}
.steps-to-buy-page .steps-buy-four{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

.steps-to-buy-page .steps-buy-five{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

/* Side Navbar */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}


@media only screen and (Max-width: 331px) and (min-width: 270px) {}

@media only screen and (Max-width: 451px) and (min-width: 330px) {

    #web-navbar {
        display: none;
    }

    #mob-navbar {
        display: block;
    }

    .mob-navbar {
        background: #000000;
        margin-top: 30px;
        width: 43.5rem;
        border-radius: 20px;
        box-sizing: border-box;
    }

    .mob-navbar1 {
        background: #000000;
        margin-top: 30px;
        width: 42.6rem;
        border-radius: 20px;
        box-sizing: border-box;
    }

    .mob-navbar .main-navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
    }

    .main-navbar .search-logo {
        width: 55px;
    }

    .margin-topbar {
        margin-top: 180px;
    }

    .vipnumber-section {
        width: 43.5rem;
    }

    .vipnumber-section .right-part {
        overflow-x: hidden;
    }

    .vipnumber-section .left-part .head {
        font-size: 35px;
        font-weight: 500;
        line-height: 90px;
        padding-left: 20px;
    }

    .vipnumber-section .left-part #text {
        font-size: 40px;
        font-weight: 700;
        line-height: 90px;
    }

    .vipnumber-section #circle .text {
        position: absolute;
        top: 22%;
        right: -69%;
        width: 60%;
        height: 250px;
    }

    .vipnumber-section #circle .image {
        position: absolute;
        top: 33%;
        left: 128%;
        width: 23%;
    }

    .search-number-tab {
        margin-top: 40px;
        width: 43.5rem;
    }

    .search-number-tab #mytab {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .search-number-tab .tab-content {
        padding: 0px 0px 0px 20px;
    }

    .search-number-tab .nav {
        justify-content: space-between;
    }

    .search-number-tab .advance {
        font-size: 40px;
    }

    .search-number-tab .search-tab-head {
        font-size: 30px;
        padding: 0.5rem 1rem !important;
        border-top-left-radius: 1rem !important;
        border-top-right-radius: 1rem !important;
    }

    .search-number-tab .mob-search {
        justify-content: space-between;
        align-items: center;
    }

    .search-number-tab .mob-search .form-control {
        font-size: 40px;
    }

    .search-number-tab .search-btn {
        font-size: 38px;
        padding: 8px 40px;
    }

    .search-number-tab input::placeholder {
        font-size: 30px;
    }

    hr.hr-line1 {
        border-top: 5px dashed #00A1BA;
        background: #ffffff;
    }

    hr.hr-line2 {
        border-top: 5px dashed #FF840D;
        background: #ffffff;
    }

    .exclusive-number {
        width: 43.5rem;
    }

    .exclusive-number .top-heading {
        font-size: 40px;
        margin-bottom: 3rem;
        margin-top: 50px;
    }

    .exclusive-number #exclusive-content {
        display: none;
    }

    .exclusive-number #exclusive-content-copy {
        display: block;
    }

    .exclusive-content-copy .margin-right {
        margin-right: 0;
    }

    .exclusive-content-copy .favorite-number1 {
        margin-bottom: 25px;
    }

    .exclusive-content-copy .payamount1 {
        margin-bottom: 25px;
    }

    .exclusive-content-copy .upc1 {
        margin-bottom: 25px;
    }

    .exclusive-content-copy .retailer1 {
        margin-bottom: 25px;
    }

    .exclusive-content-copy .activation1 {
        margin-bottom: 25px;
    }

    .exclusive-content-copy .favorite-number1 .favorite-icon {
        margin-left: 5px;
        margin-bottom: 10px;
    }

    .exclusive-content-copy .favorite-number1 .para {
        font-size: 18px;
        line-height: 25px;
        text-align: center;
        padding-left: 33px;
        padding-right: 114px;
    }

    .exclusive-content-copy .payamount1 .favorite-icon {
        margin-left: 105px;
        margin-bottom: 10px;
    }

    .exclusive-content-copy .payamount1 .para {
        font-size: 18px;
        line-height: 25px;
        text-align: center;
        padding-left: 60px;
        padding-right: 80px;
    }

    .exclusive-content-copy .upc1 .favorite-icon {
        margin-left: 62px;
        margin-bottom: 10px;
    }

    .exclusive-content-copy .upc1 .para {
        font-size: 18px;
        line-height: 25px;
        text-align: center;
        padding-left: 33px;
        padding-right: 114px;
    }

    .exclusive-content-copy .retailer1 .favorite-icon {
        margin-left: 125px;
        margin-bottom: 10px;
    }

    .exclusive-content-copy .retailer1 .para {
        font-size: 18px;
        line-height: 25px;
        text-align: center;
        padding-left: 60px;
        padding-right: 80px;
    }

    .exclusive-content-copy .activation1 .favorite-icon {
        margin-left: 90px;
        margin-bottom: 10px;
    }

    .exclusive-content-copy .activation1 .para {
        font-size: 18px;
        line-height: 25px;
        text-align: center;
        padding-left: 33px;
        padding-right: 114px;
    }

    .featured-vip-section {
        width: 43.5rem;
    }

    .featured-card-content .row {
        --bs-gutter-x: 3rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(var(--bs-gutter-y) * -1);
        margin-right: 0;
        margin-left: 0;
    }

    .featured-vip-section .top-heading {
        font-size: 40px;
    }

    .featured-card-content .card1 {
        width: 19rem;
        margin-bottom: 55px;
    }

    .featured-card-content .card2 {
        width: 19rem;
        margin-bottom: 55px;
    }

    .featured-card-content .bottom-head {
        padding: 10px 15px;
    }

    .add-to-cart-btn .cart-btn {
        background: #FFA800;
        font-size: 25px;
        font-weight: 700;
        width: 100%;
        letter-spacing: 0em;
        text-align: center;
        color: #ffffff;
        margin-bottom: 0;
        border-radius: 0;
        border-bottom-left-radius: 13px;
        border-bottom-right-radius: 13px;
    }

    .add-to-cart-btn .cart-btn img {
        width: 25px;
    }

    .multiple-options-section {
        width: 43.5rem;
    }

    .multiple-options-section .multiple-options {
        display: none;
    }

    .multiple-options-section #multiple-options-copy {
        display: block;
    }

    .multiple-options-section .multiple-options-copy {
        background: #FFA800;
        padding: 35px;
        border-radius: 20px;
    }

    .multiple-options-copy .heading {
        font-family: Helvetica;
        font-size: 26px;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: 0em;
        text-align: center;
        color: #ffffff;
    }

    .multiple-options-copy .satisfaction1 {
        margin-bottom: 70px;
    }

    .multiple-options-copy .most-trusted1 {
        margin-bottom: 70px;
    }

    .multiple-options-copy .satisfaction1 .img-category1 {
        margin-left: 115px;
        margin-bottom: 30px;
    }

    .multiple-options-copy .most-trusted1 .img-category2 {
        margin-left: 115px;
        margin-bottom: 30px;
    }

    .multiple-options-copy .lowest-price1 .img-category3 {
        margin-left: 100px;
        margin-bottom: 30px;
    }

    .multiple-options-copy .payment-options1 .img-category4 {
        margin-left: 90px;
        margin-bottom: 30px;
    }

    .testimonial-section {
        width: 43.5rem;
        margin-bottom: 200px;
    }

    .testimonial-section .heading {
        font-size: 40px;
    }

    #footer-section {
        display: none;
    }

    #footer-section-copy {
        display: block;
        padding-right: 0 !important;
    }

    .mob-footer {
        background: #000000;
    }

    .mob-footer .main-footer {
        padding: 35px 35px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-footer .footer-icon {
        width: 60px;
    }

    .mob-padding {
        padding: 0px 20px;
    }

    .add-to-cart-section {
        width: 43.5rem;
        padding-top: 20px;
        padding-right: 20px;
    }

    .add-to-cart-section .add-left-cart-top {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }

    .add-cart-top .cart-head {
        font-family: Helvetica;
        font-size: 60px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 50px;
        letter-spacing: 0.04em;
        text-align: left;
    }

    .add-cart-top .cart-logo {
        width: 50px;
    }

    hr.hr-bottom {
        border-top: 3px dashed #000000;
        background: white;
    }

    .add-to-cart-section .add-cart-middle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 35px 0px;
    }

    .add-to-cart-section .add-left-cart-middle {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }

    .add-to-cart-section .add-right-cart-middle {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }

    .add-to-cart-section .add-left-middle-text {
        font-family: Helvetica;
        font-size: 35px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 30px;
        letter-spacing: 0.04em;
        text-align: left;
        margin-left: 20px;
    }

    .add-to-cart-section .add-right-middle-text {
        font-family: Helvetica;
        font-size: 35px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 30px;
        letter-spacing: 0.04em;
        text-align: left;
        margin-right: 20px;
    }

    .add-to-cart-section .add-category-close {
        width: 24px;
    }

    .add-to-cart-section .add-cart-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 20px 0px;
    }

    .add-to-cart-section .bottom-text {
        font-family: Helvetica;
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: 0.04em;
        text-align: left;
    }

    .add-to-cart-section .subtotal {
        font-family: Helvetica;
        font-size: 30px;
        font-weight: 700;
        line-height: 30px;
        letter-spacing: 0.04em;
        text-align: left;
    }

    .add-to-cart-section .price {
        font-family: Helvetica;
        font-size: 30px;
        font-weight: 700;
        line-height: 30px;
        letter-spacing: 0.04em;
        text-align: left;
    }

    .add-to-cart-section .checkout-btn .check-btn {
        width: 100%;
        color: #000000;
        background-color: #FFA800;
        border-color: #FFA800;
        font-size: 34px;
        font-weight: 700;
        line-height: 70px;
        letter-spacing: 0.04em;
        text-align: center;
        border-radius: 10px;
    }

    .add-to-cart-section .proceed-btn .pro-btn {
        width: 100%;
        color: #FFFFFF;
        background-color: #7E7E7E;
        border-color: #7E7E7E;
        font-size: 34px;
        font-weight: 700;
        line-height: 70px;
        letter-spacing: 0.04em;
        text-align: center;
        border-radius: 10px;
    }

    .navbar-section .topbar1 {
        border-radius: 15px;
        background-color: #000000;
    }

    .store-margin-top {
        margin-top: 230px;
        width: 43.5rem;
    }

    .store-promo {
        margin-left: 12px;
    }

    .fvs1 {
        margin-bottom: 80px;
    }

    .category-filter {
        width: 30px;
    }

    .dropdown-menu[data-bs-popper] {
        top: 100%;
        left: -146px;
        margin-top: 0.125rem;
    }

    .category-button .dropdown-menu {
        max-width: 7rem;
    }

    .filter-store {
        width: 30px;
    }

    .store-navbar .sum-button {
        background-color: #FBAF02;
        border-radius: 20px;
        width: 25%;
    }

    .price-section .price-button {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .price-section .price-button .range-bar {
        width: 530px;
    }

    .price-section .price-button .price-text {
        font-family: Helvetica;
        font-size: 20px;
        font-weight: 700;
        line-height: 21px;
        letter-spacing: 0em;
        text-align: left;
        margin: 0;
        color: #FFFFFF;
        margin-right: 40px;
    }

    .range-bar .form-range {
        height: 13px;
        width: 500px;
    }

    .navbar-section .topbar4 {
        border-radius: 15px;
        background-color: #000000;
    }

    .login-margin {
        margin-top: 230px;
        margin-bottom: 50px;
    }

    .upc-section {
        width: 44.2rem;
        padding-left: 20px;
        padding-right: 30px;
    }

    .upc-section .upc-heading {
        font-size: 80px;
        line-height: 100px;
        margin-bottom: 30px;
    }

    .upc-section .upc-confirm {
        font-size: 47px;
        line-height: 50px;
        margin-bottom: 25px;
    }

    .upc-section .upc-left-text {
        width: 65%;
    }

    .upc-section .upc-para {
        font-size: 27px;
        margin-bottom: 25px;
    }

    .upc-section .order-img {
        position: absolute;
        top: 30%;
        left: 100%;
        width: 20rem;
    }

    .upc-details .upc-name {
        font-size: 30px;
        line-height: 50px;
    }

    .upc-details .upc-value {
        font-size: 30px;
        line-height: 50px;
    }

    .upc-section .upc-button {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .upc-section .upc-button .upc-btn {
        font-size: 35px;
        font-weight: 700;
        line-height: 60px;
        width: 270px;
        border-radius: 40px;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .go-to-order .go-my-order {
        font-size: 25px;
        font-weight: 500;
        text-align: center;
        color: #00A1BA;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .payment-failure {
        margin-top: 200px;
        margin-bottom: 50px;
        width: 44.2rem;
        padding-left: 20px;
        padding-right: 30px;
    }

    .payment-failure .failure-img {
        position: absolute;
        top: 55%;
        left: 30%;
        width: 30rem;
    }

    .payment-failure .left-retry-head {
        font-size: 85px;
        line-height: 100px;
        text-align: left;
        margin-bottom: 75%;
    }

    .payment-failure .retry-payment {
        display: unset;
        text-align: center;
    }

    .payment-failure .retry-para {
        font-size: 30px;
        line-height: 50px;
        text-align: center;
        margin-right: 20px;
    }

    .payment-failure .retry-button {
        text-align: center;
    }

    .payment-failure .retry-button .retry-btn {
        font-size: 30px;
        line-height: 50px;
        text-align: center;
        padding-left: 30px;
        padding-right: 30px;
        border-radius: 30px;
    }

    .page-not-found {
        width: 44.2rem;
        padding-left: 20px;
        padding-right: 30px;
    }

    .pnf-margin {
        margin-top: 300px;
        margin-bottom: 100px;
    }

    .page-not-found .page-not-found-img {
        margin-left: 15%;
    }

    .page-not-found .pnf-para {
        font-size: 35px;
        line-height: 60px;
        text-align: center;
        opacity: 0.5;
        margin-top: 50px;
        padding: 0px 70px;
    }

    .order-section {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 44.2rem;
        text-align: center;
        padding-left: 40px;
        padding-right: 50px;
    }

    .order-section .order-right {
        display: none;
    }

    .order .order-heading {
        font-size: 85px;
        line-height: 70px;
        text-align: center;
        margin-bottom: 40px;
    }

    .order .order-confirm {
        font-size: 46px;
        font-style: italic;
        line-height: 50px;
        text-align: center;
        margin-bottom: 30px;
    }

    .order .order-para {
        font-size: 30px;
        font-weight: 400;
        text-align: left;
        margin-bottom: 20px;
    }

    .order .order-details {
        padding: 20px 20px;
        margin-top: 10px;
    }

    .order-details .order-details-heading {
        font-size: 50px;
        line-height: 60px;
        text-align: left;
        margin-bottom: 30px;
    }

    .order-details .order-name {
        font-size: 30px;
        line-height: 50px;
        text-align: left;
    }

    .order-details .order-value {
        font-size: 30px;
        line-height: 50px;
        text-align: left;
    }

    .order .download-button .download-btn {
        font-size: 30px;
        line-height: 55px;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        border-radius: 40px;
        margin-top: 30px;
    }

    .signup-margin {
        margin-top: 190px;
        margin-bottom: 10px;
    }

    .sign-up-page {
        display: flex;
        justify-content: space-between;
        width: 44.2rem;
        padding-left: 20px;
        padding-right: 30px;
    }

    .sign-up-page .left-signup {
        width: 42rem;
    }

    .sign-up-page .right-signup {
        display: none;
    }

    .sign-up-page .create-account {
        font-size: 85px;
        font-weight: 700;
        line-height: 80px;
        text-align: center;
        margin-bottom: 20px;
    }

    .sign-up-page .form-label {
        font-size: 30px;
        font-weight: 400;
        line-height: 40px;
        margin-bottom: 0.5rem;
    }

    .sign-up-page .form-control {
        font-size: 30px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .sign-up-page .referral-para {
        font-size: 20px;
        line-height: 25px;
        text-align: left;
    }

    .sign-up-page .signup-btn {
        font-size: 30px;
        line-height: 50px;
        border-radius: 30px;
    }

    .signin-margin {
        margin-top: 400px;
        margin-bottom: 200px;
    }

    .sign-up-page .message {
        font-family: Helvetica;
        font-size: 25px;
        font-weight: 400;
        line-height: 32px;
        letter-spacing: 0em;
        text-align: center;
    }

    .verify-margin {
        margin-top: 400px;
        margin-bottom: 150px;
    }

    .sign-up-page .otp-message {
        font-family: Helvetica;
        font-size: 30px;
        font-weight: 500;
        line-height: 50px;
        letter-spacing: 0em;
        text-align: center;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .otp-verify .ap-otp-input {
        border: 2px solid #000000;
        border-radius: 10px;
        width: 10%;
        height: 60px;
        text-align: center;
        font-size: 28px;
    }

    .otp-verify .otp-margin {
        margin-right: 48px;
    }

    .payment-login {
        width: 44.2rem;
    }

    #store-navbar {
        display: none;
    }

    #volet {
        display: none;
    }

    #volet-copy {
        display: block;
    }

    #volet-copy {
        width: 42.5rem;
        height: 200px;
        margin-top: 160px;
        background: #fff;
        color: #fff;
        border-radius: 0 0 16px 0;


        position: absolute;
        top: -272px;
        bottom: 200px;
        left: 14px;
        z-index: 10;
        transition: all .5s ease-out;
    }


    #volet-copy a.open,
    #volet-copy a.close {
        width: 100%;
        font-size: 14px;
        text-align: center;
        position: absolute;
        padding: 10px 25px;
        top: 400px;
        background: #FBAF02;
        line-height: 20px;
        height: 40px;
        color: #fff;
        text-decoration: none;
        transform: rotate(0deg);
        border-radius: 0 0 8px 8px;
    }

    #volet-copy a.open {
        left: 0;
        top: 273px;
        z-index: 1;
        opacity: 1;
    }

    #volet-copy a.close {
        left: 0;
        top: 199px;
        z-index: -1;
        opacity: 0;
    }


    #volet-copy:target a.open {
        left: 0;
        z-index: -1;
        opacity: 0;
        transition: all .5s ease-out;
    }

    #volet-copy:target a.close {
        left: 0;
        z-index: 1;
        opacity: 1;
        transition: all .5s ease-out;
    }

    #volet-copy:target {
        top: 0px;
    }

    #volet-copy .store-arrow {
        width: 20px;
    }

    .modal-copy{
        padding-right: 0 !important;
    }
    .search-content .advance-box {
        margin-top: 70px;
        margin-bottom: 50px;
        padding: 0;
    }   
    .modal-copy .modal-box1 .nav-tabs .nav-link{
        font-size: 35px;
    } 
    .modal-copy .modal-box1 .nav-tabs .nav-link.active {
        font-size: 35px;
    } 
    .btn-close {
        background: transparent url(/assets/img/btn-close.svg) center/1.5em auto no-repeat;
        opacity: 1;
    }
    .modal-copy .form-control {
        font-size: 30px;
        border-radius: 35px;
    }
    .modal-copy .advance-box .radio-option {
        display: grid;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .modal-copy .advance-box .radio-option .form-check {
        margin-bottom: 2.125rem;
    }
    .form-check-input {
        width: 2em;
        height: 2em;
        margin-top: 0;
        margin-right: 10px;
    }

    .modal-copy .radio-option label {
        display: inline-block;
        font-family: Helvetica;
        font-size: 30px;
        font-weight: 500;
        line-height: 27px;
        letter-spacing: 0em;
        text-align: center;
    }

    .submit-button .advance-btn {
        font-size: 40px;
        padding-left: 50px;
        padding-right: 50px;
    }

    .modal-copy .form-fill-control{
        display: unset;
    }

    .modal-copy .heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .modal-copy .form-fill-control .form-control {
        margin-bottom: 15px;
    }
    .modal-copy .form-fill-control input::placeholder {
        font-size: 30px;
    }
    .modal-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1040;
        width: 100%;
        height: 100%;
        background-color: #000;
    }

    .profile-modal .modal-dialog-centered {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: calc(100% - 1rem);
    }

    .profile-modal-content .list-group-item {
        z-index: 2;
        color: #fff;
        font-family: Helvetica;
        font-size: 40px;
        font-weight: 700;
        line-height: 40px;
        letter-spacing: 0em;
        text-align: center;
        padding: 30px 60px;
        background-color: #00A1BA;
        border-color: #00A1BA;

    }
    .profile-modal-content .list-group-item.active {
        z-index: 2;
        color: #fff;
        background-color: #4EE7FF;
        border-color: #4EE7FF;
    }
    .profile-margin {
        margin-top: 250px;
        margin-bottom: 60px;
    }
    .profile-page{
        width: 44.2rem;
    }
    .my-profile-nav .profile-top-img1 {
        width: 40px;
        margin-right: 107px;
    }
    .my-profile-nav .profile-top-img {
        width: 40px;
    }
    .my-profile-page .profile-page {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-left: 20px;
        padding-right: 30px;
    }
    .profile-page .left-profile {
        width: 100%;
    }
    .profile-page .create-account {
        font-size: 84px;
        line-height: 90px;
    }
    .profile-page .form-label {
        font-size: 32px;
        line-height: 40px;
    }
    .profile-page .form-control {
        font-size: 28px;
        line-height: 40px;
    }
    .profile-page .col-form-label {
        padding-top: calc(0.375rem + 1px);
        padding-bottom: calc(0.375rem + 1px);
        margin-bottom: 0;
        font-size: 32px;
        line-height: 40px;
    }
    .profile-page .update-btn {
        font-size: 35px;
        line-height: 60px;
        width: 100%;
        border-radius: 35px;
    }
    .my-profile-page .right-profile{
        display: none;
    }
    .my-order-page{
        width: 44.2rem;
        padding-left: 10px;
        padding-right: 25px;
    }
    .my-order-page .order-page-heading {
        font-size: 84px;
        line-height: 90px;
    }
    .my-order-page .top-order-head-filter {
        display: unset;
    }
    .my-order-page .order-filter {
        position: relative;
        left: 0;
        margin-bottom: 35px;
    }
    .order-filter .custom-select {
        position: relative;
        width: 235px;
    }
    .order1-margin {
        margin-top: 270px;
        margin-bottom: 150px;
    }
    .order-filter .select-selected {
        padding: 8px 35px;
        font-size: 23px;
        font-weight: 500;
        line-height: 30px;
        border-radius: 20px;
    }
    .select-selected:after {
        width: 18px;
        height: 20px;
    }
    .select-go {
        background: #FBAF02;
        width: 46px;
        height: 46px;
        text-align: center;
        border-radius: 24px;
        position: relative;
        right: 40px;
    }
    .select-go .go {
        font-family: Helvetica;
        font-size: 22px;
        font-weight: 700;
        line-height: 45px;
        letter-spacing: 0em;
        text-align: center;
        color: #ffffff;
    }
    .my-order-page .bottom-count {
        font-family: Helvetica;
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: 0em;
        text-align: center;
        color: #00A1BA;
    }
    .refer-and-earn-page .right-refer-earn{
        display: none;
    }
    .refer-and-earn-page .refer-and-earn {
        width: 44.2rem;
        padding-left: 20px;
        padding-right: 30px;
    }
    .refer-and-earn-page .left-refer-earn{
        width: 43.5rem;
    }
    .refer-margin{
        margin-top: 270px;
        margin-bottom: 150px;
    }
    .refer-and-earn .top-coin-head {
        font-size: 35px;
    }
    .refer-and-earn .collected-coin {
        width: 28px;
        margin-left: 8px;
        position: relative;
        bottom: 3px;
    }
    .refer-and-earn .top-refer-head {
        font-size: 84px;
        line-height: 90px;
    }
    .refer-and-earn .top-refer-para {
        font-size: 32px;
        line-height: 45px;
        margin-top: 30px;
    }   
    .email-form .form-label {
        font-size: 25px;
        font-weight: 500;
        line-height: 32px;
        text-align: center;
        margin-bottom: 20px;
    }
    .email-form .form-control {
        font-size: 30px;
        border-radius: 30px;
        margin-bottom: 50px;
    }
    .middle-refer .email-form {
        display: unset;
    }
    .email-form .email-btn {
        font-size: 30px;
        border-radius: 30px;
    }
    .email-form .email-button {
        margin-left: 0;
        text-align: center;
    }
    .refer-and-earn .middle-or {
        font-size: 30px;
        line-height: 50px;
    }
    .refer-and-earn .referral-btn {
        font-size: 30px;
        border-radius: 30px;
        margin-top: 10px;
        margin-bottom: 25px;
    }
    .refer-and-earn .referral-para {
        font-size: 30px;
        line-height: 40px;
        margin-top: 50px;
    }
    .refer-and-earn .copy-logo {
        margin-left: 10px;
        width: 30px;
    }
    .refer-and-earn .bottom-refer-para {
        font-size: 20px;
        line-height: 30px;
        margin-top: 20px;
    }
    .order-margin {
        margin-top: 280px;
        margin-bottom: 180px;
    }
    .width{
        width: 44.2rem;
        padding-left: 20px;
        padding-right: 30px;
    }
    .order-details-section {
        display: unset;
    }
    .order-details .heading1 {
        font-size: 84px;
        line-height: 90px;
        text-align: left;
        margin-bottom: 30px;
    }
    .order-details .order-details-confirm {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 50px;
    }
    .order-details .order-details-para {
        font-size: 30px;
        line-height: 44px;
    }
    .order-details-left .order-details-details {
        margin-top: 550px;
    }
    .profile-modal .modal-content {
        width: 50%;
    }
    .order-filter .select-items {
        width: 165px;
    }
    .order-details-section .order-right{
        width: 165%;
        position: absolute;
        top: 110%;
        padding-left: 20px;
        padding-right: 30px;
    }
    .order-details-section .order-upc {
        padding: 50px 30px;
    }
    
    .order-details-section .order-upc-text {
        font-size: 40px;
        line-height: 60px;
    }
    .order-details-details .order-details-value {
        font-family: Helvetica;
        font-size: 40px;
        font-weight: 500;
        line-height: 50px;
        letter-spacing: 0em;
        text-align: left;
    }
    .order-details-button .order-details-btn {
        font-size: 30px;
        width: 328px;
        line-height: 50px;
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 30px;
        margin-top: 30px;
    }
    .order-details-button .order-disabled-btn {
        font-size: 30px;
        width: 328px;
        line-height: 50px;
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 30px;
        margin-top: 30px;
    }
    .about-margin {
        margin-top: 260px;
        margin-bottom: 0;
    }
    .about-us-page .about-us{
        width: 44.2rem;
        padding-left: 20px;
        padding-right: 30px;
    }
    .about-us-page .right-about{
        position: absolute;
        transform: rotate(90deg);
        top: -380px;
        width: 12rem;
    }
    .about-us-page .right-about .about-img {
        width: 50vw;
        height: 150vh;
    }
    .contact-us-margin {
        margin-top: 200px;
        margin-bottom: 180px;
    }
    .contact-us-page .contact-us{
        width: 44.2rem;
        padding-left: 20px;
        padding-right: 30px;
    }
    .contact-us-page .contact-us-heading {
        font-size: 84px;
        line-height: 80px;
        padding-right: 45px;
        margin-bottom: 30px;
    }
    .contact-us-page .top-contact {
        margin-bottom: 35px;
    }
    .contact-us-page .top-contact-heading {
        font-size: 30px;
        line-height: 35px;
    }    
    .contact-us-page .form-control {
        font-size: 20px;
        line-height: 50px;
    }
    .contact-us-page .contact-us-btn {
        font-size: 30px;
        line-height: 50px;
        border-radius: 30px;
        width: 40%;
    }
    .contact-us-page .middle-left {
        width: 100%;
    }
    .contact-us-page .middle-left-heading {
        font-size: 42px;
    }
    .contact-us-page .middle-left-para {
        font-size: 42px;
    }
    .contact-us-page .middle-right{
        display: none;
    }
    .contact-us-page .bottom-contact {
        display: unset;
    }
    .contact-us-page .bottom-left,.bottom-center,.bottom-right{
        margin-left: 80px;
        margin-bottom: 50px;
    }
    .contact-us-page .contact-us-people {
        width: 65px;
        position: absolute;
        bottom: -107%;
        left: 33px;
    }
    .contact-us-page .contact-us-mssg {
        width: 65px;
        position: absolute;
        bottom: -139%;
        left: 33px;
    }
    .contact-us-page .contact-us-unstuck {
        display: block;
        width: 65px;
        position: absolute;
        bottom: -165%;
        left: 33px;
    }
    .contact-us-page .bottom-left-head {
        font-size: 50px;
        line-height: 50px;
    }
    .contact-us-page .bottom-left-para {
        font-size: 28px;
        line-height: 40px;
    }
    .contact-us-page .center-left-head {
        font-size: 35px;
        line-height: 30px;
    }
    .contact-us-page .bottom-center-link {
        display: unset;
    }
    .contact-us-page .lower-contact{
        font-size: 30px;
    }
    .contact-us-page .lower-contact-img {
        width: 35px;
    }
    .mob-steps-margin{
        margin-top: 200px;
        margin-bottom: 170px;
    }
    .mob-steps-to-buy .mob-steps-buy{
        width: 44.2rem;
        padding-left: 20px;
        padding-right: 30px;
    }
    .mob-steps-to-buy .steps-to-buy-heading{
        font-family: Helvetica;
        font-size: 84px;
        font-weight: 700;
        line-height: 90px;
        letter-spacing: 0em;
        text-align: left;
        margin-bottom: 50px;
    }
    .mob-steps-to-buy .steps-buy-content{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    .mob-steps-to-buy .steps-buy-sub-content{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }
    .mob-steps-to-buy .right-head{
        font-family: Helvetica;
        width: 93%;
        font-size: 50px;
        font-weight: 500;
        line-height: 60px;
        letter-spacing: 0em;
        text-align: left;
    }

    .mob-steps-to-buy .right-para{
        font-family: Helvetica;
        width: 93%;
        font-size: 30px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: 0em;
        text-align: justify;
    }
    .mob-steps-to-buy .browsing{
        font-family: Helvetica;
        font-size: 30px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: 0em;
        text-align: left;
        color: #00A1BA;
    }
    .mob-steps-to-buy .steps-left-img{
        width: 8rem;
    }
    .mob-steps-to-buy .steps-right-img{
        width: 14rem;
    }



    
}

@media only screen and (Max-width: 600px) and (min-width: 450px) {
    /* #web-navbar{
        display: none;
    }
    .mob-navbar{
        background: #000000;
        margin: 60px 70px;
        width: 56rem;
        border-radius: 20px;
    }
    .mob-navbar .main-navbar{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
    }
    .main-navbar .search-logo{
        width: 55px;
    }
    .margin-topbar {
        margin-top: 0;
    }
    .vipnumber-section .row1 {
        justify-content: space-between;
        align-items: center;
        margin: 0px 75px;
        width: 746px;
    }
    .vipnumber-section #circle .text{
        position: absolute;
        top: 35%;
        right: -90%;
        width: 60%;
        height: 400px;
    }
    .vipnumber-section #circle .image {
        position: absolute;
        width: 20%;
    }
    .search-number-tab{
        margin-top: 100px;
        width: 55rem;
    }
    .search-number-tab #mytab{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .search-number-tab .advance {
        font-size: 40px;
    }
    .search-number-tab .search-tab-head {
        font-size: 40px;
        padding: 1rem 1.5rem !important;
        border-top-left-radius: 1rem !important;
        border-top-right-radius: 1rem !important;
    }
    .search-number-tab .mob-search{
        justify-content: space-between;
        align-items: center;
    }
    .search-number-tab .mob-search .form-control {
        font-size: 50px;
    }
    .search-number-tab .search-btn{
        font-size: 40px;
        padding: 14px 70px;
    }
    .search-number-tab input::placeholder {
        font-size: 40px;
    }
    .exclusive-number {
        width: 55rem;
        margin: 20px 90px;
    }
    .exclusive-number .top-heading {
        font-size: 45px;
        margin-bottom: 3rem;
        margin-top: 50px;
    }
    .exclusive-number .exclusive-content {
        display: unset;
    }
    .exclusive-content .margin-right {
        margin-right: 0;
    }
    .favorite-number .para {
        font-size: 18px;
        line-height: 25px;
        text-align: left;
    }
    .payamount .para {
        font-size: 18px;
        line-height: 25px;
        text-align: left;
    }
    .upc .para {
        font-size: 18px;
        line-height: 25px;
        text-align: left;
    }
    .retailer .para {
        font-size: 18px;
        line-height: 25px;
        text-align: left;
    }
    .activation .para {
        font-size: 18px;
        line-height: 25px;
        text-align: left;
    } */
}


@media only screen and (max-width: 991px) and (min-width: 768px) {

    .navbar-section .topbar {
        border-radius: 15px;
    }

    .navlogo {
        width: 55%;
    }

    .navbar-section .nav-heading {
        font-size: 18px;
        padding: 0 0.4rem !important;
    }

    .navbar-section .nav-heading.active {
        font-size: 18px;
    }

    .mb-2 {
        margin-bottom: 0rem !important;
    }

    .margin-topbar {
        margin-top: 70px;
        overflow: hidden;
    }

    .vipnumber-section {
        height: 344px;
    }

    .vipnumber-section #circle .text {
        width: 100%;
        height: 389px;
    }

    .vipnumber-section #circle .image {
        position: absolute;
        width: 35%;
    }

    .vipnumber-section .left-part .head {
        font-size: 30px;
        line-height: 45px;
    }

    .vipnumber-section .left-part #text {
        font-size: 30px;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        position: relative;
        left: 20px;
    }

    .search-number-tab .search-tab-head {
        font-size: 14px;
    }

    .search-number-tab .nav-tabs .nav-link {
        margin-bottom: -10px;
    }

    .px-4 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .search-number-tab input::placeholder {
        font-size: 13px;
    }

    .search-number-tab .search-btn {
        font-size: 16px;
        padding-left: 18px;
        padding-right: 18px;
        margin-left: 5px;
    }

    .exclusive-number .top-heading {
        font-size: 32px;
        margin-bottom: 2rem;
    }

    .exclusive-content .margin-right {
        margin-right: 15px;
    }

    .favorite-number .favorite-icon {
        width: 8.6rem;
        margin-bottom: 15px;
    }

    .favorite-number .para {
        font-size: 16px;
        line-height: 23px;
    }

    .payamount .favorite-icon {
        width: 3rem;
        margin-left: 33px;
        margin-bottom: 25px;
    }

    .payamount .para {
        font-size: 16px;
        line-height: 23px;
    }

    .upc .favorite-icon {
        width: 5rem;
        margin-left: 15px;
        margin-bottom: 25px;
    }

    .upc .para {
        font-size: 16px;
        line-height: 23px;
    }

    .retailer .favorite-icon {
        width: 3rem;
        margin-left: 40px;
        margin-bottom: 25px;
    }

    .retailer .para {
        font-size: 16px;
        line-height: 23px;
    }

    .activation .favorite-icon {
        width: 3rem;
        margin-left: 65px;
        margin-bottom: 25px;
    }

    .activation .para {
        font-size: 16px;
        line-height: 23px;
    }

    .read-more {
        font-family: Helvetica;
        font-size: 13px;
    }

    .featured-vip-section .top-heading {
        font-size: 35px;
        line-height: 55px;
        margin: 20px 0px;
    }

    .featured-card-content .card1 {
        width: 13.5rem;
        margin-bottom: 27px;
    }

    .featured-card-content .card2 {
        width: 13.5rem;
        margin-bottom: 27px;
    }

    .featured-card-content .top-head .heading {
        font-size: 25px;
        line-height: 45px
    }

    .featured-card-content .middle-head {
        padding: 4px 12px;
    }

    .featured-card-content .middle-head .middle-para-margin {
        margin-left: 2px;
    }

    .featured-card-content .bottom-head {
        padding: 3px 12px;
    }

    .featured-card-content .bottom-head .left {
        font-size: 11px;
    }

    .featured-card-content .bottom-head .right {
        font-size: 18px;
    }

    .add-to-cart-btn .cart-btn {
        font-size: 13px;
        margin-bottom: 11px;
    }

    .add-to-cart-btn .cart-btn img {
        width: 17px;
    }

    .view-more {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 18px;
    }

    .multiple-options-section .multiple-options {
        padding: 10px 18px 10px 18px;
    }

    .multiple-options .heading {
        font-size: 15px;
        line-height: 18px;
    }

    .multiple-options .img-category1 {
        margin-left: 42px;
    }

    .multiple-options .img-category2 {
        margin-left: 72px;
    }

    .multiple-options .img-category3 {
        margin-left: 65px;
    }

    .multiple-options .img-category4 {
        margin-left: 60px;
    }

    .testimonial-section .heading {
        font-size: 35px;
        line-height: 30px;
        margin-top: 40px;
    }

    .testimonial-card .head-tag {
        font-size: 20px;
    }

    .testimonial-card .name-tag {
        font-size: 18px;
    }

    .testimonial-card .star-icon img {
        width: 20px;
    }

    .testimonial-card .google-icon {
        width: 145px;
        position: relative;
        left: -17px;
        bottom: -18px;
    }

    .scroll {
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 1rem 0;
        margin: 1rem 0;
        cursor: default;
        overflow: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 0px 1.25rem;
        scrollbar-width: none;
    }

    .testimonial-card {
        width: 16rem;
        height: auto;
        flex: 0 0 auto;
        margin: 0 0.35rem;
        border: none;
        outline: none;
        border-radius: 20px;
        color: black;
        background: white;
        box-shadow: 0px 0px 20px 0px #00000026;

    }

    .footer-content {
        padding-top: 0;
    }

    .left-footer .company-logo {
        width: 120px;
    }

    .left-footer {
        width: 8rem;
    }

    .left-footer .desc-para {
        font-size: 12px;
        line-height: 22px;
        margin-top: 15px;
    }

    .left-footer .social-margin {
        margin-right: 4px;
    }

    .center-footer .content-details {
        padding: 0px 15px;
    }

    .content-details .heading {
        font-size: 18px;
    }

    .content-details .list-head {
        font-size: 14px;
    }

    .contact-content-details .heading {
        font-size: 18px;
    }

    .contact-category .contact-part {
        font-size: 14px;
    }

    .center-details input::placeholder {
        font-size: 14px;
    }

    .center-footer .search-btn {
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .right-footer .invite-people {
        width: 35px;
    }

    .right-footer .search-btn {
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .copyright-section .left {
        font-size: 12px;
    }

    .copyright-section .right {
        font-size: 12px;
    }

    .center-footer {
        width: 45%;
    }

    .center-footer .search-input-btn {
        width: 60%;
    }


    .offcanvas-end {
        width: 335px;
    }

    .left-cart-top .cart-head {
        font-size: 28px;
    }

    .left-cart-top .cart-logo {
        width: 18px;
    }

    .cart-top .right-cart-top .close-cart {
        width: 25px;
        cursor: pointer;
    }

    .left-cart-middle .sim-logo {
        width: 35px;
    }

    .left-cart-middle .left-middle-text {
        font-size: 16px;
    }

    .right-cart-middle .right-middle-text {
        font-size: 16px;
    }

    .cart-middle {
        margin: 20px 0px;
    }

    .cart-bottom .bottom-text {
        font-size: 14px;
    }

    .cart-bottom .subtotal {
        font-size: 22px;
    }

    .cart-bottom .price {
        font-size: 21px;
    }

    .checkout-btn .check-btn {
        font-size: 16px;
        line-height: 25px;
    }

    .proceed-btn .pro-btn {
        font-size: 16px;
        line-height: 25px;
    }

    .navbar-section .topbar1 {
        border-radius: 20px;
    }

    #volet {
        width: 43.5rem;
        height: 143px;
        margin-top: 105px;
        background: #fff;
        color: #fff;
        border-radius: 0 0 16px 0;
        position: absolute;
        top: -272px;
        bottom: 200px;
        left: 37px;
        z-index: 10;
        transition: all .5s ease-out;
    }

    .sum-button {
        background-color: #FBAF02;
        border-radius: 20px;
        width: 14%;
        margin-right: 5px;
    }

    .sum-button .form-control {
        padding: 0.1rem 0.2rem;
        font-size: 14px;
        line-height: 2.3;
    }

    .sum-button .input-group-text {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
    }

    .category-button {
        margin-right: 5px;
    }

    .category-button .btn-category {
        font-size: 14px;
        line-height: 20px;
    }

    .category-button .category-img {
        width: 10px;
        opacity: 0.5;
        margin-left: 5px;
    }

    .category-button .dropdown-menu {
        font-size: 14px;
        min-width: 7rem;
    }

    .filter-button .btn-category {
        font-size: 14px;
        line-height: 20px;
    }

    .filter-button .category-img {
        width: 10px;
        opacity: 0.5;
        margin-left: 5px;
    }

    .dropdown-menu[data-bs-popper] {
        top: 100%;
        left: -68px;
        margin-top: 0.125rem;
    }

    .store-navbar .price-button {
        margin-right: 5px;
    }

    .price-button .range-bar {
        width: 140px;
    }

    .price-button .price-text {
        font-size: 14px;
    }

    .filter-category .filter-text {
        font-size: 14px;
        line-height: 10px;
        margin-right: 5px;
    }

    .filter-navbar .close-button .filter-close {
        width: 18px;
    }

    .store-margin-top {
        margin-top: 175px;
    }

    .store-promo .promo-banner {
        width: -webkit-fill-available;
        margin-bottom: 30px;
    }

    .payment-failure .failure-img {
        width: 270px;
    }

    .payment-failure .left-retry-head {
        font-size: 26px;
        line-height: 40px;
    }

    .payment-failure .retry-para {
        font-size: 15px;
        line-height: 30px;
    }

    .retry-button .retry-btn {
        font-size: 12px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .my-profile-nav .profile-top-img1 {
        width: 18px;
        margin-right: 142px;
    }

    .profile-page .right-profile img {
        width: 260px;
    }

    .profile-page .create-account {
        font-size: 34px;
        line-height: 50px;
    }

    .profile-page .form-label {
        font-size: 18px;
        line-height: 25px;
    }

    .profile-page .form-control {
        font-size: 14px;
    }

    .left-profile .col-form-label {
        line-height: 1.1;
        font-size: 16px;
    }

    .my-order-page .order-page-heading {
        font-size: 34px;
        line-height: 50px;
    }

    .order-filter .select-selected {
        padding: 7px 35px;
        font-size: 16px;
        line-height: 23px;
    }

    .select-selected:after {
        position: absolute;
        content: "";
        top: 10px;
        left: 10px;
        width: 15px;
        height: 20px;
    }

    .select-go {
        width: 40px;
        height: 37px;
        position: relative;
        right: 39px;
    }

    .select-go .go {
        font-size: 18px;
        line-height: 36px;
    }

    .order-filter .custom-select {
        width: 185px;
    }

    .order-filter .select-items div {
        font-size: 18px;
        line-height: 16px;
    }

    .order-filter .select-items {
        width: 120px;
    }

    .my-order .my-order-head {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 18px;
    }

    .order-content-left .left-order-img {
        margin-right: 16px;
        width: 60px;
    }

    .my-order .order-info {
        font-size: 18px;
        line-height: 20px;
    }

    .order-content-right .right-order-img {
        margin-left: 130px;
        margin-bottom: 32px;
        width: 25px;
    }

    .refer-and-earn-page .left-refer-earn {
        width: 60%;
    }

    .refer-and-earn-page .right-refer-img {
        width: 250px;
    }

    .refer-and-earn .top-coin-head {
        font-size: 18px;
        line-height: 22px;
    }

    .refer-and-earn .top-refer-head {
        font-size: 28px;
        line-height: 45px;
    }

    .refer-and-earn .top-refer-para {
        font-size: 14px;
        line-height: 16px;
    }

    .email-form .form-label {
        font-size: 13px;
        line-height: 22px;
    }

    .email-form .form-control {
        font-size: 12px;
    }

    .email-form .email-btn {
        font-size: 12px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .refer-and-earn .middle-or {
        font-size: 18px;
        line-height: 18px;
    }

    .refer-and-earn .referral-btn {
        font-size: 14px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .refer-and-earn .bottom-refer {
        width: 88%;
    }

    .refer-and-earn .referral-para {
        font-size: 11px;
        line-height: 14px;
    }

    .refer-and-earn .copy-logo {
        width: 12px;
    }

    .refer-and-earn .bottom-refer-para {
        font-size: 6px;
        line-height: 14px;
    }

    .order-section .order-img {
        width: 370px;
    }

    .order .order-heading {
        font-size: 35px;
    }

    .order .order-confirm {
        font-size: 20px;
    }

    .order .order-para {
        font-size: 10px;
        line-height: 20px;
    }

    .order-details .order-details-heading {
        font-size: 30px;
        line-height: 20px;
    }

    .order-details .order-name {
        font-size: 16px;
        line-height: 20px;
    }

    .order-details .order-value {
        font-size: 16px;
        line-height: 20px;
    }

    .order .download-button .download-btn {
        font-size: 14px;
    }

    .go-to-order .go-my-order {
        font-size: 13px;
    }

    .order-details .order-details-confirm {
        font-size: 16px;
        line-height: 15px;
    }

    .order-details .order-details-para {
        font-size: 12px;
        line-height: 25px;
    }

    .order-details-details .order-details-value {
        font-size: 16px;
        line-height: 20px;
    }

    .order-details-button .order-details-btn {
        font-size: 14px;
        width: 200px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .order-details-button .order-disabled-btn {
        font-size: 14px;
        width: 200px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .order-details-section .order-upc {
        padding: 25px 20px;
    }

    .order-details-section .order-upc-text {
        font-size: 20px;
        line-height: 25px;
    }

    .pnf-margin {
        margin-top: 150px;
        margin-bottom: 80px;
    }

    .page-not-found .page-not-found-img {
        margin-left: 15%;
    }

    .page-not-found .pnf-para {
        font-size: 16px;
    }

    .sign-up-page .signup-img {
        width: 335px;
    }

    .otp-verify .otp-margin {
        margin-right: 24px;
    }
    .about-margin {
        margin-top: 120px;
        margin-bottom: 30px;
    }
    .about-us-page .about-heading {
        font-size: 50px;
        line-height: 80px;
    }
    .about-us-page .about-sub-heading {
        font-size: 25px;
        line-height: 40px;
    }
    .about-us-page .about-para {
        font-size: 16px;
        line-height: 25px;
    }
    .about-us-page .right-about .about-img {
        width: 45vw;
        height: 243vh;
    }
    .contact-us-page .contact-us-heading {
        font-size: 45px;
        line-height: 60px;
    }    
    .contact-us-page .top-contact-heading {
        font-size: 11px;
        line-height: 25px;
    }    

    .contact-us-page .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        position: relative;
        left: 0px;
    }
    .contact-us-page .contact-us-btn {
        font-size: 12px;
    }
    .contact-us-page .middle-left-heading {
        font-size: 20px;
        line-height: 30px;
    }
    .contact-us-page .middle-left-para {
        font-size: 20px;
        line-height: 30px;
    }
    .contact-us-page .form-control{
        line-height: 18px;
    }
    .contact-us-page .bottom-left-head {
        font-size: 22px;
        line-height: 20px;
    }
    .contact-us-page .bottom-left-para {
        font-size: 10px;
        line-height: 15px;
        margin-bottom: 10px;
    }
    .contact-us-page .center-left-head {
        font-size: 12px;
        line-height: 20px;
    }
    .contact-us-page .contact-us-people {
        width: 18px;
    }
    .contact-us-page .contact-us-mssg {
        width: 18px;
    }
    .contact-us-page .lower-contact-img {
        width: 18px;
        margin-right: 10px;
    }
    .contact-us-page .lower-contact{
        font-size: 12px;
        margin-bottom: 10px;
    }
    .contact-us-page .contact-us-img {
        width: 12rem;
    }
    .steps-to-buy-page {
        padding-left: 0px;
        padding-right: 0px;
    }
    .steps-to-buy-margin {
        margin-top: 120px;
        margin-bottom: 30px;
    }
    .steps-to-buy-page .steps-to-buy-heading {
        font-size: 45px;
        line-height: 70px;
    }
    .steps-to-buy-page .steps-left-img {
        width: 7rem;
        margin-right: 20px;
    }
    .steps-to-buy-page .steps-right-img {
        width: 12rem;
    }
    .steps-to-buy-page .right-part-head {
        font-size: 23px;
        line-height: 30px;
    }
    .steps-to-buy-page .right-part-para {
        font-size: 12px;
        line-height: 18px;
    }
    .steps-to-buy-page .browsing {
        font-size: 12px;
    }
    .steps-to-buy-page .steps-left-img1 {
        width: 7rem;
        margin-right: 20px;
    }
    .steps-to-buy-page .steps-right-img1 {
        width: 12rem;
    }
    .steps-to-buy-page .right-part-head1 {
        font-size: 23px;
        line-height: 30px;
    }
    .steps-to-buy-page .right-part-para1 {
        font-size: 12px;
        line-height: 18px;
    }
    .steps-to-buy-page .steps-right2{
        width: unset;
    }
    .steps-to-buy-page .right-part-subhead{
        font-size: 12px;
        line-height: 18px;
    }
    .steps-to-buy-page .steps-left{
        width: 65%;
    }


}


@media only screen and (max-width: 1050px) and (min-width: 992px) {
    .navbar-section .topbar {
        border-radius: 15px;
    }

    .navlogo {
        width: 65%;
    }

    .navbar-section .nav-heading {
        font-size: 23px;
        padding: 0 0.6rem !important;
    }

    .navbar-section .nav-heading.active {
        font-size: 23px;
    }

    .mb-2 {
        margin-bottom: 0rem !important;
    }

    .margin-topbar {
        margin-top: 100px;
        overflow: hidden;
    }

    .vipnumber-section {
        height: 450px;
    }

    .vipnumber-section #circle .text {
        width: 100%;
        height: 470px;
    }

    .vipnumber-section #circle .image {
        position: absolute;
        width: 38%;
    }

    .vipnumber-section .left-part .head {
        font-size: 43px;
        line-height: 60px;
    }

    .vipnumber-section .left-part #text {
        font-size: 43px;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        position: relative;
        left: 20px;
    }

    .search-number-tab .search-tab-head {
        font-size: 18px;
    }

    .search-number-tab .nav-tabs .nav-link {
        margin-bottom: -10px;
    }

    .px-4 {
        padding-right: 0.6rem !important;
        padding-left: 0.6rem !important;
    }

    .search-number-tab input::placeholder {
        font-size: 15px;
    }

    .search-number-tab .search-btn {
        font-size: 18px;
        padding-left: 18px;
        padding-right: 18px;
        margin-left: 3px;
    }

    .exclusive-number .top-heading {
        font-size: 42px;
        margin-bottom: 2rem;
    }

    .exclusive-number .exclusive-content {
        margin: 0px 50px;
    }

    .exclusive-content .margin-right {
        margin-right: 15px;
    }

    .favorite-number .favorite-icon {
        width: 8.6rem;
        margin-bottom: 15px;
    }

    .favorite-number .para {
        font-size: 16px;
        line-height: 23px;
    }

    .payamount .favorite-icon {
        width: 3rem;
        margin-left: 47px;
        margin-bottom: 25px;
    }

    .payamount .para {
        font-size: 16px;
        line-height: 23px;
    }

    .upc .favorite-icon {
        width: 5rem;
        margin-left: 17px;
        margin-bottom: 25px;
    }

    .upc .para {
        font-size: 16px;
        line-height: 23px;
    }

    .retailer .favorite-icon {
        width: 3rem;
        margin-left: 55px;
        margin-bottom: 25px;
    }

    .retailer .para {
        font-size: 16px;
        line-height: 23px;
    }

    .activation .favorite-icon {
        width: 3rem;
        margin-left: 88px;
        margin-bottom: 25px;
    }

    .activation .para {
        font-size: 16px;
        line-height: 23px;
    }

    .read-more {
        font-family: Helvetica;
        font-size: 13px;
    }

    .featured-vip-section .top-heading {
        font-size: 50px;
        line-height: 55px;
        margin: 20px 0px;
    }

    .featured-card-content .card1 {
        width: 13.5rem;
        margin-bottom: 27px;
    }

    .featured-card-content .card2 {
        width: 13.5rem;
        margin-bottom: 27px;
    }

    .featured-card-content .top-head .heading {
        font-size: 25px;
        line-height: 45px
    }

    .featured-card-content .middle-head {
        padding: 4px 12px;
    }

    .featured-card-content .middle-head .middle-para-margin {
        margin-left: 2px;
    }

    .featured-card-content .bottom-head {
        padding: 3px 12px;
    }

    .featured-card-content .bottom-head .left {
        font-size: 11px;
    }

    .featured-card-content .bottom-head .right {
        font-size: 18px;
    }

    .add-to-cart-btn .cart-btn {
        font-size: 13px;
        margin-bottom: 11px;
    }

    .add-to-cart-btn .cart-btn img {
        width: 17px;
    }

    .view-more {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 18px;
    }

    .multiple-options-section .multiple-options {
        padding: 10px 38px 10px 38px;
    }

    .multiple-options .heading {
        font-size: 15px;
        line-height: 18px;
    }

    .multiple-options .img-category1 {
        margin-left: 42px;
    }

    .multiple-options .img-category2 {
        margin-left: 72px;
    }

    .multiple-options .img-category3 {
        margin-left: 65px;
    }

    .multiple-options .img-category4 {
        margin-left: 60px;
    }

    .testimonial-section .heading {
        font-size: 50px;
        line-height: 30px;
        margin-top: 40px;
    }

    .testimonial-container {
        max-width: 55rem;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .testimonial-card .head-tag {
        font-size: 20px;
    }

    .testimonial-card .name-tag {
        font-size: 18px;
    }

    .testimonial-card .star-icon img {
        width: 20px;
    }

    .testimonial-card .google-icon {
        width: 145px;
        position: relative;
        left: -17px;
        bottom: -18px;
    }

    .scroll {
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 1rem 0;
        margin: 1rem 0;
        cursor: default;
        overflow: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 0px 1.25rem;
        scrollbar-width: none;
    }

    .testimonial-card {
        width: 16rem;
        height: auto;
        flex: 0 0 auto;
        margin: 0 0.35rem;
        border: none;
        outline: none;
        border-radius: 20px;
        color: black;
        background: white;
        box-shadow: 0px 0px 20px 0px #00000026;
    }

    .footer-content {
        padding-top: 0;
    }

    .left-footer .company-logo {
        width: 145px;
    }

    .left-footer {
        width: 9rem;
    }

    .left-footer .desc-para {
        font-size: 12px;
        line-height: 22px;
        margin-top: 15px;
    }

    .left-footer .social-margin {
        margin-right: 7px;
    }

    .content-details .heading {
        font-size: 18px;
    }

    .content-details .list-head {
        font-size: 14px;
    }

    .contact-content-details .heading {
        font-size: 18px;
    }

    .contact-category .contact-part {
        font-size: 14px;
    }

    .center-details input::placeholder {
        font-size: 14px;
    }

    .center-footer .search-btn {
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .right-footer .invite-people {
        width: 35px;
    }

    .right-footer .search-btn {
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .copyright-section .left {
        font-size: 12px;
    }

    .copyright-section .right {
        font-size: 12px;
    }

    .center-footer {
        width: 50%;
    }

    .center-footer .search-input-btn {
        width: 60%;
    }

    .offcanvas-end {
        width: 375px;
    }

    .left-cart-top .cart-head {
        font-size: 33px;
    }

    .left-cart-top .cart-logo {
        width: 22px;
    }

    .cart-top .right-cart-top .close-cart {
        width: 28px;
    }

    .left-cart-middle .sim-logo {
        width: 40px;
    }

    .left-cart-middle .left-middle-text {
        font-size: 18px;
    }

    .right-cart-middle .right-middle-text {
        font-size: 18px;
    }

    .cart-middle {
        margin: 20px 0px;
    }

    .cart-bottom .bottom-text {
        font-size: 16px;
    }

    .cart-bottom .subtotal {
        font-size: 24px;
    }

    .cart-bottom .price {
        font-size: 23px;
    }

    .checkout-btn .check-btn {
        font-size: 18px;
        line-height: 29px;
    }

    .proceed-btn .pro-btn {
        font-size: 18px;
        line-height: 29px;
    }

    .navbar-section .topbar1 {
        border-radius: 20px;
    }

    #volet {
        width: 58.5rem;
        height: 143px;
        margin-top: 125px;
        background: #fff;
        color: #fff;
        border-radius: 0 0 16px 0;
        position: absolute;
        top: -272px;
        bottom: 200px;
        left: 35px;
        z-index: 10;
        transition: all .5s ease-out;
    }

    .sum-button {
        background-color: #FBAF02;
        border-radius: 20px;
        width: 14%;
        margin-right: 5px;
    }

    .sum-button .form-control {
        padding: 0.1rem 0.2rem;
        font-size: 14px;
        line-height: 2.3;
    }

    .sum-button .input-group-text {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
    }

    .category-button {
        margin-right: 5px;
    }

    .category-button .btn-category {
        font-size: 16px;
        line-height: 24px;
    }

    .category-button .category-img {
        width: 12px;
        opacity: 0.5;
        margin-left: 14px;
    }

    .category-button .dropdown-menu {
        font-size: 14px;
        min-width: 7rem;
    }

    .filter-button .btn-category {
        font-size: 16px;
        line-height: 24px;
    }

    .filter-button .category-img {
        width: 12px;
        opacity: 0.5;
        margin-left: 14px;
    }

    .dropdown-menu[data-bs-popper] {
        top: 100%;
        left: -50px;
        margin-top: 0.125rem;
    }

    .store-navbar .price-button {
        margin-right: 5px;
    }

    .price-button .range-bar {
        width: 180px;
    }

    .price-button .price-text {
        font-size: 14px;
    }

    .filter-category .filter-text {
        font-size: 16px;
        line-height: 16px;
        margin-right: 10px;
    }

    .filter-navbar .close-button .filter-close {
        width: 18px;
    }

    .store-margin-top {
        margin-top: 200px;
    }

    .store-promo .promo-banner {
        width: -webkit-fill-available;
        margin-bottom: 30px;
    }

    .payment-failure .failure-img {
        width: 400px;
    }

    .payment-failure .left-retry-head {
        font-size: 32px;
        line-height: 50px;
    }

    .payment-failure .retry-para {
        font-size: 17px;
        line-height: 40px;
    }

    .retry-button .retry-btn {
        font-size: 14px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .my-profile-nav .profile-top-img1 {
        width: 20px;
        margin-right: 199px;
    }

    .profile-page .right-profile img {
        width: 350px;
    }

    .profile-page .create-account {
        font-size: 40px;
        line-height: 60px;
    }

    .profile-page .form-label {
        font-size: 20px;
        line-height: 28px;
    }

    .profile-page .form-control {
        font-size: 16px;
    }

    .left-profile .col-form-label {
        line-height: 1.3;
        font-size: 18px;
    }

    .my-order-page .order-page-heading {
        font-size: 38px;
        line-height: 55px;
    }

    .order-filter .select-selected {
        padding: 7px 35px;
        font-size: 18px;
        line-height: 26px;
    }

    .select-selected:after {
        position: absolute;
        content: "";
        top: 12px;
        left: 10px;
        width: 17px;
        height: 20px;
    }

    .select-go {
        width: 42px;
        height: 40px;
        position: relative;
        right: 40px;
    }

    .select-go .go {
        font-size: 18px;
        line-height: 38px;
    }

    .order-filter .custom-select {
        width: 198px;
    }

    .order-filter .select-items div {
        font-size: 18px;
        line-height: 18px;
    }

    .order-filter .select-items {
        width: 130px;
    }

    .my-order .my-order-head {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .order-content-left .left-order-img {
        margin-right: 16px;
        width: 64px;
    }

    .my-order .order-info {
        font-size: 20px;
        line-height: 20px;
    }

    .order-content-right .right-order-img {
        margin-left: 130px;
        margin-bottom: 32px;
        width: 27px;
    }

    .refer-and-earn-page .left-refer-earn {
        width: 60%;
    }

    .refer-and-earn-page .right-refer-img {
        width: 290px;
    }

    .refer-and-earn .top-coin-head {
        font-size: 20px;
        line-height: 25px;
    }

    .refer-and-earn .top-refer-head {
        font-size: 34px;
        line-height: 50px;
    }

    .refer-and-earn .top-refer-para {
        font-size: 17px;
        line-height: 24px;
    }

    .email-form .form-label {
        font-size: 16px;
        line-height: 25px;
    }

    .email-form .form-control {
        font-size: 14px;
    }

    .email-form .email-btn {
        font-size: 14px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .refer-and-earn .middle-or {
        font-size: 20px;
        line-height: 20px;
    }

    .refer-and-earn .referral-btn {
        font-size: 16px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .refer-and-earn .bottom-refer {
        width: 80%;
    }

    .refer-and-earn .referral-para {
        font-size: 13px;
        line-height: 16px;
    }

    .refer-and-earn .copy-logo {
        width: 14px;
    }

    .refer-and-earn .bottom-refer-para {
        font-size: 7px;
        line-height: 16px;
    }

    .order-section .order-img {
        width: 400px;
    }

    .order .order-heading {
        font-size: 38px;
    }

    .order .order-confirm {
        font-size: 22px;
    }

    .order .order-para {
        font-size: 12px;
        line-height: 24px;
    }

    .order-details .order-details-heading {
        font-size: 35px;
        line-height: 20px;
    }

    .order-details .order-name {
        font-size: 18px;
        line-height: 24px;
    }

    .order-details .order-value {
        font-size: 18px;
        line-height: 24px;
    }

    .order .download-button .download-btn {
        font-size: 16px;
    }

    .go-to-order .go-my-order {
        font-size: 15px;
    }

    .order-details .order-details-confirm {
        font-size: 19px;
        line-height: 24px;
    }

    .order-details .order-details-para {
        font-size: 14px;
        line-height: 28px;
    }

    .order-details-details .order-details-value {
        font-size: 20px;
        line-height: 25px;
    }

    .order-details-button .order-details-btn {
        font-size: 16px;
        width: 210px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .order-details-button .order-disabled-btn {
        font-size: 16px;
        width: 210px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .order-details-section .order-upc {
        padding: 35px 30px;
    }

    .order-details-section .order-upc-text {
        font-size: 28px;
        line-height: 38px;
    }

    .pnf-margin {
        margin-top: 170px;
        margin-bottom: 85px;
    }

    .page-not-found .page-not-found-img {
        margin-left: 22%;
    }

    .page-not-found .pnf-para {
        font-size: 20px;
    }

    .sign-up-page .signup-img {
        width: 360px;
    }

    .otp-verify .otp-margin {
        margin-right: 39px;
    }

    .about-margin {
        margin-top: 140px;
        margin-bottom: 30px;
    }
    .about-us-page .about-heading {
        font-size: 55px;
        line-height: 85px;
    }
    .about-us-page .about-sub-heading {
        font-size: 28px;
        line-height: 45px;
    }
    .about-us-page .about-para {
        font-size: 17px;
        line-height: 28px;
    }
    .about-us-page .right-about .about-img {
        width: 48vw;
        height: 236vh;
    }
    .contact-us-page .contact-us-heading {
        font-size: 50px;
        line-height: 70px;
    }    
    .contact-us-page .top-contact-heading {
        font-size: 13px;
        line-height: 28px;
    }    

    .contact-us-page .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        position: relative;
        left: 0px;
    }
    .contact-us-page .contact-us-btn {
        font-size: 14px;
    }
    .contact-us-page .middle-left-heading {
        font-size: 25px;
        line-height: 35px;
    }
    .contact-us-page .middle-left-para {
        font-size: 25px;
        line-height: 35px;
    }
    .contact-us-page .form-control{
        line-height: 20px;
    }
    .contact-us-page .bottom-left-head {
        font-size: 25px;
        line-height: 25px;
    }
    .contact-us-page .bottom-left-para {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 15px;
    }
    .contact-us-page .center-left-head {
        font-size: 14px;
        line-height: 24px;
    }
    .contact-us-page .contact-us-people {
        width: 22px;
    }
    .contact-us-page .contact-us-mssg {
        width: 22px;
    }
    .contact-us-page .lower-contact-img {
        width: 22px;
        margin-right: 10px;
    }
    .contact-us-page .lower-contact{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .contact-us-page .contact-us-img {
        width: 18rem;
    }
    .steps-to-buy-page {
        padding-left: 0px;
        padding-right: 0px;
    }
    .steps-to-buy-margin {
        margin-top: 120px;
        margin-bottom: 30px;
    }
    .steps-to-buy-page .steps-to-buy-heading {
        font-size: 55px;
        line-height: 80px;
    }
    .steps-to-buy-page .steps-left-img {
        width: 8rem;
        margin-right: 20px;
    }
    .steps-to-buy-page .steps-right-img {
        width: 14rem;
    }
    .steps-to-buy-page .right-part-head {
        font-size: 27px;
        line-height: 30px;
    }
    .steps-to-buy-page .right-part-para {
        font-size: 14px;
        line-height: 20px;
    }
    .steps-to-buy-page .browsing {
        font-size: 14px;
    }
    .steps-to-buy-page .steps-left-img1 {
        width: 8rem;
        margin-right: 20px;
    }
    .steps-to-buy-page .steps-right-img1 {
        width: 14rem;
    }
    .steps-to-buy-page .right-part-head1 {
        font-size: 27px;
        line-height: 30px;
    }
    .steps-to-buy-page .right-part-para1 {
        font-size: 14px;
        line-height: 20px;
    }
    .steps-to-buy-page .steps-right2{
        width: 55%;
    }
    .steps-to-buy-page .right-part-subhead{
        font-size: 14px;
        line-height: 20px;
    }
    .steps-to-buy-page .steps-left{
        width: 55%;
    }


}

@media only screen and (max-width: 1250px) and (min-width: 1051px) {
    .navbar-section .topbar {
        border-radius: 28px;
    }

    .navlogo {
        width: 75%;
    }

    .navbar-section .nav-heading {
        font-size: 24px;
        padding: 0 0.8rem !important;
    }

    .navbar-section .nav-heading.active {
        font-size: 24px;
    }

    .mb-2 {
        margin-bottom: 0rem !important;
    }

    .margin-topbar {
        margin-top: 100px;
        overflow: hidden;
    }

    .vipnumber-section {
        height: 450px;
    }

    .vipnumber-section #circle .text {
        width: 100%;
        height: 470px;
    }

    .vipnumber-section #circle .image {
        position: absolute;
        width: 35%;
    }

    .vipnumber-section .left-part .head {
        font-size: 52px;
        line-height: 70px;
    }

    .vipnumber-section .left-part #text {
        font-size: 52px;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        position: relative;
        left: 20px;
    }

    .search-number-tab .search-tab-head {
        font-size: 22px;
    }

    .search-number-tab .nav-tabs .nav-link {
        margin-bottom: -10px;
    }

    .px-4 {
        padding-right: 0.6rem !important;
        padding-left: 0.6rem !important;
    }

    .search-number-tab input::placeholder {
        font-size: 15px;
    }

    .search-number-tab .search-btn {
        font-size: 18px;
        padding-left: 18px;
        padding-right: 18px;
        margin-left: 3px;
    }

    .exclusive-number .top-heading {
        font-size: 50px;
        margin-bottom: 2rem;
    }

    .exclusive-number .exclusive-content {
        margin: 0px 35px;
    }

    .exclusive-content .margin-right {
        margin-right: 35px;
    }

    .favorite-number .favorite-icon {
        width: 10rem;
        margin-bottom: 15px;
    }

    .favorite-number .para {
        font-size: 18px;
        line-height: 23px;
    }

    .payamount .favorite-icon {
        width: 4rem;
        margin-left: 55px;
        margin-bottom: 25px;
    }

    .payamount .para {
        font-size: 18px;
        line-height: 23px;
    }

    .upc .favorite-icon {
        width: 6rem;
        margin-left: 23px;
        margin-bottom: 25px;
    }

    .upc .para {
        font-size: 18px;
        line-height: 23px;
    }

    .retailer .favorite-icon {
        width: 3.5rem;
        margin-left: 72px;
        margin-bottom: 25px;
    }

    .retailer .para {
        font-size: 18px;
        line-height: 23px;
    }

    .activation .favorite-icon {
        width: 3.5rem;
        margin-left: 107px;
        margin-bottom: 25px;
    }

    .activation .para {
        font-size: 18px;
        line-height: 23px;
    }

    .read-more {
        font-family: Helvetica;
        font-size: 18px;
    }

    .featured-vip-section .top-heading {
        font-size: 55px;
        line-height: 65px;
        margin: 25px 0px;
    }

    .featured-card-content .card1 {
        width: 15rem;
        margin-bottom: 40px;
    }

    .featured-card-content .card2 {
        width: 15rem;
        margin-bottom: 40px;
    }

    .featured-card-content .top-head .heading {
        font-size: 25px;
        line-height: 45px
    }

    .featured-card-content .middle-head {
        padding: 4px 12px;
    }

    .featured-card-content .middle-head .middle-para-margin {
        margin-left: 2px;
    }

    .featured-card-content .bottom-head {
        padding: 3px 12px;
    }

    .featured-card-content .bottom-head .left {
        font-size: 11px;
    }

    .featured-card-content .bottom-head .right {
        font-size: 18px;
    }

    .add-to-cart-btn .cart-btn {
        font-size: 13px;
        margin-bottom: 11px;
    }

    .add-to-cart-btn .cart-btn img {
        width: 17px;
    }

    .view-more {
        font-size: 25px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .multiple-options-section .multiple-options {
        padding: 10px 38px 10px 38px;
    }

    .multiple-options .heading {
        font-size: 23px;
        line-height: 25px;
    }

    .multiple-options .img-category1 {
        margin-left: 70px;
    }

    .multiple-options .img-category2 {
        margin-left: 125px;
    }

    .multiple-options .img-category3 {
        margin-left: 102px;
    }

    .multiple-options .img-category4 {
        margin-left: 93px;
    }

    .testimonial-section .heading {
        font-size: 55px;
        line-height: 40px;
        margin-top: 50px;
    }

    .testimonial-container {
        max-width: 65rem;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .testimonial-card .head-tag {
        font-size: 27px;
    }

    .testimonial-card .name-tag {
        font-size: 23px;
    }

    .testimonial-card .star-icon img {
        width: 26px;
    }

    .testimonial-card .google-icon {
        width: 160px;
        position: relative;
        left: -17px;
        bottom: -18px;
    }

    .scroll {
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 1rem 0;
        margin: 1rem 0;
        cursor: default;
        overflow: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 0px 1.25rem;
        scrollbar-width: none;
    }

    .testimonial-card {
        width: 22rem;
        height: auto;
        flex: 0 0 auto;
        margin: 0 0.35rem;
        border: none;
        outline: none;
        border-radius: 20px;
        color: black;
        background: white;
        box-shadow: 0px 0px 20px 0px #00000026;

    }

    .footer-content {
        padding-top: 0;
    }

    .left-footer .company-logo {
        width: 185px;
    }

    .left-footer {
        width: 11.5rem;
    }

    .left-footer .desc-para {
        font-size: 16px;
        line-height: 25px;
        margin-top: 25px;
    }

    .left-footer .social-margin {
        margin-right: 15px;
    }

    .center-footer .content-details {
        padding: 0px 5px;
    }

    .content-details .heading {
        font-size: 20px;
    }

    .content-details .list-head {
        font-size: 16px;
    }

    .contact-content-details .heading {
        font-size: 20px;
    }

    .contact-category .contact-part {
        font-size: 16px;
    }

    .center-details input::placeholder {
        font-size: 16px;
    }

    .center-footer .search-btn {
        font-size: 18px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .right-footer .invite-people {
        width: 40px;
    }

    .right-footer .search-btn {
        font-size: 18px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .copyright-section .left {
        font-size: 14px;
    }

    .copyright-section .right {
        font-size: 14px;
    }

    .center-footer {
        width: 50%;
    }

    .center-footer .search-input-btn {
        width: 75%;
    }

    .offcanvas-end {
        width: 420px;
    }

    .left-cart-top .cart-head {
        font-size: 35px;
    }

    .left-cart-top .cart-logo {
        width: 24px;
    }

    .cart-top .right-cart-top .close-cart {
        width: 30px;
    }

    .left-cart-middle .sim-logo {
        width: 45px;
    }

    .left-cart-middle .left-middle-text {
        font-size: 20px;
    }

    .right-cart-middle .right-middle-text {
        font-size: 20px;
    }

    .right-cart-middle .category-close {
        width: 17px;
        margin-bottom: 4px;
    }

    .cart-middle {
        margin: 25px 0px;
    }

    .cart-bottom .bottom-text {
        font-size: 18px;
    }

    .cart-bottom .subtotal {
        font-size: 26px;
    }

    .cart-bottom .price {
        font-size: 25px;
    }

    .checkout-btn .check-btn {
        font-size: 20px;
        line-height: 35px;
    }

    .proceed-btn .pro-btn {
        font-size: 20px;
        line-height: 35px;
    }

    .navbar-section .topbar1 {
        border-radius: 20px;
    }

    #volet {
        width: 58.5rem;
        height: 143px;
        margin-top: 125px;
        background: #fff;
        color: #fff;
        border-radius: 0 0 16px 0;
        position: absolute;
        top: -272px;
        bottom: 200px;
        left: 102px;
        z-index: 10;
        transition: all .5s ease-out;
    }

    .sum-button {
        background-color: #FBAF02;
        border-radius: 20px;
        width: 14%;
        margin-right: 5px;
    }

    .sum-button .form-control {
        padding: 0.1rem 0.4rem;
        font-size: 16px;
        line-height: 2.3;
    }

    .sum-button .input-group-text {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
    }

    .category-button {
        margin-right: 5px;
    }

    .category-button .btn-category {
        font-size: 18px;
        line-height: 26px;
    }

    .category-button .category-img {
        width: 14px;
        opacity: 0.5;
        margin-left: 26px;
    }

    .category-button .dropdown-menu {
        font-size: 14px;
        min-width: 7rem;
    }

    .filter-button .btn-category {
        font-size: 18px;
        line-height: 26px;
    }

    .filter-button .category-img {
        width: 14px;
        opacity: 0.5;
        margin-left: 26px;
    }

    .dropdown-menu[data-bs-popper] {
        top: 100%;
        left: -30px;
        margin-top: 0.125rem;
    }

    .store-navbar .price-button {
        margin-right: 5px;
    }

    .price-button .range-bar {
        width: 210px;
    }

    .price-button .price-text {
        font-size: 16px;
    }

    .filter-category .filter-text {
        font-size: 16px;
        line-height: 16px;
        margin-right: 10px;
    }

    .filter-navbar .close-button .filter-close {
        width: 18px;
    }

    .store-margin-top {
        margin-top: 200px;
    }

    .store-promo .promo-banner {
        width: -webkit-fill-available;
        margin-bottom: 30px;
    }

    .payment-failure .failure-img {
        width: 390px;
    }

    .payment-failure .left-retry-head {
        font-size: 34px;
        line-height: 60px;
    }

    .payment-failure .retry-para {
        font-size: 18px;
        line-height: 44px;
    }

    .retry-button .retry-btn {
        font-size: 16px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .my-profile-nav .profile-top-img1 {
        width: 22px;
        margin-right: 242px;
    }

    .profile-page .right-profile img {
        width: 400px;
    }

    .profile-page .create-account {
        font-size: 43px;
        line-height: 70px;
    }

    .profile-page .form-label {
        font-size: 22px;
        line-height: 30px;
    }

    .profile-page .form-control {
        font-size: 18px;
    }

    .left-profile .col-form-label {
        line-height: 1.5;
        font-size: 20px;
    }

    .my-order-page .order-page-heading {
        font-size: 42px;
        line-height: 60px;
    }

    .order-filter .select-selected {
        padding: 7px 35px;
        font-size: 19px;
        line-height: 26px;
    }

    .select-selected:after {
        position: absolute;
        content: "";
        top: 12px;
        left: 10px;
        width: 17px;
        height: 20px;
    }

    .select-go {
        width: 42px;
        height: 40px;
        position: relative;
        right: 40px;
    }

    .select-go .go {
        font-size: 18px;
        line-height: 38px;
    }

    .order-filter .custom-select {
        width: 205px;
    }

    .order-filter .select-items div {
        font-size: 18px;
        line-height: 18px;
    }

    .order-filter .select-items {
        width: 130px;
    }

    .my-order .my-order-head {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 22px;
    }

    .order-content-left .left-order-img {
        margin-right: 16px;
        width: 64px;
    }

    .my-order .order-info {
        font-size: 22px;
        line-height: 24px;
    }

    .order-content-right .right-order-img {
        margin-left: 130px;
        margin-bottom: 40px;
        width: 27px;
    }

    .refer-and-earn-page .left-refer-earn {
        width: 60%;
    }

    .refer-and-earn-page .right-refer-img {
        width: 330px;
    }

    .refer-and-earn .top-coin-head {
        font-size: 22px;
        line-height: 28px;
    }

    .refer-and-earn .top-refer-head {
        font-size: 40px;
        line-height: 65px;
    }

    .refer-and-earn .top-refer-para {
        font-size: 20px;
        line-height: 28px;
    }

    .email-form .form-label {
        font-size: 20px;
        line-height: 30px;
    }

    .email-form .form-control {
        font-size: 16px;
    }

    .email-form .email-btn {
        font-size: 16px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .refer-and-earn .middle-or {
        font-size: 23px;
        line-height: 25px;
    }

    .refer-and-earn .referral-btn {
        font-size: 16px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .refer-and-earn .bottom-refer {
        width: 80%;
    }

    .refer-and-earn .referral-para {
        font-size: 16px;
        line-height: 22px;
    }

    .refer-and-earn .copy-logo {
        width: 18px;
    }

    .refer-and-earn .bottom-refer-para {
        font-size: 9px;
        line-height: 16px;
    }

    .order-section .order-img {
        width: 430px;
    }

    .order .order-heading {
        font-size: 42px;
    }

    .order .order-confirm {
        font-size: 24px;
    }

    .order .order-para {
        font-size: 14px;
        line-height: 28px;
    }

    .order-details .order-details-heading {
        font-size: 40px;
        line-height: 25px;
    }

    .order-details .order-name {
        font-size: 20px;
        line-height: 28px;
    }

    .order-details .order-value {
        font-size: 20px;
        line-height: 28px;
    }

    .order .download-button .download-btn {
        font-size: 17px;
    }

    .go-to-order .go-my-order {
        font-size: 16px;
    }

    .order-details .order-details-confirm {
        font-size: 22px;
        line-height: 29px;
    }

    .order-details .order-details-para {
        font-size: 15px;
        line-height: 30px;
    }

    .order-details-details .order-details-value {
        font-size: 23px;
        line-height: 30px;
    }

    .order-details-button .order-details-btn {
        font-size: 17px;
        width: 220px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .order-details-button .order-disabled-btn {
        font-size: 17px;
        width: 220px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .order-details-section .order-upc {
        padding: 43px 35px;
    }

    .order-details-section .order-upc-text {
        font-size: 32px;
        line-height: 43px;
    }

    .pnf-margin {
        margin-top: 182px;
        margin-bottom: 90px;
    }

    .page-not-found .page-not-found-img {
        margin-left: 26%;
    }

    .page-not-found .pnf-para {
        font-size: 24px;
    }

    .sign-up-page .signup-img {
        width: 420px;
    }

    .otp-verify .otp-margin {
        margin-right: 36px;
    }

    .about-margin {
        margin-top: 140px;
        margin-bottom: 30px;
    }
    .about-us-page .about-heading {
        font-size: 60px;
        line-height: 90px;
    }
    .about-us-page .about-sub-heading {
        font-size: 32px;
        line-height: 48px;
    }
    .about-us-page .about-para {
        font-size: 18px;
        line-height: 30px;
    }
    .about-us-page .right-about .about-img {
        width: 45vw;
        height: 230vh;
    }
    .contact-us-page .contact-us-heading {
        font-size: 55px;
        line-height: 80px;
    }    
    .contact-us-page .top-contact-heading {
        font-size: 14px;
        line-height: 30px;
    }    

    .contact-us-page .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        position: relative;
        left: 0px;
    }
    .contact-us-page .contact-us-btn {
        font-size: 16px;
    }
    .contact-us-page .middle-left-heading {
        font-size: 28px;
        line-height: 40px;
    }
    .contact-us-page .middle-left-para {
        font-size: 28px;
        line-height: 40px;
    }
    .contact-us-page .form-control{
        line-height: 22px;
    }
    .contact-us-page .bottom-left-head {
        font-size: 28px;
        line-height: 30px;
    }
    .contact-us-page .bottom-left-para {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 15px;
    }
    .contact-us-page .center-left-head {
        font-size: 14px;
        line-height: 24px;
    }
    .contact-us-page .contact-us-people {
        width: 25px;
    }
    .contact-us-page .contact-us-mssg {
        width: 25px;
    }
    .contact-us-page .lower-contact-img {
        width: 25px;
        margin-right: 10px;
    }
    .contact-us-page .lower-contact{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .contact-us-page .contact-us-img {
        width: 22rem;
    }
    .steps-to-buy-page {
        padding-left: 0px;
        padding-right: 0px;
    }
    .steps-to-buy-margin {
        margin-top: 120px;
        margin-bottom: 30px;
    }
    .steps-to-buy-page .steps-to-buy-heading {
        font-size: 60px;
        line-height: 85px;
    }
    .steps-to-buy-page .steps-left-img {
        width: 9rem;
        margin-right: 23px;
    }
    .steps-to-buy-page .steps-right-img {
        width: 16rem;
    }
    .steps-to-buy-page .right-part-head {
        font-size: 32px;
        line-height: 40px;
    }
    .steps-to-buy-page .right-part-para {
        font-size: 15px;
        line-height: 22px;
    }
    .steps-to-buy-page .browsing {
        font-size: 15px;
    }
    .steps-to-buy-page .steps-left-img1 {
        width: 9rem;
        margin-right: 20px;
    }
    .steps-to-buy-page .steps-right-img1 {
        width: 15rem;
    }
    .steps-to-buy-page .right-part-head1 {
        font-size: 32px;
        line-height: 40px;
    }
    .steps-to-buy-page .right-part-para1 {
        font-size: 15px;
        line-height: 22px;
    }
    .steps-to-buy-page .steps-right2{
        width: 64%;
    }
    .steps-to-buy-page .right-part-subhead{
        font-size: 15px;
        line-height: 22px;
    }
    .steps-to-buy-page .steps-left{
        width: 64%;
    }

}

@media only screen and (max-width: 1450px) and (min-width: 1251px) {
    .navbar-section .topbar {
        border-radius: 28px;
    }

    .navlogo {
        width: 75%;
    }

    .navbar-section .nav-heading {
        font-size: 24px;
        padding: 0 0.8rem !important;
    }

    .navbar-section .nav-heading.active {
        font-size: 24px;
    }

    .mb-2 {
        margin-bottom: 0rem !important;
    }

    .margin-topbar {
        margin-top: 100px;
        overflow: hidden;
    }

    .vipnumber-section {
        height: 450px;
    }

    .vipnumber-section #circle .text {
        width: 100%;
        height: 470px;
    }

    .vipnumber-section #circle .image {
        position: absolute;
        width: 35%;
    }

    .vipnumber-section .left-part .head {
        font-size: 52px;
        line-height: 80px;
    }

    .vipnumber-section .left-part #text {
        font-size: 52px;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        position: relative;
        left: 20px;
    }

    .search-number-tab .search-tab-head {
        font-size: 22px;
    }

    .search-number-tab .nav-tabs .nav-link {
        margin-bottom: -10px;
    }

    .px-4 {
        padding-right: 0.6rem !important;
        padding-left: 0.6rem !important;
    }

    .search-number-tab input::placeholder {
        font-size: 15px;
    }

    .search-number-tab .search-btn {
        font-size: 18px;
        padding-left: 18px;
        padding-right: 18px;
        margin-left: 3px;
    }

    .exclusive-number .top-heading {
        font-size: 52px;
        margin-bottom: 2.5rem;
    }

    .exclusive-number .exclusive-content {
        margin: 0px 35px;
    }

    .exclusive-content .margin-right {
        margin-right: 35px;
    }

    .favorite-number .favorite-icon {
        width: 10rem;
        margin-bottom: 15px;
    }

    .favorite-number .para {
        font-size: 18px;
        line-height: 23px;
    }

    .payamount .favorite-icon {
        width: 4rem;
        margin-left: 55px;
        margin-bottom: 25px;
    }

    .payamount .para {
        font-size: 18px;
        line-height: 23px;
    }

    .upc .favorite-icon {
        width: 6rem;
        margin-left: 23px;
        margin-bottom: 25px;
    }

    .upc .para {
        font-size: 18px;
        line-height: 23px;
    }

    .retailer .favorite-icon {
        width: 3.5rem;
        margin-left: 72px;
        margin-bottom: 25px;
    }

    .retailer .para {
        font-size: 18px;
        line-height: 23px;
    }

    .activation .favorite-icon {
        width: 3.5rem;
        margin-left: 107px;
        margin-bottom: 25px;
    }

    .activation .para {
        font-size: 18px;
        line-height: 23px;
    }

    .read-more {
        font-family: Helvetica;
        font-size: 18px;
    }

    .featured-vip-section .top-heading {
        font-size: 55px;
        line-height: 65px;
        margin: 25px 0px;
    }

    .featured-card-content .card1 {
        width: 15rem;
        margin-bottom: 40px;
    }

    .featured-card-content .card2 {
        width: 15rem;
        margin-bottom: 40px;
    }

    .featured-card-content .top-head .heading {
        font-size: 25px;
        line-height: 45px
    }

    .featured-card-content .middle-head {
        padding: 4px 12px;
    }

    .featured-card-content .middle-head .middle-para-margin {
        margin-left: 2px;
    }

    .featured-card-content .bottom-head {
        padding: 3px 12px;
    }

    .featured-card-content .bottom-head .left {
        font-size: 11px;
    }

    .featured-card-content .bottom-head .right {
        font-size: 18px;
    }

    .add-to-cart-btn .cart-btn {
        font-size: 13px;
        margin-bottom: 11px;
    }

    .add-to-cart-btn .cart-btn img {
        width: 17px;
    }

    .view-more {
        font-size: 25px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .multiple-options-section .multiple-options {
        padding: 10px 38px 10px 38px;
    }

    .multiple-options .heading {
        font-size: 23px;
        line-height: 25px;
    }

    .multiple-options .img-category1 {
        margin-left: 70px;
    }

    .multiple-options .img-category2 {
        margin-left: 125px;
    }

    .multiple-options .img-category3 {
        margin-left: 102px;
    }

    .multiple-options .img-category4 {
        margin-left: 93px;
    }

    .testimonial-section .heading {
        font-size: 55px;
        line-height: 40px;
        margin-top: 50px;
    }

    .testimonial-container {
        max-width: 65rem;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .testimonial-card .head-tag {
        font-size: 27px;
    }

    .testimonial-card .name-tag {
        font-size: 23px;
    }

    .testimonial-card .star-icon img {
        width: 26px;
    }

    .testimonial-card .google-icon {
        width: 160px;
        position: relative;
        left: -17px;
        bottom: -18px;
    }

    .scroll {
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 1rem 0;
        margin: 1rem 0;
        cursor: default;
        overflow: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 0px 1.25rem;
        scrollbar-width: none;
    }

    .testimonial-card {
        width: 22rem;
        height: auto;
        flex: 0 0 auto;
        margin: 0 0.35rem;
        border: none;
        outline: none;
        border-radius: 20px;
        color: black;
        background: white;
        box-shadow: 0px 0px 20px 0px #00000026;

    }

    .footer-content {
        padding-top: 0;
    }

    .left-footer .company-logo {
        width: 185px;
    }

    .left-footer {
        width: 11.5rem;
    }

    .left-footer .desc-para {
        font-size: 16px;
        line-height: 25px;
        margin-top: 25px;
    }

    .left-footer .social-margin {
        margin-right: 15px;
    }

    .center-footer .content-details {
        padding: 0px 7px;
    }

    .content-details .heading {
        font-size: 20px;
    }

    .content-details .list-head {
        font-size: 16px;
    }

    .contact-content-details .heading {
        font-size: 20px;
    }

    .contact-category .contact-part {
        font-size: 16px;
    }

    .center-details input::placeholder {
        font-size: 16px;
    }

    .center-footer .search-btn {
        font-size: 18px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .right-footer .invite-people {
        width: 40px;
    }

    .right-footer .search-btn {
        font-size: 18px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .copyright-section .left {
        font-size: 14px;
    }

    .copyright-section .right {
        font-size: 14px;
    }

    .center-footer {
        width: 50%;
    }

    .center-footer .search-input-btn {
        width: 75%;
    }

    .offcanvas-end {
        width: 420px;
    }

    .left-cart-top .cart-head {
        font-size: 35px;
    }

    .left-cart-top .cart-logo {
        width: 24px;
    }

    .cart-top .right-cart-top .close-cart {
        width: 30px;
    }

    .left-cart-middle .sim-logo {
        width: 45px;
    }

    .left-cart-middle .left-middle-text {
        font-size: 20px;
    }

    .right-cart-middle .right-middle-text {
        font-size: 20px;
    }

    .right-cart-middle .category-close {
        width: 17px;
        margin-bottom: 4px;
    }

    .cart-middle {
        margin: 25px 0px;
    }

    .cart-bottom .bottom-text {
        font-size: 18px;
    }

    .cart-bottom .subtotal {
        font-size: 26px;
    }

    .cart-bottom .price {
        font-size: 25px;
    }

    .checkout-btn .check-btn {
        font-size: 20px;
        line-height: 35px;
    }

    .proceed-btn .pro-btn {
        font-size: 20px;
        line-height: 35px;
    }

    .navbar-section .topbar1 {
        border-radius: 20px;
    }

    #volet {
        width: 69.8rem;
        height: 143px;
        margin-top: 125px;
        background: #fff;
        color: #fff;
        border-radius: 0 0 16px 0;
        position: absolute;
        top: -272px;
        bottom: 200px;
        left: 123px;
        z-index: 10;
        transition: all .5s ease-out;
    }

    .sum-button {
        background-color: #FBAF02;
        border-radius: 20px;
        width: 14%;
        margin-right: 5px;
    }

    .sum-button .form-control {
        padding: 0.1rem 0.4rem;
        font-size: 16px;
        line-height: 2.3;
    }

    .sum-button .input-group-text {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
    }

    .category-button {
        margin-right: 5px;
    }

    .category-button .btn-category {
        font-size: 18px;
        line-height: 26px;
    }

    .category-button .category-img {
        width: 14px;
        opacity: 0.5;
        margin-left: 26px;
    }

    .category-button .dropdown-menu {
        font-size: 14px;
        min-width: 7rem;
    }

    .filter-button .btn-category {
        font-size: 18px;
        line-height: 26px;
    }

    .filter-button .category-img {
        width: 14px;
        opacity: 0.5;
        margin-left: 26px;
    }

    .dropdown-menu[data-bs-popper] {
        top: 100%;
        left: -30px;
        margin-top: 0.125rem;
    }

    .store-navbar .price-button {
        margin-right: 5px;
    }

    .price-button .range-bar {
        width: 230px;
    }

    .price-button .price-text {
        font-size: 16px;
    }

    .filter-category .filter-text {
        font-size: 16px;
        line-height: 16px;
        margin-right: 10px;
    }

    .filter-navbar .close-button .filter-close {
        width: 18px;
    }

    .store-margin-top {
        margin-top: 200px;
    }

    .store-promo .promo-banner {
        width: -webkit-fill-available;
        margin-bottom: 30px;
    }

    .payment-failure .failure-img {
        width: 440px;
    }

    .payment-failure .left-retry-head {
        font-size: 45px;
        line-height: 75px;
    }

    .payment-failure .retry-para {
        font-size: 23px;
        line-height: 50px;
    }

    .retry-button .retry-btn {
        font-size: 20px;
    }

    .my-profile-nav .profile-top-img1 {
        width: 22px;
        margin-right: 242px;
    }

    .profile-page .right-profile img {
        width: 420px;
    }

    .profile-page .create-account {
        font-size: 45px;
        line-height: 70px;
    }

    .profile-page .form-label {
        font-size: 22px;
        line-height: 32px;
    }

    .profile-page .form-control {
        font-size: 20px;
    }

    .left-profile .col-form-label {
        line-height: 1.5;
        font-size: 20px;
    }

    .my-order-page .order-page-heading {
        font-size: 45px;
        line-height: 64px;
    }

    .order-filter .select-selected {
        padding: 8px 35px;
        font-size: 20px;
        line-height: 25px;
    }

    .select-selected:after {
        position: absolute;
        content: "";
        top: 12px;
        left: 10px;
        width: 17px;
        height: 20px;
    }

    .select-go {
        width: 42px;
        height: 41px;
        position: relative;
        right: 40px;
    }

    .select-go .go {
        font-size: 20px;
        line-height: 41px;
    }

    .order-filter .custom-select {
        width: 205px;
    }

    .order-filter .select-items div {
        font-size: 18px;
        line-height: 18px;
    }

    .order-filter .select-items {
        width: 140px;
    }

    .my-order .my-order-head {
        font-size: 25px;
        line-height: 32px;
        margin-bottom: 22px;
    }

    .order-content-left .left-order-img {
        margin-right: 20px;
        width: 75px;
    }

    .my-order .order-info {
        font-size: 23px;
        line-height: 27px;
    }

    .order-content-right .right-order-img {
        margin-left: 130px;
        margin-bottom: 40px;
        width: 27px;
    }

    .refer-and-earn-page .left-refer-earn {
        width: 60%;
    }

    .refer-and-earn-page .right-refer-img {
        width: 400px;
    }

    .refer-and-earn .top-coin-head {
        font-size: 25px;
        line-height: 32px;
    }

    .refer-and-earn .top-refer-head {
        font-size: 45px;
        line-height: 74px;
    }

    .refer-and-earn .top-refer-para {
        font-size: 23px;
        line-height: 31px;
    }

    .email-form .form-label {
        font-size: 23px;
        line-height: 31px;
    }

    .email-form .form-control {
        font-size: 17px;
    }

    .email-form .email-btn {
        font-size: 16px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .refer-and-earn .middle-or {
        font-size: 25x;
        line-height: 32px;
    }

    .refer-and-earn .referral-btn {
        font-size: 18px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .refer-and-earn .bottom-refer {
        width: 90%;
    }

    .refer-and-earn .referral-para {
        font-size: 18px;
        line-height: 24px;
    }

    .refer-and-earn .copy-logo {
        width: 20px;
    }

    .refer-and-earn .bottom-refer-para {
        font-size: 10px;
        line-height: 17px;
    }

    .order-section .order-img {
        width: 470px;
    }

    .order .order-heading {
        font-size: 45px;
    }

    .order .order-confirm {
        font-size: 26px;
    }

    .order .order-para {
        font-size: 16px;
        line-height: 28px;
    }

    .order-details .order-details-heading {
        font-size: 44px;
        line-height: 30px;
    }

    .order-details .order-name {
        font-size: 21px;
        line-height: 30px;
    }

    .order-details .order-value {
        font-size: 21px;
        line-height: 30px;
    }

    .order .download-button .download-btn {
        font-size: 18px;
    }

    .go-to-order .go-my-order {
        font-size: 17px;
    }

    .order-details .order-details-confirm {
        font-size: 25px;
        line-height: 35px;
    }

    .order-details .order-details-para {
        font-size: 16px;
        line-height: 35px;
    }

    .order-details-details .order-details-value {
        font-size: 25px;
        line-height: 35px;
    }

    .order-details-button .order-details-btn {
        font-size: 18px;
        width: 230px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .order-details-button .order-disabled-btn {
        font-size: 18px;
        width: 230px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .order-details-section .order-upc {
        padding: 50px 40px;
    }

    .order-details-section .order-upc-text {
        font-size: 35px;
        line-height: 50px;
    }

    .pnf-margin {
        margin-top: 195px;
        margin-bottom: 100px;
    }

    .page-not-found .page-not-found-img {
        margin-left: 30%;
    }

    .page-not-found .pnf-para {
        font-size: 25px;
    }

    .sign-up-page .signup-img {
        width: 460px;
    }

    .otp-verify .otp-margin {
        margin-right: 40px;
    }

    .about-margin {
        margin-top: 140px;
        margin-bottom: 30px;
    }
    .about-us-page .about-heading {
        font-size: 64px;
        line-height: 100px;
    }
    .about-us-page .about-sub-heading {
        font-size: 35px;
        line-height: 50px;
    }
    .about-us-page .about-para {
        font-size: 18px;
        line-height: 35px;
    }
    .about-us-page .right-about .about-img {
        width: 45vw;
        height: 237vh;
    }
    .contact-us-page .contact-us-heading {
        font-size: 64px;
        line-height: 90px;
    }    
    .contact-us-page .top-contact-heading {
        font-size: 16px;
        line-height: 34px;
    }    

    .contact-us-page .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        position: relative;
        left: 0px;
    }
    .contact-us-page .contact-us-btn {
        font-size: 18px;
    }
    .contact-us-page .middle-left-heading {
        font-size: 33px;
        line-height: 45px;
    }
    .contact-us-page .middle-left-para {
        font-size: 33px;
        line-height: 45px;
    }
    .contact-us-page .form-control{
        line-height: 25px;
    }
    .contact-us-page .bottom-left-head {
        font-size: 33px;
        line-height: 30px;
    }
    .contact-us-page .bottom-left-para {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .contact-us-page .center-left-head {
        font-size: 14px;
        line-height: 24px;
    }
    .contact-us-page .contact-us-people {
        width: 30px;
    }
    .contact-us-page .contact-us-mssg {
        width: 30px;
    }
    .contact-us-page .lower-contact-img {
        width: 30px;
        margin-right: 10px;
    }
    .contact-us-page .lower-contact{
        font-size: 16px;
        margin-bottom: 15px;
    }
    .contact-us-page .contact-us-img {
        width: 25rem;
    }
    .steps-to-buy-page {
        padding-left: 0px;
        padding-right: 0px;
    }
    .steps-to-buy-margin {
        margin-top: 120px;
        margin-bottom: 30px;
    }
    .steps-to-buy-page .steps-to-buy-heading {
        font-size: 64px;
        line-height: 90px;
    }
    .steps-to-buy-page .steps-left-img {
        width: 10rem;
        margin-right: 23px;
    }
    .steps-to-buy-page .steps-right-img {
        width: 18rem;
    }
    .steps-to-buy-page .right-part-head {
        font-size: 35px;
        line-height: 50px;
    }
    .steps-to-buy-page .right-part-para {
        font-size: 16px;
        line-height: 25px;
    }
    .steps-to-buy-page .browsing {
        font-size: 16px;
    }
    .steps-to-buy-page .steps-left-img1 {
        width: 10rem;
        margin-right: 20px;
    }
    .steps-to-buy-page .steps-right-img1 {
        width: 16rem;
    }
    .steps-to-buy-page .right-part-head1 {
        font-size: 35px;
        line-height: 50px;
    }
    .steps-to-buy-page .right-part-para1 {
        font-size: 16px;
        line-height: 25px;
    }
    .steps-to-buy-page .steps-right2{
        width: 64%;
    }
    .steps-to-buy-page .right-part-subhead{
        font-size: 16px;
        line-height: 25px;
    }
    .steps-to-buy-page .steps-left{
        width: 64%;
    }
}