/********** Template CSS **********/
:root {
    --primary: #FD5D14;
    --secondary: #FDBE33;
    --light: #F4F6F8;
    --dark: #040F28;
    --font: "Rubik", Tahoma, Geneva, sans-serif;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    transition: .5s;
}

.btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
}

.btn.btn-primary::after {
    background: var(--dark);
}

.btn:hover::after,
.btn.active::after {
    width: 50%;
    left: 25%;
}

.btn-primary {
    color: #FFFFFF;
    border-radius: 5px;
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 50%;
    bottom: 0;
    margin-left: -22px;
    border-radius: 0;
    z-index: 99;
}

.bg-dark-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

/* .bg-light-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
} */

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    padding: 30px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
    font-family: "Rajdhani";
}

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

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

.carousel-caption {
    top: 0;
    left: 120px;
    right: 0;
    bottom: 0;
    /* background: rgba(4, 15, 40, .7); */
    z-index: 1;
}
.carousel-caption ul {
    display: flex;
    padding: 0px;
}
.carousel-caption ul li{
    padding-left: 5px;
    padding-right: 5px;
    color: #fff;
    margin: 0px 20px;
    font-size: 20PX;
    font-family: var(--font);
}
.carousel-caption ul li::marker{
    color: #FD5D14;
    padding-right: 0px;
    margin: 0px;
}
@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.page-header {
    margin-top: 0px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/carousel-3.jpg) center center no-repeat;
    background-size: cover;
}

.service-item .service-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.service-item .service-icon i {
    transition: .2s;
}

.service-item:hover .service-icon i {
    font-size: 60px;
}

.portfolio-item {
    margin: 0px;
    padding: 10px;
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 90px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: #FFFFFF;
    z-index: 3;
}
.portfolio-title p{
    text-align: center;
    margin-bottom: 0px;
}
.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    font-size: 50px;
    line-height: 0;
    transition: .1s;
    transition-delay: .3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-btn i.bi.bi-plus{
    color: var(--primary);
}
.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: .5s;
    z-index: 1;
    background: rgb(4 15 40 / 30%);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

@media (min-width: 992px) {
    .testimonial,
    .contact-form {
        margin-left: -90px;
    }
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--primary)
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--primary);
    transform: skew(40deg);
}



/* Custome CSS Starts  */
.navbar-brand{
    border-right: 1px solid #6e7072;
    height: 100%;
}

img.headerlogo {
   width: 210px;
}

img.reel {
    height: 30px;
}
img.cardian{
    margin-right: 7px;
    height: 20px;
}
.experience {
    background: #fff;
    position: absolute;
    max-width: max-content;
    padding: 0px 20px;
    bottom: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgb(43 52 59 / 10%);
}
.experience .years {
    color: #FD5D14;
    font-size: 60px;
    margin-right: 10px;
    font-weight: 800;
    letter-spacing: 0px;
}
.experience p.text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
}

.feature-div {
    margin: auto;
    max-width: 91%;
}
.feature .col{
    padding: 10px;
}
.features{
    background: #f8fafb;
    padding: 30px 35px;
}

.feature .col:hover img.feature-img{
    transform: rotateY(360deg)
}
.feature .col:hover .num1 p.number{
    opacity: 1;
}
img.feature-img{
    height: 80px;
    transition: 0.5s;
    margin-bottom: 20px;
}

p.feature-text {
    font-size: 20px;
    line-height: 1.5;
    color: #000;
    font-weight: 700;
    border-top: 1px solid #eaeae9;
    padding-top: 20px;
    margin-bottom: 0px;
    font-family: "Rajdhani", Arial, Helvetica, sans-serif;
}
.feature .num1{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
}
.feature .num1 .number{
    font-size: 50px;
    transition: 0.5s;
    font-weight: 700;
    color: #FD5D14;
    opacity: 0.2;
}


.service-heading{
    background: #FD5D14;
    width: max-content;
    padding: 60px 50px 30px 50px;
    margin-bottom: 0px;
}
.service-heading h1.display-5{
    color: #fff;
}
.service-heading .service-readmore{
    width: max-content;
    margin-top: 80px;
    margin-bottom: 30px;
    padding: 10px 50px;
    margin-bottom: 0px;
    color: #fff;
    border: 1px solid #fff;
}
.service-heading .service-readmore:hover{
    background: #fff;
    color: #FD5D14;
    border: 1px solid #FD5D14;
}

.service-row{
    background: #fff;
    padding: 30px;
    box-shadow: -7px 0px 10px 0px rgba(181.50000000000003, 180.58756793478264, 180.58756793478264, 0.5);
}
.service-item{
    border: 1px solid #e5e4e2;
    background-color: #f8fafb;
    padding: 40px 30px 32px;
    position: relative;
    border-radius: 5px;
    transition: .7s all ease;
}

.service-item:before{
    content: " ";
    position: absolute;
    display: inline-block;
    width: 0;
    right: 4px;
    bottom: 3px;
    height: 0;
    z-index: 2;
    border-style: solid;
    border-width: 15px 15px 0px 0;
    border-color: transparent #FD5D14 transparent transparent;
    transition: .7s all ease;
}
.iconbox {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: start;
    align-items: center;
}
.iconbox::before{
    position: absolute;
    content: "";
    left: -5px;
    height: 65px;
    border-left: 3px solid #FD5D14;
    z-index: 1;
    transition: .7s all ease;
}
.service-item:hover {
     margin-top: -10px;
    transition: .7s all ease;
}
.icon- img {
    max-height: 60px;
    z-index: 9;
}
.icon-text {
    display: flex;
    flex-direction: column;
    padding: 10px 0px 0px 20px;
}
.icon-text a{
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    color: #000;
    font-family: "Rajdhani", Arial, Helvetica, sans-serif;
}
.icon-text h6{
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
    font-family: "Rajdhani", Arial, Helvetica, sans-serif;
}
.maintext{
    padding: 20px 0px;
}
.maintext p{
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    font-family: "Rajdhani", Arial, Helvetica, sans-serif;
}
.btn-div{
    width: 100%;
}
.btn-div a.swervice-btn{
    float: left;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Rajdhani", Arial, Helvetica, sans-serif;
}


.customer-feature{
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../img/carousel-1.jpg');
}
.customer-feature:before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1d354bb3;
}
a.special-service{
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: "Rajdhani", Arial, Helvetica, sans-serif;
}
a.special-service:before{
    content: " ";
    position: absolute;
    display: inline-block;
    width: 0;
    right: -13px;
    bottom: 3px;
    height: 0;
    z-index: 2;
    border-style: solid;
    border-width: 10px 10px 0px 0;
    border-color: transparent #FD5D14 transparent transparent;
    transition: .7s all ease;
}
.special-box{
    margin-top: 20px;
}

.special-box {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: start;
    align-items: center;
}
.special-box::before{
    position: absolute;
    content: "";
    left: 0px;
    height: 85px;
    border-left: 3px solid #FD5D14;
    z-index: 1;
    transition: .7s all ease;
}
.icon-text h2{
    font-size: 38px;
    color: #fff;
}
p.special-text{
    position: relative;
    margin-top: 15px;
    color: #BAC2C9;
    font-size: 16px;
    z-index: 2;
}
.progre{
    position: relative;
    border: 1px solid #4c5e6f;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 20px;
}

.lable-div{
    position: relative;
    display: flex;
    justify-content: space-between;
    line-height: 20px;
}
.lable-div p{
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    font-family: "Rajdhani", Arial, Helvetica, sans-serif;
}
.lable-div small{
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    font-family: "Rajdhani", Arial, Helvetica, sans-serif;
}
.progress {
    height: 6px;
}
.happy{
    position: relative;
    background: #FD5D14;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    padding: 40px 50px;
    border-radius: 5px;
}
.happy:before{
    content: " ";
    position: absolute;
    display: inline-block;
    width: 0;
    right: 3px;
    bottom: 3px;
    height: 0;
    z-index: 2;
    border-style: solid;
    border-width: 13px 13px 0px 0;
    border-color: transparent #fff transparent transparent;
    transition: .7s all ease;
}
.happy i{
    font-size: 60px;
    color: #fff;
}
.happy h6{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    font-family: "Rajdhani", Arial, Helvetica, sans-serif;
}

.portfolio-container{
    background: #fff;
    /* padding: 10px; */
    box-shadow: -7px 0px 10px 0px rgba(181.50000000000003, 180.58756793478264, 180.58756793478264, 0.5);
}

.new-shadow{
    box-shadow: -7px 0px 10px 0px rgba(181.50000000000003, 180.58756793478264, 180.58756793478264, 0.5);
}



/* Media Query Starts  */

@media(min-width:320px) and (max-width:767px){
    .container-fluid.sticky-top {
        padding-left: 15px!important;
        padding-right: 15px!important;
    }
    a.navbar-brand {
        padding-left: 5px;
        border: none;
        padding-top: 0px;
        padding-bottom: 0px;
        margin: 0px;
        padding-right: 0px;
    }
    .bg-dark {
        background-color: #0b2239 !important;
        padding: 4px 0px!important;
    }
    hr:not([size]) {
        height: 1px;
        margin-top: 0px;
    }
    .carousel-inner{
        height: 350px;
    }
    .carousel-inner img{
        height: 350px;
    }
    .carousel-caption {
        top: 0;
        left: 0px;
        right: 0;
        bottom: 0;
        background: rgb(4 15 40 / 22%);
        padding-left: 30px;
    }  
    .carousel-caption ul li {
        margin: 0px 9px;
        font-size: 15PX;
        font-family: var(--font);
    }  
    .carousel-caption h1 {
        font-size: 25px;
        font-weight: 500 !important;
    }
    .carousel-caption h1 br{
        display: none;
    }
    .btn{
        font-size: 16px;
    }
    .ms-n5{
        margin-left: 0px!important;
        margin-top: -60px!important;
    }
    .number-phone a, .number-email a {
        font-size: 18px!important;
        font-weight: 600;
    }
    .number-phone, .number-email {
        margin-top: 20px;
        background: #f4f6f8;
        padding: 12px 18px 12px 18px!important;
        max-width: 100%;
        border-radius: 5px;
    }
    .experience {
        bottom: 20px!important;
        right: 18px!important;
    }
    .experience .years{
        font-size: 50px!important;
    }
    .experience p.text {
        font-size: 16px!important;
        font-weight: 700;
        line-height: 1.5;
        color: #000;
    }
    .mt-sm-0{
        padding: 0px 30px!important;
        margin-top: 0px!important;
    }
    .page-header{
        margin:0px!important;
    }
    .py-6 {
        padding: 30px 15px!important;
    }
    .product-details {
        padding-left: 20px!important;
    }
    .product-price {
        display: flex;
        padding-bottom: 10px;
        border-bottom: 2px solid #f2f2f2;
        /* margin: 20px; */
    }
    .display-5 {
        font-size: 25px!important;
    }
    .features{
        box-shadow: -7px 0px 10px 0px rgba(181.50000000000003, 180.58756793478264, 180.58756793478264, 0.5);
    }
    .happy {
        margin-top: 20px;
        padding: 20px 60px;
    }
    .happy i {
        font-size: 50px;
    }
    .icon-text h2 {
        font-size: 30px;
    }
    .happy h6 {
        font-size: 16px;
        font-weight: 900;
    }
    .new-shadow {
        padding: 40px 20px!important;
    }
    .form-control, textarea.form-control{
        background: #e3e8ed!important;
        color: #040F28;
    }
    .form-control::placeholder{
        color: var(--primary);
    }
    .sservices{
        padding: 0px!important;
    }
    .p-5{
        padding: 2rem 2rem!important;
    }
    .latestproduct {
        margin: 10px 20px!important;
        border: 2px solid var(--primary);
    }
    .feature .col {
        margin-top:30px!important;
    }
    .mt-5{
        margin-top: 0px!important;
    }
    .number-phone a i, .number-email a i {
        padding: 7px!important;
        margin-right: 10px!important;
    }
    .service-heading {
        width: 100%!important;
        padding: 30px 10px 30px 10px!important;
    }
    .service-heading h1.display-5{
        font-size: 23px!important;
    }
    .icon-text a {
        font-size: 17px;
        font-weight: 800;
    }
    .icon-text h6 {
        font-size: 16px;
    }
    p.review{
        font-size: 17px!important;
    }
    img.feature-img {
        height: 60px!important;
        transition: 0.5s;
        margin-bottom: 20px;
    }
    p.feature-text {
        font-size: 17px!important;
        line-height: 1.5;
    }
    .num1 p {
        font-size: 15px!important;
    }
    .num1 p.number{
        font-size: 40px!important;
    }
    .product-details ul li {
        list-style-type: none;
        margin-right: 10px;
        text-align: center;
        color: var(--primary);
        padding: 4px 7px 3px;
        min-width: 30px!important;
        border: 1px solid var(--primary);
    }
    .indicator-img .row{
         justify-content:center!important;
    }
    .indicator-img .col-md-4 {
         max-width: 25%!important;
    }

}


.servicediv{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    border: 3px solid var(--primary);
}
.servicediv:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.602);
    top: 0;
    left: 0;
}
img.serviceimg {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
img.serviceimg:hover{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.latestproduct{
    border: 2px solid var(--primary);
}

.contactbox{
    margin-top: 40px;
}
.number-phone, .number-email{
    margin-top: 20px;
    background: #f4f6f8;
    padding: 12px 18px 12px 10px;
    max-width: max-content;
    border-radius: 5px;
    /* border: 2px solid var(--primary); */
}
.number-phone a, .number-email a{
    font-size: 20px;
    font-weight: 700;
}
.number-phone a i, .number-email a i{
    color: #fff;
    background: var(--primary);
    padding: 10px;
    margin-right: 5px;
    border-radius: 5px;
}

.stars{
    position: absolute;
    top: -200px;
    display: flex;
    flex-direction: column;
    right: 20px;
    background: #fff;
    padding: 5px;
    transition: all 0.3s ease-in-out;
}
.stars i.fa-star{
    color: var(--primary);
    padding-bottom: 5px;
}
.portfolio-box:hover .stars{
    position: absolute;
    top: 0px;
    display: flex;
    flex-direction: column;
    right: 20px;
    z-index: 9;
}
.discount{
    position: absolute;
    top: 20px;
    display: flex;
    opacity: 0;
    flex-direction: column;
    left: 20px;
    background: var(--primary);
    padding: 5px;
    transition: all 0.3s ease-in-out;
}
.discount h6{
    color: #fff;
    padding: 2px 5px;
    margin-bottom: 0px;
}
.portfolio-box:hover .discount{
    position: absolute;
    top: 20px;
    opacity: 1;
    display: flex;
    flex-direction: column;
    left: 0px;
    z-index: 9;
}
.viwebutton{
    position: absolute;
    text-align: center;
    bottom: -10px;
    display: flex;
    opacity: 0;
    flex-direction: column;
    left: 0px;
    width: 100%;
    background: var(--primary);
    padding: 5px;
    margin: auto;
    transition: all 0.3s ease-in-out;
}
.viwebutton .view-btn{
    color: #fff;
}
.portfolio-box:hover .viwebutton{
    position: absolute;
    text-align: center;
    bottom: 0px;
    display: flex;
    opacity: 1;
    flex-direction: column;
    left: 0px;
    width: 100%;
    background: var(--primary);
    padding: 5px;
    transition: all 0.3s ease-in-out;
    z-index: 9;
}
.indicator-img {
    margin-top: 15px;
}
.indicator-img img.img-fluid{
    border: 1px solid #FD5D14;
}
.pricce{
    font-weight: 600;
    font-size: 14px;
}
.details span i.fa-star{
     font-size: 14px;
}
.details h4{
    font-size: 20px;
}
.details .text-uppercase.fw-bold{
    font-size: 14px;
}

.product-item{
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
}
.discounts{
    position: absolute;
    top: 20px;
    display: flex;
    opacity: 0;
    flex-direction: column;
    left: 20px;
    background: var(--primary);
    padding: 5px;
    transition: all 0.3s ease-in-out;
}
.discounts h6{
    color: #fff;
    padding: 3px 6px;
    margin-bottom: 0px;
}
.bg-light:hover .discounts{
    position: absolute;
    top: 20px;
    display: flex;
    opacity: 1;
    flex-direction: column;
    left: 0px;
    background: var(--primary);
    padding: 5px;
    transition: all 0.3s ease-in-out;
}
.details{
    position: absolute;
    bottom: -200px;
    left: 0px;
    background: #F4F6F8 !important;
    width: 100%;
    padding: 5px;
    border-top: 2px solid var(--primary);
    transition: all 0.3s ease-in-out;
}
.details img{
    width: 100%;
}
.bg-light:hover .details{
    position: absolute;
    bottom: 0px;
    left: 0px
}


.product-details{
    padding-left: 40px;
}
.product-details h5{
    color: var(--dark);
    margin-bottom: 13px;
}
.product-details ul{
    padding: 0px;
    margin-bottom: 30px;
}
.product-details ul li {
    list-style-type: none;
    margin-right: 10px;
    text-align: center;
    color: var(--primary);
    padding: 4px 7px 3px;
    min-width: 40px;
    border: 1px solid var(--primary);
}
.product-details ul li:hover{
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);

}

.product-price p {
    font-weight: 600;
    margin-bottom: 0px;
}
table.table.table-striped {
    margin-bottom: 30px;
}
.product-price {
    display: flex;
    padding-bottom: 10px;
    border-bottom: 2px solid #f2f2f2;
    margin-top: 20px;
}
.product-details p.ml-3 {
    font-size: 15px;
    font-weight: 600;
}
.product-price small{
    position: relative;
    margin: 0px 10px;
    font-size: 16px;
    font-weight: 600;
}
.product-price small:before{
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    border: 1px solid var(--primary);
}
.discountpercent{
    background: var(--primary);
    padding: 3px 5px 3px ;
    color: #fff;
    font-size: 14px;
    min-width: 40px;
    line-height: 26px;
    border-radius: 2px;
}
.product-price p.ml-3{
    margin-left: 5px;
    font-size: 15px;
    margin-bottom: 0px;
}
.mr-3{
    margin-right: 5px;
}